From f9fd850da95aff7c39b99b5f9387e15b98f17eb7 Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Wed, 30 Jun 2021 22:43:33 -0700 Subject: [PATCH] cleaned some code... --- .clang-format | 18 + README.md | 0 dependencies/ZwSwapCert | 2 +- drv_entry.cpp | 237 - include/scn.hpp | 119 + include/sha1.hpp | 293 + include/shithook.hpp | 72 + include/vmhook-eac.hpp | 56 + scn.cpp | 29 - scn.hpp | 121 - sha1.hpp | 316 - shithook.hpp | 75 - src/drv_entry.cpp | 160 + src/scn.cpp | 28 + unknown.png | Bin 525460 -> 0 bytes vmhook-eac-log | 148370 ---------------------------------- vmhook-eac.sln | 18 + vmhook-eac.sys | Bin 137480 -> 0 bytes vmhook-eac.vcxproj | 30 +- vmhook-eac.vcxproj.filters | 30 +- 20 files changed, 797 insertions(+), 149177 deletions(-) create mode 100644 .clang-format create mode 100644 README.md delete mode 100644 drv_entry.cpp create mode 100644 include/scn.hpp create mode 100644 include/sha1.hpp create mode 100644 include/shithook.hpp create mode 100644 include/vmhook-eac.hpp delete mode 100644 scn.cpp delete mode 100644 scn.hpp delete mode 100644 sha1.hpp delete mode 100644 shithook.hpp create mode 100644 src/drv_entry.cpp create mode 100644 src/scn.cpp delete mode 100644 unknown.png delete mode 100644 vmhook-eac-log delete mode 100644 vmhook-eac.sys diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..8063c5e --- /dev/null +++ b/.clang-format @@ -0,0 +1,18 @@ +--- +BasedOnStyle: Microsoft +AlignAfterOpenBracket: Align +AllowAllArgumentsOnNextLine: 'true' +AllowAllParametersOfDeclarationOnNextLine: 'true' +AllowShortIfStatementsOnASingleLine: Never +BreakBeforeBraces: Allman +IndentWidth: '4' +Language: Cpp +NamespaceIndentation: All +SpacesInAngles: 'true' +SpacesInCStyleCastParentheses: 'true' +SpacesInContainerLiterals: 'true' +SpacesInParentheses: 'true' +SpacesInSquareBrackets: 'true' +UseTab: Never + +... diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/dependencies/ZwSwapCert b/dependencies/ZwSwapCert index bf5f30c..8051b17 160000 --- a/dependencies/ZwSwapCert +++ b/dependencies/ZwSwapCert @@ -1 +1 @@ -Subproject commit bf5f30c360f7e9d87a0cdba82d70008fd64c5c1c +Subproject commit 8051b171747ba1ce08cfefc4ca1f91dbd790ab4d diff --git a/drv_entry.cpp b/drv_entry.cpp deleted file mode 100644 index 41f637c..0000000 --- a/drv_entry.cpp +++ /dev/null @@ -1,237 +0,0 @@ -// -// Registers on image load callback then applies vmhook to EAC -// -// - -#include "scn.hpp" -#include "shithook.hpp" -#include "sha1.hpp" -#include "md5.hpp" - -// -// game cheat offset flash backs... -// - -#define EAC_VM_HANDLE_OFFSET 0xE93D -#define EAC_SHA1_OFFSET 0x4C00 -#define EAC_MD5_OFFSET 0x37378 -#define EAC_CRC32_OFFSET 0x27C8C -#define EAC_IMAGE_BASE 0x140000000 - -#define DBG_PRINT(format, ...) \ - DbgPrintEx( DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, \ - "[vmhook-eac [core number = %d]]" format, KeGetCurrentProcessorNumber(), __VA_ARGS__) - -// -// vm handler indexes for READQ... -// - -u8 readq_idxs[] = { 247, 215, 169, 159, 71, 60, 55, 43, 23 }; - -// -// vm handler indexes for READDW -// - -u8 readdw_idxs[] = { 218, 180, 179, 178, 163, 137, 92, 22, 12 }; - -// -// vm handler indexes for READB -// - -u8 readb_idxs[] = { 249, 231, 184, 160, 88, 85, 48, 9, 2 }; - -vm::hook_t* g_vmhook = nullptr; -vm::handler::table_t* g_vm_table = nullptr; -u64 __image_base = 0u, __image_size = 0u, __image_clone = 0u; -inline_hook_t __crc32_hook, __sha1_hook, __md5_hook; - -void* -operator new( - u64 size - ) -{ - // - // Could have also used ExAllocatePoolZero... - // - - return RtlZeroMemory(ExAllocatePool(NonPagedPool, size), size); -} - -void -operator delete -( - void* ptr, - u64 size - ) -{ - UNREFERENCED_PARAMETER(size); - ExFreePool(ptr); -} - -__declspec(noinline) -void hook_sha1( - void *data, unsigned int len, void* result -) -{ - sha1_ctx ctx; - sha1_init(&ctx); - - if (scn::read_only(__image_base, (u64)data)) - { - DBG_PRINT("sha1 hash data = 0x%p, len = 0x%x, result = 0x%p\n", data, len, result); - sha1_update(&ctx, (unsigned char*)__image_clone + (((u64)data) - __image_base), len); - sha1_final((unsigned char*)result, &ctx); - return; - } - - sha1_update(&ctx, (unsigned char*) data, len); - sha1_final((unsigned char*)result, &ctx); -} - -void -image_loaded( - PUNICODE_STRING image_name, - HANDLE pid, - PIMAGE_INFO image_info -) -{ - // - // PID is zero when the module being loaded is going into the kernel... - // - - if (!pid && wcsstr(image_name->Buffer, L"EasyAntiCheat.sys")) - { - if (g_vmhook && g_vm_table && __image_clone) - delete g_vmhook, delete g_vm_table, ExFreePool((void*)__image_clone); - - // - // allocate memory for a g_vmhook, g_vm_table and then zero it... - // - - // > 0x00007FF77A233736 mov rcx, [r12+rax*8] - // > 0x00007FF77A23373D ror rcx, 0x30 <--- decrypt vm handler entry... - // > 0x00007FF77A233747 add rcx, r13 - // > 0x00007FF77A23374A jmp rcx - vm::decrypt_handler_t _decrypt_handler = - [](u64 val) -> u64 - { - return _rotr64(val, 0x30); - }; - - // > 0x00007FF77A233736 mov rcx, [r12+rax*8] - // > 0x00007FF77A23373D ror rcx, 0x30 <--- inverse to encrypt vm handler entry... - // > 0x00007FF77A233747 add rcx, r13 - // > 0x00007FF77A23374A jmp rcx - vm::encrypt_handler_t _encrypt_handler = - [](u64 val) -> u64 - { - return _rotl64(val, 0x30); - }; - - vm::handler::edit_entry_t _edit_entry = - [](u64* entry_ptr, u64 val) -> void - { - // - // disable write protect bit in cr0... - // - - { - auto cr0 = __readcr0(); - cr0 &= 0xfffffffffffeffff; - __writecr0(cr0); - _disable(); - } - - *entry_ptr = val; - - // - // enable write protect bit in cr0... - // - - { - auto cr0 = __readcr0(); - cr0 |= 0x10000; - _enable(); - __writecr0(cr0); - } - }; - - auto image_base = reinterpret_cast(image_info->ImageBase); - auto handler_table_ptr = reinterpret_cast(image_base + EAC_VM_HANDLE_OFFSET); - - __image_clone = reinterpret_cast(ExAllocatePool(NonPagedPool, image_info->ImageSize)); - RtlCopyMemory((void*)__image_clone, (void*)image_base, image_info->ImageSize); - - g_vm_table = new vm::handler::table_t(handler_table_ptr, _edit_entry); - g_vmhook = new vm::hook_t(image_base, EAC_IMAGE_BASE, _decrypt_handler, _encrypt_handler, g_vm_table); - __image_base = image_base, __image_size = image_info->ImageSize; - - const auto callback = [](vm::registers* regs, u8 handler_idx) - { - const auto read_addr = reinterpret_cast(regs->rbp)[0]; - - // shoot the tires right off the virtualized integrity checks in about 2 lines of code... - if (scn::read_only(__image_base, read_addr)) - { - DBG_PRINT(" READ(Q/DW/B) EasyAntiCheat.sys+0x%x\n", (read_addr - __image_base)); - reinterpret_cast(regs->rbp)[0] = __image_clone + (read_addr - __image_base); - } - }; - - // install hooks on READQ virtual machine handlers... - for (auto idx = 0u; idx < sizeof readq_idxs; ++idx) - g_vm_table->set_callback(readq_idxs[idx], callback); - - // install hooks on READDW virtual machine handlers... - for (auto idx = 0u; idx < sizeof readdw_idxs; ++idx) - g_vm_table->set_callback(readdw_idxs[idx], callback); - - // install hooks on READB virtual machine handlers... - for (auto idx = 0u; idx < sizeof readb_idxs; ++idx) - g_vm_table->set_callback(readb_idxs[idx], callback); - - // - // hooks all vm handlers and starts callbacks... - // - g_vmhook->start(); - - // hook on sha1... - make_inline_hook(&__sha1_hook, - reinterpret_cast( - image_base + EAC_SHA1_OFFSET), &hook_sha1, true); - } -} - -/*++ - -Routine Description: - This is the entry routine for the vmhook-eac driver. - -Arguments: - drv_object - Pointer to driver object created by the system. - reg_path - Receives the full registry path to the SERVICES - node of the current control set. - -Return Value: - An NTSTATUS code. - ---*/ - -extern "C" -NTSTATUS -DriverEntry( // entry called from ZwSwapCert... - PDRIVER_OBJECT drv_object, - PUNICODE_STRING reg_path -) -{ - UNREFERENCED_PARAMETER(drv_object); - UNREFERENCED_PARAMETER(reg_path); - - // - // This kernel driver cannot be unloaded so there is no unload routine... - // This is because ZwSwapCert will cause the system to crash... - // - - DBG_PRINT("> Registering ImageLoad Callbacks...\n"); - return PsSetLoadImageNotifyRoutine(&image_loaded); -} \ No newline at end of file diff --git a/include/scn.hpp b/include/scn.hpp new file mode 100644 index 0000000..7cbc8dc --- /dev/null +++ b/include/scn.hpp @@ -0,0 +1,119 @@ +#pragma once +#include +#include +#include + +#define IMAGE_SCN_MEM_DISCARDABLE 0x02000000 +#define IMAGE_SCN_MEM_WRITE 0x80000000 + +namespace scn +{ + typedef struct _IMAGE_DOS_HEADER + { + /* 0x0000 */ unsigned short e_magic; + /* 0x0002 */ unsigned short e_cblp; + /* 0x0004 */ unsigned short e_cp; + /* 0x0006 */ unsigned short e_crlc; + /* 0x0008 */ unsigned short e_cparhdr; + /* 0x000a */ unsigned short e_minalloc; + /* 0x000c */ unsigned short e_maxalloc; + /* 0x000e */ unsigned short e_ss; + /* 0x0010 */ unsigned short e_sp; + /* 0x0012 */ unsigned short e_csum; + /* 0x0014 */ unsigned short e_ip; + /* 0x0016 */ unsigned short e_cs; + /* 0x0018 */ unsigned short e_lfarlc; + /* 0x001a */ unsigned short e_ovno; + /* 0x001c */ unsigned short e_res[ 4 ]; + /* 0x0024 */ unsigned short e_oemid; + /* 0x0026 */ unsigned short e_oeminfo; + /* 0x0028 */ unsigned short e_res2[ 10 ]; + /* 0x003c */ long e_lfanew; + } IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER; /* size: 0x0040 */ + + typedef struct _IMAGE_FILE_HEADER + { + /* 0x0000 */ unsigned short Machine; + /* 0x0002 */ unsigned short NumberOfSections; + /* 0x0004 */ unsigned long TimeDateStamp; + /* 0x0008 */ unsigned long PointerToSymbolTable; + /* 0x000c */ unsigned long NumberOfSymbols; + /* 0x0010 */ unsigned short SizeOfOptionalHeader; + /* 0x0012 */ unsigned short Characteristics; + } IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER; /* size: 0x0014 */ + + typedef struct _IMAGE_DATA_DIRECTORY + { + /* 0x0000 */ unsigned long VirtualAddress; + /* 0x0004 */ unsigned long Size; + } IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY; /* size: 0x0008 */ + + typedef struct _IMAGE_OPTIONAL_HEADER64 + { + /* 0x0000 */ unsigned short Magic; + /* 0x0002 */ unsigned char MajorLinkerVersion; + /* 0x0003 */ unsigned char MinorLinkerVersion; + /* 0x0004 */ unsigned long SizeOfCode; + /* 0x0008 */ unsigned long SizeOfInitializedData; + /* 0x000c */ unsigned long SizeOfUninitializedData; + /* 0x0010 */ unsigned long AddressOfEntryPoint; + /* 0x0014 */ unsigned long BaseOfCode; + /* 0x0018 */ unsigned __int64 ImageBase; + /* 0x0020 */ unsigned long SectionAlignment; + /* 0x0024 */ unsigned long FileAlignment; + /* 0x0028 */ unsigned short MajorOperatingSystemVersion; + /* 0x002a */ unsigned short MinorOperatingSystemVersion; + /* 0x002c */ unsigned short MajorImageVersion; + /* 0x002e */ unsigned short MinorImageVersion; + /* 0x0030 */ unsigned short MajorSubsystemVersion; + /* 0x0032 */ unsigned short MinorSubsystemVersion; + /* 0x0034 */ unsigned long Win32VersionValue; + /* 0x0038 */ unsigned long SizeOfImage; + /* 0x003c */ unsigned long SizeOfHeaders; + /* 0x0040 */ unsigned long CheckSum; + /* 0x0044 */ unsigned short Subsystem; + /* 0x0046 */ unsigned short DllCharacteristics; + /* 0x0048 */ unsigned __int64 SizeOfStackReserve; + /* 0x0050 */ unsigned __int64 SizeOfStackCommit; + /* 0x0058 */ unsigned __int64 SizeOfHeapReserve; + /* 0x0060 */ unsigned __int64 SizeOfHeapCommit; + /* 0x0068 */ unsigned long LoaderFlags; + /* 0x006c */ unsigned long NumberOfRvaAndSizes; + /* 0x0070 */ struct _IMAGE_DATA_DIRECTORY DataDirectory[ 16 ]; + } IMAGE_OPTIONAL_HEADER64, *PIMAGE_OPTIONAL_HEADER64; /* size: 0x00f0 */ + + typedef struct _IMAGE_NT_HEADERS64 + { + /* 0x0000 */ unsigned long Signature; + /* 0x0004 */ struct _IMAGE_FILE_HEADER FileHeader; + /* 0x0018 */ struct _IMAGE_OPTIONAL_HEADER64 OptionalHeader; + } IMAGE_NT_HEADERS64, *PIMAGE_NT_HEADERS64; /* size: 0x0108 */ + + typedef struct _IMAGE_SECTION_HEADER + { + /* 0x0000 */ unsigned char Name[ 8 ]; + union + { + union + { + /* 0x0008 */ unsigned long PhysicalAddress; + /* 0x0008 */ unsigned long VirtualSize; + }; /* size: 0x0004 */ + } /* size: 0x0004 */ Misc; + /* 0x000c */ unsigned long VirtualAddress; + /* 0x0010 */ unsigned long SizeOfRawData; + /* 0x0014 */ unsigned long PointerToRawData; + /* 0x0018 */ unsigned long PointerToRelocations; + /* 0x001c */ unsigned long PointerToLinenumbers; + /* 0x0020 */ unsigned short NumberOfRelocations; + /* 0x0022 */ unsigned short NumberOfLinenumbers; + /* 0x0024 */ unsigned long Characteristics; + } IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER; /* size: 0x0028 */ + + // + // just loops over EasyAntiCheat.sys section headers and determines if + // the address in "ptr" lands within any readonly, non-discardable sections... + // + + bool read_only( u64 image_base, u64 ptr ); +} // namespace scn \ No newline at end of file diff --git a/include/sha1.hpp b/include/sha1.hpp new file mode 100644 index 0000000..eaa4cc9 --- /dev/null +++ b/include/sha1.hpp @@ -0,0 +1,293 @@ +#pragma once + +/* + SHA-1 in C + By Steve Reid + 100% Public Domain + */ + +using uint32_t = unsigned int; + +typedef struct _sha1_ctx +{ + uint32_t state[ 5 ]; + uint32_t count[ 2 ]; + unsigned char buffer[ 64 ]; +} sha1_ctx, *psha1_ctx; + +void sha1_transform( uint32_t state[ 5 ], const unsigned char buffer[ 64 ] ); + +void sha1_init( sha1_ctx *context ); + +void sha1_update( sha1_ctx *context, const unsigned char *data, uint32_t len ); + +void sha1_final( unsigned char digest[ 20 ], sha1_ctx *context ); + +void sha1( char *hash_out, const char *str, int len ); + +#define SHA1HANDSOFF + +#include +#include + +#define rol( value, bits ) ( ( ( value ) << ( bits ) ) | ( ( value ) >> ( 32 - ( bits ) ) ) ) + +/* blk0() and blk() perform the initial expand. */ +/* I got the idea of expanding during the round function from SSLeay */ +#if BYTE_ORDER == LITTLE_ENDIAN +#define blk0( i ) \ + ( block->l[ i ] = ( rol( block->l[ i ], 24 ) & 0xFF00FF00 ) | ( rol( block->l[ i ], 8 ) & 0x00FF00FF ) ) +#elif BYTE_ORDER == BIG_ENDIAN +#define blk0( i ) block->l[ i ] +#else +#error "Endianness not defined!" +#endif +#define blk( i ) \ + ( block->l[ i & 15 ] = rol( block->l[ ( i + 13 ) & 15 ] ^ block->l[ ( i + 8 ) & 15 ] ^ \ + block->l[ ( i + 2 ) & 15 ] ^ block->l[ i & 15 ], \ + 1 ) ) + +/* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */ +#define R0( v, w, x, y, z, i ) \ + z += ( ( w & ( x ^ y ) ) ^ y ) + blk0( i ) + 0x5A827999 + rol( v, 5 ); \ + w = rol( w, 30 ); +#define R1( v, w, x, y, z, i ) \ + z += ( ( w & ( x ^ y ) ) ^ y ) + blk( i ) + 0x5A827999 + rol( v, 5 ); \ + w = rol( w, 30 ); +#define R2( v, w, x, y, z, i ) \ + z += ( w ^ x ^ y ) + blk( i ) + 0x6ED9EBA1 + rol( v, 5 ); \ + w = rol( w, 30 ); +#define R3( v, w, x, y, z, i ) \ + z += ( ( ( w | x ) & y ) | ( w & x ) ) + blk( i ) + 0x8F1BBCDC + rol( v, 5 ); \ + w = rol( w, 30 ); +#define R4( v, w, x, y, z, i ) \ + z += ( w ^ x ^ y ) + blk( i ) + 0xCA62C1D6 + rol( v, 5 ); \ + w = rol( w, 30 ); + +/* Hash a single 512-bit block. This is the core of the algorithm. */ + +inline void sha1_transform( uint32_t state[ 5 ], const unsigned char buffer[ 64 ] ) +{ + uint32_t a, b, c, d, e; + + typedef union + { + unsigned char c[ 64 ]; + uint32_t l[ 16 ]; + } CHAR64LONG16; + +#ifdef SHA1HANDSOFF + CHAR64LONG16 block[ 1 ]; /* use array to appear as a pointer */ + + memcpy( block, buffer, 64 ); +#else + /* The following had better never be used because it causes the + * pointer-to-const buffer to be cast into a pointer to non-const. + * And the result is written through. I threw a "const" in, hoping + * this will cause a diagnostic. + */ + CHAR64LONG16 *block = ( const CHAR64LONG16 * )buffer; +#endif + /* Copy context->state[] to working vars */ + a = state[ 0 ]; + b = state[ 1 ]; + c = state[ 2 ]; + d = state[ 3 ]; + e = state[ 4 ]; + /* 4 rounds of 20 operations each. Loop unrolled. */ + R0( a, b, c, d, e, 0 ); + R0( e, a, b, c, d, 1 ); + R0( d, e, a, b, c, 2 ); + R0( c, d, e, a, b, 3 ); + R0( b, c, d, e, a, 4 ); + R0( a, b, c, d, e, 5 ); + R0( e, a, b, c, d, 6 ); + R0( d, e, a, b, c, 7 ); + R0( c, d, e, a, b, 8 ); + R0( b, c, d, e, a, 9 ); + R0( a, b, c, d, e, 10 ); + R0( e, a, b, c, d, 11 ); + R0( d, e, a, b, c, 12 ); + R0( c, d, e, a, b, 13 ); + R0( b, c, d, e, a, 14 ); + R0( a, b, c, d, e, 15 ); + R1( e, a, b, c, d, 16 ); + R1( d, e, a, b, c, 17 ); + R1( c, d, e, a, b, 18 ); + R1( b, c, d, e, a, 19 ); + R2( a, b, c, d, e, 20 ); + R2( e, a, b, c, d, 21 ); + R2( d, e, a, b, c, 22 ); + R2( c, d, e, a, b, 23 ); + R2( b, c, d, e, a, 24 ); + R2( a, b, c, d, e, 25 ); + R2( e, a, b, c, d, 26 ); + R2( d, e, a, b, c, 27 ); + R2( c, d, e, a, b, 28 ); + R2( b, c, d, e, a, 29 ); + R2( a, b, c, d, e, 30 ); + R2( e, a, b, c, d, 31 ); + R2( d, e, a, b, c, 32 ); + R2( c, d, e, a, b, 33 ); + R2( b, c, d, e, a, 34 ); + R2( a, b, c, d, e, 35 ); + R2( e, a, b, c, d, 36 ); + R2( d, e, a, b, c, 37 ); + R2( c, d, e, a, b, 38 ); + R2( b, c, d, e, a, 39 ); + R3( a, b, c, d, e, 40 ); + R3( e, a, b, c, d, 41 ); + R3( d, e, a, b, c, 42 ); + R3( c, d, e, a, b, 43 ); + R3( b, c, d, e, a, 44 ); + R3( a, b, c, d, e, 45 ); + R3( e, a, b, c, d, 46 ); + R3( d, e, a, b, c, 47 ); + R3( c, d, e, a, b, 48 ); + R3( b, c, d, e, a, 49 ); + R3( a, b, c, d, e, 50 ); + R3( e, a, b, c, d, 51 ); + R3( d, e, a, b, c, 52 ); + R3( c, d, e, a, b, 53 ); + R3( b, c, d, e, a, 54 ); + R3( a, b, c, d, e, 55 ); + R3( e, a, b, c, d, 56 ); + R3( d, e, a, b, c, 57 ); + R3( c, d, e, a, b, 58 ); + R3( b, c, d, e, a, 59 ); + R4( a, b, c, d, e, 60 ); + R4( e, a, b, c, d, 61 ); + R4( d, e, a, b, c, 62 ); + R4( c, d, e, a, b, 63 ); + R4( b, c, d, e, a, 64 ); + R4( a, b, c, d, e, 65 ); + R4( e, a, b, c, d, 66 ); + R4( d, e, a, b, c, 67 ); + R4( c, d, e, a, b, 68 ); + R4( b, c, d, e, a, 69 ); + R4( a, b, c, d, e, 70 ); + R4( e, a, b, c, d, 71 ); + R4( d, e, a, b, c, 72 ); + R4( c, d, e, a, b, 73 ); + R4( b, c, d, e, a, 74 ); + R4( a, b, c, d, e, 75 ); + R4( e, a, b, c, d, 76 ); + R4( d, e, a, b, c, 77 ); + R4( c, d, e, a, b, 78 ); + R4( b, c, d, e, a, 79 ); + /* Add the working vars back into context.state[] */ + state[ 0 ] += a; + state[ 1 ] += b; + state[ 2 ] += c; + state[ 3 ] += d; + state[ 4 ] += e; + /* Wipe variables */ + a = b = c = d = e = 0; +#ifdef SHA1HANDSOFF + memset( block, '\0', sizeof( block ) ); +#endif +} + +/* SHA1Init - Initialize new context */ + +inline void sha1_init( sha1_ctx *context ) +{ + /* SHA1 initialization constants */ + context->state[ 0 ] = 0x67452301; + context->state[ 1 ] = 0xEFCDAB89; + context->state[ 2 ] = 0x98BADCFE; + context->state[ 3 ] = 0x10325476; + context->state[ 4 ] = 0xC3D2E1F0; + context->count[ 0 ] = context->count[ 1 ] = 0; +} + +/* Run your data through this. */ + +inline void sha1_update( sha1_ctx *context, const unsigned char *data, uint32_t len ) +{ + uint32_t i; + + uint32_t j; + + j = context->count[ 0 ]; + if ( ( context->count[ 0 ] += len << 3 ) < j ) + context->count[ 1 ]++; + context->count[ 1 ] += ( len >> 29 ); + j = ( j >> 3 ) & 63; + if ( ( j + len ) > 63 ) + { + memcpy( &context->buffer[ j ], data, ( i = 64 - j ) ); + sha1_transform( context->state, context->buffer ); + for ( ; i + 63 < len; i += 64 ) + { + sha1_transform( context->state, &data[ i ] ); + } + j = 0; + } + else + i = 0; + memcpy( &context->buffer[ j ], &data[ i ], len - i ); +} + +/* Add padding and return the message digest. */ + +inline void sha1_final( unsigned char digest[ 20 ], sha1_ctx *context ) +{ + unsigned i; + + unsigned char finalcount[ 8 ]; + + unsigned char c; + +#if 0 /* untested "improvement" by DHR */ + /* Convert context->count to a sequence of bytes + * in finalcount. Second element first, but + * big-endian order within element. + * But we do it all backwards. + */ + unsigned char* fcp = &finalcount[8]; + + for (i = 0; i < 2; i++) + { + uint32_t t = context->count[i]; + + int j; + + for (j = 0; j < 4; t >>= 8, j++) + *--fcp = (unsigned char)t + } +#else + for ( i = 0; i < 8; i++ ) + { + finalcount[ i ] = ( unsigned char )( ( context->count[ ( i >= 4 ? 0 : 1 ) ] >> ( ( 3 - ( i & 3 ) ) * 8 ) ) & + 255 ); /* Endian independent */ + } +#endif + c = 0200; + sha1_update( context, &c, 1 ); + while ( ( context->count[ 0 ] & 504 ) != 448 ) + { + c = 0000; + sha1_update( context, &c, 1 ); + } + sha1_update( context, finalcount, 8 ); /* Should cause a SHA1Transform() */ + for ( i = 0; i < 20; i++ ) + { + digest[ i ] = ( unsigned char )( ( context->state[ i >> 2 ] >> ( ( 3 - ( i & 3 ) ) * 8 ) ) & 255 ); + } + /* Wipe variables */ + memset( context, '\0', sizeof( *context ) ); + memset( &finalcount, '\0', sizeof( finalcount ) ); +} + +inline void sha1( char *hash_out, const char *str, int len ) +{ + sha1_ctx ctx; + unsigned int ii; + + sha1_init( &ctx ); + for ( ii = 0; ii < len; ii += 1 ) + sha1_update( &ctx, ( const unsigned char * )str + ii, 1 ); + sha1_final( ( unsigned char * )hash_out, &ctx ); + hash_out[ 20 ] = '\0'; +} \ No newline at end of file diff --git a/include/shithook.hpp b/include/shithook.hpp new file mode 100644 index 0000000..be5c453 --- /dev/null +++ b/include/shithook.hpp @@ -0,0 +1,72 @@ +#pragma once +#include + +typedef struct _inline_hook_t +{ + unsigned char code[ 14 ]; + unsigned char jmp_code[ 14 ]; + + void *address; + void *hook_address; +} inline_hook_t, *pinline_hook_t; + +void make_inline_hook( pinline_hook_t, void *, void *, bool ); +void enable_inline_hook( pinline_hook_t ); +void disable_inline_hook( pinline_hook_t ); + +inline void make_inline_hook( pinline_hook_t hook, void *hook_from, void *hook_to, bool install ) +{ + unsigned char jmp_code[ 14 ] = { 0xff, 0x25, 0x0, 0x0, 0x0, 0x0, // jmp QWORD PTR[rip + 0x0] + + // jmp address... + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }; + + // save original bytes, and hook related addresses.... + hook->address = hook_from; + hook->hook_address = hook_to; + memcpy( hook->code, hook_from, sizeof hook->code ); + + // setup hook... + memcpy( jmp_code + 6, &hook_to, sizeof hook_to ); + memcpy( hook->jmp_code, jmp_code, sizeof jmp_code ); + if ( install ) + enable_inline_hook( hook ); +} + +inline void enable_inline_hook( pinline_hook_t hook ) +{ + { + auto cr0 = __readcr0(); + cr0 &= 0xfffffffffffeffff; + __writecr0( cr0 ); + _disable(); + } + + memcpy( hook->address, hook->jmp_code, sizeof hook->jmp_code ); + + { + auto cr0 = __readcr0(); + cr0 |= 0x10000; + _enable(); + __writecr0( cr0 ); + } +} + +inline void disable_inline_hook( pinline_hook_t hook ) +{ + { + auto cr0 = __readcr0(); + cr0 &= 0xfffffffffffeffff; + __writecr0( cr0 ); + _disable(); + } + + memcpy( hook->address, hook->code, sizeof hook->code ); + + { + auto cr0 = __readcr0(); + cr0 |= 0x10000; + _enable(); + __writecr0( cr0 ); + } +} diff --git a/include/vmhook-eac.hpp b/include/vmhook-eac.hpp new file mode 100644 index 0000000..bbddca4 --- /dev/null +++ b/include/vmhook-eac.hpp @@ -0,0 +1,56 @@ +// +// note: these vm handler indexes are for EasyAntiCheat.sys 6/23/2021... +// when the driver gets re-vmprotected these vm handler indexes need to be updated... +// +// EAC_VM_HANDLE_OFFSET contains the offset from the module base to the vm handler table, +// as of right now EAC only uses a single virtual machine in their VMProtect config so there +// is only a single vm handler table... +// +// EAC_SHA1_OFFSET contains the offset from the module base to the sha1 function... +// you can locate this function by searching for SHA1 magic numbers: 0x67452301, 0xEFCDAB89 +// 0x98BADCFE, 0x10325476, 0xC3D2E1F0... +// +// EAC_IMAGE_BASE contains the "ImageBase" value inside of the OptionalHeaders field of the NT +// headers... This value gets updated with the actual module base of the driver once loaded into +// memory... I didnt want to read it off disk so I just made it a macro here... +// + + +#include +#include +#include + +// +// game cheat offset flash backs... +// + +#define EAC_VM_HANDLE_OFFSET 0xE93D +#define EAC_SHA1_OFFSET 0x4C00 +#define EAC_IMAGE_BASE 0x140000000 + +#define DBG_PRINT( format, ... ) \ + DbgPrintEx( DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "[vmhook-eac [core number = %d]]" format, \ + KeGetCurrentProcessorNumber(), __VA_ARGS__ ) + +// +// vm handler indexes for READQ... +// + +inline u8 g_readq_idxs[] = { 247, 215, 169, 159, 71, 60, 55, 43, 23 }; + +// +// vm handler indexes for READDW +// + +inline u8 g_readdw_idxs[] = { 218, 180, 179, 178, 163, 137, 92, 22, 12 }; + +// +// vm handler indexes for READB +// + +inline u8 g_readb_idxs[] = { 249, 231, 184, 160, 88, 85, 48, 9, 2 }; + +inline vm::hook_t *g_vmhook = nullptr; +inline vm::handler::table_t *g_vm_table = nullptr; +inline u64 g_image_base = 0u, g_image_size = 0u, g_image_clone = 0u; +inline inline_hook_t g_sha1_hook; \ No newline at end of file diff --git a/scn.cpp b/scn.cpp deleted file mode 100644 index 670601e..0000000 --- a/scn.cpp +++ /dev/null @@ -1,29 +0,0 @@ -#include "scn.hpp" - -namespace scn -{ - bool read_only(u64 image_base, u64 ptr) - { - auto dos_header = reinterpret_cast(image_base); - auto nt_header = reinterpret_cast( - reinterpret_cast(dos_header) + dos_header->e_lfanew); - - auto section_count = nt_header->FileHeader.NumberOfSections; - auto sections = reinterpret_cast( - reinterpret_cast(nt_header) + sizeof(u32) + sizeof(IMAGE_FILE_HEADER) + - nt_header->FileHeader.SizeOfOptionalHeader); - - - // for each section try and find the section that contains this pointer... - for (auto idx = 0u; idx < section_count; ++idx) - // if the section contains this pointer... - if (ptr >= sections[idx].VirtualAddress + image_base && - ptr < sections[idx].VirtualAddress + image_base + sections[idx].Misc.VirtualSize) - // returns true if the section isnt discardable and isnt writeable (I.E in memory and readonly)... - return !(sections[idx].Characteristics & IMAGE_SCN_MEM_DISCARDABLE) && - !(sections[idx].Characteristics & IMAGE_SCN_MEM_WRITE); - - // pointer isnt inside of the driver... - return false; - } -} \ No newline at end of file diff --git a/scn.hpp b/scn.hpp deleted file mode 100644 index 3d60b9f..0000000 --- a/scn.hpp +++ /dev/null @@ -1,121 +0,0 @@ -#pragma once -#include -#include -#include - -#define IMAGE_SCN_MEM_DISCARDABLE 0x02000000 -#define IMAGE_SCN_MEM_WRITE 0x80000000 - -namespace scn -{ - typedef struct _IMAGE_DOS_HEADER - { - /* 0x0000 */ unsigned short e_magic; - /* 0x0002 */ unsigned short e_cblp; - /* 0x0004 */ unsigned short e_cp; - /* 0x0006 */ unsigned short e_crlc; - /* 0x0008 */ unsigned short e_cparhdr; - /* 0x000a */ unsigned short e_minalloc; - /* 0x000c */ unsigned short e_maxalloc; - /* 0x000e */ unsigned short e_ss; - /* 0x0010 */ unsigned short e_sp; - /* 0x0012 */ unsigned short e_csum; - /* 0x0014 */ unsigned short e_ip; - /* 0x0016 */ unsigned short e_cs; - /* 0x0018 */ unsigned short e_lfarlc; - /* 0x001a */ unsigned short e_ovno; - /* 0x001c */ unsigned short e_res[4]; - /* 0x0024 */ unsigned short e_oemid; - /* 0x0026 */ unsigned short e_oeminfo; - /* 0x0028 */ unsigned short e_res2[10]; - /* 0x003c */ long e_lfanew; - } IMAGE_DOS_HEADER, * PIMAGE_DOS_HEADER; /* size: 0x0040 */ - - typedef struct _IMAGE_FILE_HEADER - { - /* 0x0000 */ unsigned short Machine; - /* 0x0002 */ unsigned short NumberOfSections; - /* 0x0004 */ unsigned long TimeDateStamp; - /* 0x0008 */ unsigned long PointerToSymbolTable; - /* 0x000c */ unsigned long NumberOfSymbols; - /* 0x0010 */ unsigned short SizeOfOptionalHeader; - /* 0x0012 */ unsigned short Characteristics; - } IMAGE_FILE_HEADER, * PIMAGE_FILE_HEADER; /* size: 0x0014 */ - - typedef struct _IMAGE_DATA_DIRECTORY - { - /* 0x0000 */ unsigned long VirtualAddress; - /* 0x0004 */ unsigned long Size; - } IMAGE_DATA_DIRECTORY, * PIMAGE_DATA_DIRECTORY; /* size: 0x0008 */ - - typedef struct _IMAGE_OPTIONAL_HEADER64 - { - /* 0x0000 */ unsigned short Magic; - /* 0x0002 */ unsigned char MajorLinkerVersion; - /* 0x0003 */ unsigned char MinorLinkerVersion; - /* 0x0004 */ unsigned long SizeOfCode; - /* 0x0008 */ unsigned long SizeOfInitializedData; - /* 0x000c */ unsigned long SizeOfUninitializedData; - /* 0x0010 */ unsigned long AddressOfEntryPoint; - /* 0x0014 */ unsigned long BaseOfCode; - /* 0x0018 */ unsigned __int64 ImageBase; - /* 0x0020 */ unsigned long SectionAlignment; - /* 0x0024 */ unsigned long FileAlignment; - /* 0x0028 */ unsigned short MajorOperatingSystemVersion; - /* 0x002a */ unsigned short MinorOperatingSystemVersion; - /* 0x002c */ unsigned short MajorImageVersion; - /* 0x002e */ unsigned short MinorImageVersion; - /* 0x0030 */ unsigned short MajorSubsystemVersion; - /* 0x0032 */ unsigned short MinorSubsystemVersion; - /* 0x0034 */ unsigned long Win32VersionValue; - /* 0x0038 */ unsigned long SizeOfImage; - /* 0x003c */ unsigned long SizeOfHeaders; - /* 0x0040 */ unsigned long CheckSum; - /* 0x0044 */ unsigned short Subsystem; - /* 0x0046 */ unsigned short DllCharacteristics; - /* 0x0048 */ unsigned __int64 SizeOfStackReserve; - /* 0x0050 */ unsigned __int64 SizeOfStackCommit; - /* 0x0058 */ unsigned __int64 SizeOfHeapReserve; - /* 0x0060 */ unsigned __int64 SizeOfHeapCommit; - /* 0x0068 */ unsigned long LoaderFlags; - /* 0x006c */ unsigned long NumberOfRvaAndSizes; - /* 0x0070 */ struct _IMAGE_DATA_DIRECTORY DataDirectory[16]; - } IMAGE_OPTIONAL_HEADER64, * PIMAGE_OPTIONAL_HEADER64; /* size: 0x00f0 */ - - typedef struct _IMAGE_NT_HEADERS64 - { - /* 0x0000 */ unsigned long Signature; - /* 0x0004 */ struct _IMAGE_FILE_HEADER FileHeader; - /* 0x0018 */ struct _IMAGE_OPTIONAL_HEADER64 OptionalHeader; - } IMAGE_NT_HEADERS64, * PIMAGE_NT_HEADERS64; /* size: 0x0108 */ - - typedef struct _IMAGE_SECTION_HEADER - { - /* 0x0000 */ unsigned char Name[8]; - union - { - union - { - /* 0x0008 */ unsigned long PhysicalAddress; - /* 0x0008 */ unsigned long VirtualSize; - }; /* size: 0x0004 */ - } /* size: 0x0004 */ Misc; - /* 0x000c */ unsigned long VirtualAddress; - /* 0x0010 */ unsigned long SizeOfRawData; - /* 0x0014 */ unsigned long PointerToRawData; - /* 0x0018 */ unsigned long PointerToRelocations; - /* 0x001c */ unsigned long PointerToLinenumbers; - /* 0x0020 */ unsigned short NumberOfRelocations; - /* 0x0022 */ unsigned short NumberOfLinenumbers; - /* 0x0024 */ unsigned long Characteristics; - } IMAGE_SECTION_HEADER, * PIMAGE_SECTION_HEADER; /* size: 0x0028 */ - - /// - /// returns true if the ptr pointers to something in a section - /// that is read only... - /// - /// module base of the driver... - /// a valid pointer that lands inside of the driver... - /// returns true if the ptr pointers to something in a section that is read only - bool read_only(u64 image_base, u64 ptr); -} \ No newline at end of file diff --git a/sha1.hpp b/sha1.hpp deleted file mode 100644 index 346fcd1..0000000 --- a/sha1.hpp +++ /dev/null @@ -1,316 +0,0 @@ -#pragma once - -/* - SHA-1 in C - By Steve Reid - 100% Public Domain - */ - -using uint32_t = unsigned int; - -typedef struct _sha1_ctx -{ - uint32_t state[5]; - uint32_t count[2]; - unsigned char buffer[64]; -} sha1_ctx, * psha1_ctx; - -void sha1_transform( - uint32_t state[5], - const unsigned char buffer[64] -); - -void sha1_init( - sha1_ctx* context -); - -void sha1_update( - sha1_ctx* context, - const unsigned char* data, - uint32_t len -); - -void sha1_final( - unsigned char digest[20], - sha1_ctx* context -); - -void sha1( - char* hash_out, - const char* str, - int len); - - -#define SHA1HANDSOFF - -#include -#include - -#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) - -/* blk0() and blk() perform the initial expand. */ -/* I got the idea of expanding during the round function from SSLeay */ -#if BYTE_ORDER == LITTLE_ENDIAN -#define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \ - |(rol(block->l[i],8)&0x00FF00FF)) -#elif BYTE_ORDER == BIG_ENDIAN -#define blk0(i) block->l[i] -#else -#error "Endianness not defined!" -#endif -#define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \ - ^block->l[(i+2)&15]^block->l[i&15],1)) - -/* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */ -#define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); -#define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); -#define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); -#define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); -#define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); - - -/* Hash a single 512-bit block. This is the core of the algorithm. */ - -void sha1_transform( - uint32_t state[5], - const unsigned char buffer[64] -) -{ - uint32_t a, b, c, d, e; - - typedef union - { - unsigned char c[64]; - uint32_t l[16]; - } CHAR64LONG16; - -#ifdef SHA1HANDSOFF - CHAR64LONG16 block[1]; /* use array to appear as a pointer */ - - memcpy(block, buffer, 64); -#else - /* The following had better never be used because it causes the - * pointer-to-const buffer to be cast into a pointer to non-const. - * And the result is written through. I threw a "const" in, hoping - * this will cause a diagnostic. - */ - CHAR64LONG16* block = (const CHAR64LONG16*)buffer; -#endif - /* Copy context->state[] to working vars */ - a = state[0]; - b = state[1]; - c = state[2]; - d = state[3]; - e = state[4]; - /* 4 rounds of 20 operations each. Loop unrolled. */ - R0(a, b, c, d, e, 0); - R0(e, a, b, c, d, 1); - R0(d, e, a, b, c, 2); - R0(c, d, e, a, b, 3); - R0(b, c, d, e, a, 4); - R0(a, b, c, d, e, 5); - R0(e, a, b, c, d, 6); - R0(d, e, a, b, c, 7); - R0(c, d, e, a, b, 8); - R0(b, c, d, e, a, 9); - R0(a, b, c, d, e, 10); - R0(e, a, b, c, d, 11); - R0(d, e, a, b, c, 12); - R0(c, d, e, a, b, 13); - R0(b, c, d, e, a, 14); - R0(a, b, c, d, e, 15); - R1(e, a, b, c, d, 16); - R1(d, e, a, b, c, 17); - R1(c, d, e, a, b, 18); - R1(b, c, d, e, a, 19); - R2(a, b, c, d, e, 20); - R2(e, a, b, c, d, 21); - R2(d, e, a, b, c, 22); - R2(c, d, e, a, b, 23); - R2(b, c, d, e, a, 24); - R2(a, b, c, d, e, 25); - R2(e, a, b, c, d, 26); - R2(d, e, a, b, c, 27); - R2(c, d, e, a, b, 28); - R2(b, c, d, e, a, 29); - R2(a, b, c, d, e, 30); - R2(e, a, b, c, d, 31); - R2(d, e, a, b, c, 32); - R2(c, d, e, a, b, 33); - R2(b, c, d, e, a, 34); - R2(a, b, c, d, e, 35); - R2(e, a, b, c, d, 36); - R2(d, e, a, b, c, 37); - R2(c, d, e, a, b, 38); - R2(b, c, d, e, a, 39); - R3(a, b, c, d, e, 40); - R3(e, a, b, c, d, 41); - R3(d, e, a, b, c, 42); - R3(c, d, e, a, b, 43); - R3(b, c, d, e, a, 44); - R3(a, b, c, d, e, 45); - R3(e, a, b, c, d, 46); - R3(d, e, a, b, c, 47); - R3(c, d, e, a, b, 48); - R3(b, c, d, e, a, 49); - R3(a, b, c, d, e, 50); - R3(e, a, b, c, d, 51); - R3(d, e, a, b, c, 52); - R3(c, d, e, a, b, 53); - R3(b, c, d, e, a, 54); - R3(a, b, c, d, e, 55); - R3(e, a, b, c, d, 56); - R3(d, e, a, b, c, 57); - R3(c, d, e, a, b, 58); - R3(b, c, d, e, a, 59); - R4(a, b, c, d, e, 60); - R4(e, a, b, c, d, 61); - R4(d, e, a, b, c, 62); - R4(c, d, e, a, b, 63); - R4(b, c, d, e, a, 64); - R4(a, b, c, d, e, 65); - R4(e, a, b, c, d, 66); - R4(d, e, a, b, c, 67); - R4(c, d, e, a, b, 68); - R4(b, c, d, e, a, 69); - R4(a, b, c, d, e, 70); - R4(e, a, b, c, d, 71); - R4(d, e, a, b, c, 72); - R4(c, d, e, a, b, 73); - R4(b, c, d, e, a, 74); - R4(a, b, c, d, e, 75); - R4(e, a, b, c, d, 76); - R4(d, e, a, b, c, 77); - R4(c, d, e, a, b, 78); - R4(b, c, d, e, a, 79); - /* Add the working vars back into context.state[] */ - state[0] += a; - state[1] += b; - state[2] += c; - state[3] += d; - state[4] += e; - /* Wipe variables */ - a = b = c = d = e = 0; -#ifdef SHA1HANDSOFF - memset(block, '\0', sizeof(block)); -#endif -} - - -/* SHA1Init - Initialize new context */ - -void sha1_init( - sha1_ctx* context -) -{ - /* SHA1 initialization constants */ - context->state[0] = 0x67452301; - context->state[1] = 0xEFCDAB89; - context->state[2] = 0x98BADCFE; - context->state[3] = 0x10325476; - context->state[4] = 0xC3D2E1F0; - context->count[0] = context->count[1] = 0; -} - - -/* Run your data through this. */ - -void sha1_update( - sha1_ctx* context, - const unsigned char* data, - uint32_t len -) -{ - uint32_t i; - - uint32_t j; - - j = context->count[0]; - if ((context->count[0] += len << 3) < j) - context->count[1]++; - context->count[1] += (len >> 29); - j = (j >> 3) & 63; - if ((j + len) > 63) - { - memcpy(&context->buffer[j], data, (i = 64 - j)); - sha1_transform(context->state, context->buffer); - for (; i + 63 < len; i += 64) - { - sha1_transform(context->state, &data[i]); - } - j = 0; - } - else - i = 0; - memcpy(&context->buffer[j], &data[i], len - i); -} - - -/* Add padding and return the message digest. */ - -void sha1_final( - unsigned char digest[20], - sha1_ctx* context -) -{ - unsigned i; - - unsigned char finalcount[8]; - - unsigned char c; - -#if 0 /* untested "improvement" by DHR */ - /* Convert context->count to a sequence of bytes - * in finalcount. Second element first, but - * big-endian order within element. - * But we do it all backwards. - */ - unsigned char* fcp = &finalcount[8]; - - for (i = 0; i < 2; i++) - { - uint32_t t = context->count[i]; - - int j; - - for (j = 0; j < 4; t >>= 8, j++) - *--fcp = (unsigned char)t - } -#else - for (i = 0; i < 8; i++) - { - finalcount[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)] >> ((3 - (i & 3)) * 8)) & 255); /* Endian independent */ - } -#endif - c = 0200; - sha1_update(context, &c, 1); - while ((context->count[0] & 504) != 448) - { - c = 0000; - sha1_update(context, &c, 1); - } - sha1_update(context, finalcount, 8); /* Should cause a SHA1Transform() */ - for (i = 0; i < 20; i++) - { - digest[i] = (unsigned char) - ((context->state[i >> 2] >> ((3 - (i & 3)) * 8)) & 255); - } - /* Wipe variables */ - memset(context, '\0', sizeof(*context)); - memset(&finalcount, '\0', sizeof(finalcount)); -} - -void sha1( - char* hash_out, - const char* str, - int len) -{ - sha1_ctx ctx; - unsigned int ii; - - sha1_init(&ctx); - for (ii = 0; ii < len; ii += 1) - sha1_update(&ctx, (const unsigned char*)str + ii, 1); - sha1_final((unsigned char*)hash_out, &ctx); - hash_out[20] = '\0'; -} \ No newline at end of file diff --git a/shithook.hpp b/shithook.hpp deleted file mode 100644 index d26fdb2..0000000 --- a/shithook.hpp +++ /dev/null @@ -1,75 +0,0 @@ -#pragma once -#include - -typedef struct _inline_hook_t -{ - unsigned char code[14]; - unsigned char jmp_code[14]; - - void* address; - void* hook_address; -} inline_hook_t, * pinline_hook_t; - -void make_inline_hook(pinline_hook_t, void*, void*, bool); -void enable_inline_hook(pinline_hook_t); -void disable_inline_hook(pinline_hook_t); - -inline void make_inline_hook(pinline_hook_t hook, void* hook_from, void* hook_to, bool install) -{ - unsigned char jmp_code[14] = - { - 0xff, 0x25, 0x0, 0x0, 0x0, 0x0, // jmp QWORD PTR[rip + 0x0] - - // jmp address... - 0x0, 0x0, 0x0, 0x0, - 0x0, 0x0, 0x0, 0x0 - }; - - // save original bytes, and hook related addresses.... - hook->address = hook_from; - hook->hook_address = hook_to; - memcpy(hook->code, hook_from, sizeof hook->code); - - // setup hook... - memcpy(jmp_code + 6, &hook_to, sizeof hook_to); - memcpy(hook->jmp_code, jmp_code, sizeof jmp_code); - if (install) enable_inline_hook(hook); -} - -inline void enable_inline_hook(pinline_hook_t hook) -{ - { - auto cr0 = __readcr0(); - cr0 &= 0xfffffffffffeffff; - __writecr0(cr0); - _disable(); - } - - memcpy(hook->address, hook->jmp_code, sizeof hook->jmp_code); - - { - auto cr0 = __readcr0(); - cr0 |= 0x10000; - _enable(); - __writecr0(cr0); - } -} - -inline void disable_inline_hook(pinline_hook_t hook) -{ - { - auto cr0 = __readcr0(); - cr0 &= 0xfffffffffffeffff; - __writecr0(cr0); - _disable(); - } - - memcpy(hook->address, hook->code, sizeof hook->code); - - { - auto cr0 = __readcr0(); - cr0 |= 0x10000; - _enable(); - __writecr0(cr0); - } -} diff --git a/src/drv_entry.cpp b/src/drv_entry.cpp new file mode 100644 index 0000000..6cbeb5e --- /dev/null +++ b/src/drv_entry.cpp @@ -0,0 +1,160 @@ +#include + +void *operator new( u64 size ) +{ + // + // Could have also used ExAllocatePoolZero... + // + + return RtlZeroMemory( ExAllocatePool( NonPagedPool, size ), size ); +} + +void operator delete( void *ptr, u64 size ) +{ + UNREFERENCED_PARAMETER( size ); + ExFreePool( ptr ); +} + +__declspec( noinline ) void hook_sha1( void *data, unsigned int len, void *result ) +{ + sha1_ctx ctx; + sha1_init( &ctx ); + + // + // if EAC is trying to sha1 hash any data in readonly sections... + // then we hash the clone of the driver before it was patched... + // + // note: relocations are the same in the clone so those wont need to be handled... + // + + if ( scn::read_only( g_image_base, ( u64 )data ) ) + { + DBG_PRINT( "sha1 hash data = 0x%p, len = 0x%x, result = 0x%p\n", data, len, result ); + sha1_update( &ctx, ( unsigned char * )g_image_clone + ( ( ( u64 )data ) - g_image_base ), len ); + sha1_final( ( unsigned char * )result, &ctx ); + return; + } + + // + // else simply sha1 hash the data and return back to EasyAntiCheat.sys.... + // + + sha1_update( &ctx, ( unsigned char * )data, len ); + sha1_final( ( unsigned char * )result, &ctx ); +} + +void image_loaded( PUNICODE_STRING image_name, HANDLE pid, PIMAGE_INFO image_info ) +{ + if ( !pid && wcsstr( image_name->Buffer, L"EasyAntiCheat.sys" ) ) + { + if ( g_vmhook && g_vm_table && g_image_clone ) + delete g_vmhook, delete g_vm_table, ExFreePool( ( void * )g_image_clone ); + + // > 0x00007FF77A233736 mov rcx, [r12+rax*8] + // > 0x00007FF77A23373D ror rcx, 0x30 <--- decrypt vm handler entry... + // > 0x00007FF77A233747 add rcx, r13 + // > 0x00007FF77A23374A jmp rcx + vm::decrypt_handler_t _decrypt_handler = []( u64 val ) -> u64 { return _rotr64( val, 0x30 ); }; + + // > 0x00007FF77A233736 mov rcx, [r12+rax*8] + // > 0x00007FF77A23373D ror rcx, 0x30 <--- inverse to encrypt vm handler entry... + // > 0x00007FF77A233747 add rcx, r13 + // > 0x00007FF77A23374A jmp rcx + vm::encrypt_handler_t _encrypt_handler = []( u64 val ) -> u64 { return _rotl64( val, 0x30 ); }; + + vm::handler::edit_entry_t _edit_entry = []( u64 *entry_ptr, u64 val ) -> void { + // + // disable write protect bit in cr0... + // + + { + auto cr0 = __readcr0(); + cr0 &= 0xfffffffffffeffff; + __writecr0( cr0 ); + _disable(); + } + + *entry_ptr = val; + + // + // enable write protect bit in cr0... + // + + { + auto cr0 = __readcr0(); + cr0 |= 0x10000; + _enable(); + __writecr0( cr0 ); + } + }; + + auto image_base = reinterpret_cast< u64 >( image_info->ImageBase ); + auto handler_table_ptr = reinterpret_cast< u64 * >( image_base + EAC_VM_HANDLE_OFFSET ); + + // + // Clone the entire driver into a kernel pool, keep in mind relocations will also be + // the same as the original driver! Dont call any code in this clone, only refer to it... + // + + g_image_clone = ( u64 )RtlCopyMemory( ExAllocatePool( NonPagedPool, image_info->ImageSize ), + image_info->ImageBase, image_info->ImageSize ); + + // + // allocate memory for a g_vmhook, and g_vm_table... + // + + g_vm_table = new vm::handler::table_t( handler_table_ptr, _edit_entry ); + g_vmhook = new vm::hook_t( image_base, EAC_IMAGE_BASE, _decrypt_handler, _encrypt_handler, g_vm_table ); + g_image_base = image_base, g_image_size = image_info->ImageSize; + + const auto callback = []( vm::registers *regs, u8 handler_idx ) { + const auto read_addr = reinterpret_cast< u64 * >( regs->rbp )[ 0 ]; + + // shoot the tires right off the virtualized integrity checks in about 2 lines of code... + if ( scn::read_only( g_image_base, read_addr ) ) + { + DBG_PRINT( " READ(Q/DW/B) EasyAntiCheat.sys+0x%x\n", ( read_addr - g_image_base ) ); + reinterpret_cast< u64 * >( regs->rbp )[ 0 ] = g_image_clone + ( read_addr - g_image_base ); + } + }; + + // install hooks on READQ virtual machine handlers... + for ( auto idx = 0u; idx < sizeof g_readq_idxs; ++idx ) + g_vm_table->set_callback( g_readq_idxs[ idx ], callback ); + + // install hooks on READDW virtual machine handlers... + for ( auto idx = 0u; idx < sizeof g_readdw_idxs; ++idx ) + g_vm_table->set_callback( g_readdw_idxs[ idx ], callback ); + + // install hooks on READB virtual machine handlers... + for ( auto idx = 0u; idx < sizeof g_readb_idxs; ++idx ) + g_vm_table->set_callback( g_readb_idxs[ idx ], callback ); + + // + // hooks all vm handlers and starts callbacks... + // + g_vmhook->start(); + + // hook on sha1 since it executes outside of the virtual machine... + // and does an integrity check on .text and .eac0... + make_inline_hook( &g_sha1_hook, ( void * )( image_base + EAC_SHA1_OFFSET ), &hook_sha1, true ); + } +} + +// +// this entry point is called by ZwSwapCert... +// + +extern "C" NTSTATUS drv_entry( PDRIVER_OBJECT drv_object, PUNICODE_STRING reg_path ) +{ + UNREFERENCED_PARAMETER( drv_object ); + UNREFERENCED_PARAMETER( reg_path ); + + // + // This kernel driver cannot be unloaded so there is no unload routine... + // This is because ZwSwapCert will cause the system to crash... + // + + DBG_PRINT( "> registering on image load callbacks...\n" ); + return PsSetLoadImageNotifyRoutine( &image_loaded ); +} \ No newline at end of file diff --git a/src/scn.cpp b/src/scn.cpp new file mode 100644 index 0000000..26278b4 --- /dev/null +++ b/src/scn.cpp @@ -0,0 +1,28 @@ +#include + +namespace scn +{ + bool read_only( u64 image_base, u64 ptr ) + { + auto dos_header = reinterpret_cast< PIMAGE_DOS_HEADER >( image_base ); + auto nt_header = + reinterpret_cast< PIMAGE_NT_HEADERS64 >( reinterpret_cast< u64 >( dos_header ) + dos_header->e_lfanew ); + + auto section_count = nt_header->FileHeader.NumberOfSections; + auto sections = reinterpret_cast< PIMAGE_SECTION_HEADER >( reinterpret_cast< u64 >( nt_header ) + + sizeof( u32 ) + sizeof( IMAGE_FILE_HEADER ) + + nt_header->FileHeader.SizeOfOptionalHeader ); + + // for each section try and find the section that contains this pointer... + for ( auto idx = 0u; idx < section_count; ++idx ) + // if the section contains this pointer... + if ( ptr >= sections[ idx ].VirtualAddress + image_base && + ptr < sections[ idx ].VirtualAddress + image_base + sections[ idx ].Misc.VirtualSize ) + // returns true if the section isnt discardable and isnt writeable (I.E in memory and readonly)... + return !( sections[ idx ].Characteristics & IMAGE_SCN_MEM_DISCARDABLE ) && + !( sections[ idx ].Characteristics & IMAGE_SCN_MEM_WRITE ); + + // pointer isnt inside of the driver... + return false; + } +} // namespace scn \ No newline at end of file diff --git a/unknown.png b/unknown.png deleted file mode 100644 index ce11174e1d1eb1cdd33eae5fde37556db152be85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 525460 zcma&O2{_bk8$R6As#4O1vJ^^W36W(`PnN6`6J@U$vS%O5(4u6|F3fncO|q4pu@q$+ zW@0dnH8Bmwm|-x+82&%K-~0XFr}~cLJC2`&aWL-ty07KD&hxrO-89iVbl}v19Xoa$ z(!Zf?wqwUW(2gB@4sz`UzH{f%!1WzF&g{_FzIF@t*L;&!tQf8V8F=*CyR%%%yAfz+ zk49tmq>)@YdP?Nk%2m47wVJbcj&MtuI9_`sb}n8})#o8%_~x{BqL@T{%EgAnV|wwj zf)~7}I};ho<4!HTXh(XN~y)W#bz zsGzKZ*Y@udVk}1lU!BA;R=@hWXN?8lGy1+}bWy9S7w@UIB0K=ntO`27bEV@?i(}?@#FET`lYxp$e@tk$>?&`iuVsw;#`#jA?M< z-AT&>U1kBUs;P*if3Cp{0+6Dh+xC3am(r^CH9q<04}bS=5G2Ii?@v-ZhMzM` zbHq1kLPE#Xl$oc1(AOvevO5h~FhAgP94TcO9Pk~&iR$9`39n0x8)9`wo(FU{7jz8Q za>ji>1fYC-_!XXSd&@5mU32ddq;?&0<56M^4bCSr)n51U!}Gr)$jYMl#7wB8M5`j# z<%1FtWINL+dTbw(3#@-LLSjOFZTzp_-fPD$X3vh+W0O(z2*9e3?Ypn?$y;dmsU|Jv z@**ers1)R7ZND(v*uscX-I!-@E|w?5AHVZ^(`AgoE-*we0eS&a-HM5P)eTwE^m!E( zg;vP-%5Q~PH8nZ?7Wh!LrP8b=MN0zNMIwP0F6%sUdrp@fhmQ;H?tdxw`F2vntnu~f zZ^qg%wI_J9hL|UU;6sg3N1BqjaIoIhzU1b3U8A+SZ1$SqMxuQQPZ~=JYgs^Z>RHZcRHM6+c+3lb&Wzrk*!<%+S8`(kag; z#c?b+iofceBx9cQYOrBHRoB$_O}750zelFl%CZVHp?!! zR4*26Hilmm0Jk68dw0jL&v?iGxCYO?yLva5cjl)c%C+qF5hWMvQxQ^L&rlN>Nn%h5 zJ@!7N;v*(F9f3E|dg}Kkye1J*{NuIx@PS^!f^F`}cUhrg>IAK2O)N_po;+GL<7dZ< zJgQLewI@wINHL56mGCKkaz3goTNHG#OYw%oL9~@H^p5+KW#S`ysU%h2poB`Edn~bL zKc|vj5s_hOe@Za7QoHH%w}KtE*?0V;2pJmW*;5hD%7?2PhJ#*-gU+cK&RU}PecIxh ztSFZuJ%&!WWz&)oBxg0dgIEPEU08E-kJY&-aC&6ptH39|dZDseCSMFfrDSp@nAh_H zOx`$y?)_#Ez(m+yz$Sg(S9l_EaPKd|S8VuI3)u=CE4$lFX(=s$nvyikjz`()A#B&HN8>+W5bV=nNUiRdum{x zt^8ZXH1@1}$M?#klLC3FC*mx0sVs)9nTMc@ax{H3N>^RJ6;D+iE>+t@517}rxsYVS zi-5k>`Fd`J>67qPfKP`-jiDR0-$%unM7yq!ylj}YKBg;6Kp&oLCndo1j_kP>U=Xa^7Zgpenh_NK zBBunMSFwDkCbE9~oNlS$ZlGS-gxiZJ`HE?syJ}ePT|yrxZBQqY`&Fmh49QIq`4nF`8?xn5t`Y&<@}GK@ggulN^*nJ9P0d@DA75`P3g>bwrW`C~8s5IbDo{5hUTpGs4ryLDp=WMoWTm$hH zwp%q>cHx()CT~Ica-W|>T=$UXiNcX$#;fZSQ53J3RjQt%xJ<&Q4}?P770KqD<(sUL z3Kz^ksBM*tRDqLCJV`?55w#E|8_<1HA8vPAagMe%emUBLn?O6PxNfwSc=o`cY-ZJ) zR?)m&kjwpN}lrm|zIx9ZAYYxU-;d!4GhylC67Ui*wa&6$u; z?Z|fc^^EI;0iOruPo6!rovX7EK>5-Q7Ea1uWc;_3KN}E~;mbJ-DkmEfO5uO$!mL6? zLFlbZPv{`_M7K3s;*0$z@^_qIqqvI;ti6xNYdfEPo9B*=a26SJsYlJcQ;DN``k_QM z1M}3)Ymbc;y}*gK;!X9De^yFy&z8EK<@vZ{APUq=VJ($D4EA(dJ~FvUY>Vc%|h}TOTYde`YEydR#9N z$x#nN2Qt$7kdKR+c#--8PAg;oI1v()!RSOp{A!5~%&9LL-G`XEaZ@KysvDxu%lg8rG4a+rax{IOK7Wi+__7}yg}pCjz5l4bW=k=I zrTWY{^oEEIYR^?_BionsYC46!oKj=m!Y?Cthy7Gz*d zkOUW2B5tFWM!B#mC#4AOvFjMS>x4_q=MD<-fO)97HxO$n^Nh>Y*TUv9d&)lFv-QH0 zK3}d*dR{H*aqjR+{hsgp_JiXdqiR<;PM1xT`Yea|Doh=wSJUDaWFiYtpHSnomIk=5 zIfK4(SDsD_ia+SzhcRcK`!UAC<$_qUz3`*I1=#kP9{^&^?xTL)^T^EQ$xRU(-+0vy zk**!Bj9sXz)UVpGrGllM6VACRzT5Cm7xsKh`etk;m9reZ4W`y9ItUK3Cqs(aGX4+rF`9gf(?N z-E;EbUifs(!??$uY9p7Z9uilRx89u*P%*MReeO;7q7@Aj=Is26$0Ney@*u^m73@DL zoVcQz{!dn5$lHXpm$u>8t>2GT39jQ;-iK?wE$kUY{~cN6n{$QsWtn48&zv3oUNxE! z@0HOygdbiF65N&WY_8#!QBkpEKze33Y!iBA@yha8_;tncH&f&Lf3w1lT{MRslU>(O z3HSd$cHq~rA+)jW4CXtrBIWh-DZ6E$s5GF;Gao2V?b{MNdq3!5#KW8F6dJ~3?i@;+ z?5avj+T;8xA>zklF6@E^5?+PEm`@6z3e8#G%3LNfCgjlBpow(hcB)#thu_4Pm0=9n zenKpWOj&=?cpPE33YRo6JJ<|)hKm2pG2aS|_n6?k0Tpg;N)iPi5}Gj~IUR3%&>^|& z0~i}pT1LUzs00Yjh5I{L6jVO7KB?Ir^b5||e)%~2uLz0Usj=LrF;XpW`1#sNit?9& z>&hdUTsY+eriNIk$ZV0|WS7Qw#WAr82cfYmN01{A%z^$vpJluA4_3NF_XM)b2ZkrC zA~IuO@r=k`O}<@E>)y@Jqa1HVpbFnp3oFe1$SGVn8pbq&Ji~c)w!6#JT;A1f27J`K zI`kC}FT#sLcwKS>tmoezn$cgA(>;`kG<_f}We8K#4_G*X)Xx#>v;1M>oI_DV*D{)D zYJ<+rHRu=mV~}88m4+eAOy>eTB{dM1HWE4O?jWAuO}s

Q@$yS=W&4R#bhyz>ntY z^-e*J$cm{|l9n>=JEC&cn&!E{BG*S{W9S0`(MzLI%hPDTZsYc&{-fwW0KacOKuiSP zXuE!DyO6=I>L z{MUHxYg%#C`e&$fC|{jGS>%tr%Q;$A25onqPhHSKrL*q))ywI|Qb`@k4oy}liu$Pa z^NMoz%a8*j3L+6jpPjdm1_w34thXTbt&Rg=q3g$!2OXA_gx58b>N#X@E9+{?<%Ym# zTe}qo*c#bz&yPhQ;HScgdI|em8B2s~?Wg=>)&I~EHRf#lf*8E6LuX|(Ci=a@{6gyE zrH^%K&hRC5^~g6SO<9#jM6{Y4jbfwh!Tit^oZ6m#lJQb*lixT4S!B{hNcc3?bgNgi4@yR#X3|b7`FNJ($_LWZH z+p^e&feJA-%njUk%_Ho3NIbKyL@*bmakvBMw_Wj56_pcT^d`a`Od^~=o^Lt3mdNvm z=)V0KXm`$(AGjgBymaZ%-m>(^eQn+v5d`+a6S`niZDlsr0#iWercvg_QQ9bod@7ax zNK*ai3)d!`m4FCpv6+ zkuj|6r;|U~r}#F@`LXa$nN}@1W`FyVwZO~FlcmQ#KakLvxCqKy=4L*6I@-aukw#CP zt)=_PF3tw>T@*3)7}<(ElF-{6_US!<$_h@C80HUKnL*9Cw%?hg4=86Kt?STd<#q}W z*p}a&8nq$R3up)uuEUyerF=*+Vvtb;3W{11>9z0+v#!FF1Dz9whvYE+pv6?MvFG_r zFFY5YLp_0v?=RU84lnD(?tkJtFwsFoHImaD9>!os6Tme(7c$>68I0KCUj0N`2r_GsU}ZKmkq@m+b5Q^7kD=pehh zyY<-uE&s%R-S6OSxRSHjX!}`S40MG?kL^D;88k3aQv5BQ#+QBZ53#a#X*;X0-g~$B zZMJUf*#{MQ6GHcg8zz#i?@cfNIA7WYjD0-pJF(&rtwyK#Uaw>9G%0xWBmi zwlTf(Wbdm%6zzK~FXHT5h7}H%5;oYLvM%~Wg&rX1p!h5~#FA;A`0cDrj_|N_lA;OJ zIxVvE%ZE=Xi^zWxe(LoU@*9vj?D>==iksOqq}o~; zhIJ(;1-Enm0k&$!1K<+5&*agX_ZfwuSS4;7E#Mq!T)4L-b$inE$O@e{bF~T-yN>TC z*FYg6yvWnUOdXgg$ZOp$Y}M`Agbw`|mT=n@+JK_vwKl!@a%z1KFZqS9ADG*3=MBi2 zRXkBj%15FCj~`CsMUFMxGqBbP3_}F!^CGVUwNX8p3vAppBk3+goNYW=ty&Ovd~()B z_@XFX7(3h44T`6{d)KrtOhTk>!w@}F;2gW`w;P2jMyT~tQ^H`UMkbqA6v{Ur8K}yN zfts?lgWGTP-x<;v=*z^SXKqeVayLS=sb$ti2sE8-&XTp&NQdy>vu#$~KBr%v4=(>( zc2%MuU-JuoOK^Awa2+EW(+M>CJQS7hEUAumImX$s>1}ZW@l-`+QV5BG;-y@I#~0QP zcbY`K2wD4{cp&xCkI=9?g5z`iW4l@)3D=S!t$0ZTu(9vOMVDEZ{S9)=fjY?gy-9&R zj)2?AY?DOhFoXN;%5Cs}j^}$DSf}zLQ5>#fMEIP*?cbaYzyu=OeP@R)sFA#v-h6ro zz{*0o=RxkwHhQ`x`qpKqoQ4^!LJ}Th>M4~8!5qy`N}fa@Y+2A|hNn97p2S;*HNN?z z3&4<9PILU(^C%x_%0RQ3@?jBMvcvfndm;=+Ud<~{Pi8WgzohL1V~SCh=xi^aR5X-? z%W@>n+N?mZZpVwgx1NGhvW=UwhE{n;d_{_b^0;scGH*Fr;-E29Ny`9MGaF#lQ?OnPwezrBb!9^izaovB)e}OXjoq84& z!iu6ds<>?ot-Wk{o!vp%3hPq+F8J}^r)ZN2zzm+VFs`5Uv)EqU{u>pQ;a*u{>Zv@m z1wU=n(ux~<4yxlPRe|qA=trPX6>$*IVZ7#f-dDDMPP}794{*{A5P$hhJhY|OB++nD zMUK<4nz8B-eql?^yW?w%*L=dgjkiOKY>9)5vv07b<9dNoKK+RZ`9N*b@qpv6Wtjv%i)qNHAei`}cx`7nEliPn9zaXolKso|T77cP8PGX(y^fQjlI4>J|1R|! zXaRqa_Y_h0Bs@H1Ja_#FGAS-C;Upq+C?I24nG2V>T(yI$?NnDgPkOh76CY=u(MWF5 zuMUt_Ls&Pf1-7KnOq|iY$jyW^B+Vm8v{v?c`Lt}k8fT;bPmszle^kiEJstfOIK)*8 zetzNLeZ<*)OV=Hp&x2azYIDt!@I?vBv90(DNd0cqGjja5s;mB*rm!L5X`YU+F;Q+R zSD-m}Ht*c)faNHU|7X=_K{BUhRAmmR|D|>f=BkeAxNfA=rxv|r1i0DoQggPopBmG9 zAi^1_fQd9NaC5CuL*Y?RqVV(I{Y*0n@CGd`FLJwBUAli4_AZ_-7>6m?QsJ2jbNAz? zn2QAnVDQtVkak)>p@TT02MgfM0S*F&=89ZdW*lv4_O-v6I-qh4#CME*vf&u92YW^c3Qe(uIJPGLWYHA*8@xK8XTU4G zQ~qS^p5Kz)4sLgWt1wYD+4DQ>^!ToVnW_Pxu~R~nYNLG4#h47j5rJKJ zj1=LipVl1_aTMwUwZ_;HwR`5TzIvdUVpf%LHXk<%ciS(0Y)p6-+VYJxKLzPFkqKXw zkLn0N!R)ew83aq|iyH`=q$0-83)@=;u+vi0Qb@s8WpQz}aV*JJJY=eYXR(=D)Qf2x zx-!RF*!2fwc!{3)lO`C9d?2!4l>NPZ->%!At{y>R3Z_Yv^UzlO6CjvLKB52>tlEjW zpk|BBRc}!$9p9zqPQZZmu@}^Olg>H!aESH3n7@2>k8g`wY?cbspH;Scbkg#~3mw1w zXV4xQgUScEOuCJRT!1!=dM9_ruYPz!p#g$Pb-2{Qg}b;u(&Ke9tn$~wv0d`*fOp(c z!S`}_m-1ZDj=j4A0j0}#3Et=PD759v`ux;W`Y5i$e8U!~|3?Q1Qmu^mts%zg2TK#{ z#dUh#<0@X;9{Rt}P3Vrv{etEyYo@sCvixiL+>N(kQVsY-HmS>?b(|97X7o*IL0GNMZv>k8cvUZgkL zBjU%34s34R+5}1=1;!~(w6Hc0{d*z*S=2)(V1v%WH-*@Z=4qTEzAOi<9#FY=KC-NxvgPCl2vga{09@~O-zQ_gA~>h~=uau*Q^C=6Sc zM+9pHs86%c4Tf|`B!@#N6>!3EMulf-oCBp2UL-rRDM%R_u8UlUlu!A(d+`Dcph2pJ zhlgd3Oad-y!5*#8RGOH$W${)ha@hKLRd9Bkxa)jd!>d|oFg(b$GQZQLn#u(p3p8I% znU?oL3J)s`t{cKRHVVqIKPli}PB6P2I4scaLl9Vg?R^F})dvyR`+5B;1n^e-P>Soug4>$lB;v z{JANHnVUm*L$z{zDQ=bcXkPEXvj7DR?rh%@Yqu%kx$^I{&J9C1qQC@tHV|qB3syB~ zzY|aK!1itnyw&trX2Y<`8-(G0+yx~WO$P*KThA?R8BkRIm$&@abJFhvJ?Hmbi-rjP zVNxz2UaxWO)%|<-q-yXDty5VYjDsz>@v!q-g+ow>JO6iW|Fa&g@0zfOB3!t${rDtB zKwW4q7i@gK)}*u^_7UdY`-|N^e1L9u1G}Ky3t&X8RD)t$z81 zdFm}#>!wP;*+KxpBA^>HW3tVBW)9aF!u_02PO54LsC6?wG1N|-j&Sy$`^Joi{9GQp ztXdvAW_7w_$eC?sTfkJoICs?Z6_t>l|QnMz89x6=u%!Ru%-iWId zp0v~r8fw2rUQ5>lq^#xpRwGv7MJ+u%YVE1s&wlA-w)v^ZliSwvKJ#4{V4EIdxc&at z&aF&G#A!Q(dO1sXNO~wv5-}$Gad}X3VyiE)XGC@dud&_~Fovc|t6(-hvDq4(xo(=z zjW&%-G4bU??J53l9)i|6R6~E_D)~x;2>@nULStSF<}CQMS3 z2Sa45YZQ1KN3QdnsrH^(|0mF6b#^6|M!$6&CD2`1wcZ+P)j~5;*wJO4IYJhqq8hl?0lLeE1u5KOj$MY`#?zOX35z!y; zErtuX?A2-h4nq^f{vISBBmmE1MVTn`*lAjb%a6x0mEcW8ef>L9%VSpt(G(;V-LPkqMqkl&ajHx7{L4`;^!K?iqkDA(`uy5+}pe*22$mj z9#(Ueno2ly$Ku&3Tp%p0>essd6H4v|65YK^FqNnO0D@rM?Y#lQDNNB%xe%6Xy*p%* z)!=TQYH;>dmkHR-y6kj%-ux}qu%UDrwY>S1<&=5QsvuR6A$LUS)xg`8i`KOkx80@& z)`vGM*4^!i!2`C5^w4g05(48^uD+`Iux};WrD{S9By+rSvF6kK5_u2MVb1GqanKi- z+551&eyiFaQWYN28~cy7Jw5R0G*ER^1^6|L(&uk!$LIQX&tRon6^|iJ1JoKI6^e=J z>i$XD6Msw9%#Lpn_59Q-@T?Sh0U?ImOT=*adA2L3d#H49a9E|fxu&H=bL4i7u)pd) zvS9kW&AfKt>Q>j;5w8Z0T!T|Q6_XP3@$-;O1o?b-l^ zFUKr{&b8tb5$g4#YS-s-K};Q3boqy#&+XYX>c*SjMIwM7dvoa#y@Z>a$MvN#kUN;4 zu7(~Ni#h^uwv!tVLR+u1Arw?+f%}-%SP|!~$4}R&PAt_EYE^U~4Kx(jX^DZ*E*|Ku zt550E9p_t$e#d@yzwrSx7#p7@zDWsxmESx1;_kNv0siSHdFpKD-C(Jaduk*6le3*B zWcj0ty8coX5X>S24%G>?*rt$C>vNJGKt~$dt>LTkL-9aQk%v=7`H*gnXKC3`d(lcY z2f9LRu2^}47M)~eGta4~6YQ>#>>j@NKR8*Rq2*_qDDUHIJuWg?#MM2V5dyTlK~kSr z1jlBX@BmgsAWW*lmxwY=ah`ad2SOJGUZgF~j~ClCb};TcV411tt>&HT8-+!_ z=n;MT<9;3!V85Dw?aJFXEyt+IQeG{{d9qq-&YnvFa3XCq)~u2bNg?H$ud^IfP0Eeg zm0$|ZxcJtIT)9j&)7-mRuHggUy|XJr-ON0@-{%CoSHls*3#A@fF41?oip6EbpRI4X z|Kn5Jm{Dz? z=>YEOO7Io_0@Rw&oqKh8I@uQt2K|rrS3rW!gCdz8&o5x@!WLeb#NfmtP$KWrc?Qw@ zD5<_j6Q;6BnV;&1)+IZ_=Hv%f{aw+uHE_xOP1!<`S|eQ{L`hReRUmE$p;QY>As}4@ zyiKSMsPxr>j=8hliqHc*+(Pzzhgg2u(>=Q%sOlB~<4pem3S^gAfmuKR&3k-vAOA#h zDj@Ib=z8^uZNZPpdASyS_?1u;SBFM3{ z6FJ{PJ{Odo9VWd#@OxGW0igWS)hCf=+g13{UokuN=-haW+FLwrR$2_CbiyN+e#_B0 zV>rNmyWd?IsAAed2S_HA z&!^Rmy8jH^Z4>DK@AG&T0RLK#XTG&&gx$O36iaN9{}wsbeH(L0$>TUemW@D&5s58N z834)2mJ=xf`or?La8SH&n%hyb6$K^8F6y{BLMWn+53fG$N&LFM^^$u0J==q4NKy3p z-4B*Fu}mWuv>4=~sP7DV9nX|g-#hqkAGa5tK#!AI83}NAjA?#mf4~uhY{&s?^3n3e zCPW${q_8S(i}&0yWYO|vfJB=MA68A3t0A)`e>PGk7TN7kbYeip0slyGN6%I{D-n%7*(!eAzl7 zWAA4wOPWh4BN+9YyFaZ1F{1n$YI z58dc56BcRj_my|EPriH!dRP>rV@VAO@4iBoK;PD?!jOZ|t|!F+;a#Ny&gnSq(DwCL zoCp-wt5^W4V72%CL;gomHWuT2|E`|k8Bk*G74c^f`Jm?)I;+NvPPvvK1Mz2Ka`}@~ zd`?ID7#51+98q&7uD9WmtI4uVxMt+1?EZGF#@nNPYZr&qSG@ML`ikj+h4gC3AwWI+ zHx;z~^205lnsb43*+9Nrh<%(W{%&pNSu220`3Gk!3g5@|AzshVn2_S>HZ97f{U#~S zFXjhAGzrmCaAGqK3lVocFk*8=C3ohbrcTwng%v$`;r*rl*2y!s?W|QmT_W8(f*9ZApR5N506MMx)vzk@&2z1a zFOW;N8G14yA@+eC(;VfHXQ+`T$9Ou3a;rpXQZnd){_Ms}`ao3;a<~Rv&ekfM8Oz?} z5l@OknYd)pp+o_uwYqYt0}-I(wrKpJ3DbhV11Xz}0G|~>?&{+v9Js>y-p;lZ_{xh6 zzO=xFRY<6Ski2xZWz4O+9Do_G@f2V#MC}IS6jl# zr1bHL$OAa-Wx;bQ4xjS7q3S1*@5lY+2?O=jfiPEVnjX}HZ$#aJ)laT+Z)tp9?!p>q zIUQ1P_pAnRJQE=&W(7JPh=UJK61#BI97HgRY;xJB>*ihexAa&Jgf-yp7}DJK3z7IA zXEFk+5y0KOJ`T7NLjH>etmanVE{_Na8hvArX=uT;T7bZ$Doy->1nLMK)VjOp#_XKD~J?K!Xq-%`u?^ES~}d~K*|^@-e2*V z(Ws#e^|)2r^b%ymzI4x?xcU~;UQx4%<*nAca=EbWn^;Qq+9qi~30Mq!AwnLqoW{y#ojR+<R3} zW{Vz7cmJJ>flGAl$ytXe_Dx$GY&R*u)_$F$LrKqJ`p0-me+qqBVabNtPN4M33X`)o zBk9aCH_I~ky&Nf!k`h(E6@b=-saS}2j^KWrS@7OT7oz0}q^Zv;$Uplmh~??$JQ3$g zkY53%0A>IGmay$+lYMU+*#rsC0IoGEuuGk%9m5O&V0k}27Z2z)$vLm`DRZ*op$d~K zI^xigVp+Gm|DK#^&b}b$s4Gf(u){P*ZP>zrk4u`cZXaqSPb(uV?8qQie&zS6H{h?= z2?6OZ@Vr{xnkV`Dl#O?p?B}bY@9g6isz!U3>|pJ)?g>$JV3@J09AlY&KZ5)vhu`)j z$%3~&f2H`lbYh&6{_PWKuR<^8s;ir3ltj`;bz4nT^@#Ov4&Y*wOH8B(u%>3=mm2!} zQicgwznbVZ?!M&LHr?&A-Tk2*Va_Cl23c!zMnk?<+hT*9d|(!QEZ_H)%~SGlSlw-L zW`sSQd#Fjwp z#En0A&qIf8?P)$@P`JS~0R%{vmv$|FTss32>V4HzS($=tqNhx|3x`k4jUh;Eb&RCP z&t?sX{h97G>BZL#!etUZ4$)Vy!8~_+`wJeuW^Ns5z)A5M~-rQY(=SDh~2zM7HIJVYr=kFn^YhOmG+D6R0*5(ftdefr|fCU~mfhh|n^G}cnP zmJ%Cb3Okb%RayL|SjhUQ%N>drHABuyWKU-Iy%P0%g(UIyYAe3l@>C2wY`{lKzB17N zWM6jVdU`d*HBNw4nAsu!4vg*C zu>ZIn{assT+fHk`_j}vy!dc~3-~Qt$rNyXvh-kIa^!ky z_2hq-8Ab2O6U2l})~DkZ_XtgP@ih59)IR-i_aCTCe;_2TNU1$)IIIL9mC%!WU3pg0 zag1b95NFf4x_oIQq0kWOhe`vcG)S06^Jq9^I#Kk6tEsIe=R*Ib7nOlso%>DGXr3(r zp~qHj)qj{a6&=7sXo zto2w@5%>oW`1+`8j^=IMYUX$evJL?^8^-3(8S7s z6iv;KS(TM{mE58ESK3gZDuopmv#G-va!XA}ZtXm}uT5`@j6c2y$Pf&VnW7YgEcKS)AQjouUQ^!q8ap-)2 zRk>(ge=rTzlQ3p~o-O^CTh8EcJSEU$V4U!3z}cfggyf7mfU9WIz?k~9FU^Dwt=FT* zmTgQ_X)!K@Kx*)!26a0o4rPmjF7g7C-0{oH{4zi6pNCK%;$(oiD}P(zBgoAS!49L- z1lHJNMr+Wo1>z^$w2f9b`Luu{7^m=UAD#=xDh~-nL8V%Kx70z*u9`K=l$5gC55@2w zE8U>7iR#1`y+#&q%iIky3wkWeA>DfHtF*l7SdwYD8)uXd8ResREMF-~wP2iC<%Yp6 zifxymuK)kBk$e1RL;)%tUTSQgHOL1UmK71v<-H0_9S(ItM%qVtb&AQ60j%W$^RfZs z;RGzp*yl2xOJb>v4j$l71h}((;U6C1$BmCrlO0 z`VE#*1mns{hC+(eC80xq0A+W-nf=t5Km*&npXuJ`kprdyn-7M4_v3&YZxci1=9BfC zHT=6#!i^VMuR}w>EQAg1o<4I^`rduJ8>s+Og%+{YdXZnz5}7vj{_XsVgQfrHV5LR> zsP(?)F)gy*YO!0}6Yz*1Y5&fO^Lrv|Mt|&yK(P^|vCZVE3++(;wvxEv_vcos8R}Ic zObWaROU6ilhISd~Nu>vgDn!ClJ;W)^dXB>AINC*#MEf~I*gTpv1ppGt8ZzVt%vGdW zq=Qp5&x~}+v7gIuNf)X9L#5oY>!(7Hmpf&4^^5G4)7uDPgC2Z*Ea(Z{rl|*D#ELor zzWXfaft6lhKm~&mDh^sXGR})!u zP2HQ)X~`?D-zi5|@-!R5u`!#3)ro4}J=rye5#!4ZfGB6OdwKx=c}j}i#IUTac_S`>z;)=gMdLgg}J%e)(Po)aUsC8FT84Yu5?V3d;jN_E=L5AHD2f+xo_^IV2 z|K=^Yc34r%b?5|28x}k!-3rN3jjkMxOcNs3M;-5l(hA~V1yI8A0;k*e{vk3DlOlVgC<#N@Z=-%(j)Ib8n;%WSxHD0Q;#n2Oro?Z>xtZ}Ur2VzBy);~A< z+I&elxUMX6rtSLb1#26VXXdg2x)tp^Q7I~(gdkC$=NI(Lk1^ns4qT(LeR|hx#Aa}o zG;SC>G;%vVp48}JSCJCC*jxiiuC-og!~8I1w)(W7Pvdf77&ie|X)#NM zW(~8kSiaGE?a%z5ScookFf# zUvXg74$GFZ22bggnkRAs6EQ-1{rhq*<{TuwjlsO1U%8Hy*WkjvvmC8CP)( zxGnaYIPo!YK4onlmkiDS?3~`xGn@lYTJy8a1q6fm@3G+$w`51`L_u=r11o(^#-PnS z@@26XfAj4}05Ao}t1sK+RUWWEA{S2ku7R}f*<%>CW(?)CkDQdE>SgWL&nuV;9Ta1U zA&Duvc^y{hb493_d80d1I}~h98#_Pyv|e)i<`A@8WGU7qg6!$&*hu#5wtgLSp_X;$&j(uNtlyYq&-0{Ucnu?FH}Xmn6Vj^@@zaTQ9hq_#T05w~;ZUCkDi)=cURsfw6Sbw9r}NFuv(9sYY0eMi zs;IbC(m0mVNEQT7PD%|Oa+sc?EzR55yp>)4=-^eT3qL?fT^TNOCYCrE1-9ZnLhM~J z(Ar7=1AQ)inFqkNyzHgRZoJ5>z~D5qisMLNxO!r-9t@k)di|;8gzE@xuQ__L@{VRl zLTpJ~UBYYWvYumru;qAV9U(o1P!s-*9{kX;Eo%){J>u5QjQmeJuj@tZZJ6zRxDkdnx>`T2n($mINW$0)1h7sUFy zTedS#iSm$Lr|%(3OhznaS3Dez#6T25x-&H^mvde~(b#zNhv zG)R(cwYG-)U4pNQCF`Ls-nM>(s~bH~<9pVHKH;1OlrGGKs5y?oT9%D5c$%gZ!^++m zf%Pe&V?86%ECvamZsD@hh;X&ZQC$!7jm;|Z5}K?JUSFErnv^{4CRDy&bX?4g4;Y6x z`5wZK%&9zuA7BXa{g&^)4R34u-y-%&0Qlib_f^(6*r2pkK~n`@bU6gy9Oh+Z>~L|m z=vFd9D_q*@Ts0Lgm3wP;F2XtG(yOn8KrxEU+R8tydGHB>mmd=n3(&}z1ce(!{T08Tdr*VU0 z|67|Y(E{lh|7g-J*hvca(b)`5*oeFB!3(8RKIvfooGROziFek=k|FJ=l#G+FJk{Bw z{R4#U`QAe(V615A(aL9jl! zzzvx1Ue$)#ZARXWyFDlHhyK{w@jun&Ts=vg#l2e=yCU=D@ffFCy_; zDVgFlp-fDvNnJs4VIYJ!W+kBCXdNj$0AA^0jys5gn#u}m{E78q=TG#_&S2f*=zck= z6lATK25|8HaR=vu-u!n6=6`W7dHY_~(_@Z&KRc?Mn)&uhnXUmtWz9^v_+$SMu}}?e)A{l{UFte&YKhXY8y&h!5sR%6qa_zF@~AeEbC021Evf$!vy*Z z)^*Tiws+SZg|z=Q#(%zUi3Zr`xafHMJ=|=P)1F;~wyU9?WlNfqlJ&EWi$$arijTPZ zIjy{Tn{Y&61;YqXf6DM4^qQvK;gt6m19$ zU8x>L+69Qj&szudq#>|8`*EECq6+A(uSW>p^>+vr5EjsdVo*xVgYnMSU}Z?BF%9)-lk~iql=+Qwt(71z zT-I#J)cb~(qeufT9ECOhG4Lw(_aVps{1*mT*xJ@Y%a4Okn!Vea&jB7yI}%}v+<3cW zj%g2!oh2r8h+aCD`Cc|n<`54_&p-!&`UdM(*I@Cvs=P>ii(>5V+Uf1l|H+M$zutz} zh9ipdkLV!$)$t_p*X4MTFYaf%R4xVs8c88Ga)8v#2O2t5_7ooh!_%*)>lu!DJ`q>cX z5g9;J)LV&PXiVb*19QqEE44tYk%%O$)n;fe3jJxMsO;&_u4zjHh$aB!4G0fA16Meb z@HED)W-u&RZRAHnix)a2n&)8tbx}Qv?PJGE!B?5iPtLiu-Iow5wp+Jp+xCyc@0b6| zu?GfHRykkYBs?LKfGXSa4}JM^O_BJD5-%$d!6<5Fe5vNs+JxgE?$CIq233j>2ZeNyx2q1G({m~yR53zs71Ax+Qmb62KM zN@4YQADj?KE^{D4cweW9LBmROJyALFFVQ=@LQXgoGHmGbI#OY_RlSl$@?JV3-I_r` zW)qn;EUSF|k=yaT@Y$tZ962V_roK$=v&hyp2*JC~+8kVbhLlcIBAzSfw=5{f3n=1^9S(KC541S4acpAc3V_VFc zaSF!R9NwOK(&%r~<{ZFj8x{LL>I8@LNs?21)lz|+Aonu1;DvxVPHqNc&V^m7J62?2 z&;ZAvI!!!c=-j+RYJ4WZ&6VZ4q<{Ovwb@hoP^EM9}E>tlJriDGvh!6pk%T4vuy zke@`tpHyzlH?=}?@h&ez_3cgOtbY#aS8TD<+&Yx!lFQTYb2pg~H$QUW4Aec#G1b6L zdq`+U!yRR|4$|bYbx9@OiN$J$>iGa*AKX=b3)Vh^y<_1>HipncW5vP!R_y zrBb&E#s(5=6LbkSTiZ} zIOvuaQB@n3S)VIcz&%DtU#j#`8;RipuMpr`_ocx{k=|O*zLoeOjjmAq^$6Gd?5K)f zAx2@*qdhfE@92Up48|H4c>l)>YLWkku{V#0dj0?ZqfM!VB4sH{C`*U$V$~GZn8~btyF_^M5)-)!|FpPZ|zpHcJ@Av2PeV@-CzticTZryIx z^}4R>xji2D3#e~r`f=%yh-PEva%hU0!UPez=OgDyH$w1pV1O^YIv5)ZEN6LpkNp}P z{;zcD_vQf3^(Yol@ArUYkiq=nTx-|8AGMDhUH>X zf#8S#$f;xCqC#x%RDjw1!Vs+1OseMR(KVodKsLzN8u|#i8fkuSC5hda6@PT+rKuRh z%{6iTzUSS55Yp&QMxk1?<8L$XQ1EQYx)(bDl0arEvc2NC=8V`eKfJ5BSZD96zfk{> z=0x_>>nMBHz1i>gM=&{`NZ1yHT(2nX6KkfSE{xBK5vDPW8+7VE^(Pp}rzlrj!-{~p zP&r*|y81c)n>nZLNE)hP=0%ax&_Cnr_1{Sofh}P8{;OzjXOn9$_>ZhL=tFf2#+duI zciKz+%o}s($O~>!T;bS|2liKGGP4(7>x!Gz`NnN|`1t$`eI0W5ZQ^9=Q1D#;##qLs z#_K_ICDJspfn8I|@EYpU#PgZd!9?N)KKYB|npKxDY+-O-Sk)mTeqE(qEgzdqc|PF<^ksjYQO04KebHF<}PLr3F+ zn%V%RdKOQJtXB|GXt=Jx&ngv{BMT`SeCDf0VB_)I3Gs}((YYqeevRd4JW9WOs8{4w|=+J1dE$B92cT_;glVN{ji zb+#?q^`Fkx8;XBP23q+M=@%Z1&KzMm*e>%v1P`j*h2G@@!Sy1Bl>e32T z`tKeSWarFm>ntT{eIm^NAeUGarM|7i*0H&o$B#Qp6cm{kUp`!1F+skVh9BL|dpB~i zv_FBE>{hp=F{Z};GQHnn^zz#;A1uuGzwAsSeJ!+(6FyjT?xa#2KGM#u?|q(oQeX(dgVri_f9Td$Q%E)G$7W+=f&nyPyXVE2*O9g`*WcKg|M&lY zrQN}ze~rQesS-bJ&%|9v!Pz-z2DTec??zcD4t`*~Lwozd#9RE}0yD8WpY2QCu1&K4-Pf_;1|1a@PCkprL!Lpd zYBvNLUj}U+hw8&?)d91_veQS&=1-$pMqNq>PU6y2=aEMsdyUTu?NXy{FdW}f*A!q& z3R>H7U)vlWDaJY!v66GcmkQP^EubK`EAw8Ko~^KlOP;{{q7RjyNK5frrbqbA<4J23 z$v@YWWdsTn*StL5+1ljSG_Y0Jh!;1CLDrM8W%no2`+jV7QtB7?_+wQv%eu7KGe?Ve zruN0IHN4>l?Yq1U6!-Mp!uQf%d?!ei+MFz;XsoP+k^^JuH8`&6k?|pGL>5FVI^7>l z4q}0_YE_`}8VzS=(kiTQREaEQ)pt%^w0i{CVC*EN+L=F;`ctvH71_}5dAoMk;J>~| zU=Zzhhhq8w+fmS=079arKey0!NrQvSOD6um_R_)ld~>2_eA7$k_M-=fm~3Q>W_=Ea z<>+QCbMkTs89w8^B4E~d<>&DZ4*D5<&PSdExes35p0BCrdz>KcYS4-q;C&d>91OX` zf`};wG=`$WfZKbK)J0U~7v5ufn==5l0dIEmC`5LZ`4VK}hpe4Ypg+~9ezXEek_ytK zi)Zp2@nacmKaA;8MU{T|kfLod3G`WvYig-)Yja zr%TrE4Rzy+>k|7YHw5nJ=Df?=<#2st?5dv5We&r3qb1RTK4tvdFJ0NcOu(HlA5vOWEriZO zNIl<8Hv`&XGi!@UpW>E-`*R=8BsAb`Fk#=^YW?tMkEQITf6{ukr0E_xNv?kPvWu7m z2IoiVlxJh(x6LUd51k^r@97-H>ZvG9Lz|bE z^PwdIsjj>CBGQ_Fbcp-idZL0rJ8_TbpXYwJ_S!#5crTWy#(qcD>NmujcDw30e4gxQv-_8^i&iqq5YP}0xW+1Vm(hdvBC*?gFz z*enrhAPYc5iiC`;ys4Q_$~#%iO$>(x_=h#{0Sh0n6nZFUyzp1EKwdfDXCK<6CkXL# zlo?uSg;mOd8jc7rQLixP95+Os>Ppi_<~w0OINhaUqAsV=(|zzSB<(Ch7A7|j7A`v| z9fuCZZ>NI-M!zUS5%@}gm=&7|0slxWl>!{*hL~EzinlvIeUAPMc==y70if~39u))xaB_)M(y{!QNyT9 zld-7wpQ%WT7rAX2&hfY+u{EB=(5La>V+B+%x8){8BrchGpm zZh3i3F^5va1GT3c8;|iP^(q)R;p1?d+cWVY9BKbF0{_(t2N!n*r@pEpP#Hr`+(RnI zH`AQDnoy>@iKBeay1q&nubPSYZ{HmXO{F(rX=$+2s|8K2pcc40)xvzQwq7#c1+mX45+$&y_IV zJ_QtG8pIsCK^<>peZb`d96JK7o@~V1Cw1b#v(YA}zfw`F#V6c~uZT4~FB+D}zNUyP zTFA>rUj%K1Ev~rzdKSjndjE82mRNT~!{unrg?!b*WdvRUyEf$1zxoZK|BOGs@*2du z4l`P&Z+`)1E3q8fA;xdHbU2${3{e@Zr*LtU5ho~#s1j$<%U8)FoUtqfOT+mEQ>A8i zxmL;Mvb)F$g4g+m3^%EN+F&F9(g*%!`v;P)0=o(2`odJip5ONd#17b|xbNW)%3N}F&igH^{m z6UFl4(#^_Z)qvSL*~mFY%%-QmrHP2GzCpsekm;k?(4xw3#{0P}tyN1UFztKGinG_N zll!F;^;2^UC&vX`ieZWPvAvHg3oC|8?vHREV9R~g^Zkf1wS!4G!#eL)b?Tp8srx0~k*Kh@7>B0#oiiygp`E90ujzJC_tOP8? z-}+(hpH9|MY3ez7))XIbe`cr~%YHX^17F*H}qORNj;*bKYyo7mG18m@PAn}MAGzX!Zug@vut z4uTL7=-#H_tTBVDmGV@H69Y=e&5{!!z9*z(SqPrAZ<=#Tq~S-2%dmfz8rNQ^{8eJx z3o~)AP%OTrUG2Hw(PRRKuWByoY6eJ6`-kkFT6nZL5o)T~nWAbWc2?Pyn8`~rlvpme z0bsRA(?v9Jx7I35+gCqh$I5){s1@5Xks2~iC*swvR;oWi#ZcG$pJrG*oE0ZSQNg+B z`%YhQWu+slH&oET@qbjhXx?w`Y`1-ul>nyxQpr&r!zP(VQUdiwQ1`g9*~`$E&;K@z`5w>-+8iRYi$hspGP0*$otx3H>hvC z@Uc6uI!mRt(bad8Tnhv-{}6YNiGV29)S&y>fsOQ0>y-Zykd!3Lqo9^?*Aw2BETxmg z&`(iXCrmw*hZq)-d#=@P5g<3VwH4<@TWBJ6q?VtkmGa_MEDGM;esBuU(^BCXzN6<+ zb831-#~T60rX8DB{`7zTu|Np?TYl8XN$1Hv)gD?G9F!KMhh*$J4P1eN*R{IU)*Wk0Ge|P$rX*kcn?ypW~^>rcP6_5Vy1k)8%U>r8N|4r} zo4v|9^ESSsxt-73{oYaFexVu5R|{0p+SR}{Y-Uho&2N@7Fq0^?oZzE0@2RkDOviQg z*7=!Bz3ne|!Rwoa>smgv>^<}6OdOxI=PvU9vcM4kmKVHYrQoFGd$`F9948zFCN|hy z*)gxLg$d?7z+Fp=5)ks3DC@b$T&Z@4sJG4f?RI&RWXP~&!P5y<;wf`&2@VM98AY6{F5HY zZ&V_>VEg6zmjYu*0E8NG&DTX96CAfQ8>&HaU99jR#R9 zK>BTp1>Etn(#o*vp>WSD?KT2}-*z+3%@SREy)9({g=Nb$fm-bU)w-RZ!(>96VMp^d&#+H1TLBx8Eg zmm~gca22B$c`p3!bLN>7j6QYEnB;Lqy7CQ)XShXv$)&@OoxMBuOoH`0&!*`b3G~br ze&DWvE~nHGt@NDtYi>IA+xX4 zHIy2`u~JW(uM+j+N?nS*8xO;*en%djPF~lSEryB$=;iSvLFYz2>6U71AGiYzCG1FM zDprdA6BT@4GD)_)7vk?vzBBw)OvJA)4d1SH_09UlTeR{u8Xr&bvV{?zkF|erD|{!e z7Y|96p{)ls_W{MH_uIJgne!J(U?eji5jV%G$niymNx?JoabSEpnc%^Ld zsO2ssVO)AM4=;Kg%BmmZbn5uOwE$XP%FTW2#9cpNpT~Hk$+MQ2nN2UiU0P^&XuIs0 z_D@47)9*gM;rBlecO3?7&C>!mgdm(958|&Rge`Zmb);?j1Kx>l{VjPeW_cEkV0hVu zTUVIgQg^@o_U71Ku?{Aax2#s>1DG|*1r+r#?a7`o&pn~F2` zeCy%fZ;l(+8mg9-VRq>c8LifzFOyNhNgW?>OLg>qf^O{5=DI(pTtTAE)+Dw2r30!o z@jKmPM$H5vFy=zCw3MlL;XMjcmJ!doKC6H_*V;!0SqctA_LLfRoZ4rpo~}of(R=fJ zg*Q4|=-1DNDb;Mgd4|`wok>KjmutT*vQSs|=vXF8RIaa1vk;`6Xy=Rqy6@pm^|fv+ z&#s-p!K^f0^BZN(dv33NlbW@z`RV`84GoX>`6K}u$QAj#n$i7N%7-2k(*%J(BLF^v9VQj@r>(%uTs`4o<)w<#3CJGd8)hm-O45zI+Yo3DfPN*<+w%g#Ut6N-g)EhE zv=MUt(S7dNOh~+DfOVHYNm&X;w&TSaVpN*@dI9bNDB-!%dj=W@$|Bt_kdohR!wZOS z4gBTd>M41zSpR#cR{4WG8yG0mh#Kc2z4rIp;J#|)tqA^m3)2k(YtXb_u4x{@MF|(F zWOJ5*JF#k;@Z_!e`O_H7^5S-FP*bZEN;bPotaFx_hKK$o!oWQmHt-NJgDwFkDi3F?dJ!cuy(CorQ4D zo^%hF(jT^v0CQSUuACwHZQuK>HPT?NcBQ$GzLdQe%tFYEkvraNRy`OZmZ3$KzjJqI zOqtoe+zK{29Y1a`(txAP8-!B(H(Vv^*hm^bVPdt?F#gJLl6>j!8t|{X-u|QT;t6IvwFZ$fhsm!9hSUo`l7)MSmukm&^7LF?B2z38qsv5OW zpc$I^S(c}k`*~r%*omuDfPRgcBkV_WhW6X4MF^*ewxzi3hNRXl_m5-G&i4u#U-2oO zxo;VDy`ogaATGK{_ou$64zbEl0`ByMU^%FUSE~_#6*(Oj@0YBV^qVamm8i@pwQ#oH zD8cb=erWgtOSBPipj1sT8%ng6CLH}!JetSW?x#C=XTYZdvifPS6_z;DfG?&0@OE)` zRQsxD-PjZBfOw?n|De{Ybf>erPibx29aGXUoQ}Y8#sFXHSIKKalN_n(9=`mIwWXXG znrZEPpBt`LT9+`Sr7up;xkp^DpX@HLYIGUu*4X6N(?3bfDW+`{LW`kn8m1Yo4f&4S zo_NCip{DG z>D{2p1MnCOFeDh&n2w4K!Id}929*hU|G>eN9I`Ch=^hzRF@>qX`J!Z_ggc9Oe&{K+ zyr4BU2(uQD*@TxAJ{lxjHR7y66}1o_Bex2Zne&uYljOle9JD9{^LRoX!EXV+7v>4F zYNfXWx1R3Qc=G4inQka|%9WTF(657(I;At~Q|ww~}k6;DU91Yg0AS2J}Gw z(|P;fvTVQ4Su`7Km(t3P6Kr5`QDx(fZ7gLb&~M;L0Tr(I5$n)0osb z*{p0OlcKQHPyEx#S~qo0X^Q`nZIFgx>*tB}M} z?3h|wRLU#T{lQIt%yvD8x@)HAQUJr|eYZ~-?BNSa>iFW8E}?Af$%StJX?np_pp?-+ zD!p|ci66}9b;kL93g5$+sr5&yd)2O3{3_FvNRTi+J~&+dGoqSE#hKxz*5Eys);hqL zUKf|<8gM0XkA{%hTu~l^OL-X^Eu3G!PN{PnN3ege(n28uJ`S8^$EZp7%%Jd(ptJ!&8RIX2o$SFqkKi#t_dfJVt7ZLBBv-MML=Oh`Bo zJ=;bjgCE8u zn_xJt)UOenO?GYWYZi*-W-JERow-g=$f{E^=>eL2xVSpD^L%(RfMrJM(Ms=jH`EEf zs1bMBbb{MsJxdifoP4_A0JJ^Yx8tmsVCfZU(auX;Ij7e>u34Q9o4k~;R^6Jt6;UcP zGqBKx*c{j{la;PS)0O)}7Kbg!5S+T6{e@zZm^{$@L{Xc-b~q9mzWIB*Vx0)q#!;_J5CL>Q&6ZqF!mYx z`X}s5Jcvyve(ZVoi&x9>jQ}NJx0j*xe@0rPe+72@E1pOi?ao!VB5cOO^sRD%ADe7j z55bdPJDvj~@xTeCVqfUlAYB_m#QzpB$n5u$xG=ye$k#C^*3(@&L8(qfWHt+%X#UU; z%=&~+2w%@kLP3?@b{L{$FbI?8+{+4hZ%M5``5#9uF4Lepjlp2?Ki~ z3v^y@Ue5;M3mG_j;bq>uj~0gSUJpk!m&8Wyk<-8V`aiRdEl&aPbd}z+;!SdAB09Ak zx!bFJ9Ub%DboAY*L~-J+bBv@47j-*|PN|X2_eP<x$O{`T;I-B`p1T)6F@?*&bH1DW&0$g7Ca7Q1;YUbrnn zrWOHgY~=}(do8{Iw*V7)Ck#*WR*1h5pZA;{BXsN9i>(_4n&Iu9r{c>NmcA*h&@8LL zTRb8#+lI?*WeZ}?ls7#bkntm9}6n{9QT05gEQUIgUrtE!J!ek_37;gAwh^_ zWf=97?vOjMHKqAEyf*&`UvAW|_<-LavPrsrxojbS(4g?0!x@Zn#wFPi z!|=|K%|B|=0Gs@WvD24l1Pyi!ek4(5q0kaQq6iR@U}7?lQj46gYXQtv z02F}$N|-Iy{~Lq6|4SgI=-CMdW0DT1G;VtB*QWQ^?G`&FFg7L`>Z6V8l?=l3ozwuD zb!8*n(x*auk2ns{YHP z^B3_{u`^KM5!>?eBGxI6>X8o~Q?Un+HUYS248KXD@rapsLMg3W-09VqG{M_)OmaC( zXQoZZH}smz)C1D%a4+!lYdoN3uiE1IEj*(PtnhA`1^LVR%5K$ISf{PoeV{hGF)&&6 z$<0=Yg)nVdbav#C0la|pJr2i}6Hh7lo?N0X)vh41a^LF@WCJ;6l3U4)XQo`Bc0c)I zYLCKM&@llhXl;FIUBp{;U4j9!Ezhc@AIFsn;}=rfOP&XaCeJdzjNDF+2##bO(t5O{ z&$!s-vh^P-5V;PX9JqdVo8L#?yI4FxmaNPX;(Yd`0HvKDTPoR^0tTlJ1*^}_6QRP8 znOc?g34{6!03lC4deYF0QLDZm68(ujld)G2Jw;y#*xRo+<3V+2uJQWOF9gi&^QW_R z+&}hH%*b*O1!%R5jJ;R;9MNy@{XYP~AZyU;{vG?p4WBsbnp`?DcJyG&L3`Ey1m3yV z;V`U_YT56NpVosDl)#4?1e0%}jA|=SeA;;VY|?G8tzjKc06EJhN)VED8u(O)w82Qi z|0&=!dXc$<$zKFW`%~(B#Yd(qc6S;*j22NVjVGJ+Ru_3WA{B}h&#x!B(_Hq=1Fm1Y z6tqKvGB){wcDyDT^dOOrzJN8heOCS${W^ZaS@xSMiQ7x7DqO0Hl{3w_W+`a+a}(k zUG1aA%+5z~Cx`DD^wD>>X@6|jfqXJKlDbxp6#d=sid;3Z{k8jH9S2(iNS?P#Y3HYv z-XbJ&<0`&+r~`FN`!Bp3-|uW$>O2l@_YS6oYQsG>ZRbnmE16?BptdZGNzeDNQJ6|Y z%*1Rz3qkSj&CQ`*gKY9UfA!FP*KCD!ih&1tQCCF>OyH9luLAZPDZ>4mF8i6BCLH%U z9^836feVCa8d(vQbL8V6d1dFV4hihj?j;H8quy^BvYi=W`}CjIxW$Fvnki%yyTJ25 z8qi-=dxXd<=Z@?K;(Si;$+}nv$XlB2KdJzIGTmhAE`SCOO@i00EF-ay{?#3G@bczl z>VppaTpTV&Qv1Aqx4r#pwDHjMjH4p3&{YosEmWUE0_G@j{%+pk-ixoB>3Sj&ak9~8 z1wHuki2A8!?5W{^$DPVQs<(01;8Z+%I?}Uk6AK6dx`t4vf;vRe{pEEV|7S$IK?NOG z)p#KqA!Z6MVyC_^z0bnH8ySChlnB(8g2@ zqe=MRH)T`F|8olb57hf6SL%>CKqJIO9q}5xE@CEv|9vD*P1`e_Z)2WDC2pqhxr*o6 zg#n{m+j?EY>$G58Cuw7c?YNE=p*lFr__DGCP;^P;knbTA++?LDQ>eZp?;b?N(4O&} zpO^$#@p>>{&hT!x3*Cxr{btPiP!oA1@0^f4n!?eKb(iJ!TKEmoLecS2lUz-UN zM=e7FcFO_=uEeB#HROMWp$A>2{0SgSe-C+Y0?7`zt`pf6A;DVwV6ZEZXTXjD^iZCO zhaZnN05kSNseSyJfss1LUTi3}{MtY{PU`BWd}Y=Sb%|j3(_GL-cMjHZe>UbZ(Di)A611xmt9JV4nR0N_c2%@-^q_U5CFHC(6Hs5mi_K9U@{ zaU5HI(#EOd;p|%@lk}{!^^5D8>wYHS!IO`_?&{x9z2lDXe2eHO8~BxHWpY8myDeJE zTz$kVqkVHQPSTtgVtzsZeciymK+Q8l)bNv~u)~dwbK`j{JQc=wkO<@9=jVxP;`1ia zX&M6SiXTS?l{)1N+!sO#D+o+4;(LQ6{S3DJKF9)hfixL3fVwNiQ+p6UHvyNgD1yzSNvqOt}7-b<^KyQ%vr?i!@-YdD(-C zOUrVb>M`my9@7-hbBju~tUis&BFx|>qy}480sY&LGQsrRFn?E%9mDT~wvoOrDPz+B zeW5urQb@LUd{xD33)lB<+xcuM4iQ<8M1^3NrVY6eq#N%FLGSnua(?;V6|ruQ(-~ap zT#*_Ry83AJ;b((IzWkMDm{+_b-Z zGPHSt%Z*xxN=`DbOq}~X#_Oiqv@9@DoDh!Kvl%gS&i|w=GSuo@xK0-~J>Rb520&KZ zJH!pY^tbb4?3n3v%uZLPXRiuGlG(=Uc$**IP;IcYf>O`8H+Zi!_?H5(*ffiF3M5)% zMsxKN%o3zQrs>!4tv^@${0$Z(K}p`bT(3c8ay-CkSL=2kxkj*} z)>G($rP8#vuj#ofiar%%yedQ9QdiN$R#>rI&4ZU|5yVyoM0#}AzCqtCa>!f4>!tBf zM(k)YFD=d+UC~~q0DFOC%OP1t1bU>q*OPmfmw0X8zs_~na({06^jiPEulG6OpWcid z&(eDk9VDpwJujTwO!H-QF4_mFlV>c+jY{loFeWL^{nyP`9pJ$dsOllKca@5XZ0Iszi zJl&@5wC}r-ldgXTBa>pRu2Zqg9k9Y}`L7*@ytnNc@=JGDdr-_mzC;9Y zinaWkqigXdXya?ZkOE_W$a?QSov@GHFHsf>RqIm@*?IT-8nbOLgfxA~VCg2b-Snl7 z#e;FVy`7}wCW(bmTQ?*isUmVWs|i&(CXwk@ivat0|Ki2p?=^*WKS?nMMUo0TMqra~ z>DjdS$acHB{r(m_pqJ4Xu!?451opFa89ir^tQjzREp9xwaVz}ETl26#iUk7FCQ7M} z4ZHWRqG(%N(zUz2nV}oe(VM?pOR{X&XZ+%2ZT|gi-oCoeGN&NEbaMOp!P~>nE=kW~ z)GC+rjK>EoEwMe~>E262kjagUwrn=4!92DR(>p6oF0NP}yiL+bsOgC@_-U4|P~ziV z_>-i{c=(6zt%&4z<>!w@d|!Ry4TzfOTp(X>6ZRFJG(>NA@4{^FF!DO{JM$U*p|tP_ z@ZVOebXoq7zDDb>N19ZKi|=*QaSCtL*xqmN@2T&5o$*#kXQf}75}!iFgilGId}Cin zH-|vtimrY>GIhkKi)581!v;m7%!&!$T4FyOsYN1t9b)MSqh2Cs%tXeg3+q!ls5ho; z(zC{avJd!Q8Vr_@Bv?fjOm?`CNHapkqY3W;Q}m7gcitc3C#u(a3$;;5#E#?qVTi_8 z?czo!*q0Xhbxf#tf&vOz>awO6F={+DZU4mPia^;+5iB0wibRf*n{a2nkcI2^;TuH8&ZArbfrE&W~{bsfGG20j)mp9DkK_y+b4YPZedogqZ*M{Cm5meiO4F3>KZO_e zMn-BmG4EHYb!%3bV$132Y9{Izw9aikHhIZKTeZod*!51#E zPdK)9rtDk>>px;|s8oS0SnWINlrrPmCBvP~I&uJV?51%O?bNmMOWBgm!?NtoMr|9k z@}}6+^2gD-pqbNp3VfVqMx|1b$u6<+4WuTy;JaKuhJ8=0QAfo-b==Zr zv0$l;h(>i)xHI zvp}|m%6^P!4|50=?jeuMexRD|GBb#hviE-ham;ar|4=X zRyEOJ>1_{|GK~Z}J{G(1i&?I=pC@14k604eH(QGn0^b1q03V1q=;VuAHBrM3QdDa8 zLo%)@)(7dfZ{Y33;cdj>+-7^`Dc3cdkfySej=4Sb2Gg&k2{ik^wE!H!r1Aq;N$AZ( zBS#>{rzNGisg8_Suj-kh%->)1>@Y)Ls&}5D{@fE&jnhS{n5C9)g!m$R_%}Ps3On5$ zF+3PHqA)cWE6UM!a>|}_|JR3S#PSP%Z#cZ~4PFnhZQ7QL0y~uhxoS!LIjw#1(F#)d z+X<0CfdlWw+cC*{YfHhlK9(EQJL*>hzj=FIUJVZC6%q*)rO(vsNsC5WeX`2kpz5Iz zW>d-N)Xm)N5UgrZM7uYN!+BJ8_UIwZaC_|B@P3r=343~P5Lue>!@8!paa(;nU}GqN z(9$iv|4Q9szc1qlw!vMUF5o}87e-H}w+9?$m24z2RtRbI*nlMIn%x$4#1gtX@x+wq zg5PAz_r}e4fyAO)>7(i=FK|-(Z#xgY))|N`{GX5E{`bdF`pJ9RBlq^0!n%GFjpb&0 zi8SuxemCnzFM6%7^+?r4%X>_OUY}S@x*tSYg9>h}xPYyTQ^~K?S$PgagaV#joU*?p zIQ?`571QFyM5ulhBKkzsHjw~2+#}biwja%c%Uc_p`#3*1y83>(w&SAD*J{-)3RK)G`JDb_=DyyHJx#^(Z6-9vd-@v>!Bt<&C|5w`H1 zC5D@NrW~?!I9W!TE6=69amwqsdsUUPm%^XAp-=4DGr4>`ZVPsEyH{FC`jz^4$)c6l zWRH8kimLb!BC4ufct>@41f}90elNwG#q=lVw8Pvu48|gy8ad)`%!j!O`N}Na_afsK zuX$)NWP^NS^OtRPp+ivYieUH>&pns2KW44`rgwi;?fJz8zfa_Lo{(u>vk3lB*gf!? zb(yD@A9m?+^UC79V9Hzi_m)1LwLga+$g5{mDfJ588+;HAMcK8@n-WhIml0fy`7!AT z38$H=k_pUZ0_vkh#_Ddw0jQOL4zUt~-V|wR8ilAr#HSBex78}eEES15zw=XJ?;I5N zHW@8lUw^Gp`r&>bj`(AmXDPf|tfl?U#=Xs`6cdV0XOny+?~hdW&w&t2uy3Hj@2|9#1RJ5tlsCFMCh z(IE0fG`ri25(0r7);+8XJ6IYd^qGlOCEDd6COB1mgQ?vbEC zc%eY-3E?-SLm9ytm&*0{THd5O60JgN^rQMP2dRhjgdW`qupww0+FiuH&ftX`vQf$p zKnF<`G9CUr9h)K|)7aPkUpbKz<9ZfJ2NWdx9Xr{WA=NI}cvPr4vnK0Cl$O$;Pmd#a zzTvhXDfuVl1d8_1ECi;GQ9BrMZsx;b3mQ{Ow9g<`#QV@%uWq&o_zoO1`R2o^uAE%C zie~&m^BNtw-}6>^Lu)>9lJ2y;{rXyBZJ_jX<3FGZpH(g#82eI2N3243-6O~&YLlG~ z-|zn`R{eEhHa&5C&)T(UL_SU9KA2Wgn%i&;d6`SWCOrL0xHPk_bZ@xh<4uKchal5) z$3EMuLX6+Xu2;Pf=;4DX)*gU188i`+yhJ1;9wSMN5WSSh`!;D7e7jJwV_~ob(LDeQaPLc@z zZ++?+eO+a-i1V@K0X~tiCl?sQ$XhepI3Eu|0$gp48r)q*FjP7~&6aYci?N~&xgf7@ z%+fhxe0-m}K$+Eb*ft`(u&*(PFx1rul(*S|w>9QINV9LpqU;~r2~25=b;_8H98o@| zL}!L>NH5J*vrZ+WypAI`4q|qLc)Y#sqGAK(*xY@N{BlbOzO=eF#uvvyjdk{d9UMi| zuCXThZtCdl|E~?1{r3ur4ls&3Q=9Disz0kUW0)~!eugsdDQtQOp56rYD{}*3Ha`oRIH$_^ypJP~ zcT$db=8cb!Bm`o)Ot+OTiktsVHU9p5RgMR)mEjvpx{3QceHlBaae4ks-kApT5d2|C zx8PifD3z@|)`NAbsuqTj2jpp6+3?i$=d84b@vr_F zb%WkfGSCCBXF?T|C0WT@?UdzrAS|i}9A&Y;P@AEc4mE1WZLg}NL1aU>kVn0d zg29EVn)@_W!NU575Gj|-Qp8Qf0XC?bPu#boJCE0!eeYCK=d%;xT`jSgNIwW9wGJ{p zUR|d=>C8r8f#tXh-1tDm7nz7X3~$4`yH z*$)n?)HK4bpX;*Vc+c1>VwQ`Rm-rQ)cPJ+?JTObdwu^T6*YJ_$Zl{}~m*6??Skl)1 z5M}xE7}AF6WaM|NB$nWsB|es^+n;a$iaD5IbWlUqNUKEfy`QOfG={Slti%_dA?+J#cga_Blk({RG`Qkq59%Ylc~B5isITBb@p8T_m4G{f z;X;i1HiW=q(@m$U>X?z;y-&TDxE^wUxAp8xsHC{W96bd4NJJ>PdsVJ`1gN-g((-5= zC|Y$0LA@XYNA_AIdr_vftL#ByIaBjV<5%)2rwdjNXr{Z-4PN_fkTZwRwN3;b%8J@= zlioK8>brWlU(UXrHxkB_2TgsE#;U< zgYF}X%%1|`S~ssu&0WF-!p{djxClQLweqQTLcnnN7|WF@(F$3QZ9X_exTk?UezJNL7K*x$mb{w(#eXaF_gn;elC zOQJ^sYzZv``G?M9Gw)aidP#l9r^kvj3v$--;ylcheZoG+` zC_Z4YztgzU$hvxbmH!L43o1TVqrIw@E~&)+`wRyf;^7Y9V??QW+#$!`7t03{Dgdr2u{v($c*a4B~tl-8zw9I0MuK^j1B57*Nl(FU^I}(W}!1y7#irnjxr;AM3?yU z4pM(Ux@Lv+@+S1mp%S1-q}yVDNaIG${8cyE3(AN41uafdv?`rvVS>QH8#O6`Jnle-t8bRxF5@ISQ__~Jp}lr*_#v*NIy ze|?hSJr$|FiN*S`vKTeRUUFtfc-EWk^y5O{8BsVcWG}w_#FNz5rFZ$PmvJZT7dCfJ zXpAy@xJh@Psf&ouN`It;XAy~=l4F7}ybv%L~J4htw?~~x(|H0v zQuj}*$1VBqx$K6#9x6D=exlguro`nx8<(idQ8mrJOpe&PmtOZzp?_+Od|vYLT?Y8< zS-t;>-a&pNfq@`)s22;)>F&gwac;O|hRjV?LLLFCK&(lMwf#3mw3O?J@i8eR#P-EyuCXGOhibPF{`hxz!Y_P#G42 zUAH~rE1Xt-AQmQLzfeKiJPDbjoL{NJ`5=E(3-$|pl*N$W9KzrW+-CrEj}XU~h)G?W zs?$1W?(Jzd@?-kg*RNhI?L&u=ZBw?!JVab+UV|#UxMWHW13ds;nod4|*^PK5r7F)`qe zuCpzdg|cbIjEYH)kGt<$)Qr8c+W$K;e?5YLA7sV|S)|?AXg#~WzgEY39UGEiEOlGs zI8x!JQFC|F8LGq-SzNu({+h{AP3g84<0d%{M9M@Vry@7CixGOasc-*JbRhZR%S$gW zT_6UI%UxgN-zx}M57@Z2l;}Sfpz;+H8?x5SJ5$d-dv4+b^}yk;j0*vK>J!L`ipQ0; zhgIet)WrYKNx!M^jQ}oz!w@v1cnFG`wz5%yJmbalngo&i3nvL_Cm;H3vR`uKR$D)2 ze<2dhpJMuGR6a4WSa!_etTWJDR?0W@t5a;npriKs`dMs+L`?Iv8Fsdq%_>^g9QHCaN?yL;`{Jgm0lD!QfO0sO|5_)3` z@i3a6ZO2?7N$s<);$HP9C$xK!6T=Tl;)WjKHVq zkE7dNK1rDZ*Qb&vCpTLb!|a}j(t^{Y>Ti$Y{?t#Cz6tw8xtJ{(By!vJ&CS;r-*_TV zbja$IT~x0`HDCJ5iwRbq{8h!g>el2bm;pCGc;_Hwdu;1lLv+;p;G_pXQhue~8SNfL z2llHH4!7IGP9QQP5a;3tty&-y<-sHKKkDk=tgl22!$lLIs#;YK7e~I7r39zSM2#Fo zK0PsguA7l?z}+{%C^ry087>!+arPT3eVM`&lz!m7U!dp#J0Ys@R`4R|MTslnj)%&h zc7L*3_a=s(w0e$X-LK{flg#>&4*IaHI$Mx_iIpEe^YF1P?P2ZYgV4nVd(J6vu~(-@5hYH49Vnw@6m_$9WB3S5xn3E8BywPad#6;4yl}8+qy^q!12gx&2*$ z4Knxr7|#JHIJ%1`AgO`RPB@mHkPXfPt<0ARrx80gH@`)Oy%3FKN6LOB2L{4d9Q)UJ zm|~eRIhF9~f&Y)MHxGxp?f=G&EwUA5iAbqQ*~vPCXrVAl$-XnTu`gq%ESF26R0xA2 zDYCC)7n5}cWgE-LGIkS&tUaged*Ao>y6)%s{SJRP96CD8`FWr3<+Z#&d>U{L9y&*- zE+#pHp{Ppyv?_@I!t+8qwvpy^cuGy%p2RUv~+hF=TUr)R&E#7Cu;z!ppD!ZRWSnI-dy`i3-tZX6$4mp*#;(ZZg^PO#|LLm4HrqzmDQ9RV&zu;`wVq#J?A$X=Hk+E{CBzszn(>cX;JUjrs6^1*} zYm~Z4VYS9Eq%hcZH-qXhx55{$9H5R1UHzE&jbUq$y;l ze$sF1Fq?AUPGfk`fch2otvZVcCh;;GHG<`VOXIbVH;XQ%^(oau!IXW3vi;AENq-Ic zmiXW)f1WrYXK#Tx{Wr&YG==z?BFG1U7R1&h!PlD6-VjnJ`6RxNRSKi8MZEM&o3~S$X`>S+;+pAuZbyv5SAtLK*?@@< zt*{OCPTYg?tSBNhM|`v_WIZG_uNTN2ot1=}*dx#&u*slgw=5-zR)#@4 z2ZxG9mx)dWKwSRBpKRLj8h0f&<@K(T?Rp;b1UL_ugSoYs>b} z@&KDNBA&}B9LFV1WF)Rr_B$6c%C`uDdO0tj8#dj|Hmm-t>r(!DY0S$IxVXM~j<$R=+XGx(h^ zUm3^QpSrD(CE;~tb`1$@iefp$S`XPi+>Ya z>K167(U6!k$aFP-OsI*%)Ccor<`ztu>NMZ;dnBcLj}5Kbu5C)B*!>1eB+4CsnX=z494x`PYWhCb)H2zLnc|`` zYNJD+n^+>fQOAH`_`-^U`oYqw15yffJq}^%8MWVa6Xy)7{>+ie5szQv**IUwuX{F?RbTxWawhpm;-TA zKaKF2{pin$W6}*G{x+N#2yf{`K;S_PYllAGx znS&bMf*ZyjXV-9*S6A9c|7g;q(cgOhLS42l6YgNH#nsO}k*?b`@K~J%LJWsqzij^< zyHN(L88IvNj7kuBmSJW}%>|MZ&K6hmh~z|O*a_}+F6N@h(yH9MMB1sr2JemLEf9y? zlmk{K8kGE#6pF^uBrR%$4%G!Qd5!d0Cs#G-!glj~-TR6fI-49>k7K-2!^sk2I;cDU zj_1Fk+oun7tK1lV9?XhO(K_x}ha56b7HKrhXeZ(*Qg@0Xrw>3bkqI)9_RBCezf^S% zfWojy6jM4{=d!kz(^Pg(kk;uZuV}$cpGb>2xu%B>>YupG0OOzBTc<3qdmH)YL>xGh zEcfGNd{z@eeMZkcX!2H*&&B@dTK)BBe7kn;h?A+-??*}-`67;ec9Os;By*!j38h3@ zd|OZXI{W_N8a~Ump}txu$Y}3KcKyx7ghIq0k6hvLlr)9`A{f zC!s_))?daT_k-fXkq5Ys)ncR}cijBE2`mtj#PgYTLwB%!MjrzqrKNt{yGL826JAz*}2k3SUTe zndGZSG5!dfR|o2*4)>+DW#VAP4yE>+^ydW@m@Voiah?gLBvI*->7+UY^UsJXu1Mq} z$fkBryrv0>e2i)uSY4}Oricu0W~10BtgS>p1`JImea1_HyEihov&6v?bL#OuLGO}KdAPq$+^0C#lWJ43 z0l&vz*|t!Z{L5Ngl00NDG0PixvGek+5{+p($7E$=(&F02qB>f&IW9k;R0^M9sHX3J zdU1KG;|9s8=r$jo|AYqOo%FCf=c2CUn3&FmU(0u?3X9r&BT(6ZkdJQ1joge?qiYhV z%?+|w0$4;h_Lq-Oe5F2!Fo=v~oPRW0fxkH;7;H$GWA)Yi%Bv)?Sb{3=3eIV8m-Tfw z6+&eRb`4*;*qO=^4xP-0V`Vzu0EA?@lYTQ7KW9wwET}eYNA)Gvr8AG*d*iyqY+F^+mj^Qea zDwj{w)_ECAtn7hJ<9;i8+5SsC*oVBqhqdFCriF)<>WDs2iQ|J}4%a1B{F&DDA$Yg4 z0+W9h;8quaJJ829;L1JTHnj7c&*fRLACk9fejJWG4Pw>-Z+V<%&Ch4Ho~74^h)NJ9H5UbE#kczG92?)4}s-8=SY+eg71SEB=AGl_no z{p)-(JXV_uVM*5Bzd5#dMt=YJ+=#R7bl#afBz|A&Ygd?rVXm2%%CKt$2TXX#bBQ}TE(R9CiG8#cBK)vV?J}gX=8P|Us(9%iZoCI@R!d` z@df(-Kr?aR3ASZFD)`XoAL+VL{!k4EMvOJZh`$-BefpeX^8>cP_|J_zpXbB6r)6d< zM)F{Tt2FkuDSJjjzZyPh)9Q3C)gqzSleRIk)O}AL5+AK-B_wulsxBn{&APQIOwYV^ zV+*qr5*Jjer}K6^D}CZg#euSIHi|zSS|@T9lQhH=KapX~G%_9p#+qwsU&*I1Z#LHp zHaDDq*a!mjA$CKw)Dp=<=uj@NlJI)eWhVDzIt|f&D4rB9O8&xTB zuDxBVc|MU!J^0hoi29JmWeo6@{e>8 zE+2&d#aoo*|`{GmfciLMI$w!$d!uXYoU_0q@z zEG9G@x0qqfCuFOINdZ%DG4E(GsRy@OMrc(}YMm~HfGqxiiQ}LoBzklm5-gTwKe@yN zZ{2FKE$4qJ{<$;+Cd#bN+;$m$;u_(EFe=s6(daQEvgp}G!01mzm)*o{yRtaB0N88t z7@D@lgwhdoU*bI%*?=8(_1rZFwb)XLtR&y#rgo+~W^H7!UhXL!AD z8QC{$UEyfon6IQe=SZBGd@QsTMG>X()?Af5P8kSj?9~@Su09-^9O@56D=Upd8LvcJ{#)6${E>n4WvEOfd zskf4TZpZBAu6}CU*B!l(&1b_kB|EAcXU)iaTtV@V17BU=RMM)j?Np&Qf5W?5E*2uf z9z6PYv;41f8P)-K%F);Va46vn7*R|7Ftxm~;=u|%vD zd*`Z*Q@+LNb04${+~AI6Lt)TDfSQXYKO(EPO>h9|(O?%>K+qVj)!Vwxps(=~2mXAz zc%7vaouLNqtN|B^75{LQb?%Ri`;YOfO-X_o+d^~fu@(g-HHz;`f70N&rG}UMUC(~_ z)djJg_aw7`=g=_p>`CX~fV5&%>v1WU$B~t1i3quVAA$5wW0L)u6E`a@=YDjCJXU?M z)y9fXoxa0wOuTpsWX*g^$^@4F(|h;&(%7FR&kA=P_gps|$0ihD$OM#XIn<9+<^vKz z?aUjMo;{giS0&}^d{8pI@?H4h>;IWv{`Ei-8Rh!{-*qxP-qytEp5?&AqyA?;109Sf zYz9U68=jw#J^j(I-b7J^ZZ zw(w>fd8G5i6_l4*Ks4(g>jW;meu0>w;Nab}8#Ou^RmCWI&kd;&q^j!$#oGjChJa3}9|9Jve1+@hX1_WeWbrW5|o0iyKv|V1?KGgwKaZ z?-GvRIKIc-bUv(cIE66jx=)Oezh+w$>F{j)LN#*QXn7cN(zU4oys#fRw-@)^*M`wjRbAkeEdb=si zt>}yYDXHNSFL!%_k#(8=*AbR4m+alty&0Mr5<&jqu$V}r#0)n8j0BfcsH_ahsU8M0 zyoxXc#-wk|M|_@MM8$nV#k}Wq-`PA!KD>bHzm=qt5StSlUOcJv>EY z9AT7)T^tA&1=okBZX26=vQvsIf7%tTy}3<%FV14+6&`h>)G~ChFbEdcdL7NRD^+Gn zy|7kvO!>W9RI(Fe*?vevuup=e;okbMU-pB?=$!g&3f&!akO>JL(mNB8A$&H$TZh*z z7tDuIV!HCz$I)yl(u}xQ4XiWQ1QrWY8VPPHTYZSgvo5a@3rsTE7O@Yy#{E1yB+vpg6QqR0g8eiey1cz zwoUzc=SR}3#DUIJUzQCdNU5y|b~#h=B-N^`D*^p(5We zwp}|xlY`E^APUbdS-vwXse4-zRfjF*uekcZU=iqCi}OLVfTLIbmaNCJZc_JI!s4zF z^nC)H1`%Br6`4nH4P51FAqL`wxq7*?QOR+s2-TOX{*NX=c8mO&dmGw1aNqAIWv0Sf z(Nut^N%re)AONsUlBvjp_L>&yr6B^Im5iaopHWi{w1`|mJj?Sc5kT^{4bjW5y+(3^ zi}h?6d@I8nnwn$C*Iqgf&Dm}@S4e9`dzm&0yTf6H{`TJhi=Qb?319+>)8IG7mAOc0 z>u5V1Rx)|H9#NBwoSz!8Q-kqzzC7>|Pw1VEZUS1kD>*134!mxdA9$}NT^@a;o|721 z6rcS5U9$Xy`N*@;SN}+C!wJB9 z_NBqJg<|4rI9%d9Dgl%)l|+%Ph(St{QZ>8vnq(POjU9yZdbr-?h*)W{o44<>GNa@7 zM+7^zpPf*js=n&#{1HcfS0-X5()|>o^|~ZJM0H1}^lZ8<=EV?|0aGWD{H#fq)x{-2 zeA7V#&d< zud0K=y&zgbv_w(o%(iKLYOTG9wGblH4e9m@O52O|m;J4DES5g4C3N(a&yB{j^e}~k z*n*|MLw)}#mhtyMRNXFj%)U7`chhX)_O22$KNGiMO}HdU$)D!^H9&{}HsvxGMF6j2 zJ!JKzGK_OA;%ulwN$nXKp(h5H<7lt2@G+kgMk%d>f7Bge$IK5JIKPV|zHx3F1Jcfs zSYA(C`9FG|ezl?#xt_4WUO~nRrV=xgh&^kB^xNycTPh>aebY7Jlu7o#%as1^qfSrZT z(X`X1e$w{2x8u0Hq@Ect*lx1%E$EJys*aW}@%`M}oe+25YjzDhl&8(Qy;aoy8>xjZ zcwvO8^!K( zNc5B|1a8}uyufKL0@2+)y-Lz9kS!ZF;z$I*gzC83u;7`nuej#G{&F5VZcMy(yZVW+dI zTiCH^8lY{bk+^hSWHCxg_SlQlj%Nl-tdgh!_+p{h>02a#MLR`Y>Jq1^AeT(eY`z_? zO4{?+Xs?%$B`^>3(P1`!Z3YD}?)h^DvqNCnEIGO>Ie1^`v_GS@ChRy6`_l0vT|ifT z9NplhwhxfQYTdY9v451S|1cejM?=#SvCt~pp+bAo<29j17RbPKW2j06$^M;bOy_03NDZq=wW&6m<%03pX2D- zuBxK(Q%>un^&#G?m)tFC6fEtUHik90^Ba$sUHnU?|9^#D@n0E~k%aWnW^YLuR7@WF*GmVIT3ChR+qRSc zuYmQ~m;VbwC#r~4Nae04W3vitggjQ+Kr1T79n2q&WP*cc6QI5JG#NT=@ZwA}O)cUH zzt5^Ko468NXz>ghU7!W{%9HKHtm;n#gD5b=!LZRlgSj>@N>cjb?TYG{i*YnXvHrr0 zO#2JD9P3t~MX-FPk%bI0U0YF_3t;E87aflEE{F@JO@FA46m0N4`6S~qwwJT08ML1_ zm`u~|%a605C)y+OqTYt*YUS^>btVX+Z6uttKqSu+6-{+aov)gWWZ;Orx3!H1!>_z!c2-dFz~L0M^l6B6uu zdoz=P{X4uj%DN|Qt|t(PNpIBw#u~cO{seFu#rP8uhL@>sD$8{O_kU-LlZ={V=`!;J zPExut$tf#2>b~|uLjut(Xp3qC8VnMNbW8eXFKw0N=c$`qY3m!ho|Netj4FV?_7s3k z+;C%I4BMZUjrr2x`Yum*H?!7(=viW}@>#gO@~Wv-Si(d0Lgb<~&#tO>FI9WF%VIB<7smNmoUow^{#yQPWnZRke^PQ3kUHFgm>~m&s*dQsZk{fC;sHwK_+^^vP2)Wq z-xFoAB9xqDheK9w!PG(7B=YW8N}#|t5bh>J4NgvM1^$>H*B+UhQc6q5p1+8RH9H9>7r?xMok*2K!h zMN^~rhOHWRbjTvw;4DSCvdh-yhM;D&?{baAj_UMkzu=M&1Eyf|rdI)~^scF{uU|G7 z5gD}hpr-I$9ryU(2yos`aE4rQx*^4Jknnb_jPH8dNXRDL3aQMP^CwtNq9}p>C z4M&RQh-Yg_*uP`uNBtTTF=Ed38L>>xds{}}_84P=Js}sIs9VaR@ibET?THK^EHZ=QAsk9FUPCR%u}$o_vUbB zc0Bg!)$g}e7?JR2<6D>lAhg>Z+2Zi^K*ReS}Jwz3_UMTRN;!gf~YKs|1-778#Y@`D8 zfr7iLG?9NPS{@m-^2^C@;e2n>ICh+t`Q*h}i%=1Z>7O;h70r6SaC5)7|I z?OeZu6pLXWJG_SktsLMe#$E@q*ND8 zv@T%<*X}^SvEf`3QrAXre;;V6`kQJj4M@lV(pwajgyI(PE#xk+r(2PilB1Y4T9yZ* zz0?5WDdC>S9*e<%9QX*>gKjTO)ugBh$qxkvwR{@5gjN}`Ydt5Ed3VGGTkrS1uaa_s z8K%iG9$95P6#8+(!&~)|`Bqt@@)sRT%OVz%5*C(_Q|kuwNK@Hg>4Ac`S$j?IPEarT zSqyY*-|qKbw>HrB3TECWO=)Ma%}&MQVT%c+34$Ev{z6SjaicU`zoa`ER#L|1af|T) zHg>oZ9nyxbeLO@l5#(UtC9pRixB3%)t42-!+@IU-FG8Bmjb^KQgt5rWs=tB=j;arY z>;dP?G94WIlto>3kYlUy$G9@>(Mx$yZVqmT#q&b>;fC60Xe^0<=wP)DpdwU3Qhv0WUn*dFhmv@hXf)`Egr8EaM z9B?BRn6cI*GD^{O<`|39U6M8*T_(4)35EHx72dq9RZcMQ=dRHjLcciQl^&Ch6Id4b z6#s2a`Gmk7=)v-5cIknkp`~_fD2-!Cuz3WM%~7H=v6ALZ#RemKv;nu9ctu5?V(w2XjxJ{~X`zr;+<5LXGZxn#f=sL0_@-h;tt7}HM7LRQB1~mo zDW^e+(S^=@z3#K_*7qROp!^NZ#hk8Rt;+eK`DSq=f6KnEE@0+;&hSB6!sr8n8l|yt zLs{wO(Mi*Kc|FHUQs_5xj)?$61~4jFOQ*zUmBHfa@F#)|!;$P)6-HZ=vXVFfeB*x} zk)Yn9E64&iSa<8=c~?9QQh^N-o8-+b%7M@5oz~wfUh~@>F{iiD1N`(0ny@6o?cf&_+{9&@qiXY}y*hDsk%5ZMQB{urezucwkIx?%}MKbP(JmV92B z&y7~L?WsSC%=r2){oGUEb1N0P0W7k_b@R;;d$aJ=64h4+$Ce8~TMf4zs(j_U5M;^^ zLu8oFb6;g4M-AoKeSAhytrMiCu3gAxnJ?R!`~`z4wZFtjeb)7Dsq`0(DZT#m`LvxX ztX*+gY0h6swW2V}>p$1D&J4`60w?ErZNT~)$9qQd9&hAnin?ZFZaz0$dWGGqE)a>% zuK+3%_qg@7@wS2Wxt2m6gUmXA@+^|wUJNK%O8lYQYn#HTsoB`b12{?ssQoKnTVy6u zfU;vW+9Feh4kN#x|C9A8?X?iq%|qKiXvMBq-5ScI>OR2Mf1);aT)}zZ(a-Ja z{oR(ENddQPws~t^nal;i%Q1$KA6=#4{w3wL-E|5JJ$y-9Vo&t01E?plb_RJ+o#JXP}*{?VFFIwQ~3HriwA`kn93UQIX1O9!KLM&Y-oM1%ah zn@|^Hc2~Hh6VPVJdq)`T@0KQ%t|2ThRa^8qQ#WdtMH8usw)aj$RAU_rQB z1Mi#FrM<)Lu*EumyMzY6RF@#j`GS31umg*6fD;RGzI%czfEHg2^BqH)T^ue5^f8=* z)*IdZg*i&YpeP)?Kb#U+jS8EP4;;Q>fUOf+^hlS-mwuL6dRLM8gIzGv?Nbq|XibKF zk!5@I7SEQ2V@$_uj^{#mpv#szZ!=50Ub9KFS7Zb5`hOuYjiak%mHm?t=TiGyilx2( z-KL@ga8<(=eljQMJ&p$B5esbUyAux%Jc_KOQbt%01`HqJZ@LXk2(dCj%k^qJ-aJv5 zD%mQg{xMp;H0VruKkZpM)LRd&OpbbMftA&pE1&pAh@L=u^z+mRix-nh92Mdr`}+KL zT%do;k}S1PGGbjSYS*qj6T!4T@)q=FoIyB;8Sxc={H?uJw*(L2sn~uS zx7&kDyqEYBY4UG#|62>dCeRO(xHruiV1@-~)=yX(!-wK5v6JiTiTHu6?fB+fz}wFM zZB&D0?2L~E`{scJgM#fW0J+e_AN74St;V;T$|m;?odc)fD!}1*mjfYY#pQNQTLQhk z)9g&FWSN!6Z~ZG=`;bIT&qm;2l%27q(kZKXFH5y(K|&b|FYB5MH4>)&P$zlHcMrBI zBhj1xYHGMemAElgBY`^_&-%9#Y?t~K21g!ZUDYmT^QYaX?!M&6UwgmTFY#t^Qwg^v zpW0Zt$C}HvRajVLzEnXqC0ES<{Sf|wIvlSrpW>#Q}t>jXOw~^dv#^WL7!#N@urQ%v7XfG zOlUlj<^hwe0gl30K9OlHNG_TVx*i{T_+;(5baCpHxB&ka*}gz$86oh$;Rc-i>S9A+!kWa7JgYS-VX?n}_citn)*LjBysL-Kq}w+)OgikzD89n|%bzt{Ca5Cu=7J`TTq*13gMybyAC zvNWQW&6NX|yc*Q6O(!5Al;iz%QvOZ50@y>PlFUZKRdXhul!uk&xx*W z!zp4ucy4ZJK&%2XEJ%Jg6>1QaZZUXW_}rWrEtcmIj|4_W-4T9@FZwj6@FV7{YwpnA zyqgx$-U?j){%5s+wVoR6nqBnz!JV{W@@K@*w_u4p9`=<7{XIEMSQe6TBq}~Qnf*F6 z;a!s~dV8JYQo(1NfKQE5ktp;ScfVhVig(G&1L+f6)ozS+qHw|5V4)^&qR>0Zh23l# zO`(jFV(RkdL&sRd@`gr$@SH7UdB^kY<|l z5Rhg1eX;O6HW3*tD~VGA^G5hwSF0*{tIWpph+%DJnmbILupG#J^Ys`SOt{}Nf4IPP zB!eHV2`4DA;pAQCA1SL|B<2p7)$EC;GDdj9DYQl-Ed~paunrD=bJ>QdxRS@sDAeo& zTt%UU&%rOu^`6+d8~^aMNc}Yw=idZ2Jy#Obk#lw9*D1=FxCbX8DU`#Bj$x)eEK!}H zt^GCDb`E$mmQPU%0<-$N00aCa13TJkpw=0)b1&2pj=91M`|f#m)B>#NK(Ag)cys%2 z1wyY61YQD-kAT3H2h^=c(oBwW))uY795?-jir4-$$UM+c?AG6er#MF6jh&>D-8u z=77nX-i%5hnl`XSR`&I7botp&F?nqEU3K4GQYPuq>l?GVG3D?!p~f>w+`j)8EDxHJ zriK5R`0DnK{Gb<#BO1Wc7ME2{z=Ex-8VP_#;+rPgRN|ZgHzCQ|wNNLr{4^z4iE=k< zW46avk}v{|6c5iE=P4H!D#P+#?(Xb7QL&7T$`D4gBryMYK}sTUo!fk`!-{0lF4EJ= zq0R=J@}sqAZ$HT|*~z4Xs|1S;ke4;be+)13>|jmbr(&^%?}raFF4IxWBtHr#87TAH zg2e=A=aVEK9*A7k8`Hl%nSXs8(kWnKJ=%K0%cK7-FS+VOp_1BiI+$v}rV<#3OH3e# z)^BV%M5DDiH$3lH%8^q5?Ynn5psyo@>H_+j-z18z~rO8enY`M9fBUT4L`9q$=JC0CMp;@eZi%-`?hNHyouHz;~EGpaw{MvCXbK zMxmd-@#C$0_Irls)}hHw1Fgn%w;`%Ei2_Ls-Q5sqbDlWP_wbkB921-Y_T)qw4bw@I zRC`naReR!{H2)tXYkHkb#C5X0=QYp#8<+3Q8!PG2^q=tiQ7uUkI|mlnggdc=MJumG zpQQ0^-oOyNJaQ$Ak+gZ_ zk-m|2p<+JAOPscg(IOr^@^uA})?&>Fmp09Mk?f+8>04-ik~VPY#z4cN_}n^}0f}pt z8y!t$Qc(#&d#$N1zDm460fa3%B@_E51da+A^6xHlY+GY;t$yn*leO`BcLF_4@O|A_?}r{6RlhabG(=1N>b{zxjY=7vTQ64P>Lz1d`yC%mt1T8>xVb`e~j=2hPo|H zX(#mRw}W*T(91AboC|jnz?Ohh4V$#9jsb?+)!$QUd8d5FFGNZTd+tBmxi&#%lV;?{F@;mM)y zy$N@DI`^=-ECb`t3yCL`lR0-zZ*ABCe)LmxB%xB2!bgi&s#mgo5h$L86O2F#GQOBP zC+gxI=4-~X6bN0O%Q#o>H{`OyCqr^i^A?_;k&b}cU;E;GZT~9xaGH*zu+xO~OLQrb zZ%$`*=vO}CS?v|Ez&6lR%JsQ+TseAElIL17TLb2)Ft)WzWH;&h%Ui!U_re*4QTYQY z&(_VL#&t10LN2_&bPhD$`_wV!u=bCye7iYdGq>vOw7AM`P-W45#ffUYnz*cJGkw+t zc$gL>Z!8Bz+FJe^u2S_;`!7Kr>C`o;t+fMM%;Pr;4B`v7z!I{jos7$G7X{*)=)FO- zPucZZupbnA5W(^szS`;rN-Uv_1K7?b%|z!Z#St8a6^5O1wZ~y$BJAFgxC! zEpRmYy&$}J(ZuC(GT^nQ$#Cp`U?3*<%rX!lk#E{)nXI-3xHcu#=ISgcf}|4PqNh$c zvs|E|#{zN}$M1oVWwmmSqU?h$^^FqCkR`W&x*__TgysI{vziRUI-+{AxwXFQ`LFRU zIB(bfpv5NBVy?O4kI&~+0bF+C=Wcp3o0-LfI?9!`esPE+lX8F7x46LXeAMHWQ>_D|STR=m5)E97J+K z0z?g3+dI4DpHeL?I&6Q_aN{-$T9A33cgZGpw_=>OU=w;kEr}RykrEz`7Dn-nzNUC` zk!sQrXTe}#xIEtB=Mv=arKW$h+6uVe(rGewLY?whVJ_ZdG!DDN@r#S*8~vy(eA)Lr ziDrw-;`29D8C32~Kyy&y=_|h6{e!fK=;~QP%*(qR>XQ4a7+{Lx_G1S;Bo6dMs=I}U zKecyaL|rpW?=?0bW`t;t+WhW)4+jbWf2wS4{dmc5f}2pY(|1B}`e3lL+<%3Jx(=P~ z?+Hm@sS9`z_Ds-J5zIyFmQUGqB*(f%u#QjbC7;i02UJvvMIsiwV>!6s&zK^zFsdwH4AVYVlYYtM(6o!VI&FEmT}Gq9S`cf)5pbaim;WByf2 zcO3%iR&jY?-S0>6`rdOJM88bbo)0%pRp1iLr0Zp=k_xnNCxv{!A=BA&E%-O#+d+K( z*kTbpGpg0~yEWa3iLFuF{=(hbOnh_ocst7XdC((`^UY6WUd>l%^98!M#}5sEl0`(m z&Yn4VJ-~u1uio!&nW+_ZC&G`Sw!MvS3;#o$J>OL=F15dG6Xwh>Rm?>ikT}DF?ltG_H*E4Y!+Q&GzdBJ9 zsLKAlpl3~4ZP7oX0h?nz#_nrSac|UZ%n-sRenTYqsW$Kr@RC@&m{f!{2_3c*am8FR zj4JmW_P}18D9~$?-PVC=?_aCMW*ZK7m-N7r8$rSGJm8F@{K_{t(7p2PAZF{5t@50U zoDdEcw21w0?W^ul3}n(`)OPz4#!|WW+AE9-b_l^=87->WSXp5#9E7n}E@9iL*;KH0 zbFcbx-NmT|K!c{fE{pTyz{6gm=Eq~F{{-7cSZ`)}flC(z)TlYQXVlg5o!M+ab2Zy( zoE&PsHn`0aRYews?RgsAa6Hwicw_Y1O!-RY&LEh{Hs>!K36{|2*oZ-9%te z^hAcD1@!)olI-@Lv8@2oktH>(F=bF=^f=m$G?g0UN2|O_XdbwB zKxnULHie`NC*;MnYLuPaKb$n?c{A5KxjFDoW%@=IjUVm&NXhM(Oe|vcXZP0j2pqmT zgsCI@+z!cq^IySL%)(Y4x;ELS8&u8*HjsjWPuvhQV`K02Q*WbiN0pJEmj+GycrYsu z0+yA6;Q+!RPDyXv5nGw+fGZvCY=8+H3$3?~HJ1UR_3iErQq9*UXgHEtIdzQ@c5pt7 zR=)k*?M3tZ5vgMdNiVWwL949T7xP!FSOf>vZ^`h-*FEH1~C>Z=x}1LV(gBO>RZ z_#jEVlR%)!u<;Drk?hLsxfsweF`!MF&P11+?|M`Y56OZR2nSI*qYv3(B?-uqWI$=; z2q;ksp6E5{?&tju{Cj(1CNtkDZ3z zA~;}b@K?$Tf^RqHbMyPyT{b#*S}G7D`;V67^5y9eai&r=h_?9nQaS6 z17%=<1!(}cvu~7mAJ2lujO{JbHzqTo=hg%v2%$OoeL8*!V&kqHhy9)tZo=I>%n=%a zoUmVFGkMw)W7Si)je+yFVsd(|bt0V+2?-CIn60*dJ&^m^FH^X25`yV{S+Ot>^YZ2g zyZiPWT6YufvIy0$K1uB4lj@NS4fS&@QdzzcCrr7)9}$xm^M)gI&14c!M%agWKlx+S zlsybGVvRg>OJHOq4|TT6K8lR|N2oP5%Yje$+X~+0CP0S~YOIt zxYAG@!Ryfmj)0Y=gf2&$U!#ATiH~P!1KMa59R%J)DTouAQ!RAQb7OY@qL69NY@xBi zlDRtMy|x1CpK=aZ)Q}8BQ2VQ$A(C1!^2OHCmR4`LzyBwhLa=WWn4-FpoTUA`h{hL3 zq$=grsfiWBZfy*C(QocbY#;rv5zQTIi-yd{+qX=T zW6E~S1JJvfDS5OoAuqI3mKo%`P0;;7_dd?1v%mZgC)_7%Db|}tKJoTvH;tdfDT#=L zOUy+-GbJswk{P8&fvez|%=SKYBYj15S4+8LNx2*dsg$@U&2q#ch$|-d|KU0#>7Q{t zmc&t>#faGEx5*QdHoeBn^eH{s??Hh}mJ-iBvh{6)X~^vJoyp?U%A zUM^Fhlv|?!v%USZnlqcjh^_$CSTPDIKYcafWmGX2&b(;F6tOlnUA3o6mMT9@+g>bylOA5k zMp`vGKCyNZ2bLIydHT)rrljre&-}dTGX(8leEg=RPw|bbG)(jJ|r6fEl8{%13{H>AF_eR$xX?}a;}-i|aa zt(M!3V+>uoJj%Wqt`3jn!`o~j_*#FkJ7zVrMx^@x(DmL?O|IMaFenO$G*OyBXo_?J zMM@wl(xj;%~@4Xt3&_nMKLJOThfB*^bz3#L3y}xtr`Toin zkOAanJ?mL(&Nb(v`W8`a!~HQ7s7ZnO_Fi2N` z{bA&JUE%|x^mV8Gv$VJ##FQfVn!JyrY|27&gNNe7Iku2&<(j#h{y+r`hbYuih6MG# zP_1vxfP^YYz*)~mU$mm=t_(^`+Q?JFtf*dw7zN1CAcR!wvU&fbh)SK4>FhJvRz$U?E zv-gR)^vVDcQxVo*1*U7AnE#5s6b1-JcpMlf6Ei4y*sO0S%`Qk0HcZI!45?TU_X5+X zY&C9$N`Eb|u^F#wi~@sa=6%+5Z%m8tQ_c)XjrOU3Ykj?CpRTnV<_S2zdFA=%Yzdi- zyCCQ`y#b9*X=SVjl?Gt_X$qSyXPQl?rbiVhHawKt?!$fEoL96}c=T|RH*Hf3Hn*A_ zT5T05-`OEWJJ)%;N{^W^ui#YXT(vh}5sR@m9Noeg?(Y@=1Nd!)C!`0aT(I9dfK84y zku$L-S4P3$$9||ZnK5I)RUS1BnZ!-xr?T4_k<>3QZ4Wnawn*K-YZ510s7O>$2$$yC zZM;r-9piF$SO!!YU1{CiWuI;9Zw+gu-=dC=b7MB$CV#64m%$QDEBl#Dvq$jEp8$2` zdHq>p0Y%h=N4xcBxeBJ?Pw*VA!Jd=2Cjtzct2n?aoMK(&!qi$_t5qN z+xg^Qv*{u53oDCv$B|5eX!>|xZ@mNDqA3jEqpkwn{a2m*XeJucn4wV14e}pmZvgW- zMD5o$4^iBFJUn!GoLZJA37@R;5y=^#aTvgK+{!kd;HESHP`q0N4w%y%fNn;|5sZa zoCMf)1a1rb$z%WEPym%cM$^HAGx0a6eRGWKD|~Car56&qZLQpNk%ye`#1tm%MKFKr zgP(3;T4_)VPo-)0vfeuu1yWvX4-a|OWQA!D#}($rRdR}A?)nnPR^DU3Ef2NZHtT>U zr-SvU{P4Mb#VzB34;L7IoeNODS6%*0hpg9p7yDEov1ppK+%HJDbN9Z7iJwyrqQ!kP$H%~)I>~M9O3&v zLI0lMkePp;W>m0t;vbje8}zj@8NMJ-@@L0Mr^q+w4GgZ~uHrblq=jkrnN=tlv|GwA zBU3|C^;tYvQw|-U4)}gs$4x(REA(t9CXZh8%!GaTI?@36sQnDGneGFo9Ia$AfDq*1 zL)5}RwvW(%NFE~e|1?QDe`TaFWpz=8b{6eymQ`hGXV&X06kvVf>W6s%+qp0Vg{Jro zD*-Qq<-nB<<)s%#?H7yqU79jyH5P7_3pnfZqu04UI{IhaZ>zB(`FMD7L>;Bm^_kL! zF3F&sp&djcbT|qALY78jZWq2586On*L-9i5%EG1qR_vj5E_5r{$g=DkYK8|PO9|8Gc zs7FeWz&1_4Ez5RmNhRQVx7x@=y8?Kk#X6%}MGz2^_Y6M-NJl|CBUca?u)Z!vhGc-e zlm#!eu~_>?#`u0eBbm;|8Cy_~fsAqdhyBS&yE!Ry`O(Cw-5mQscH;xKF-mA+kQ9x6 zx4$eSf;rmFLw1My==sZYI$OWN?SP=qhKB89`R}OmiR6D~0ZM6Y0JJZa%w~mlE$SN3 zrsIRcsgdsMrQ&`ZabhF-|8};?ZC@3zvl0mbf7wuKiadTRq22OlKA$y?_6{(aB@e(_ zv)VIjo@-!t{*~-Ifb=%=OjLwOao zz_o(nuvBtcuIJ~%Pz-(4i>z?14;7s2yT5i0>^5jX$b7?nlYcAD?z6K-U2H#Xg#4Z8 zWxFng1Gn_(iyd{T>EZ7X;;$(=7KGe*-+S{R3!lEIwdB)uZ)Clahbn5wSh4 zv}f2NMO--FR1Vl7g!(4}+Sl?|&O!=oLYjFm$>9Es1hp0z*V*gklpx z%wn3A3Sg(Q4^~hoUUvt{Lgp<+9dqbJPx+D*rBlWdDHAui$CbLr>=6C?6b@Sc&6RGL z%7pB%G$2!j(abZyu3FN^+y2g%!f!kpAC(mC5189m-ELMQi!LH$!{jueyc3HG_b`pJ z`SD(jXHDxa+LxYm%hCinP;pH~#!0*1^$5Q`qp5J2w(;SK!Z`eE1*|m~E4eKGy}QqC zs$V6~A%UJI;p3}lu)82R5ynHA{AmV#6g^%J0R_4r0(ScMGt}hPKqIp8R^E}fEdIUnNJ^*; zt*6+u&^dW>h+PYQrl)YWm&BD0OpP%dy8tI|Bfqo1%w+Mx%A-pe*kk?W1cqwqG|>an z-a;qg%+fgilxyt9Vnz5IZrGByU|xd13u@2uy*ApxTwvG4T|6ko@GA(9SAJRf7{IJ$ z0O7-{-v-EOxxQB%O-;$&uLG$0-JYbBWv~ORKOl%>ZrJ6D2Zt`GL3HJ!Mzj*X1M%z< zpwiZ2Syylg%#w7-7k|a|oM)ovdoPc>-|a(M+`K)uqRAA!sQ*HEsT8`MD z-dteKyTkT-5H=uC>;E9*LI28b_f=^b9NV-1RLq0*{FPKcb{9z(-}bjH{S~YcK0wngIjaS6fb>3x0g9*Re_m(sgOiK zCqE<=lD>=ELmdi+RLpFntY@_TBW3){0AYij`|mPH)Tav&>8ZXt-`gTZV+BaL)0HLx zE+9Jx8|vNGT|V6^wYOU_3+tY`6CuNMi8-@e$~8gqPZNmH{I46=N6~o<7t#U z_yAt|CqZH`OE=y6S)gKWD4!-b;N~cgJ2I%xJ?(6jni`UtZe~IrxLt%R`RViQy(7RRN z$ptJbfnoHU2Rl8wrKn{uy)D?P+y48G^6q5t6TOzL$0ui zh(%2W^D7u*$<#k&pYn$k{pJGdbs9s!3$ziK^(G0y4($y(yKFUg&o;PT>s;*Ti*eE*+*A^7Q=xuexz3Sfop0`Yps zKpRf|)_)#o3**}$z$ER$AK{{!7(ny`yMD-=H_rVLa9(970od>~Y5#knu=N+TP%*$h znBvKM#Vg}v?mlxhWOEH2y4O5+8-Sw1xP!W+^S52RaYtAKU<_|oL64&zw+#}Qi~I1D z=RP|PE`$)RMe&xaYJl%WkR8s;;5XM#Y=4$?=(o}%o}P^Kr@KevkIrenIJRo^8c;o; zKl<4CU?^xE8Z?(1Wv=fmHR@=T)CrR^h20usqbqcQ2NeG9{6K2?;FS%Ou~-_9 z5h*wq-e$7Fu7_ArQM=m^NC^fnIVAY!Ct`E#wp|;-0qWo*%K-p*qcZ|hX029G7DwLw z(7-9e2F$a;9C)w%HVXVIYCJ8Y?@ZykTO zy7~(vkrD7VN^_#XmComJAlz2}37$|mx~)`cbDN}?wEu0D*yVZR1j={|!09bD|9g&N zOd|&8v)%cwLj|SDf_Q)pAHJ8M+EP(U@BV0xfjP}z4s+3PQHk5N`DJ@D7r^?sT|jbZ zF0e>L0W+`+SQOgBmv=|f@119*v7{CLYOv@B72@G#hAhy0-#M+0+#j;2Y}APgaH$+M zGAMq=GlXIKW^p^QiUvCB05`Q$rw}Z90X;l9XN0se1$UhWPkEA@W72anRBuXmy zr6AnedUB4NI(<^^N9U-$gJx}!u{cNB!y%Gqjm}~6C?+=Zv9<2<`<_6E;6B@0bB%LL zkMs$s6wEhB zhOyQJ7L`C@!@TA`80}Y2>SP_SvvNS2;I-Etwm7b0I-P5QDI%=V3WnNA<70Ut)YNCY zJ2%V5hR3N4SB~2Pvi05ZqayZp=~WB>x^OCh8@;f>4<`rTGtsPNU|;>N7bnb@Tluty z`nDIE+IiEkFft$c7^w%$o}+&a_4A3Ehw(TZfgkv!-riIpDpM6PAXQIhtp7T2$Bm4X zFt0JD(2BxPfkqh5>Mzh^A5T4g#G1;pKRHJv#KFK?Y4T$~{=zvF&TCtdnX%Ou*aF1d z@wv_bwN4G*tn3K2C={K{Ic5@TOa3_U(QHBErQO;`!o3_n>8kO`@l${xvNwEnd3#_< z#`y3K4Jtsia*wndp2wxqPqWH{clL+&G=_p^1XeDa7GGRD-hr?co4SdukCpqDaRDAN z*SI%Kro6G_iuW&Xy?{RU*st@c;;O~9(13ds6)wyUEY060Mje$A{HKAoZVz2}Vtrz1 z8q2mQ1kTyysQA+S3;J_A6gkKzpXR&rVfig_ULnKHxU&JZaIg@ZlYV}0CdF3cY*Qg? zVf%K|YsW7(J{Ke_Dt_%`8NG$+F4@;@g4aKkdA`K;385BbzuDMSUK`%A_|(XxG&g=* z1zK(VvgVt3gWZHc;{A)WN#GIpv&<8lg)eY+n}(Cu8%HN(mUcmugw^9F^X3WDoukB+ zq)LBKddBH#ZUY1adi?53fOo3sgS+hun-e`A678=74Dapx5s#!$6!5q%j#N~{q?B%t z&bO;>E5y;gqk&yg{mqkW$AS>-2C>UMi|2YnpznG!#>aQ;l_NB7hZw;If}`ytAN#(N zkMG9y2%sQKE4%pm+aF_Wz`LXI)>qS?*Bvp&glIA3tMftE zUn+oEULI`U`Lp}&T)=Tjm2_I+L@Pd^(NzmbH7RaJ+r@UwKE$_yTMk#RRN9V1mBh?z^;+rf+V; zH{5gf=B5!cU^#nNaE@&Q6Go7R6D!2%2?}e#ka*D#ILoT*F<{FZzW4v*%R47b*dH^? z3A}E>Xy5vK!aYl&@2hf+J?1VMYm*>U#yUK@^7j%~^=`P!FM})^d+VL*H;Sb#p%=z8 zbyzj5JgRHtx+_-YT>b5cD`Q!~&OBt7>iYNl(bdaM*U0ajo*re^!@KQwu9|Y#*i4u_ zL_VjPw30o3=jMs2U;c$h5BMnqnJrxeXy;PQ;~ha#}>>n zEn@J;9(q&}Y1-rV4Pv&Hp=4b>D|}eHN9PC%9B{p}fE`-_rB&bV5n zG_MhN61alWkI}bJSH4{orRX>pBIibbxDdqf6H9p93#lLUgzY~xtQDJ|iNaI7$iTiH zWuE=*r!vQBsF-@{MK%zxxR;i&ljM6uNl=+oCi|=#XdG z%$_V>5eN#kx+m?s?2VQ_VX1$p{uVD2&lvlv+a6*Lp4Ph;$yor;gjLuKareyk?NksGhh!9eud>CvZf_l zk<-y-`?&}GH{Lnf;!QNL*Cr?jR-XY2JlE3{JJ*U(OGQ(-PTJWU150hZjjEc3YuN1W zo%B#anRy(5-Ax*lutPgv5w$O?EN-vKC%qVH_Q<){r}x_o-_Cv6GVon*Ib|#rm8avWMfT?men3*(a4F4AIwGtXcGF4@(xxywPbRcCWX> zW#7ufqiCP>YI(Ez zh(ypLany<=`u3rjQr;ks1W{RMDd-nx@q#ChFlzEZ^M|Y!G89fAdbjdc6I_2UAwzPO#(WLd~2Y!G+6PT&qfn z?7$G-Gp_)t&V%NjrHwVjQN?#!_X`$euW?kb%gpWk(X6r0O?^~POnDD0uDCg1tYYXN z&hN6*+zBW34vSg{(tCvad=MQ>eA4c>)oU_5@jm@Gw=ulzPPDveNA0Q%aYa(^o`>0Z z2ZBGO1W@~}=Svni6wEwln=+Y?g6>}3M}*w7h1pY0J)gPuaA6WxBaL3%Ookhya>P<* zduQa-`~r0WxBAfd!6lyVP(WbvP@Xw6uY1Pga3Ia#jm_9=8Ynm^TFZh~VXqNcxe(=2t@Qa4K|k_&ry?CSwU;5us8^{4-%#Q)wnv2y_&Mubyz&AW_Y%@3b!{wAgUGob zM*#~co$)DW{=Ax&yT(VBQhyQllIY}6gzxy6YcMXEsZ~Cv`UgR$e;HqnM%OOq8jqWhK~5Ho5QFDdQh$xKn^nA+ z^|hea8GnQ`)T>HaO4)ASB+A#TCY^?!eCBfccJ^34cm1hgCZV7v1m0BGVe^h~tnfZb z*1mRWNa(IW7*YRtn?BF&-4V^^KogUEASfTLb^~azoO%D%dZR>HYUyh~W%$~a>Pq8W z?a9JXJQWcLZL)qc&v}`K#6R-uD} zTYoLv25|Y7FqKi_7Ed#nq0A*r{chc;cMRN&Mh~vMeeE)>B!0dI0hqZu5WlZi!>6>| z-(UwOACk-B6=Y9JODT=3gVHWqs{mc_&%*cq%1R}IbG7?YO<|lH3n^C(HjH3veD+_R zuK>f4{YW_ea_6mrL^_L`~74k*xa&0 zn>nDU|EWkwu5G3rvozzopxsG(#`0wc8x~bsXbE6C+0=Nycwag{x_A>jDYEu$lWZm4 z;uH4v*(jHACFzhW+&K?*6yQ9{QTobm|6l{lXAn|!haIA}+FS_KSN77@^uc|G*UDT- zRj+x`(#@VG{UGpL8h?)x`0eaMr`8^qoYQ*|5Q&0cpQTRXqkn-?3G_~u`)!iKQ+-o) z(je1N3t|&3YGLvU*$epZf*G=uWb7=QaKJ*m9OnDP9$7lTK8QnH0qWDmRjH4Y`(An-# zF6*1;U0sE8av;UnbT+*wfrufm>dB34@Memj2~vWbQ+?nY$h8|@{h+mK0%YHxuin$` z#H&$}7VJ-P4zC!jxUr`c7+_{q{JN*w`)t`loCrT|N@!{hY+`RhSyhFiTKythQ8`6u zq!3g7c>qY4xk1|o7|c_Et4$WQMX%8V!2%lzuvBTM2LihVObN{Hl4#E_vY`E~kTILNnJ|kcv|v)T)W7l@ zB{|GsFFa(kBK-9Py^Y8uVv4Wwuzu6~6pZ@D-KbvD9A~)Y{!N3*!Wb6i{r%?gpi6;4 zyy)b;@DD5I!&!p!A6~D&Ak!9jso%(*%O;$)S^m!KPLF~cS)kA*%kKe_RX9gu98J!( zEDT4Q71@P3zEHy^v0eHl@UaG7t{|xr)I(_1B?G0PY<#+2DP{F-yb|&j*-bnFpXZi< z^>c)8;}_!a_kWzbmv_>-Kgw6(n*Z^A#p%>!F)S4MoZ6{}gRQ$(fdFHjI#xC2CLE>k0*95MhSs+Sv%_a%3r_492JE||T%qQg2R^6eLJrvQkM`|g zr|(HG4k(#qs;YXud-!JsRj?l#jr}j;9}@F=btW=uSS)|S*RT&3YJ~kGn(0sEGoXQ4 zXD@C~j5m#dkT$^zp&tXDbBpTS=~g+xCQZs67FSE*mZ;x;Rr>C#>Cdra zRjGbW)P}k6F4ELNfk5tRXlMr8r-Ld2&Y%IZIX*;i0{$kH;iRW#;FI#uwt-W(Q<=!O z%`To6Cs-{)ZPOv_m*bM;zW#1-D6MFruUS|oYXOK)#YbztjGMZOVy!;k7Ls09<9N#U->Ze2{kJTmuUAX%ca zfA3W6NJdsDKNk?Mvdf9suoR-w;j)_gPVy8Oy5}dpr}HRZaWS0Yxpw+g z`XpJJ}h>SE6VsGFTn41TX~7JJO?qThL zJN~bVg9H9+O};X$k0yCML>jRjwlR~U2&7Q8yUYv2Dq1`ho-#@1t#0fc{=2@p$|0Wo zS0)!yVIy7&-qWJk^#y+e!?7X%{==T%52}$TKJ8YOP6@pun`!&Ta>h%Erh1Jxx(b?} zRQVi>Hh}$ei}p7Ah`58wrsdTg2DFs-EJPth&FAw~G|d-%3(k(aG5Ar*lb+L!TAp%)*_dTsM z@y|nSRJE-#AIAh#H&|C%1m^nEl*^V)h1kH~*fQQtq{|V?x94MIqwXRKbuqQkg=t48 z^&nl}%hR}^oFTq%b2&nUA$KI0M z#isFLx9oZjl;FmmJuxFU!FN}OxgZ*$x(Su`armUgoSSldBi0st|I7kRggJR=g9oLr zz(}(q&#pY?m-Tfsu#gT!S9jb#`)C8w4~x4ywurxh*E74thY8EFUvQ~9Y;sfejK!I( zsZEWtmvogf*GSih@lrp|j9X<45$Noz4Z#XGeJLD$LW6cokjHqJH5b1u`L7?FlIIm; zx`-QMh#K`flcjH|VJBc&K8>?{9ofSV4kWRe_S$ip2Cj5R;!J)8pI9UmCqeE*PZQH- z@Z zHF_KWf)Vyr<1le!EHsNS$4s}LBmTflT!+wDW`MCL~42=@Rou3b+7)(aC3`P8(yg;6Pr4tsN5yErVGo)Ke21VbB=kS zQ}WLh;*J=?2BCt5zn<4%gdNMnmgWD zt=$)vOld1i0er+VM>y`0f`(&p4F{2@WYk8moRK zysFatdIs<@$L^RXi_6s#RYY9V(qtV?>g?;4(W99T#eP2+X3b`{dM1V0_sh6WcbYJ2 zfvaS~qwKSzhc}_7I>|zO@*^Rb*0*{9Z@eH?k@NuW;0?NbAnu{#|Jc`I@OkGw-1-D1 zC*5@5cSYOn&32vzG-%LDgI{G;p{#(!OKUgL-T*n>uGeaj}-oZFpJr+87)OjJ4y=@A9L7_0c@ z)O*AvelUBhzKgTHx#Kw3IKWrVj;zcytup2`v@@5^*(zj!F=k2ihK<(zc4Ez2kXMKH zspBQ83XjMJhoUMt`4x>1P2PIjomEhws?nfx;?e18QKD?R-Nxe)jOimgl{)k>IEvLy zyOYBkINqbMVO~YRcI74*V>vrW(})Ikv_1$VYkeR+_bVjMtz4L&Hw|8uH9Q(PJW6m7 z-S)qpp08kAXZnK2yypDsPkXlYK+1>rJ02gr{rF83q=n(0-kNPSy~pH=wRTWge!Mys zYI5Oe^I*)47Sg0TLKhRrUjdpWO(LcH0wrXP*UjxoNLcm7JV#2`+?%j9tczP1h3SoA zzWw{tmvo<9i+<-CjI7(|O0rt5<9Q@$utgxMNltG1);%mq6eI$>4E)C(DQr^`G$>L7 z#=fDtzaT>>sbaDwU|O7`S+q$7x9>DD9S>|*P;0p++{tMR7dcfFguW%YwO)`y zt~7sRZ_VtfOoBY{uk_g{Y>qq5A(c+X(3ZQ{VN-U~`1p-#+RAy!%&6iKz2T9Qa8(IAS!2qj zZ7*~A`B%gKnzcHSIv8kV(=edwP0x#ocy)E~rgDvA)yqAcbi;Y6M~#=B-J5J?dfGT| zIA{m*lsxBHo==5gXorQW&AtBwTq4ijz8xMhRaxXcr=$F}ar?Quy9=FeU_{b}moFK) z9R{LxdRtNOv1E*itgBJvudgTP<3gcMRX2EzqZFJm?g@2mYAcRK*(+|or;iZ2k>u`4 zL++0PCvt4hD2Th`pF8$GTe8MHAU-X;+gIrNnaj7&M{cuH*H_Ow(xauL&*;+Hqw56< zPnjamOY_#fe9agywo$p#b|qWrI5z6zF>05<%ie62BMO^|T)`E0wR<zL)Jv>g?*5BiAfK8z=%O&5o-pEs;L>uV4E*0}NF3oVHD6vlYqa`Hn$2p{bF zRXWh=?y*y$c~>hw11?P;0?apUN z3RQ(ZYwrd{kt4_FkN3~hO=E$2hRg1HR8_*$6yAqYDt5bu`jMZs{eg>4OYT+NALS#sEd@a?gMaBLdQ@QtXmkRv7n`G$Uo%%naqnZPRKRkQ7I<_GSw`wwS6 z(4M*k-5joOGFs4i(GDwzY3F;YxItUk|YmUz2@3DTT{M5XP;xiwAi-~4;p#^MJe%OF zxO`8gv;{$``;*IQHua8CUwlh?@ZOpNq}jK7XuihZCSjQaj&p>rpQj11 zfCZqsss0qC>|WMGjp9qc1Hv@m6w?dvvbdw=7N30%)28Bu{o@06=f;!$*QUkA>;3gT zKT#ef08BvM5l=VIWiF`Jt?3hst5DO7&D2y+*){zE(F+TD3HiwKz?Dm$V9WGuJYieD z>{E=ZTGVF#i0PFJFSt}6hL*^UeaCT?d0jqJ zN1+Z=-#?1fHfu81%B5lSo%wytt?(dwmp3CtVy(Aywaq$puI?pbh}YFv=Iava<61~X zCBb0Hg7}f2vGBmHTV!gvqhvCt>`_lKoa>y}O79BkT9a;gzVWtSj!O~W?|bTn>mK_Y z_g{BusCw?gJeJ4Z*6PBUV25J|&T20Q&3c>>FCsoYp`-IrjtL%AM;K(-{-Zt0ON)NS09b8B`s@%M5E9rL}XV`;C8CZrZ$kLAc5UU>cr-tdKZdb0K zF&;7Plu~8?oVrR>jbPt9W9EK5t*z(m4cfRomvu!hN&`o z{Mx#s#>I-06AD8v#PjL%JVD*M8-ea`h!m!D~Z1~<%mJsK0<6ZNDOp!ft=F9C)D}*lo6X6>t?EviH zNJ}1@s<#$`WlN9B@qAlD8e+T}S!h8Va3j-R)n$N1Y{fIek}0mDAxaZd&13ssGB+M{ zk~k1?4$qGdwqHPvA?+Hm>7QieJUQN6=bUX27@$Ua@ykEhOItbV=V!gV>u@Ek{Zls= z`FB2iSEDkp$UUSb^aqw#egJhj6&s;kz7@6{e^+1q$>V2~M_d!syTI@4(YMRsQ{<6~ zQ)@h04iRY2Q0@@bh92Np)_vQ-c3Y|+{p?`9qUE?`zASXp_)PhSb>oR=Cl*Otpymeu zM*5mNt8D6;%097k!>ff%Fz1R^#uxSV;uzHO$E>70LprdcUA9uy8dW1}1~-Sh;o?ar`Y`eu@WuJkG2uE6{dKRB!WrAoQ= ztD81&!B;c9-y;4BE3GQ~w>x+Y32zNCp;g}I7P^>?Wt*!?Zg}mU<#f9YI563HIHI&H_ zBG)R1GMa`Ynv{r9v9)OAwmgB?1D~e5Xk$|JL8LdN>2{G#VB(8o*cBez$uQZBSu5qY zU9^NiU`5aI*UaY8?gj|i*<~Sh*38yg~|EmRe`>6XSQmK7i?!odO0#2wf*0VQTO>Q48)O#VBQU0(H-q&{J!U}V#PX~h|vA+eY=?5@k93|?HHIk^S zc;}T~Wu&i9>`LZrk<3=>%Mf!wRD!k4+T>DJ6@5N{0j1viB(53BmM*h8CgyV$c^B#sD+HQ z{)8vQA0N)XlI-Pw8{r?A_vNWkZYEv3epI@X;7Ja7G;G~)vj^m#?GVq?4vjrMe{iqI zs6YmztM(BpegN|1cX^$xiG+36Nfu9GOt-3!Wha@>{WJ|%FXHWOtBXP{kjiIyJg;S+=uFY07S$rct!9DqRr^_r2|t!M zxlfr6K;ud13*4dR7T<5zX<1aQD_2KGIiUh9L^~C3omzmj?CGONZAsn7Y76?eLF;BH z_@zba!;I6K(?az1+)d1(jsyB8c!8SYHH4hY^)T3sROA}Mx*&Rh?mNf~Tqo$&pVc&7 z3_yLa4JDZ0Yd=1@vrjO%Tk@~#FNCa9OBg`#BKnX#p&<}A*PcJkeTJ;_V+0d&avpIH z>>|M%vB<5YBhkMi|8#(+Lx9FzgC21x5 ztmD_@Pv^X4LmpPqXLgU1l`mCw{phgZq=D-ulv<6vmf?bI%oodt?rkg!hmi>5_Lm#y?w$+q|8kg0#JBD|68+ z>^}LD^NZyWB(D=S`x=*ZkCGiQ)$y?H<{Ac1Y=q`JaLt!13q zH}&#Uh^DgR@Nq_C1eJqlK3ByKD9#L`+V-5ssf{(v+mO~GD6Zb2`B`~g!uTDeK5E2q z)4{Xeb^12@b-chAYTQ*{1E(hXRmkttu5701pF6p~P$!j0$O|@K*oDpr1E(8ZLMQL3 zr@ME$@$l`Sx8gUF1$LedQ?M&8L}mPiaqVyD3a=1XSo; zIk-dX^PFE4bUEk!p_i5wXM^zm>3LTl<3e;hk$aMNcJrENTQ--OV0CSidf65DThezh zo4U~6C(AdynF}1#_V`ml2PXog;#AlDHn!>m=v5?tX)XjAd)wT*ZGUb>j=zCp8+S!mS2D&GD@))I zN3OGD$v7%=>WM_ZTl70x;4x+H6zq=VtY^j~ zt84G{A}ok+D|3b#lh_xH<7A{hpU?(_kF>SOhM;QuSR=NCObsxPD0jzzR zu{QK|Z#7lz0u_p=X8Eos&9(A?E8lOlskFt(ng*m%td~3j3lV5WcUF{raob;4A_cf9 zdj>S3ECoJktNSfGeVsR$+T#6{t9u2eX)K*q?#GD0x1T-n#3w!=>l*;*uw*WiE(UP5x%c^|2|tmVLq$e0l$%?$U`J=d9_M zb)p;8P@x_8me8D!Aq1K4%A9ou;mW6>plT*R#urng2^)*$@apX-^0DLV?N`w~@nd@~ zj&dzKjSoBu0|PJDnChWqCn-I->Wl8^9hu5ZXl1_nh1GH$hN46>!}kk&6BYDk^pX>I zh`6Wa!r*GLj)A54Uf0?6;X$pj)h*F!EM^Lx^R*h;*Qw{L^?LsFySKst@53=O#?9o+ zCAH}GvK(=92b0m`iVjG8Z!XO<;o|a~&>&)BuW3Ntk-Mios42w8r4Y2O)KDjTzYKrj zOl@U#wm~xNXpiA*pf|;UH+vV8;3sufQZBqxMB7#;UB6^ zqhwFg!BBP*-*a9d0@CbozZ(a{z$k${{WZ1J8&jN0WoK~v^bpKZ!d7*oN{6o zZN}}=b!r&CFlDfKpFMMKUu0f1kqz(7_|iK1T{$%{FTQI!A0j!8Pu32Fl@`Sd;HB)# zo#CO|-hANwdkR<;sNU1`mlZZ5zI6~^fT-LBTWTPY}toa4uIJ`Y@%nl0Xv8u0c+ z;HQ)fFwgkKwxebUf;mZ#uWYt?hePXq5JQLv%O$~~>o>tW4mts2amcAY*}=pRfoEJ! z;m^51LRkuhfzc(;LjN$-w%+c0-gvRr>$Ktgv)kHe$?|5j$%jlzR$dG zEl42;jKI5|-S_JKFLa|b1>N5SfFRX}D9^{xGySVbUE4eA zh$oC77xn20X?Zd1oEd^0xuED5hTbXYKuI9tvTfcUl2%Fqrm+M9YfSjBRL~OdKU9#2 z7sD}tF*;xPQ-U5qK9%rx?8a1SLsQm$xp=T4HvIP2ALTQ_1PAfci~v#+rAfG102wWh1S#I7!ve7Kq>2Z~S? zP*em5BB#gV?5HX$;;+z2w`rDi zm?&6&lPtw2qb6VI$C5!JK|y)z9cW4Lq+U+MT*06d{jbkdh3(a!vsElT{3}NbUWjG= z8XFI-3m@>akIURAaaOi*dC5vXrnuRD?~BKgiU2l9Qx+60W*! z7rxDvE|xKMl}#JUb$~3dcKvUUv&Q5f+Ix{9dEOl-*DV9*P(|(}VuL(CFIz|pFv7w} z6v^tbQcS6zDSDTrsB~6TUdOcwQ0s*6aqxm4_`Qpc$mWl{Ogdl?4=}zR;KW3ccvF#< zHy0bd#nGoA!Xmd@7Ofxq%AUcH*?UYVj)Fz)u77d&BK~XAaXje-P-9+@Haf(~KD!dx z0Z&Gd%y^&c^s5;r{?_FCOWoafY9_I`#kvJKOC!egW=IHBoC>vH9oixsN#nra z^R|qM;L}ToK4ZS`zU$+EESgQDnmF%&OI;!mGCN9q8tK3bW}HZ+R!JDczhM(mt4Q?L zK$Iu3BPWfvdE!O0rVjl8#_az+rhVZp0oBy0GpCm6Fr(AXt6snUA@EwR@!oeGdi;ki z!`o{oxygDpz+EW6TDaG;?x$t(>sw!eCHLR?)Mw@-_>M_1OFrgZ8_>x+p+WB>irzW$ z%O%q>!hngCu9ZI1$(VG0L%J`xM-)Ptb}M^Z=C#prwKq%D?C*XO3BPQY5F;Wd^Igot zhcP6lg4)e!cD><4RMC6ij+l_eT)auR+}-^`|#YLwKEwJj3B!`?a5h6(oW|LiDH+Er{Nt_Yov|NR*Hu$|%ENQY3m8LKsn^_ZmGx)Wm4f z8GSH%8*OIZTUOS3p1t?l@80imydU|(lpaij`QL=Z=WxpP3!#+5_xw!dNGy*1 zJp>CAIb>0-UJ$yC4Oi!ugFuS;{^lxdeQAjAy)@lCvo5i8bJ|vx3E;cWGbPRYPqH^qHHP%D=;$raCGmQat-BV)xn1{wEv`g z*GaYc;G|mz~zb||NEgj@HWA5k;H zzi;*n&UiKMVEQ?e2!3pf#_r5ibI*vp0Avb$;HN0>4=?PL{Cu^S?rT}*O{Swn=ee&C zrWtT@1Lm*yH)|i_r%Vs%oFnUmB;k+OQ)ZMl^9lzIZ=O$4 zEEwp@{zMX)WNXYk*r^kts%eS8|3}tGi=FkYDUH6CyUfyvr%Hp6(W>4UM1@H-O@@64%PN?ZwR^Z9DL*vo5cMx(UUZ*rVj>E zs5es&PqJq6wrgye%)P?#9S3r?jZ%q&rzJ~H7_3fa<{d)!vKZW@>bPU_`ukIciD|zP zcl%Y;?Vd0o5i=9|`^*fu?I46ai64bUAJa`vMRoa@`$>w>_Rb%II` zq`GPJKLqdDrltduuyYTo-gHkqU}(c)QctsULbp_GO}WcmvjjGLDvK0>Gsc2yInC2I zc682Og}e0Y+Leg!5}itCOV~7Px=Uk?n${3uQ69BAVfy0sA zPr`Z*NRwpX80x{Zbkx6F7Y4+}Jj^>LtRF_QJmo7(7g#+>?NEX4oTO@$wF8k9#mFNC z;yMBH)p^^Z<=%aoNb%}O3Cm~lLm|-8|8F86KSymVe z`%6mpi~frmd3pNAu!H$eMvvN(9;fUg{ax>`QGpg`Hm^$Ki6u6>2^x znJAY?+F#bc0-N)@W|QiCf4--#Xn#uK2U{a!{*9}f;nT@o^O<)+HTpH_*pAL)O65a4 zzit?K!&oWeW#Ks7eqN!^@*uzcZPZ0LlJw+rz@Vkk64ByqXZ)FWVb&U-W2pOrVzq?v zq!Bn#O>+KrYNw=@D3s1JeS!`Yg-rouN9h>_7MCLhG zxpX;1KNg!EW}mCuNgywnWJ~)1%1HQ8sT*tieRs^H`&dLyY+FjTX~_Qj#mgUR?bKMc zscsE}YJ`+gTa|0=lRgb4La&K+RhE@!K%X>dVjeW1l7f3Zngjg>=gY~gb#DP`Yjo=6 zXne&q9WK}IyVcQir6ym6Syq~0j0I$q6VQ4dkx1Lq9ci0O&c@C^0MVDxsNCh|u|?L( zs*|-E4SwZLX*Tt1{YpaOG)%U`xA~mz23Ii1pLoszcB^lh6{IVfAi}C&NXAy3mZa9` zJ8OPXk>+GGWy6i%$AU8wsbfPHPIh^roaxqVl7}Cb{V;>5p2<<_fJwxZhuTbZd(`|C8MS>wD%8mpQDx)q+TqR#h;W;@KRfoGtT?CH{1&HC^Tk0ZwhiMjp+4Ml)ZaR zQ!puNF6-eX#{73@?$*e;ER$1iOtmC_kb?^3xd&#bd4Al;sPj3nMqs@S8YYDAC?<4*zg-!0J<-BTk8`Fad;a{*HU_^Zhl+1iE zj@e?3Y>nhD|MXmm1U~vZTdb3CHs!s zft(j;5y%5(2^FZj-C1*)U7YZ5$X0v% zq-DO>3nHgZBj$8_Rpz$h9Ld9rDX{zSXj;Z+sAX1gD_&yZnBs7NP?@q4y^;Jxoy#M( zS4T=b$yQ^5ykN2VzVi6bQUw{e4urSJynd3Tk*9c)f(Ul5tl&c_4X3`d-m~Vmu5zN7czNr!%QaK0|Fe*9~PiO|Q_+pjr)PAt z=IAl1LIf<@VD|tbTZjKSXZ>DOZ`A0dJ-h z`js(J`ZHr9)p{cUY#)mCJZ*mFP0rlvm_npYg@~p9p+2tF5*L`KrKbwraWH4G?}_gi zH$ojOlvU5wBiLjX`(KDq^0-GWH{5TbQK1Uv4J%bjQZ(D|ykQY4~l1|&MP>@IH0v-t3bfR~UVMS!EKL!Hd2Pzx^p zu%)9PYd*WME+sr~)jQ?g>&l;Zl(<)hjJv1e($fzxHb=s zCr#0s{-S#sE*TiKU_Ze-kxY3BVx%hV&|Em$85L1ddHL{0hWLc&WBf9Qb0)cPd)yvt zY4hV@>u+RfN+BJvGD0aw2u+Wz^nu0jJD({Eth>TbWPdf)-F-71_p5F3hHyruOr;$2IrNW@q%-ITO^liW!}6({!NVN}GOvMF3^P{YPIs_bnc z3`d03SHD8I96WG&FW{To_f)7OK@I1IGjEnKm}uQj8*kEuw$qTd1zeC_*dl6nFO+XL zUu#ZXS0xN@7I_ie{I8rMdgfo&@?V{Qo!8u9f;v-nKTG|VKY*)2zyI&6!J$J7O%@M_ zXkzGA3Luyc7^*;@*t=nM^`=GN7#?Mi>1m$cMzL4iH7lbq(6lZ~u}dJQ)|PI(-x627 ze1D=i4Fj`ojnA4;&mOYle>9@`88bg@-;a3Phiz7~oMuIe zOmNeYMZcETGG>Oji&qc`z%RtF82E!@22+~n7*jcA?b>oURdV(!R8mzVE8k>xNmf^E z!e0H$?2_7*gGS^F0O4dY~9ba`;VJ(~^Yred7bq z+m+)z?$&)_qbnL!hfE84f3UeB63rsLd2dLA3p87WKWh_T3XY2W9_kr`igydwtp~8J z1-=IHKV2>;SGl6Kaa2g93VL=yz<2s38z`o)l54eL>WxO{{ROom*72U;dsF6^rU<~B zJ(gn6zU0HvuCaFh=k2$TPt1=qEUX8atmKSAFR!7yikT$B+uKhS8)Y6%fj(_FNuYxE z(yR&5Z?t6%=M7({$v8y8^F-xC8?d0S z8KkREs#Al0?Eklh8|B-LQC;1^*LTUi3q zZ;I-imJy@3aT*zM{)UNVv|gq*QZ?Vd*vH6e;$C0ik;Of%>1;?ooG_rQ^tO6UUvt{{+^urX?*YpC0G68;vV-b=-Z)z%XUUX zPhM{|1n%G9D5L0-aHev6gW;xWXRwNm(axz$ONSM>$Za^eL^Kw{9yNt5ws{76j&RD? zYpm@X7a~1OA)h}HEnRFz2GgofRA;Q1i8P!tz-j!*ka~+|^U%?plda=DDj^oPa4EO0 zdB-0QsH;lJ{;KGr+hp_@UqFl(?t-F1ua4@J9o6*|-=H(MJ&CDI_??A^os zk!4R~6Xs-*L2jce#nfZe?JM%mbCIdE-BMoRHheE&O4Yww1GyIkYAefp%PhdG@iuPH zqXqKSyC>YgTueTPucQl1oeJpEw-vxSt=lG1fd8P7x>ZRq**5_8-T%m5{rc(At>1TF zq4Dz`4ZDl6%*w?dqDqkGZ76PD2vWJEp>VzS`YsU&p-qk8WTfPlRSbN!=LABC0Go9V zyX=^PK{S8T@`Bq3(Sz;RWO~sC0Cqc~yG!1@Z(7hN&o-YQIgi;t+QR z{uEXK@J`NN>S|hvCGwwM$QMv4=uZ%+Zt#2R+g}fr0j7Jzku(UdxOmcx5QXVzD8n#_}2X zLLenc7y{7~STtqGmI@~?2fsRptWTgoRLvqTo)pPiuoYSWn(gW=vGm~SOuT+_2*hL6 z28Fr4w!xApRvTr?nHIQe7BSRL{&)Zzq)1VGTY~zG&gzj`4w2s3=P-{b|jc`;WfL)nxO3D=j z;N~XlR&nh=`9&`xe&L+A zWCA0d-HbO2g09%OqVVL+L;D9d%&yy{Q##YKxP)eOEgq*G+_9$Rvqr?*1&&Pv_7lU0 zhw=^$ct3K5W(D+R)IrvihE+f_C8oq`PRu^?eb%Ees#xM76NE~fj=8gKYOT+*)(-d+ z#C5CgsY?VX64G&Z*d<~+uY2F(jbKsJmd;2GP`Q(U#Rv+k-}T+eA1RTG(oEHfYf zvFrdZ3b~q{IUu|)&gfzLmT(FHt3j>taJ?f8al0Gqqz{}F~ zVowzvQ6obtckz!=a1PRgxG=~r;8Eb%(6OXuVV+EzBFZ9AzI}huphjvpTs(knHm?~| z%aYu~ZVhZPi_=^{B|$90#(763Rr=>&W}pvOudnYMu!E@f=?MTu*>t z8(RM_-s#eBli0^DGL9=HR09WjVT4rjLp zXZc~T2a#3lO|xCWU^S?S>iwMXt@yLBc&{qEthvg(MT=py>T3|94zXq>Kj<^0oFv_y zfNgqv!~et5o`E!LN&jQ&;H$&vstI@c3pk_y$SobbtRD^#J!ptB7xY1S zIVQsdj)h>VNsvXKNh0xju*yok;3f<9KzdDeVoSdC@us+MfTLe%z*uC;OZkZ%dHOZ0 zRm5@p!FX0)tjo+u1*J68XM&dh!1P3fa=QX!Kt_1m%|>yS+gkf%w~08$5OmpO;58-4@)NctJ`su`LfuVwp9Lme?|1KxC)}* zVj=SCu{P@_LUJUP5G-JDqflpFxj8kWVI&aUv)V+Ja+-jC2{`xVs+ZUw(4;n`y{_@e zD&l-=w$N`fyYNj%muBPgr8Vid7FYW3r)Cdh z;%*w6TY?(_B1!5ROLkXPlyeH<)z{}mL1o*luxX{5zlfys{Dz!cw|pL64>o_Sm4CtD zp5T^A4Yyo5|3isDjf*|F09H-4dVf7*(qR!h!V*gz4gBiNiECZ|(+ zp5l!m)%&pQe*I*)-QI5^iCiZj!r7(Cu~u~7<^AHfGXPDM)I^1+C*{mZT}@F(yHooB z2fXd${`p=PTlPh75yf*&#USA$Gb;kh@zCyJ`LvbL>7@e zmM-v5rzHd&5a&OAd9w(Wk6G`4eEH_^BLxV$=vsV6e{-KEn7px?+6T^!p zN*@D?I2F3+Al=P&;|WMpU?9xdHb10#1D}aTV6B!?RV&HWUbsg-VqrriQ=<8E!0sD2 zTz*(R%&E7s1}{74O-gj3J5EXsMyRDfhl|uGFkB8B;{KX9Xj&&f8D#JO@QaIIk7azL z+Rio9r-YH6`AXW^Ji>-t5RE=IX;Yoaw$?K7sq~D;xAw;BDj*`alF96*ByX$2n)Y+} z7L9WZvlFte2oLzI%&xb~k0vY8!QsC7x#1dWw=X@7W4Dl)5cGvIPN$1zSiT{Wo%@YK zx&4Vk8TRg$p>I$hvRU^TN5&^JcvdBXzIqZ{3~l=7WMqax-XGh@+BHvD(oP&Ym>lZG zDTM2V#_DhyN2Vm$+o$_uJE-< zwwhg}k^Q=wZC}8B#|TJ4N=C;SI|5rD!rw>OFyAh(NO&dPf6-BIAaMRgMDRhZiHdvG zEe+hY)GU_YBvkc=>Yacduz5grBZe~2DQZSh!4S*1s_S#ax_4(U7NUUY?L)!yagci6 zK(W10NHx{ZQl4IW;o&hgv8KWaGZb!+e4sv^!C6&ME^LxUe{Yb}zEphQ488U0Wp6)9h^XMW#Z~brCq1OL5cBq^CKe0od58bi~ z*RsX%g`x*3`yOUhq8TUKvN3E$9J*z6kO(&E^1>gZiHed38G?r2piIuHBUjelo(biz zMXOQlqt*$$&phKiY7W-U$5ywf#{{WHv<}OT8}Afh@6k`gsRcKW-lOPm@Gb7$2G5(e zKZg2c1`uHw#T}>%W(?dl^#tdN8*X zMqe_`Zl&xxjjWfsQ6~7vN38^+%p>ryteW?H59mG%4^QXf5!p3wf1CH0UEf-~ zQf~MBOy2Q6>UC5r)$GykKG#fl48q8RryEQ=djwDzSEtAxT2aN+1{7vWUH{5!s0LxT zlj>0kQozm2>u{duBdLgvRh_HZHv{!J*j$K1ICR?FjEHcSFCqls^xfSCG2^(pTTia>ERtTcDH+ik6HDCErt?u#RV6&)Ff# z7RN{A3LOZ8(lla?Ew{m6XivtBIhg+q_t|#*p7yNCuB!e>>;YT~&ERG7tyH%dl7!4E z`gt$m@fq&Zp+BLlPf$L`d%*`5uxy4q8NWDVRI<%pBRujV_4YYO!^s0+_|YY6{t7j> zLXDK{fdTL0cOs43TK$O^+6TU@@+ES8u)e>vA%|-v^=qz`IOlxSS5_`Ty%A~~nw2z3 z7wT(M`%00B@D)cg&=20wd&8vT&-cpEMn(h>Aw5q*0w0$dvRQXh>)Cjf5_mCi+GZdd zoVm@)(46gWSG?%W^-`H}Bd>O?k#40&{ekoz%(2Bp)pWVp?DnUiX%jEPxqP$81iWe> z`s~bd@vk#W=T|o}@U@ZI9cH+^n!K7X1vvRl@0<+l zD1P1oj#jCX%fnGScDKV-@G5@Ef%YENJq|_`1ACS2%An*NZrPkwA@roj;I+IYw8$qh zkFt)mh)51u%`MeAy`q@1fFk%ueg6u>LfA9M?lz0Y0y5LZ(ccT*)CZ0C#hpTw(`+A^B1N=(r~hOl3oZ`4QO99>m1NozWf?i&9LjO z6`1vuXDN^yU8%`H$S2rfH;2Y(aqr9y*3TarzcO3b&nvI5Ox}TU{~~l62$U?LS%M>H zj85ah54l_s!0-VSX(2eUHo+roo8bVY%*Mv^+c9TwQcx`vF{g& z%q${iq&DqojIEyN?nKB1eYYSfznUJW>tK5u?=EljGsAzv zFJ-mqge7H$XznzgxLZC_J>*N?!j;L&tsrHnMnH9HdC}3w+x8E#ULW*?Mx2fwYSq7B zWq(#7N3#?qKOo*sWh1LeIDf+UM8GIzi#HzHKzBkZ6DwJ!lWl{vdzdt`?ka>e#4$Nv zK7YUD8>cad&U&f??S?nqq>>3Wh_doyz2C9KJy6~toaGrp8heoCQkQ@)lixwS@L_A> z)rQ>-tzIBvt)0$1MUanrjVefAZ-cksiB5Lv&y~=Qn(&hI4ZdIZ?Jt@KoKcjCwmW4g zVN`==VoJfU6JtsKn1N6(KX7>Ud&lv}u6i(d)0nAaGNk6fWr%g8c^}46CC5a_TL)Ty zWMAH0nvx#xnLeuiZo8TqnVE6eh}$3R&A{V^OddimjB z)ga$w5NPSah9()~5+4c+##v2k9#+GiWnC8Ip7=$hW1Fk4@d8m5e_YfKzu_5|rw%>F z-?n?66lfoIIuw{egV;azKcxoHJi_+5?RZYUZrPTK_RaQyoJbJDeO=eIptkp&e=Cjp z_^YkLsOpCSa7)e>nn>>X(cY#_GO)P{tTLs!LmrJ<4vDwDL)N6uJDGZZT9XMVhBMdC zyYi5GoFVg(v`!_>aJYj=#y#6cv$w-mV9_mz$rLC{S$d1(>8VbuV`c46`L)l$pYlCAMI+N0a2va|0xFNQpn;~t<+4T`H- z_91ztqM|gIkh|+e$9}^whOsKZL5M@i)1~M{9B;FOK?lFTwGctiQATpVmHzFz%SxDg zh%Ur$-$IqxEQRMcL_@N_@xoI*zWrp{k97bZic`KOxUCbRcO_usqZ~f3dvupy<4Kz@ zA57zzgywVNd}8U7O4b9~qiMGP0@7f66zlnzWu_hw-1It6B=&LyXk6bN_RDLI4&GVT zkE!&#okB5(5_{*lRXlV;*}39e1s9tp>A$x9yrh(ad;d_Y_Q$?%?7PGJhuS_V<{EEU z+*mbL?u$2%$Q?pD=`sKz-Z#&I78U3tz1yC+ykvQ+0f*3xL>r=Thp9-hptI#!1$n+hD9f0Cc;>>4-p_bA2R*M zCZ>eFs7ZQwQ^W;#cbEzCY8_D^G8HC!bLOY8TP=nxF4_YX97c-1fZBEx;sR|t-KG*+ z?W$CVzWUBN781XZ9n;+j?*1T}D8iemf%rzIN3HtmH1D_?aXBL{tCwk_VPo5Ib%@^G z!X~sfed%!=)Cm+D6c5?xs^n51R%DTepPMC%x)? zl@d8CKy{hb?lmWR&Vo4P=F+U`PI4R5fZ~WJAi}-0_amt$y<2daIlLE(GxGxA3&Pjc zPk%+C|12~5>!&ZYzpKXVJ$Cq4?z)+7bYi7kKR{+4oxQCSst(y4t{st8{sQX5ETGw= z^14lRH<6aX;8m42^h6XI+W#b}Hwh)2(aQ$4Y?34PQN1uE-FwY$RnmMC8+?meRT+fv z6Q`;Y?+`D69bsf+Q`{S*NTL~b%Oy$@*wm#Y?8amHF!wq{RiN#p;`14AfFRKbfdUlF;$t?zBfK^Hk6 z$dX+`CMkkt>}dTfJ^&5a#5-K+c8gaZXLhAXRr^f!n57Lv7f5Y-|B%Apj3eei_wgDW z5RG-#96ypvLI9;V+ebSv>0Ynyvg&I~mR?7g3^6r<3w^g-x;|&S_Xvh7*zoIw+ ziFPn;t+?Qyl=i$ai#U#U&qm9f^r$K4$SDTY0rdz5s0eKIw@TFbF8FE}4%Ba9 zj=8#!f-XO`?Sy9G0mH_jZT!W}!~6RZq$4{5 zdQ@3XGWLST3kK?|%bAW`{k*$%hz7#$#K=b>zSRo4BQoZ@&opDT7to_io-X#fHA}6s zJ2d+3#|&&DVqba5bdyH*HKNNYLd>%+f{w#A?qHI)VOjz8(OLGpFhmsgv7JSeWwB?Y zU*5Faj=%k)RT_&s4xJ+;u^Y8F%!Y5CM)!~*dEo=T%>V2#u@V2-Oef0Zv0+hfgigk+ zL$JO}FT4(c&YP%I8iW{2Q?(EcC4gUbd?Q0X_InO{C^H+f4J-qKiuXU!6aS)k0Q=_0 zspHXv7gfL$^fI~}HvnXo9AN-1lp&KCzGchFV8CQpAP9gqyM+Zko&fL!Fh)A3I0pl~_*Q)GzR_Qc@joujKkv2xS~m4``S&&;?U%#?TxOfC zUds<3^l>Uhg%$tKB(T%O%rm!Z^7D zyP6F;2;Mr#eEzS0@~+Zv9bZHe{9knZKV3AyC3h<{Y@MiYokoAzN1m64C&dC_Td2#U z?9FE)&N1(suW`!u(`5i!JK%wJoL&J_BQ$=vKm~Q7S{X|d%94RIL(UX{U-&4*#cQ>p zqzhve7Zje3AX$>jl>6x?$hoW(m=jN_q(3cM5(1u1d%2ZDyVxbh9gI|N|2ARK;_J~u zv%7W7{{Ml5P#z7!u4lI%3p)8CmFZXEg*d?|j%~)liVHQs6Y4h)afLM5_q+dAlP<)U zHx+%*eBa;t&A!iiHUFC~=kWE>fWCDO?;=mx1HW_YSm)`Wf${c$`v-#}=x$4DjI&p2 z-+=eSX}OK{Meo_?fO|m1cyI%Zp;|G4~A!X>I0d-@A@) z6g!6H)?AE0LDX?941=h&GwG~~<1YYAFKS~~Y6dd%YUx}EI2#NdrZ}db)r`&77W47x zYy{R?FPNM;C`i*aw$f%b&^~+z(AGZJdigv4BttrK{s#@6{eM;K1>2msfa6MM+6d zdIH|rc$tx1iUC0lf=B*wG6|+_I|;^{GRS*fWLwY)#xchFU$usH+4_ z8#{6o$8jue=0#SnOQrT6VYh-`>l6%ld|3&NfH^xNpP~lTW#$6?I)mlqGmADTu>&`x zh6yIHbhYn-i-kXZm7t-e+Wl7jZ#C3B`X90NgJ$c-y!u-wwkW>WiPYW8lmlRe0#b98 z$_-oM&L_s8x_P8B=hm#D>feQ7#3LYA&+m>^>kaPW$^`N%=4zL)5qe4tk< zgyaP!36AW&2o46Vt2h1v7GQq?3#I_D@RE5p=$BGH^h+rRC;q9FkJF`QiT#gCIj*ly zyB7zQR)!Pu4)mxxnbeoBqMdH!KaPrI{~?~gZ8tT1968T3Ogy3~mNl2!Z!YTNM|*Ql zd{ul8Pj5F+u@)x2Sa$P26o&Oc3i!S> zrjWcoHVi&1A$A@7ZR5zcglt`BzVm#yLz0vki+o-0vG>}7V^%zD>ol)v_6Vzz5oenV zWK=ww3K8>vOj+Wgk%>cwOPZISmG7=EmT^mQtvp?8HFy%Xm7?qs8=QI-$J+@GCvpxW zzS_k~C1S-Yt2IuqjH=0AH^2H)g944zM|bcI+e{sV{Z$Fz?4v)H?E?* zxdSnR%PR;yi5dWCY9vxJ!B`jCLgw`m;uX{U`3;Srlw}bRZJbyrmYbb!1;A#$=gXI0PN!d^yAu69Te^fb4u9} z(X0J8Y=FyCxPcI{YPGT=arS)*`+Y-G$je+5l}?;oLay9zsCG-Fz-I!yc*+iYl2k0a zyCHRoL7LQ2BKqW9EDc?!-lVa9sv!{hVPShHeSx$;HHa!Tj2dwf1aaQ|zTcRFiw=DJ zF80v&SfBXjiM>_^O2hsKuPRhzoTfjOO)e%<)wg#Q3CBDn&sz?(ABWwAJ{yQ@Qy5VO zN4;+jQ-^MV{IgSfS#cwf*7M9iU%j>j*~a~J9+e*ZI_$b7Y|S4>d^`bLu7SqQW2HYS zyH^ro4h8}wwe75S#wPuK;RUn?zwiQj8R-#C5f8B6>d!&_xpDfF@cz-=UX5t$?GJ?$ zbBB6ScU6Y^Wu8vfiJd!AM&97;&15IS^;Oe<(m0WMNTKU=I?I2p*HOTaUH)p0TcX$N9UdSa+LJR}Vu3;Y?xD?|IDEYKn@)Sd|+Loj131a{XopFC6a zGsaS@A;*SJ=kH>VjJf^Px5DJxJ}(*+@JC(^8N6SymujA^STD1NnI{p&-uGy!kWr(t z1uD+yluahP&FX1oZe_%&u#>3)M~;IGIU&1KizuIFg_NxZ%N7Wwx=R#QU7$kpS(^We z)Yf5P48>SJ$6m62tRa)%cxn6mwh1tL3FQ5h?`H{%g6OzvE=m0kBULYx|{Y- zyo#RyeN+NvKp$1v01J`A{T}*oxlP;lOcA%jRVNX+?Z&s!``!M z`c*_#bmK2TdN6hQcbwWJa0}okC8w`pBR2i#g3ZRzld@4hs%BL)P>fHa4!u-P zlZB372CG5L^5h2+)E(M$MR5LlZduNDJes`OdO#{JPJUN|HN@Cb;=P`1^*acV0(>U0 z#d<#FjvYZG&yeGtc*GJT2vKTP+?8(QtbX$OqyLnr0HzgaDxK|e8C&WEpPeptL_i2$ zEqA_@200$d-cxoQl_%OUO~tUb{-(MzYymUd1+3uS12iJ zhql;1Nvul(z{nuXokoG+vah}8;Zm#xX8ldh@?cMtKP5Pp`F$F7jeqz#L-4XzuKys= z>PPKcULIcXVR(ss zNZhB+QAoj+ZV#Es9-NVa`Ujsbr~CB6BQW~rh3X9RrnB&qqYoaj-n$a zpJaXYI^6x6_Z=%YTzc{T$ksDU5!3ZmI_UcHTUN-f~`%4x}qqCm=F0vjJ z3t~J=mSQ|4!*dRDnzj_6ymFSkFF45ju`jDpyI2ptL+CMXzlmM$18f+WWsv7+WQ9L* z8AdeFRy+D#HnaF_C5IdS+!XjTu4$unH4iTE2{pD5>@orr-2>&jLXlg6gF}+laTMQn zMnqGpB^gRop)4mUa$E+n9m>y#Bm}<-&eBipSg;yik~$OIFXcET2&KC8ml#Kq*rr;x zh36-dr8rny!OeO-atT!J6UtyDNN1KLJKA_cA7EHCpD z&5(A?n0{7Z45=BR=x^F^@C#0A?(F$Qe@$HQOVv?P)YvCY-bR7-$i3d-Hyq$-A zqP+?ahn!FI+Z2!OQH$6g!ueN5J#3`yWgCk(bAozbhH=Q&Ql?0?K$cC+qqZ8F_TK=N z^1>qBqU!}|62No^FA=yK2$43wX;-tOL3}qii!{=Znq2*sPwNk60wc?$;vl`85v!PK za=4t3Sji1JLB35jX_vhZ<_~Ge&OV%f1+vcy06=GtB@f7pz=U_j zK)F@J97OjthCDiJ_B^ra2BZ7UU2G7PUm&XNk1{d?L(AG!HZz`gn*QcK>FV6)t8i0t zn!q^}7~bH;q6O6|hv)+s8jl9@MoXL*5#38nI&nfxy}bJpN5>j4&H-Je!-z56P?UmO zx9rx+3>&dH^Nm=&GuB72N?A^0EBA}Yko4O}``S>TBEeEflA^KxxMOS%I)QhqzF9AQ zTE7VaGX22hjsw=pe{O=BAwBo|Y&5dW>6Ti8EL*hkx@wa^c5(4Ev5kF)Ol+Rw?);lY3C_SGe_%rV!r*qPiho5>ml}y^>7d1?|4Wd)|NyfTdpqBh+ zY*Jq6mPHAR5`vOxo``f!%4XBEB)al_Sv5M+#Rc!i;%-Id7=?LmaBDQKK!^}`W`=D;90-uMtrI4;>D;5P|mgd-&Uw8R1U zSpR_{m|_3D5LsqbT-C>pnC&8KZ34QbqJO<3wwW{tX0n3Y7y9P{b4rkg#YiN#%%(ap zGlpd$t?VMtyRK?Z5%cmx3*hwFd#ui%<~$ua224r8BItw9qKfPUgx4n^&GBFVv>@@{ zK1>7Q4L@GHvRC_{tg<_ z6_)v=>N``+9V*_=;NFzjnbHApfGO3?K&+&wRG?3~8x^~!;fDORARLSLSw;HM!@pd&E{wNs}uBnh}I`=rQ%@q)v3aQ0LFb(?2J z4!u&lD;XG|x@PquES#BT*5?L1qW)}(z~4^E-}Xt^U&p_4Og@uchopbQIu92wdAVpT zf_dzy&hm}BTwA8DrpGn*GOEnlji?9Es^a}yak)|q@wSV^JWsgqcrZ?fRW6h4R9iqg zDK$M}moZf&ijy&INXch<7MwC^X-)S#T3)4es_=AtEJJDSyt3sX1E&hAL9HjR&T8`C z^-|(NiOR1a`rqdy-e%3mDaOX+uq)WHewPUTaSbF*BB2YNW5L9th}0}M=!7=|(GS)i za7u5lgDsu{Q!wIDTl}Ay2!ie{kh12ShtdD=5+lF7`CYcU`-=GkBqh*tgn3tCRuM8*pzb)18rq?0N(h3yEc>K@0Lqoa7?Qn~0-S`#s#Y{+vxe_)H&X^H#Xbtfv3lQ&8I zPL8K32x0A)q0=1<$|EC+d|8s$p1gxy3Ige*e2|-iJc>Y$QTlrRL_jux5ISNsai__- zaPS=sf>oTAa*RW9DP~XQc#KSs$tn!+3@#rPjQ#wFl>~^3(BISH&0#awo~ zG%xeWl91iwkxetq%2CWZoZjxjMqWPkp9#!447$z|oh!#*qe!0o`0qxM2=%3}fW5rSPnb-eQ`|0(dm2f*%8pyT+2WBUz;RW3XyL5S z4(OedYzszioTLJereL4YcV|`LRwx5HE5f4|&4zHuURUMoP+s}~Lbx$e0yd2YniaV{`u!42Vc;NNgVs@C z$~p;=>67+(mQ-&v82*s>HG55i7~kBm8aKSsb{lmCaeHxGxpZ}^5ILXoXP_AN;$vJaD; zEK`*15|VujV=u|RuL+|F$-a&y#+IFlGC{K@!^K8@jrn{8FbqEPUWa$$${0pR~#D~A+!K%g`c2?mkS$*joAAe+4CZU)YgZJkI^J_2eoo0mdR_jmM!@wm;2WzZZy%IpL7i zJ$1X(6beiz(?71ZGb&1P#befM>9vCM)j?M^l2*HB(z`bh<3`PJmbjv;x}K|sNIp9z za>JgEM_+eMV8#mF)lYc%+{j8C9b_vJGhw!FPpk`pt}F&NQi{U2gJ5t!FO9hYzIoNE z)01!<&|))jVZ4)^J)HjM+VO|r_xIvTpS)kb3v>Ov*$3}>?Qk%18k%YMcAE)1CM&`j zspUC!Fx6z~98gc&6O=r3RBH>zJwAQ*9OZw=fCBtG*JZJc$Khq;oilQmwtx1P15Iu+ z&eLuf#wF}s{Oto8h;%x9Uuhf1JstFev&A)@26|_1VQS-I1m$wU=FOS|&YFV&lRiJR z+Oj?5L+R5e8q8bwAKWteh~P_}54c;9H0&IA(e<3O_qL@A9mUUur@gujnsuz~y7tqh z)|2Scpzb7v2>0;hI46%=Ct%dqc|QcUBCEl?t21cB=hA8edw1Rk=-2G70RaYR%D32& zcJRVV!VVYtA_w!j{cvtl{(30gsayEeHZH-sdJ^~QouRNk)@5t%xO|#&_%XA6kGhc! z$B}-A=$#bLknSPJGUVm;p-?RY=IdxG!p41f$QRouXN-mSUyKDh(amxE?h)rCZUMVw zs=J3c3K%((|G9E=03qf(fHo;1-u1q4BZv)LVYlC@-PDY)}t^jLKtGmlHz}&$~L~6k42T6o29>>|ZG%npex!v#< z)4{we2ZM?RT$^-|n+z#{O?o!^Ai4m9#{s%Yz96a8wfC5wB7Li2_4UuIthfmjAk)c< z^Xi~FjHeIqS2LOB+!6}2US4pip*=PmiST*vGmtVw&tmKU#Mn#d-s^)vA|4*Q$#n)ind86D^G;`)sPMEo&fOK zsXsQ(s<(v`D38rPld$AHX=M?>>isj;hpXPEkwkgYo6ww>Sc^`Gz zlpP==Ayy08$9^1qTaq>+9UTA1B`1L|SNN9$L0O90`8SnIPB-)EP(OqQ$CVzp!=$sn z8``q|!dE&w1k9T~$wtM`(3oyNlK)Tge)JW>I}tCe;R(e=-{oIpn4#Hi7E8`imx;b! z|Br0>!1#+H&a-{FkeR6WVcFnmw4V&^g@ZEH!z^F{n!5SNRtwqUlkbf9?X)bD#a1Rh zyBJcS87w<@$Y##6S=jw34g+d$*vD=3P_YYu7*|)f$NMahx={D%()XAU#*O>S8$3Y{ zmjp}!gqM`pE10r-0kkQTwtUla%wBdZWKSx}MH-*e9(!4#+qU^$bO=*y|McsAdUcJQ z-j{y+jaT_HZa`=8=$1mKKBRqr|4Vhg3|wz+VAfChSpK-Ej-7P7+i&h#D*B}=-+*a` z*@^~>%9i(4q*@`llRSAo{c4X&9b5gkVvu2je=i1Uuh;iJs|G;{o;>&AW0!O*?ffzq z5W(?(oJiz4;p-H0mM{&J+muYO3=yC(Dl-R8>anPLH9B@9)QgQiE;heMX@$>0v9&qt z*Zpo!EXxeDJRawcVOv8?p7IL5)xZ23REgbiwz!t?awF$V-Cvy4Jti6PcUg< zXRC`)bt8uHzeN6Ly|19?{nHvR-!!1Q*o?U4E)_IpsZ zyqxnha?n@1J{hFfGzTm0S^DzcdtH3fuNA;L7FD0vz&vxRc2Ksz&k7va>s0?FJv8uQ z7h(;)?+@26uJ$YkD?-J-(kH;4>@VI5NJ~P7>8ZThZFGyqsyr4DshtmqT|1eVDW>0H zj`J5*pWykBkQNaZj)_*`&z1HBSnJXTS`$-aX2VV*71D3g-mBB*w zi5D9RH`^G2gGcW^uTwzK2k~vu5@*q)V^ZMuJ2OA?a}45W+LuskS{A)e=A%}xv58fH zi&8NOfMht!k})d#|H?ID63=wK%FC1d_KbP>z3N(Pxo%Bi(%#w?UZKsf;R>-GILgnG z1a*X;#To?;zPtG#?!Q-eR3hp97OeJpN9+3?lyqy0b{R*DGt_7O zgvs{~ExOcPsQkK3PQj?H?}jg&ej6r8>*VEan+nr=j@t4+rD*!r(hU&qsKf$3tr+=Ff{JXj z%~9HU$;wlmVGGZ>v*tcmlRuP{t<3bwXUu+Lrfq2yQhktQ75{>x3)So5-OKB2WP3YB zeJT;p*IGE4xKOO8=niBDOD3h9$!Ro(d*a;Z6F1$7+9AtptMJ!RR(g4nru<%q%#)tp znZm!L5qCG*yTP8qnWZRc(0#=HP+pdB@8PfP8PWa=h$#*XNm0|S1 zvL5P{I&K)dWpk!h!^59p3(T8y&pIo zvW$lG&Q$%yBctVy*t>y00P{==r0=wk}&54&UI&rYR#uRX#>a7DV)v0FI(Xx|-DTT=>n zWi<6xTP-zm;vboR*EV<^r*3o_c@o`M6Q7sPWj-fK3I z#1Y#&@<0!V`Tx?xG546Ve=!06#6kNy;ptIVhOc%f7SV&~I%4;UINMez|HuW)###?| z20z$jS~!QzOW&hF4fW8dd)I${>vxm0XF!BOU(Kp^lCLuMvzeyW75ZHH46#}KDA{?c z2Pv1w0}_yr_XWF0@J$1;UrbMl{E1n@ZTeQ7+g^YjGN4F98}JN6a(0nVpqpmDyNxxS ziH7e+w~+_@8owUx`g9(12U=YvqwBPY-cya8r*1SoU7ybOJC2`8yWEtfBCrRj7GZ@B zgWnR@seBTZMB`TdU>ZQM`h705ZD_!?X(u3lZ-T3qwz1S{qb%Z|Xe0W0&H*6W$oiGZ zLDyNd(H%PG46_~T`M=9Q!nS#5o*fZ~?kN4c08`Sp zn{am`3>w0h`96!kN zWUQBD<4Y*Bp1;j%$M+o?{))sp?YVtD-tuz|rVZcI|6Ln5pZBK*1iW+_e^vzY^^hUz z>QZs!s~>?z6$zZI7IsV+WfiAd+qRP-^$9hW=h0{NS3&K?-y<0n=GUM6w)RxOPT9W| zI}12M00Bq&{|Yz?xH+s{e2fPTg6X-lu3P3G#8pcy{hOhnvL%`2-|~$#Tgv@sc}M+D zUN}N7IIgP)+|n7C{5#=D=*~=eg&y;C{@uxg9FwjtxGkb0b%Eo`X+^?~+87^=JHto9 z>%0L;@Mj9B)7hi!*PQ#z|II-l5U5N|fRP05H1^UzkA{y0$xTK9Eg>eG#QCG^c=@!> zvS^oYX^1ej{bkV3nd;Y>>936J0=cfKvny84@@pV`c=R#`1qiP$$-M?TL`$y{yt$2A zSgZKg>^~*|fRos=kVWTMAj6@SSFY=sn2kGN8gMsI)BUxXJKDgePw8H8;U>pk z#=$nN^_G?Hh1hNwhtmC5nFaxF)Ury~JCxO5d~evnkGk`{be#BQ*~Di)S2JG7n--QW zz{WU!C%mvcZ?LV$WdGZFMIN3{c3LAojh7PQ3%g^C!PRN>pFAx#8~^qL++K+PFF$}o zX7|0p_9eU*nQL)a{ZvWQfb;04z~*6+^?67|7|Z%6`9S>*&Pvw^TYGAD;Pm-m<;Nk!4L~~^**4PCk$9(E+xb&x6lKBLFrn%srkY(}7(UW)c zI;Km;!3c!Aujx`YN6}kA9q4q#7o@EH_5ollaQjlXUv(?7Cla5e-e*2}Cd;6^6{ZH| zX>ivI5#W_eKZ93x#=|iqLs@m(JfI;sTcZ^&RU7)X-o4n=<mPH2=ss5tzphOH+v+jc-*rD z%o|0o-$W;ZsTm(9P${^2B=c>y?lGGSV7=L^TZV&*s(C>ct{rP}DO_NOWnQ)fL}2kQ zKYP;ExpDS+{B2F$bVO|h8y9HNtyVv_x`Ybindt=@&=6Zyx(Csh zV=>7?S>dxC0qYtjylsqxwH4hJn}H@7n_W3tPLf7vVk7b>9q z?@0#a`NR_YT-nSD=8+YQ^H@ATD9V9wpfDT!_Soitd8QeB*4A>X8_4bTnEfvMCGL{b zC<5Je3CE?f$KP{@>3w{1M&fxWk(!n!Z@Xrjf?Oco@jwsq8{JBE`)dAhj3XxuowV zE_RzpGREB#Va{EKria)_8MvH+{m_W1x&iC;usSKg7r=&uc0K~_#K2$Zo8$?MPfUOj z!+R@s`(nP#Q?ln+U%sXZz9N{O2>Hs4q4@DK)A_Y~wjG@b${EJ~An5h1NNnAA;k9dC zDGrF3iqoZA{$GO(k5F3!P8Lah$M*8GjpLch`u+jj=K6ZHnuxIi?|e==qQ3jW8| zQC;g)UQA-zEiOUE7SyTNsYMmTCt;5g(lPTsdR zw_V@^Jq0sq=_Q5O_Fh?J6Il{RmuxF!YeI(wM(ad?Dscqg+#xK8t;*#;{LVUavXH6j z2MjRk-e$jtUNIyxYkVa2mr{Xba<77TyY5bv&KJTN9xDnHJ*l;Nowp(WxQgz}$+vZT zFv*U(Mx;>Pt za#=%yqdX9>++J#JKjvGhOepT01~P5yS?KcH_S#yEl}~o^VkV9fUfnbUo-LI5pWi$1 z1jhhjX~7ilT+cbXYg}23k1Z$HFUpnPMXABXorn@PDIg-w z#ryYhR;Lt*v0iX;Y)#C`F6vyVe>)@J+7fH?`RmQxk+wzcM;)GJd=e!kj(M>XFLa=h zX8tnwp%;fDwm<*=VO@}E+i`&Nj{<^YOw(>#oKWHh)u0#C1^H|@jkmHRF#bm;JxMA` z(BOMVlwM8PyNQ@&2^qX70&qm_^fvzewWq4h)}b3ViFMUuH@ByDt<*u>|BUL)e+}oo zj+WCJip(zvvP{F$?@S>#l_R1Rdw_>M+DX{MUZ)M3PO#u=nURcJ#S=%67dF>&%ypkB z)D4VM;C3@FpUTTw-{F3ED#NaSCviJ0=L(DdL|J{QO|Ib4MGj(PR)&fiBKULiJkl0- z3%!0KZtZn(e4G!YvP~TSTMK|-GHT4Az)i51OB`kAh_1T_d{gDbtY=t1f8g^V)K(LE zy<^E^apq^5pDl-eV3NGQdq&qW6xyawXlL=iB+H?{P`Q;p+M_V!9ko|1pRaJ)=0$-i z+~(Kl+M*bU)*0U9;q5J5>+Ie6+HKDTH$UUl#F2v>WUo|H_a57Rp0(+`o&OF#X(g}J z+?C4-0&~!QI^E1-H*{G++oOHAOdU>u|K}uUGE=`PqAvQ@y^Wld@S9VsKCIhRL)GJ6 zm>CA(JtXDoTXb44?(I!xbti!puws+NL^v6Hq@FJSwkw zFM6S=bOMgCJApvw`n8$*#?3+Y3)eOXwfox)*`F}lO><3DLajV&EMO;=Z3(D|Koi3VsJSd|eC8gZ;zUDK)NKW) zZIUsEW*tBaHOUwfVIECrp~c-hkW(zB(OXKoH=bwy2=}-Uf%7J|mmPn-z2iYD?da!M zXKa041Hu4Xuc!gOM~{S%WnV{`@6N@3CSJUAJ|@_2&4=RxN2M;*TKI>Y6x`B%?w1vS zV1G)nZN7^EpaxfhZqPXZDyC~yiT7xP@NooZdwm>1A!JbPB5B@ZhqLw&V3` za6#XnjV>wo5lfaO&h2?|rMdqW4BBcD^C1;Y8l7$jS3gvydUF5b+QHQ5W)cSwKs`z> zrc#Dehy2xf{!&mM=Tcgs4xhZGr%yAI80R;R`C*|*O{#CE9^nYX9#vyp9;6#tb~p2? zY%99Q0XzehLf(uV5vSQ!)qzgDi<@C1EMw&xnpXQ-Ppi=CHE8ja*x*zC^(R3tzmCGT zsbzwsEMlKOKY3d@l9i3{*e|1wf=8UAujBc%Qu2X-rIo^9?)(Ssqz&EV#A&MEjOuuU z{NA<4=^48Lx;>TqCevRXe=yCnW_F(>%^Ou_y|9J`kNhN{^$b4MCRoquQgs+mK?uT6 ztbMPuz$$A>9Ib>FXQe<=xBTFJV_Co)5}_X{h^{$I$PTNVE-v=b7X#%9Kd_6dOdPPA zma39VIFMNkFtvsrIYPRBq-VJ+sEVxXR<&DyBOU502``Jn+&08t1UflFCKqp)Oynl{H31Mv6tjYak5vtUpmlMI`?`zjX#p1=i-bcYN&%$l= zY%)H*cG`2iUCz7ZeL_h->8v@rsdw!OGB{NoKFU%w89)zmk@tqRP|&|^ex5%vR$P=j zNI57z`z){kig(=nGv3*6L31$A;Oa z>AdKTVQhI=M|+LPpy#*^&FK!%a6$5FbZh2^1#B=kmZ0= zeYIXcBGhNz_`FFAd6#yB8a%RNRgS7obY)|n56tjyT{l|cX%NU-xZKOrsLw%jz`4lT zZhZB^BNm`4J@%h~AgfW-A;l3`&QU#Q;hAU(Aqn)$3h` zV^7ymOK^d%UzzbfIfQA(VY956%m}RD{YPo$Ku?3Z6|s@~gh#)A zR*$k@t4&aUi?AKRTN5v^@(0n$=%pg076K1AT_qfu1B9r0m(U-H6*Lgwr~(*r|JvF! z*}kMR$LF4iQw+Y0(r#(qEU z)Vgb3}|sj_A%L7kfwWZ9a8oh0TW_6kD;YAb(Dj`tp@B>;=JODC<1 zjY89?^b1Cql6&cEjQ=f7V7YjD2dN1StUgjc}XH}$xlyg?1-6jloauiDlUzU~U)t|8`Zpy*Q zjXu|YxiVCcOsS0}9lqxC#w|kUo3KrzhGRC1BUQBiRkE?9m>q50&%W6`l8tIr>vfsV zTb`g#PpZ_(lL@8WSfx`rof9^*e%&1^2^l-a&aceU)nH4LiR(n+LouxMH&SpAn(>#3 zixfC@o;$Wso_KQ{^k&9413BE>^coIh;yvjqJ8xJ9^qw{+KazZK`erBNt?~X+-Jx+6 z;>)nF$U(1|gRM1gzMk$0*U#fqOW{PB;EnEkQUPXfT{mpZLL&p^CZbD!Hh+|p+_Ig& zx%Pr3A9_R9b3Lfrc>2P$8|0b*f58oKdjS`%{@%|e(1h)-5MCWEh06Yj<96O#7q_m- z`xez(pOrzJOh(kI!KdwlpmF(4?OTf9#nVy7O zsw6RFIg;w549VqMetKUg1+I_+Iy)s_U=!}%@ZUvauMCSJ$4&$T#l?B$8(sV_?g;V~ z(jE!viSv>~9_yEnxCex;PVQYL``9(WR6+j$0t#Xu)y1#^r75g1GeMTD=Th}*Y6aHb zIr}UyCD)5?N6Wc>1jdeARFGEK;ysHdn{Smhx*C0gz`sIM7v-#>iI{I{h`|Vj)6HMB zhbEw|IeSVZZzYn!s5}y!DMa$JjFohsTv5_^xz{j*L}~Towb`U)J=DHSjf;GkzrzXh z(?|n3|I=HSppoW`TH;)rHVY>AUy!kOinMxivovruuTa*zZ+%~Nds-ePX)nLsNvYQ# zl;oL4dOAlR9uD#oh?kpY`&V)JZ^F%<`(QgzN^!Annc%yaAZ4P4|Ai_K<9QeA=Rca? zi9#Rc5m<>yhd^WahDS8vhZ=62IW90dkcY)^_OqtnbiTKOd-DVqGHi_0A2_+qd4B1+ zt}Kv?VsYN9XO4iwkJ#`qdBW|5!{JROA<{J7`sfM+>D6%|Ym2Woq7vmtk+`<^{sv1# zy0f-$^pwe+_1#ZalID;)CcYQ}!hS>ih(i`X^({PYDL6jX%QxV`!n2h|E@>@CR_taB z!ZC=XO}yO#2Yx}6+F?~6Lv2bko^l^Q=}Pk#ZWdBitWJ=Sn33BT3s`()V2qIZ9NcNP zWyF7kq)tsb!iSa-k+lB&$UpaW8u>($%#lrI>S-o3AuL#)SI(TAIY}v4B!AVd++XN&cW6@0!JFq8M*P9r(&{w?y(5r^f{{M)Nj6krkX+# zX+m$z9}Qfb?WuYobI-uhE&cm^^tmi1Imwpg^Qmet9v20y*GHEy2Z`R7Hi+#mN*2V- zl+nGNSuxPjXFxDWA2aY2OGjhm5iv`s&8wQpaRSvq zQrtB3C0sO!Gzzhgm+qffK#CWcM-$@_#3UEHu zR;pg}H{5Gtv+iOFS&sJy{cQMXvJSHV7yyGSHGQ9&+a;To*CE_{(EZbM`Dul$0i|5v zrb7m!>rTZNrdS=4Q;rm5+VzpAd?IqJTZo!K&vf{&1G!fcYNy(T6W^)uwmJ5jk9u0< zr<_k=J4Oiav8y>i+)pLZ?NOCx-l_TV(ud4R$NlY!K=p6RWZ^&=H`hY`lSB+~j}#xb z^&nMploNo~Ynx=%2pYY=$*;A$DOdX?VBcgIwQ+E=nA8_rhI5NDK{RbndL$M!69fZB z7j)}IDWr zQiDe+o}t0UY<2bv4@Y&-s)uMtC8Y`%0sGM8$ zxV!%-{)PR_@$&c7_D?iK7u!dv*uCwyj+0aOjq|0{5?7Gd308p}5+s2in*~|%LHjM8F8%_w&%)_4+4D zeeH*n-tom{#GB`L^cPBVwzPq&j5uHvCS^%8CF(zLv=H)2)1!poRW*H6cSA7yAsh1o zOg*}p9s>dwIHxFXGem?eA2%HjR@_LJG><{!A`}4Eel70<2et-h-9Ym+ngi*@6Sn4Z z%DIS-78UHgVluBD-aeUQBdsU;MJ-tjdt^ubxc}gRBvq}n7Rg1AEo91S{2t zlGw7~cRzmgzwE6I7dq%WINPIK;t(5%2jrBqxetUerL0FSc1!o3zm1K*u=69qs99tX zZm0DSU0uX`5Pb3+G#Q{+M+>HfUf?mXV%3z8r`!XPS$^l-x*z{V`z1@%s1JO*SusBX zZ3?a)W%=|Xt#d#YIO808INH7kDUEBCkfgIrWAHRj=7nQ)el^2dRw}#iKlbu)X+#%n zh7OHkvY#=|7NYKScQa8#CMK|~;za38@vJM@p4PYk)F$WGYM8p>k;(u(`G8_~UBv%s zS%Zz}9fS8>F2nYqOO4?{2OCLODyz7({C5vtxlX0W_I4!);U&0B(LXGZ(+b>~)iivN zeIb_Y8yk6I``sGGK6gyl4wG<6#G!=Jx864R3(v2g?_Ql2DXEH>x^;wYj$b&^ZkE20 zkT&_WuVm2WTcsS&cpP^XBDFwVGlc_2O`}p>opzuf*EDmAIm$a@CGr}G!JndeM_D0| zP6VTTUchFS!LfX9m-+Xy9X~CEer{an;lj{fHha8n6WYUm6MKreKcJ%s&qsi4HG!ql ziTAIi(p2Z%N&~6HGG*_>r7kQ9_eD);=@_jBH1YO=+}>J13r~Uuv=llmZ#kGQsh~LM z6PO0XqLeDRukEryMS-FNz$(E8SS7fmjV}RK3G(mMT=!2XS`N>}8Dm}K5f{VnH?V}b zaP8dVzF`!_W&18#u8T4)fmW}Z86|T?!7M)^-KXJBZD#bjoos3rR$z8u?*7?xJtRmz zPF}3d;(e){4&UVcfFWBg6bDtLY)(-_te-weEkMs;%WT7hJ%*Sr?;}FudZa%mJ2}}n zm}D*1s{}EnJfedscvMz~8k68Y0k7~}Qx=nZ^uVhC{kt|{E@ESFV6@BiS)bVpC{V)5 zbWjxuc@$Q@ANY3BWYj*V%*#3EJo==1 z%_1X4RN?{yjB`GYAQ8Sa#4 z$4)1Gw{cJJ!xD?H>7?kp#(m`za;nsS;a9AG&ZPFF_xs4i%7kZ?1MIwa-e}Nyky&d( zdp(ke^KXaMR;RQ`X+YR`PNzZy_EUrn(9JHD&-@Ed*UD@eV2h|K_m~pLcNu9 zUG>07w&V|(jfAYJ;aXX5gKa3NC_Oh3GU#`CttFBQv~rG`Mrs$2J=%!cw=j{19V;F8bv54iRhemv`Y z2EYTyr6k3X@4;V|DMubId6Hw6#Cj3flMuM%;d zRYr&6~8ou?@JPAXlr)IrwxsEiHi@xUmA7{6U;Oky|n(>nJV@o2efuge0t z^@JTixEeR=`m(XF9=Y)tZT>4nU{DoxNz6+s&UtThhEu z8td1=2aM+3iEE}qW5&@HkQ);cmV!&;ar<$5NFO9A90(ILw zBu+JgLza)0MFH+6&R~ZBe>~}bA@x7b)SQbPKn519i0a4PmS*C)X&I+`D$sn#w(R^M zhpNQ62yLyN-Q<2P@kU0LZ1GX5o|g&41>e#sEqGXrxfCr?Lvqz6BOI6=Mw+2l2Lk}O z1sVu3O79*7@N8=j<2+)hKy9;=4Kz|zr?qQRg_7NIyoVY&9tb86LS-Qa`&(V(G08rk zdIomcJPnkf4_@RJgPSw!Ly@gm`3d{BJ@Q)Pp;FSEC~Ii*7e`&8NqyTuv33vOz)X!q zW%u~&{wLxg^v@%EOWr!ei|JG-p!lM|^Fm3_hy@m5nxPI=`@K2&RzU9EYqB??dmfB1 zE~9s*-w$iXfmoig3CXcyU1%>Vkse3VR#lVd#3x@taPp?yF>MpGEB^jUw#4XALOAbu(fzM(`5377vVl>m8sS;W+xZ80k zGb6(XD%(VQt^Fs$MEDOT@hzdHM<$prSuwsdZEN$Myo7dd+8atZAq_|{y+ws#`NkwDeA{Lkq7_ZfObNm*}~ z!UqBy(mB$!imW}O$OOxZ@PS6RnSeiBa^sp~T~7)QZ&D$Dx|$RrQalQ!v5lj6mF1q5l~LJt|}Vh)Gjh#n*8t4U#IlvK>%m)RN?AD`sz>p zlNY;FvC$#Ra6jDcroyo=7`(?B7zL>=Uft7^*gLZnf%Zd@HG+Lc{1lmESS!a?i^CA{x1+?rn(1 z^oxNk+NHpre%+lFg0)n&ucBBirr~BblV;Y$UZ3K2T>IzxS`Kj2X3g$xY4Goi#`k^S z8~7$ibCMmA#y4y?o2_5R-dv8QnXG$o4LoQA@>oPoM4jYm6(NQKpmOq^73*H9Q(EXM zl#PF*{$;w4IpY46-lmfcCzzfd)VFb*#xFUB?H-J-S>UEIP~BHIjUAkxo*QeJW;x$E zfT)S{gCF>YE690wUuU1TL_~SkHa2Bkn{kdipgiP=3&fm2K_NuAx7V|#Pp4DZ!GWLP ze@Eb_7B9d)K51ODWby~ni6-S?1)Z|Y?YdJb#X9RRL8$*(idCP$`V_R~c3b#-GFQIsW;-)Ni9-`i!Xv9yZj;C2AE_j2by!0_lb=}*nnE$A<_ zl%J^F^%-F}TwGOXk`+;bJ{0a|zk_@Da|ro*ye27Rxh?2kxKIgnv-W^kmRTjq zd3IbXOBZ#aa2FJS?Ji%wog{z}^O=^XgWKQybWuZ5zBOQam$Ty4aBqW1JhyKX*f(*= z8U6F>bFK7-AP*XahG~O@5B48Z{ipgu!-yB3)4gAlePF#;JzDTCNWZuLqB549+m|-c zPes1y0Y>m(W(NW68~nu7=z84J3K+gUw5elpnV3yb_)35kzPfTEYE*XQSA+ul+jbu| z9=cy)oaao=+d4VP$_=tH{H6n(Ag^-&MW`&-kn4Wg{z~ zM0Xxe`H*DU=%P(SZO_Yb#}L44By)D(=9hjqs`#yEJp$O`PI^t<#cZt=*GDYmbAsu` zyMf=XwN;%o;usV=Dv{9Xi}Bwh=RRM5EwuJaq^|-SjFkw`rNKn-cuab`>!K|7nTmJHunaZE;?uyWh2QdQ;vTM;3p!0+4-eXMTL$bzE*L^}6y5py*$co<~W^={Kj(5X$ z=vmtW?|K+dev}}73^@#H^=s5(8PD6aq>Tu3F!R6Ru`I-WJcZ?iK4qLn7dJaZ%L#MN~(-&mh#w)ju6oNsILQ$prj zm~oQ}m&}n$OhfXkeBKYQjc4rw4b3-CnNeTwg!f829lC9p1#wyXkv9`U6U+Uqzi-PzWx2bV<1%b53Hl1CHhe#!Cj)?)5V z6r58v^PLWz;fy)l4#h;_7gz>;n{Pe2Rq*{tj^*?XwxO#{a`&ts;CgmH8WX5Z2Jus2*xr!oPvLAcyqE=Jj@pKap7#qeR`2CCi~di}`IT{Ivr#CEJ1 z_mv7l)~ZWAD6&fdzu5M!#X<2IUN`>T1ijPGoVfbPPQ!t78CO?0FJe}?Tr^w4FL+EU z53&(d;}ZBulbT*vtC~MEea`68M+f>|`^ww9HMK?hiQ;Sdac1Nza1*rxXA2PNTMM&- z>UA+1OZYu@9ovp{6x~N?kr>f^xGVQvU}WL54s+3Spwc+R$<6@}U+5c~$6P!)34q8t zHcg)x#)e7fWAVAxdt|=rP6}GbSkf6^^Jokw;_|a5hHwI2Pi_1rfuhspvi(p7SLJ=B z>3U(J+v^EE18@B*#E6}Iny*cIjd&$c5D?E*Bdk+#t&dI7%lbn`v*`ao?ypMyH{{;d zP#v!5J(cubv!}2Ji4p8>A33R(iNmJ*ugi}Z1_jTA)eV#(CU4~+X|u`k$HkC&R%3cFhTEbjKYvA_9*r$e!~ zPk;zAK;}2jATJ0E4-KTX6zM!*JzdE^mj7{p9s&PMVgk-JQ#^psR}iNG6?2`uG;1b{ z|4y9Yu4__4AOMi!Tsc{I%(FYSmERu$J$I#XsfsR+Hc{uvo*z0oTP!<*(=a1OAM^*2 zDRV#=VZP%Xf1xe?z+zWe=FjG2!kf|OfQrH(%Oa!P98jbH_VK}q03#3eWRCzk*#em? z)M&lC!)D)sU!enV7^rN@DqUxVjWrvHae7AFjRJS>PM{Wf+JS<-s!8&>H8D_Jw}O^+ z>n);dDcQ#+XUZQ;WaBThgsj-fRm#i$)&j6UDLEL8SmLoxyTV-J z!8BHBvkmdoW^@+P_$F`|ddtWt%Uu5=>uKmo0-oBrZ0dTD72R8`uzzdRtxYrrm|?PJ&$F#I!Xz7z zozQ)&ea4;^QURTbb;%|VJmh&A8`1K<+QU~gj>iIaCCh~`0#oBiJnjl)B~C?_k;qA$ z>(}v2?^c~IF~0QM$wi1;w|#oVyZEZEFZSYi+QrThAp3vjlGUzJ`mr)Tj2<88fjsAV z_~R~XnZVSg#Ga%;Uo(xhnn8vOS5GKLIW^SfniTlm@9dk=W%Ae39Ai5zY7yt=(&x&K zImJ&i@G-oO>t2}=r}2cZ^IFZ<&?z}w6Wt%KZ?pTRH}BpQ3JY|xo2pX#PX6D(`_r6D z<_y3(Ve)64C=+&73efy9^Mw|OdMBd%4er$WmQgNf{TTZyinMkxsSiAI-}dby^@92| zd%Jhzg_}eI%lL>5>!S$Rbl=ht=hz_1#moFEhn& z1)ga8QyZdG^xbWX=FoWtlL`0BBH|R5fSyWvA6r|;88P_VY^D)`$u#V(P3$pBMP-_N zg$OVA%{LwI;!wdClDtEaF|KNlna8`N7z0+fgj@#r_;v{ z%x}ENa&}$4%O>QezL5E0=Ce#!|Vd11H`$5!qnfkuB@SnJ5E5UEma|T8Ph)i{`k-@*V0&~NMKAe?D074}MDWf4 z@}gO_zwxR(5(f6-*+VfBiQje3Z0|7bskPEf!}K;>WxD;SLUPTRdQrk`MiO`5-q74P zK>l`4Vgk}6U@h=~<@7O&Z6Wwf4JByP|Nbhea%C%B9q}5*fdTemqr*oLYM-c|&ASJj z8pWES*TBZlVjq_Ejg9hHl%`<8WRM$5EgbC)=WJhCZ1aowps9(jxYtxayY10r9< z1a!!aPFDW-^@`=Lfwlk5+r6{CY`*+0qr*Yw$K(fRBgF2)4E(sx(=qwW+uTU#4`LoN zppkTx0&YTQYW9fJD59`0=Z_WIfdxCeU8nu6>}7gr8MgMXwy zJkALPp9EI9+s0DDOsH z(`M2Jee~q?nFA;?HvPs+oPhPorJuj)!eLOcKEoutCfjmTFz=WJ$?|5}9hU=(qc{ed z7Za1_we7Viml2nBi{mEx30Umu7#4^z-oF14#W?$Efc9iKb-o;K9Mo7LKyX07*9gal zX9-NuY(swkZR006$?FGx+A8IIz|dNvqjUdx3jk#A-50y^ZMMpjV(Vr0&kf!XPT-o3 zF&Wv`fQl%+6t!n;E_#_He)L+kIUZx$YV5C;QDzswpmg@q!M%1>N(dPta+5is=hNHg zb7jkP-3Mrsd#9POW7CiedXP%Z^6%*vy=BX_#yTbC;gxzq4bf~u!Ih7iFJ4np7SGkR z;lt0m*JBLY^etei(T}M@$f(*Xm zZ396$1+{lmBm2u?Y9;Z0;Ja;4`(xFUZ`tRp-uax|DCw*!kHSAiDrj=cU8?L5uz*l> zWvzbk*FFrhVElbVLpYdnvL3WQvG)H^p7u#GF8Xr{Mf)Nb(M;crV!IbZ({b-Y{7<<9 zg$D};LvYS0o*eNF6?10`VYnF+^Jy(I`R<|wu!GwO zR#fhy4*kuVhA-uRaN5)da7U80iPPy$c0%b{W`g5cH}yl8qmGw#IH#|{yVp*TqpsTh zn0@qB!nNkf0(d#~o4q+~Yh-L7P{6@0F#a3=7F`FpHQZ zfHu!s{o!{_?Orb=f4neREca3Un0nIIDa4ju zO!BtrZ&qL--4C%y)_ccy6KH2k^r*S z$qDSW{FEv2t!}!(mNdL(1(!R5vb!{Vzye^3MqunDfIIpJ5IU$aY^Axz+N_X}0~e^$FhKo6{ss-Cm0N zYqqoDwtmY6D(EU1r`nvon-Si*@lM!TVdvd#V8Gn}9{_910ncBokM+ZY9K|OWE=;x- z#ziL3!7|FS*)C_-!>LUAdcEcI1{s*0nx7S+PUsGA4i#A6;F;7XE!GqH^mdEZDB99w zGR)j!#Up~Kn{vj06EQ5XGsyk!TKMf->)}S9&>T~72r0|P3C^-D&h>IJP|&x!AlGL_ zCNk=Wq5VHxPoUG<@ zK$rbtV}!3jL5d0jvGyYSas%YXIjZE|3zyHkO^JkWLmp8anp+GHjSbfxa|micR&FjV zGhjbcm(IhN&I28!L!*u-R|Maq-jFYp&cSo8vr-{zN+lvT$aV^;Al$OwMQx9dG_v^s z8M9meKQiWjQ{%ff{W-*{U!WGb`u-W%f#&(6GLPf@_#n;{%>F{@Y3wraPUABZ=X}KG z1Q+s>#VH}yq?cB20lDfZ$*hD~zB!p})8EH?OLzI^>T|roR7j!sE^mNI@e0rz&46M5 zQ376k)`y$y#|L65Zwfv)97!6xpH_8vi3)jK)D4I$dJa~mPVsMcN9V188@E-|?IQi8 z>=QHhS~UO9Q64}`OYnIAf&M=Xzmh-m*ZSj2)i*g;$*-+4G2x>flHJf;kyo-W zke;On@Cq`VP{^qjdfOJr#orDKSjFv%-0Z95C`12zVaaNeH795?o-bq(EAFk2JK|p&c^KUmFJn3ojZ$`!%PxBwJB&xRQ6WLw> zH18P&z{&n*K5)JEcz*nuH2kDWP`CAOhM<)0FV0cmtpj!G(3wiN<|9`(m@f819oxmN z6yz&8of+(jx0{NoYp#?x9cE;4Ot43h%u=T)g{^7SI``4W6t}~xS78JZ)c6+G*%;a=kK$eM10A*Q&F|11p=ZY5 z9E=}vPFun^9o?2|8~yiRKi2?*L?-$ihu> zp?;(TXI~+6@}_fpZOLJvYooJ#b;LK+9)pBuz}R=s8~skjQg-q>3IYypPn~gD@gr~- z&h7t)wl|N5vTx(RE3#*;B!nW#7NYD#h)`smEQMqj*_pA0vKCpg6(QNl*o`eaW63%g z``E`awiz??oLa8?y6^kCf6w!Jp4aoIKVqiyJiq7n`#wI$`|ybNv71S)L2OJsF;^US z(jW?L-NWX-z2@h>>~~`nHY|(DZ3DF#cih@sjii&Z4}G~2eP`pjUyIz;-U0J19Sc&# z>q%yG`x7BV;{G~h)QNqHB@iwNSpB0h+l(L>bBOpw!0J!j?{h|bN@)|JzQe%l&V2Is z>;7J;-8svVtW)x9)^&=V#t&kGt=pk83Fz_492$V)uBM8iwkbQadcKpZc@8kQFdJSq zD@G<)XnJ05uZ_Ki*;;DamByb0YU~Q6Op3kha&P@9z~ccrAmXASUCraEC#ax2SsN?a z+#9-(2yLcbg47vi`^91~MbniAq0gr%j3-SoDTZVdcb8gPNrrspSiktJWCB8*ub=nr zJcN#rPRd;v-=84+!rHj+^D)?NZHW66?Yxeb%mQ2%H%(c4-&A#FhQs*Fr{L>`(HQTI z)p%l9R;>Q;I$gO2RLTHzGK8Zg@xJ&(1iD9V=Cz=sotv-~ z3TWEcf%ytED0lljGGHRH96FK0DEZPjs+{>-(XuYt?B`fxKQGg`EJBtX*L32kdO>{W zUN2Xs8~B-4E_n!p=-Qp(1iG)@qIXIgpj=`OHLIne9vdgRWB!&vKlSK1fnM}~lR!@m zY|fCk&&Evx0rWdPpNOD?Xu!H3Jxae9o-{a4RJ?Oy?OBjIBPoqGK*2ED{(WvI6~QjhkqUMi9w z!&V`#HeK}gO4n2tZv_ONbz-v@sB!9(<45if!D(Fi$MN&Y+U1_4=jo@;x-B11sJ*!e zV{LMZAgD9rz8OMz=j8iLJq$-xE}bEmKA4L=WF0P@r@O4$xxN2p0?iP+{n4tK>j>`@ zaVH^OW;uZeSWRyQ0pnacfwU)g&4r~Ly8I?`TgApKAgAX^@C3gUhI5`P*|k}%WSil` z7Q6y7D^#r0mDgqtIav4UXt|`a*bYKaKLj0sGhMo20BNx{y!h?b<>CoyHS3dyh1s+R zKA;eP9%$B%H(T?C7JIJeY4#CY%V2L7UpfC&Xc!Rk(?2HF*|L^#co!JI+F1;2kaSzb zYS5j#IO5E}jkHABNY>|&Cg?ZuBha?h+6&9mU_w3b*9t%}3wD)h5h-uu;7R74s;Al+ zsP`<~>O6(|nJvGoA|{Fn-ebukHXQUQ3VOSG)@vAutcuJjw~c#B?Qtsx);f2>0EgWm|~i}`|cN@MI%n;e<(H9>^dnT zX-~Vs{jYSn!F8(~*DWV#!j!i=4PEinGoz8&oqQe6|j>Y)`@t@7A8-= z3&+f#2JVcCuwTiASj&;??S&er!J}~Rpt$mn(~q0Vp6#HV=r$;k&OcPGWKS&fDt}%o zJ9I}oFA3aF8Nsspn6(?kgu6t!*yD0{1tv6Diju8Eo1^j3s{4CwnMC)i^+AW&33iA~ zr2$*=%Ub;IyfcN(p&7AOYBdH`q8x%kCOcE~^DQ9qa9h<|ZHRqdWI7=v=c=q=sfwD` zk`Sssf3&_OaAeg)>3Q;k!_HBdc;Nv#SGaF;nW2vryWF4*#-hRSha$vi%4|3!cNg3& zs{uEjtO7>J33)laXxa(0FIPUFKTBs#I^*5Ar6oqXL>*}Vt@nM21WE9KqF@6rJS*j^ zJVw3$84-V-eUmjao$ijtaJM5%@`sZ)@~ytq?Gfh9qdb*`VRY^9L{^T0wsE7-(?0L1 zu@j#YiC0&JP7|7e!4O`158IuW7k|#RrAMpYBg4Ke5qxjLTHWz_`U`BD)p4H4@mgC& z)RxkswP=+U6|}cbks55E=<*T5V)h*(3R%TQ`$Y|z;Zj6G#sx7U^6C6$Q5e@svyMe0}v@eXU}rS9;eYcJIlL*6;BfzfvjM^&>=5@ zK{Nj3B*XC5d)=qucH#{{bH!G|y0C)h_1#*hyST_CqUKR61Jq5Uw*}G;9@^qD3rDLz zq<65?jNGTKyKm+d_g)EBK~rPxuy6`*7bL#Pkp*i%-pu`Sas!)FYo5&)9pg!aEUtWLb@eK;L-V~t^BcdJN;A4L% zxa%17>4P_5l~v{%n`!3NGwGijd|;+D-bx0M?=OM4S?&zKdlc?)H~*3o3)}jNa)dFw z1`E!+Z=WZX)a~?S#LAJ6jEh72Ijkk6bjzt7xQg#L?GFn_?LT&JU8Cp$f;<+xBXYNH z#JkG8sTXMCuO8h?P}wbT);)u}-?iIfCZdXQ)d;kw6i_Y_wsOe~_^>}P6-Nnhm(T2* zW|Ob@w55Q-v!Jod;d1$hrnIH2fPq_0F3rZIufPpnr1)0v?85lM10)x}`|94%ZcYqD z1`APeHDEODM|G}gB?`aI>Tk7es4G!1%0`YAVzKM?n0>%-(qKB+(k{# zuWMSV%X~@6`tH0N9Xt8T@w~JhYjLFj>4`_h(ZG8Wd_sd*fGh3C=l5Y`ZcV$%l}!ti z<2GwqhjfOQ8We0y;PlNBYAa}FSW3A)uD2toFJob;HRu$*3e{Ac%uzs8M8Ue;-4J|y z{`H1eD4Xy;3ySuyC`EP61O|({tpQD^f|a#pq;g3Q7FRfmwa+HO^sxsKcibG7bBsd; zotaWjrZExdWYsTozNQRVFomYlMqQs(#3jh>Z&Lvx8P|73yKJHs?CnAnsW-`RGzYej zZrfuNyjKLEV9Rkcg$vIoqU1>ODehR`Sr0$%QhKp=8CnXoW z;L4O(5p9BW3Odx$Sj|1eGRqmTbQ(F5`~HYH9gw|P@$&17cRtnjvLkN0USqT)Qdi1+ zqoA)(bfTWdfPRI=r-=C`q-z4517Lz*j6*W3TGtBW$P&lSl|sr*l3h(B7CN>555Cix zD4)^N>J%h-i#U#g2San_KoDO>z{ zYZ|5qKlODVjWSr@pSW<;M!3{P)Ah4G>3C-G@#&jCAXICBl44{rc z^Eg4Pgi(oMT)h3KFI}D9oInMEzL+Cv6N4Ci$`6vn#6y8c`;K$Gm7=Hj)AGT)VZe<- z9@;!UAhFUT=+N^~eq=Jbd;_|s*%V9Y+kPu9UxY6#epxt_>VsTaeYby}ONQa4D0Dr} z|0y<;MG<7_^CJ-Eny#T85Ep0v&SC3}#=ntbyMrmqcKg@!8aZi6Tkots#bM7OzuB#r zLD8Y(p%__^!Hq97cd)HO;}q>c6a-18e=wHGRZvO zyt!juRQ&xj)WpU>HvWiBaq2UQor3W_rJ%)@6nby+mhNtRd=>b4kyz<={fdDbu>IIU zwI`}y%Ci4F?B5;X=y~K8sg%v?-1xBEN%aKIoAWxp!j$3VpWHVmtLIm78qu@zvt+v* zVuVi&LRd7!;h{|9J1YIXfQ9``5pJ>5K1 zerJw%ZZNox=8U%`cY(|WA@VKshZQMLgAgZ)91;JNDXUcjNqH$nu)xY>+7sSw7o2U? z(BT=;vMcZA*rIoIyH?lcUOf6oaQt!w8;-YRs{+*cqJSEoZ`}@TjH~v{KsFaXu0F1+t?$<%z`qgx$<&8i;k&kK|4IZ;=bB}{j zxuEeo95HDJtJ%oi3ytTD?l^y`KJD zHue52n?T!_#Zd_?M|C-_LCsVq)}c`$?hwqS(fiL?bz4f81Wb*NDM!A0O((Z zwXOpaA%$j2`_R%-BWtn`z*b4!)CU}ZvK*dF1m+h3<+Z=-PL6*7^tcM`nt1?VZ;EYn z#WsBP^AG0z2?k6Y!xO76`2fK566i%#%;q;=f0i@@470S}KLoP_9{!8k3|S_etDUKf zKIea~i3yQA+pxizOy2>|~b+6qYc_NKin>ZX7J_-}`}2`K*xI|EE7efqJ3tJJ%scxV zZ2tQdG(Y>ha`JA|ax+=3*p@?~_{Gk8e;x1~(4`1782Wj6J39%(uZJ_Sq*j9W6m{r7 zx(IT!s81k$@$-Q4gP<_X*UO_&9qbrS!@p!ZlAE}x1y>2C`Q4jqCHs`!F#^?&~^KW|OvyT950J$I1OxO#!Xk=95w0tY8a42nmX&)2tLQbJ+ z=MCX$&evbR+*zMA3Ri&Gh_+sx`(K&uv2xqe@RJ2EP8NV#@12^{u=bQA?hTrU@QO<8 zx&u|hAEB1FJ1g$W8;9h;-S4)dfS&i#R}K}a4&6&X#!_$J5|!a8(^XHMdEKogc{E(n zy*d8@zE2R~h!OX)x2a3FbttH=Z9|^K1PuC_|9^tN*#yzVAjFfDnx`)X4|}Vc9T8(I zy$&9sQwO1#gsGf(3QRaeVByl`GJo^0wn4jeHPeF{%QB;5EF4t&iRmM9@mc28XAqZs zb|l+!K)f5*S0n9Y;aOG&fV@QYSYGn(U-FXI_x`uMMB+T;q@TNuEZdsd>Lu)tx$=91 zcYw*RPQHClq(8et&bp|sUfC0Q5l^%%Dy{2SYpoNp8N9mLOYhrzNH7F{ zPDr?o-f!4M7c7A3hF&D)KumqIb|L?4a7t5c)BkDM1WUS1$@1UX`UBa zelA0|^Ww~MMfo~~wl7jpzV&d9v0jy>1^dBIVR*hIOMKWElqZCKQQt?dwI7fL zbp0wf;s`<$-!vBXgvR4RaJ$OIbp@e?7G1(bfYmms>D8i|P)OLP5XP_ObpuQjBZ5Q* z4d9O=@N=|vQyj7#&nwW&R3%yWCm~h(-r`Y?6?&g-axPM7$Zc3PD?v^JLt)+6c}l&; zR|lJ5d{)nnNiuyMd53I9njX(VoHzOa3A`d0AsVd{KCYN_#QxG=wlFyn4(1pF!yide z5fbtZ@O65t9QCeWca(B;Hk9%F&9e@`9;=Yz_pbdO(8>RqE`OYy`-YGuuc&MS1=u*) z`rfn7UHaoLjX+FX1f1t(nI)(6!!Vh~man&Vr{aKBfFbQ5DhDY0(0`V%mrp{XTRdd( zw`96XaR9;tMoGLqvZqfAWKj2o>6S`oo%NGI(kl#qMlGLQ$W1JhE2)3R5wmM;ZxdNQ zJPfQZDZ)P=F}}YgoMlB6^v^Wh4QS?FF!WKxeUP)_)T+)MN-@)U=DKo1(^LsxbpN)H{d<@uICxZQhT#cnp%Hz+`qe7 zyF1}^ibI(O`zA@pqO34V>dI}n{|=UY@2>kxD%x;D@#_tbkuKov)zAb<0X*q<;w?F= zo-TfaD%u^9e5Ia3m~^%aInX`kzEtS81)e-qZszcS7VzcS8WO4se?zAdzsc;EwK)){1$ ztk=A+c!$>>(0O0?wn6UKh+#(3?eP;1Oi#|#)xxi4T%6k?&zRae3TB znZ!Gel;xTn`ftK4JR3XZ>RqQ}OOtYb6>SN)(pOEX5$&0cND^CLQAkkaJNYm+zC2jP zb-WKpJB`r0Y8MLPMupB^^fi?O<$e-jU>8;C^2ec5bDk^uLWGp;g}ZAZC9w^+k2fW0 zM?f7`JQ=<2v3t@ewk>{Gy71?fZ$_)lD*1-^P74I{o>J!}vt~X_Ha z42@#Dsk7G`#^XfuCn|!)NC7&`{SLPmTHr*{HGxIC5XvZBqkn z(5A$u>vQz5)az8;u0(p4-`3-~_g0vnG3T=^@b*5YaqBn&$=ogS@+D1rBhF776X%Jy z6&(2TYI4WSR=%Za)RlIRvy9~N&N&Yrur?>>y{%RlD zfVXEWdHN;UDseVx=|=&P%g&AUWl?^I_#unjX|Kc|w;g)BDvb}?>>={sQf|_E=QzOq zLh`}syHjGnH6?QfcD9l*kq{A%adpJIGiBC%Xz6*pkXxmt!MW@GJ zN5D5?1YNV7mV%V*ts<31-g{p|J#F3FJyfy}JLBgsr@-OK!C{!PDRUVl`1W+(L30(O z|6Vnhf*HMKrdwfz+e`m~^V9t2u3-`)N-wk&`XxIlfGM`AW|9&1-w0W0k*oBcdMzgT z=}sq;80;_9kdC~vTxzG}s^T>0ty7cTI3>L-8db7eYj@(0yH?aHNtG4w02Qg$ z2Q{z27@1+z)rZ!UfkbY=LE_`aqWG!xCimbTU0(B%sT^7Nci$-9pMnzG6N$+yqHn{i zLFMOL5L5bhQbKBS(T4mfn6-1I!sjA#1BMK0nOo<}ME65Ck0-M(rkz~*sV5=QQBnQ> zmv9~-vzwMz|IchQGw0vq=|Pu}%TMMV|n1S`)OV&M4znO}Hxa=@=B3gxufq8_v@1BVQt^ zm?r^162-SG^zTD!MmB*V2YvisjZVsV>GOrQQr*#MoBIkXjXbk?4%GYX`uj$C{HF3@ z=I)4JV%&SG0|T;p3L5IL1UK&=NqhiR z7;rz7OX~x_mb98f#>g|KU!RejuX$Rek~GIqx_a}|%>&U+Vk#YureWCTs)opy$ z#m7!Z5A|1Y^EBGB#MsI;`$}Tfs>hOT1R+VMJe+A0t~@lJ`7Xexa*`lBR|ZDMSkam} z))pM2;q+y+@HfrsZtEdy8@MYzZF%*(G_WbpKlj&`LA31k@sTCQUIoaBoL>NhzLpvx zsIDE0bL5&49aY1s^>eS+27z>6;Cuu!{RrD(U7yB(4Rl2YX!gz!dmMB?!;=0^cDW0+ z0ZMy=Nm24t&pvh!$?!DmwkkBmer~N=q+1xMSR%m$lpi#R0s(?|6S3FVT1c!`W(NNKCRK90gpo=PsWMk#9xbRpULh@4_Vo`W34r$xFt+-j7 z<71F{8F?%G&J8eW?c5n**Equ0jzrx9<$I)`-MPZXuB5+oe#AgG4#QL>7(~LXJf5wR+WTO)BD#N_IaoLx$kq;Bn^T>f+q!U3)7H zP(kLSyOOuTCM7OYrA3zjv$%@G5368e9BAB|rL#2?BkWr!8do+!d%*p!(JXIQRch#V zhpY)SZM7O(YaeQ-X&4Xhmtashd`#m)J#fFrhd6;tFAw)my=ycMhtZWfxRTi9CMd|( zSNau92w>Ze!t72RDfsE?x02|5yUKB}bhyC@0~8|e?~?8&Ka&h2hV7EiX`nSwGP$XI zH0J_)_Wqj+pB#|-TR2#o?119v0jvOmuYk)ODIpzjLzLPuk^p0E|4<3}O$|`gZ!C=c ziG`!LR`;#m;A7LaJGkcFQW#^65{MuYeBMjFK--o9%MT$FHg2xHn4JHVaE;UhbZ z^WV#%JAQuW{LC4em=t*}5L)bKsUf#R6$%NamIU(M3Djl5n0N2=N(EsyBMy1-X&|HA zb0#WL=M=}TnVqKo^oiF{qqbCV_9E7!`G?EpMlltzDwU!<#}|W=>9A>kf{wMV&FQIf z8jjmNDJu5P%oJzoIoOjHR=x3q@gM7L3{+Q6AD&JF6drOk@^rUD1+UsAuD-y)Npb}U z&Y>p?JA>m(JX1Yz8_8e2HM)KoJn)1y>0c~&wD-o_Tb(MMIbvefGh2x9keZ9hU;ShQ z`W>n$GfHkSmx>VPpwg=u7GZi_5%fHlKbZ(&AUJ(TypL}nR(JnRP z5O8g^=OZZe{jnf}YWcNm^lNN3(E5<^O;m3|QcR|ey!)OIJwNsY@alI?l><~TUZ){z zI^XwIPc-%$E9~OSYy8fH5!Vr(&w~YV6=`%GrafXYj$|{eYBHK(_l7UG8*$C`ioCI! z4>~Iv;zs*QJHf{CS(;FUATVC(h*znV3|IwyX@2i>sp%PLPMKKKhq>1<*2scgw4>7} z7OCsGywEa9!wlBRPWxax11_bU(MRJ;1vVO|^a}fP=pA(kJ9}&Mp3Qq-UFZx`j88S~ zAm)U(4zLH|IIMJ3`Xnkeed0p}b7EWj*kg!nF7l zqwZ$twoBgi3_Pd>?8e({VN-l_sX7(s>8JcXH)!e88}7!YVr#jjUkC=HqG1w}Gr1H! zYA#g0*N9Us7C;!P{_H*NdTO=y<5dL{pm*rMD`Y%tB4My`mVK&5=vYx<@lT41fYrOd zfNIC|@Yg^Pn*G94B0o3eo+noFs~F$~l{<8B=n`~rbLZ{t`3UU&r@*fSp5yD)5{))s#MNypGSMDAzH3^JotT2m2t3=zu7* z6VW9df@iMyR!&S?Gyy2We?nSA%3t|3`0K`4J1Un4BQ^mdv*kLqQUE)@9`k6l^E^3) zHl7{MCvjF(C*f-UUV70BY0%j4`7HY<)bE%`5j+&y{ce%LsKu_Fr#>Kik7SNJ-XDT< z#-YRCnwx@ok0`KVW|~{%ZbSf4{o5xt|4Xs^nI>j{e0ZINTc*x0cuo0UlbC~zk8KEm)8EOC zC>uX8z^VtW=W_)YxF0M~5gw9-Ak8M8g#dj-@kqudsfvY^US3C)O)6T(y4jhwR6)}ge*Wgv&hkI`h zB9mT|NrYqc-crANz|l7c)JNnyY2c`${Y!Mw)V&Xj%2@3eE9hG#nr@rkT0X#ipCiJf znVISA?GPq(PBzJ_)~BHsDyTW$XP)|NzFHg^_KY6KckMFCu(3&v0aSJYd)QUSAFVqt zFqtj!Y?ZLM!+Yyxt#7@@ZGvyD2hg?07>#N(o7h3$zT=()-vk=?{P2SIHn7Zy7F(V~_#FSw(aF(gR8PEgv=` zZU^44zZt(4oj7>>u%AT#{5};e#wPDlD^2fgJZ32u0quvjYvI?T+qB;TLH4oBGV;KB z2V|T$TwS!2st^WhkJ^w%vC1-xRo~&9BC` zp3^$JReSuo(U*R{t)~4NjPvaF7wb{|g!2^I9n;FWl)c-&*Jq62|6jZuxsVIpTg7N> zrK<->HY8Je4Vo&rG2xyNZTj&`g@>aW#74ec`J>s91>Zh>(t9o~z5aa2=;?G*b?dTN z>WQ=YH{^@_1T-4mSfLI*`#}h|)lZu9- z^2ptT5!ye(h3e?Ya3j^Ba=V_ZhWv+Q;JPivPmRE(0#{_6TWreUS(iI(O_c z|EU`Z4&Ast`LzmKG)*Ha1s(mS+Q7|c3LP+m1i6CgB28eZWr$vOMk#RlF8sO8%$Z1{ zFadcxC%JC(=sqY!k==O(v=bO{^_{z?)>IbAFcO;w(q1fNwTD+Ja3rEg#9aofVWhx~ zmE&X+{+BYN)hsok^3{K3kH`Kad)(K@F+|^hSf|@~PD&7w)4Yvaz4;i~^}xqqMQ_jy z!)`=2apsjOv`DY4)gaGj1^@pve~h19_>(`jJZVm#NM>LKESzOUQ{SZfFCL+0>?MNQycXMlB zVH0Lqw}LJ(CT^ylL^%~AkMqaTtnJfar^{=P|l4c~M^An}fqiF|&R{`nj$ARh-9w<7Tml+5y&PtU@2Y0tVVUjVVY0W`%kIxoI`rtoM6^dy zsrOLX$MODkx7Jm6Gg3GRp31wa*z&O`kxyJ=b>)j#;1130BIFY@OVym|;w8G|C9p@G z02Im~aMaep(aLK%M*5Ebzl7Kgce8_rzgG#>hcf;+GdgH9~k?-zwXh zTS+M-f@8?my>ODbzW}9EB;d3DW|v>KO(v$h_c7JVfrz2q(|fmRBVNEX>!*FLy?kpL ztK~v&^>&gkIs_ZN9sQ($D(FkZU_3|L)GqlQsOsj&^pe%cCBf}k`K8?HB0nU$x6cex zy6ak@87z+3mP-z^jcCJ_mAbK6JTc1!B_oA8wb7Knv>2JUtTX(m9{k7}aah9lClVbg zbbB>N|6~DRB3OQtwZW(O)Ci)2&*YOQtX?+{d=w(J7o7~d{tk}&s8c9bI)|~cUm#rJ z3BaQ}arI9PbnSyCqacHCMnp9GT8b?Z7&1glPSK&3h~H(a_;@aZapCOPfaA{YRGs5H z84bYMqEjy;FUe-i(cfc}DgB%J(p9G_< z_vd!`qydGPR#eZeZXVy*L4r`usD}EXLB=cG||)`TzE`L;72 z6Xv9!XYm@j9({nPpVz2*hBHPFj>{gutl(`v`|JB=vs=6SW)maiZ1OclFycxYm^dU$ z*ek=~N3=I)Mj%yfX2c=DN)~ATlWgmP{zbO$oKgJo7uin!O}6j)VxYH`Yf>+Fs0We- z-~8 zBbyoRs-`)IcmKv>VgRy;#Esp?aE4;h!w~IG^8^yKs=JD@COAY}@zPast>m5O=^YhQ zN{*g*N^g!?37DLce%JC7mbIj{8}?>J$cCfV3$2!FWU^L_9__m?HNrZL8my=BBCh|z zubRH z!zQDz$V79_{*r7n z1b1Cv$U1kd+0IU*P1kRgl4{VW-h5wo9vgb1U`k?pY0u{_qe9VHhdl&x#osCq{~WI& z%Q^yh-bp|ECI2nuO#WBO*_`)!>#?f&4E>{Bq~&B*1H_Z`@@2Rj)x6d(s2%Ki47H;p zdaP4B4(=W@X|Mvv%>;}HWBQatd$ph4kxqpU?RdqNmyD+0&qwr`ZRQ;S3qdMv30!1P ziFMue{R_j2er;|N>XgeicH%$wFYcIp9p6jH+3oIo)GXK4=I@mR-}>S7eZ)Uilyfn= zdd-QCT0BlLQ~y8N_E2dOF!l4h&y)Ld{H_oR;*C>Cr(x>CghvT<>}6ZtO?8|}QcrpF z5^l1|Xk2)-$?+J%d2tjGMJwo&5j4m+fFP&Q+;};#grBw-P%(VC3R8x`W<>%Ke{5rrv*^4#8Ni7 zhC1l+#vYzQ206Sf$W_bmmHC8cbnR?~aY4A{+?tBS!6L?W-CIks;X&|EFj5phL5%GN zM=ory3j3gUn;ToIRk41ZYiRcUQLGTJjGdkE zjX{&d?ayV6gp&7yrAy5pmKQi{>N#aX=jW1!Pfr@}A6>K*EzS61Lc7Zj-C{R}P$dD4 z1LQXsaJ)Ulz$46}hNaE7l8eqx`60x#l$l%#FyTA7rzBQ#Up8N<4$Lup#X@-nA(c~3CV01sT&GEmp&Ak+uB1uo> z$&et`7F6|C?s23mI^4=r-QAkMd1oEhI&<&^G_I}!Z0!%-ud4IY=b=)khV@IO%eLL- zrc7@cxm%CU?u~JE=~{cM$7jds0-jR|0w{B0AfC7s2%|j44&gZet1`gb7&N|DD$U%z z8EijU1ePyYpYTo}-guAPTLY#J322vR35v=fK;t0-9jR2?dx2pDVbq4S^=SN$BMtA3 z9nP~Si`V6L{hd@Mb5HQ6<$RpzCvU;*aAsw9g_T^MQ+o1{Y-FyF|73kUq4(AL%6|HcPi*As5$0;k=vIHj9O=tak=vm1u@WHC2Wvf(-3B8mJ z%^u6$I^dcVhPS#6Gc|K*r>;p)oHA4@jk zrzN{xP)$r6jdw*uhNWA2GX&OANb)ggRlv9VPBgMoLC%8z$hcuFh}eDxyN>Qx?{>Qs zk5u#JFPQm`_(y!dAoi-?qj;=7VR9VmRu9DKO=Z zJ~4}Utv}IzYOje)`=P`0iU^{8$FC6NbM19EdMq7hGT@m-lY zTn|8Q&f{XxO2A2Rn%(!rY6&n>2D#A!G}fbhVJuc%h+k3gzFQ_4MI;?5txZi^@1f)mwbv& zmBZ7A=Fe{4JO6>>POjM}`IUo@4hfPZE>}6soqPlD3y>qOM1e-+I}<&h0z94KKY9AB zZ}Pvw(N%xK(J_j74%Vkfc0C6q18eWWrRlk^Ga0wex=pR8@>-TUy$o)2~>F9s_mTGwt0=A#L)X%UiQ;kpl_R$jOa;o0=y#C60KzA0ErFE#!vQZ#_Fw zy7G9|=t(-;(Wv4i;gkBR*V)h7KYTTeATu16)5Zv4bHOpNVcFTmex!KXE0Y$O_uf6K zF{2nBxkGQM+Z*>)ed>1Y?mUKlf^uN4xqys;Ufh2F(C!mBQR(1$GtT zS04JXewp;J z9!dA>j*m>)lp{&J*Yu7q!YVM*;)M(^Z?5X6jYdN3ew`y6M z)cs{&I?C@(U?P2NHk}N3yXC`GM9h;gC$CNqu~)VBojP_60D)Faib^Qj@8y8Ve7_%) zAfLuY%hj#kv;(l@dC$X;h{4dE(|sHp_=<{6e8JiSiw~j%-4!a81~Uum4o07j;fhlB zjn#DRjol*Dn&(eS<*CV%`fhBDU-})3C-tKE#CJy>6?Q7T$ay=O+P2--K$-m`UH8_> z{DS3CUm;P!x8M2NP9v>Qr8bd?G6s;W3E}Ad4aA(&Rxt%U2MKmJ1LNoAh*;r$1Rgd) zB)}mx5F!q_N~BJ>SV(n}RMqa}kRG3RW+y$7ReY`e$+3Myt~7bSfb72_){o3o4$brC()0ui;eR{$E2+7y1HR#uAaxW+T4aLSgFb-e??fUMB^UODHn znX?HnH%@%+`fvnwFXe2bq$0zym--5Il4Q?7{xhWF$UJu=-r6Sc4b|I6&4% zt~03b8P*S3enohv*_t+wc~N$IC``Ak^=jCBuwF`ym8t&`R+z^z3o+TtfC3ls@ufe# z>mR$HX3#xOr+W#UVEF)m<2zGFCuBspLofl+Ya{`Hhlwu~qOGoCeCsvOqo*)xd)dRa&(|-!;Hk3Capw z`{_4F@PQvQn!21R)eY-4tgn-@x8`q260*`j04-Dl)&P%chf^2Y1-^}Gc5ztwxOVk3 zuRV%V+ukk@DDwz9Sb-24^l5jdXrpEVM?YLBC5B^fIXI8)275wCYnAkKVp6ZooreO} zslzk*9(I=jMhI^8kb$74tNw3OUr-ay-Q37p`z_s`{4*Zz*_tSNT zRM(Mn2db5d&e&V=_6sj;`(lwsL)0>`jeG0?QL zs5qVFfB)S-|4?t}?>IR#jnw1om5pE_X0^-1=wP>?P0}qs5JIcuZH$N2 z;dYxY5T=gM9vjdv6>tN_?6gaK$MZ?u&*k?kaqupcBKx1By5JHMr~_zQGsl)$VJ#rlD8L3a(&muoxac1#5TgS}#03 zamK54w+Dcr@<+3B@<(g+@hoXDLO4qr3g?sZ?jPzE=3Kw)UDhMs<3rkjwq zw_sH(8l-?<3<2WsZ=d_%2usc;dDNHJpZ<(ZN6fi`f4r1#^W!3abt3{$**Ic>j*MZD zuj`K6P6`JyeUd*a>cso)w*AdItoA?L(d_*&lDPrb%W%soI=3<#Y12?7|JO-G{!dOli@uO5w?^LlJvB zK%$k-9;M1gCtrhv;N~xZNoEd(ff#xp$MjiX_{!gH(?5SeDgIt8)HjnG6LwCUg$b6( zCeZnB0=Kauc*gs6eVRORUg71ef<92g4$h-b^C^BU-p}P(rK2s8heEhPbM^vuYWLVL5%61r^|+rhzDN~Sec_zoP%?wiY)!=%pn-! zUuONQ%3;X-$9c`?=6GnWn-civ;y&j3gIzW)&olW=KlA;_E%SE0O1Xi7CC$ZI10i!w zIGDFnw9G{v5UQ8=K%w}ZvAWJrQ0U!|9JcmNj8WS4W~Pzhc&JEMnJDsY|LX$#7v^@L zIE@2Zt9im5nJ{v{>C6L#@mAp8LR;@FP{4x_4(N$V_NW3xs)+f-5eQf50V)bzDsv6Z z@9$^dt1+~$LDbmHtnV2{$Dp^C$l=j#N=pzQYw}@MEc!~XXuXaW2zH{aaovAVNVTo1 zWL@k*GV@=d>080s5_9})?u|JK175!HuHirAn#+|HDqG#GwK$xL*t@E93y$t|yYs*v z=4H@=XD$_s* zH4@4HV1GCTsbn#N_QF=EwjWof@_$cLu;w}F@t?q*whogmksl%l6no3S z3XyhQqk^fFi3eJCdO0_J)s^0w8A#dIi;wv^G2%Nv?Mm)@MQ)NFN&>G0e@|}NS3u7t zE*n@Hb>fkjAEaOIHRuofHqvI%r=wb$HMGkg=}Q`Q^8k8&E~aoT;R{aqh}O+z_Wn!-UmtY+*phPk%I# zTfyMR(zwGa-b~WkLGByyQa2Sd`lH>z2mZ$10hM~cMnqC>tS;J_$LS5b^~N^-%O4&1 z%O5R&?2pcVSVb_7R9zBdy@cftQ#Aj&dhKn`;8dbie)5@w{2P`?27Da4mO=CB-;uXP z^J(qHCD_M{%^CLrgLDzZ%v|pN*7s@1GPB0+zJ3AZpjRQZXSXI!`XTX2-$5Ku961KQ8?hqMY{8X!I@M1~vk51wLTWD~ig0_`R|Q|leV6z^(=0iEnVPhjiy=$V~apXHDQ`J+^=6Ry%1Fg2%MygyIO!l_rtJdxZhqQd1)U#dny|*C1GL=Oq zFi!&1XJe%#fSuMkqUZdU9N_IAfrr;C#b1``lJ^9Z9Rj$Bk;oH9`6H>1{sEA0*IolP z{?L)X85$)Qayvsf&+k*y7mfCgQ#q#5afb`(UVyVB2FgY9J5mieJKld)17Mt~)$Uho z#ga_KDoy3O+?9w_yZ;;;nRu7X^lgFLu|S&dwg9%-v>N%-A5FY{*nAKykgVYHz1zki zX!wAZ=KFx=OLv%maRS_?NAYqce6! z+vIPrSOK?N76eT)_WAt1Pxb}KAS^1w^DeM$jr?Ohn_kEWU?yW`rV<)((uDEMj4`A$ zW9T&Xp9L>ekZZfY+ni59RciyA?}zq!Th(uj^y<|KS{G% z+pufI!{Zb+cgsc2HIKVcW-QWX7PS=h#+<*bs>x9A^xwxib{~&*jHPWX`gcvVnJZ%bN@(1%yN*&1$&Pe^bj)Ce+~-G zPklQXjS3*mb+CC;Zny|Ea12gh{8)l5gjYo$VG#Y#UYa;WiUXSHz96<07>L*`Rdc4= zVED&}BbxL;nftaW5~zN;Sf{$siA^jMMy|yH3}mL`2b)Dl#m1hD)|<+gXUFfbT0F;R zUShFM*+2DI`<7Qsr$4*_XR(NlOlw_Azu5_2oJHCTPwEv1%9f5m4{E=y4jaPAR$aX| zx)_c_^ZRN}3;gtx#;|0pwfA-)u%>{NfA2P^8A)gk3V2T_gC?>CW2*Q*^Qv1uz1%fm zZTuDO+}m^fvIX9{7+k-Y3{M^tqNB4aCZpVo7yd9K68UB?ns@(AW;ZZ1MN97~2*ftJ zsPFWG8h51&H~}QhcqQ-DFB;Tp`wWr`&6BXtg$4*ei)iZ)K|;^k6a|GD~IQ2Q-rJ_o~DBP+XhW^WQlp z{S}KoxAn2D0ABYf((ZK4^UUELElpBA{4FC7zD7f1hodX4=Q|pj zwC~FZdL`z(HrYlZx+ti`v$>L>5JUFG{XU_{ldBKq+G77DeI7&VoS)1q=d_)3;Ayd` zOvXl)H{FAqa^Z9u6aR}FZ?Jq6;*feaw;SxEDC*Xtr7vuA+cW;gmud9K;kS?{sa-fl zX}rwapigsw(*h+9qZPLZrFgZb8&s(zki%Y?7tQ)GVb*3_qjW&Y?=m!QQmgF~4*V=2Jz2Eaap9=f3Xi(q%#@|MJ)< z9+48`DwV%OrTlL$8xtv}Sa$A3n;0#m8F#>GAh+|sBj~4!KSUP$Hb>Kv@sX&9G4r@& zh7p!4ak<|63d%p~Q+EC)(az8h>3@UhCzR?lv%F)Kzd>|?O<&Hj+lH`!c;V7-E%o5? z$KUyntI5h~h8tH7%t)C7rOwU;w~}c=S{&)vflWwcPjAGb^H-A8W@QK_g8^+evalEX zB=*LMm1!@2NP`46bLy9zdXhxLXiTbpKa$-CFK!TV=|4@^idTsEF^Iy@tO7^Fzk~I< zem&|{mgn!HAyLs!zp!mE=P)5`l5uR70~&c5^xs7>8;L9g+67UZ;X%5Ak;l5mB*}Jl z*;mjm-79PV%xalGS|5h~vZ8Xh(j%$b$ILN%pVxz1=2c8vp=nh}i5R7z%&SkYnwrTd zPtwJFQ@r{N#<)P6_w?CQnie%)^-Vr7N%QUVg3hQfFTNBk7OgDA+UHDuDEbl=RV^#~ zQK=}hfL=f)@+c~NS|ljew(GK9VxOX|Z=>@>@m5!v%AH3dsE*Czz(;_9y9h}BQda4T zQK)a-bQ+9{NB&gm)YuDNrYwCb83!a~qyr6RD(J?TqH8_}5?vP5z9Q-x#95U_TvR1U z9u5VWt~@m$E8u#_xYhff=FF|!jnt>*xZqT&U4t97Up^(tg4xdcx~QgF(5_W%F)l|p zy{nHk*maKme8Gm_Dk4xl#75+in$q*NkXh)O0gV?SzB&1qB#rk)J1Rs9Pu#Qj? zR2J|ErF+VH4!#@ zU;CvzDYR5QNE4jODGhDcy+-=}1^Onr2t5${;fdi#R=PuAlrZx=^*ShIYk_%UhpWux!hR?A~X@)!~#T^=VeUJEP*vX*zG8JOujgKm{$8H^; z3n2U`O_tEPa#!cI)$t#@r$)RCuxZgRJLzU#+-*aS8NX5lFDPIA=w*t3FbFB8dq5B- zd_G%jc&D))wglL9q-y&K3Kp^r#142flS=Z7uI+XQ5cu3`VT00qRi%w1XFZ)^pICMK z)_=IY+m~Q<}W*oCvL0u*hKpeE~XM@5GjN#2Um$bKY`@+^i z*QM=12uh8@^?QDZw5OI>Umc7gbw_pbD~j2Du9dGpwqLiuKT=6fdr^Em6nKwO!jPIz z=o-~D9jMw4wAT|`_>R%Wv~QiTP<({5!Fogp+Crt)sQHXY8wy)7-zZ91?}a!hO?LSu05-|Xn*%eqw%$8;ZF4<>`Aj=`hY2=K()%8^RXKU{qDu1xCz4& zeW^NJ=1FOO6_g{K4p}?~C^l>l0_M#sbZCtXc=sWcjLznU;*4_qTHP6wtCM%g+2tJ-CGBet0a;?7OQjixRNjtuLjwl21H- zx|S^vhe%vlC{taio@Jy(CvKU^qMxp1So=PqkjtR+|i5A8WPLKd{XYw(##=zCq z#?L}=@W~B-m9O5uCYu1>@2;%WkqdEtq#_yMvJA#uZYMZ(m^)kPjAX_y=gTS2a@%8U zn2vZ=mO&lWC;wdQKQDafCD3X!$P7FXZ*Q*ZYceacp{{v6&p^eo`e69}<{;r6sZ$wF z+z9N^NEenG`t~%m0lxoQf#}n+dCJ|v%(k^oMNW30E$~p(K~ZN6%>soYLGU0QFe(T= z*>A`4_67HO4D}5`u|UCufq^U+_>{vB#mj7?(hKySt5%sUSFAFm(KO&1g`gDK!i05! zvEe>>v0YFUW;PlLVr4=M9a8e7Q~v8Q{q@y>z)8TJQl1Gxs~r{eNIL=r78Vd! z;)&_~l0C~OYCL|;(o>Wv^OU?Q&dt*5KBJHr*E9d+`4q7qb9@27;n!S2&uil9r<0et z*=d8|2jW`53nbK<5R*7t;}wC6^#+`!9{KcnM`eLp4Ve&$>-+ZN9}QEA6Q>nRsCQZR z6a&b>E{5P&EC{7CxvwkPejO8e--#Z3z{~Uh92>7rgoy1m=^d)+`xqqKA{Ip3aOc#G zm=H-#%hjirtaa|$pZ*}}h^a(!JKFakcO6S}mb1cf#TW$|XS>6lgLw@3p(A!a1Co5I z+NAYmP>}NiXKX<9=%rQ?mo_vBwX=nzR1nUNPM+)bK!hx8`YzJ880u;9e?vQs7 zZb_J&5CvKLh?$+4PJ4wIRLWpRX!yyl*8o=Cs~cvQc3!M8c-^}^H7e%**3ta^uaw9;~t*zYeRMBHqAV><0$ulw?UDTM^CpF zuzn`XmiU#!ft}=%yBnvDgm>ajo9p57&$wO33t+8&N}Re2c@p(_$$H#qwe!1K;)>Dv5fg-hpDyL+&n~{F24Teiq6n;|t%dcw@ojA1Uo`mER#lv{yK{3&gfM z)UQ<=$CJKqLfhmzF!8QS6;@l2%GD7d-*1PAQ~@O+Y)_u|CB1xS6fh~a4Qq6NznP$4 zGye2|{Y#4tFz*9C7Qf$ns^+sa%}i|#(Y(VAvDjGWF~OcqX$&TQ*SB(Vd7qF}X`C74 zRbJB4duaBW*1;93q8nj5Q;Px zL_9Jkt4KLWAV9x z%R^IwSv+#3(5-_C%zSacs53GBwP(c;XS3Z2?vEv0rAza-m2rIxLj2bbpl3}VzS{rX zf-!RFD#i*}X=B-C^R_w4mlP__%X6)-9Hho&#;Qg?Yiq5LQjylQTpz(zl4PdyJAyri zoJPM{?%It)S{tVf0f%Kiz+t&9=)>J}xIRzj39%Hveb+uIQ}{#QN}%WK_A|#%gBckv z1;g(nCC(xj_{}vlXHK3kThbT(unn47C78@cYY$n)8NLEJfbh(G%6vZWku`X|c{EbP zlzz`1gPY*Y#luR2cFyBl`k>M~BdK?E2(!l7&Fu~WIZk##o1oSAihP?IhsvydR+(KH zbl8NDw~eJv6^B|@#JY1q48P>kF?W;K=vN;rcYYQN@ z9iP!$UoRG5P#+Fn8eE|u=XL2nZay%hoQ|A2MR9K}q;89xKj-<(fazHGPHy^Aw!3&! zT0$nI5v+7DBbyKUNKm!t*O=NJiWcZA(+Egj;~S^Os{sO0(GCG%7Y9k(k|;dIISm~f zeKNM?+jZKE#+3pT%xD(DsL^8BsTa7VkvGtsYTllj)S;e`=@G=zl0b2r=7g=${^!C_ z7w}p-Gsk!&dgILo)WtWFC8F?AupVnXKZ@yo29>Wn#iK7|8&Gi#*;~QJHcbUKa46(E zd^(PzC*e2`@Ft3d`H`u0o%SfWKUU}g_s6K6Siv(%3qiu10o+Y7KpbFqmu`M*_+2p1 zDeeex&(2$-|Mi=7fnNq^!xOcq;vPE#ae(g$?YOi!mM1fF(2i z<%(s-_^+(O*V*Rw_hcVrDV|%dk~?~)Ez2KwjfG>39oH{G5Z`&NS?Cw{T!KG~$4m>( z{iZVU$3$W~;FQswV-ci#?38g^O5@D53PJ1GZ@D`r$~^&pE*vX}?=zZNeq150TUwXx zzAS*PXgi&+)nP)y9-!?nFS|7bS=(kO&4}z-&pfz|{iFz6X5FVg3R~sE#||kwz3$~K zHR+|&fgoJD7qLADcjgpEWJIp@;qwQ(T$i>Qcz<%DRlw_U@U0QUcqf0kh5laH}V z+UJh<2xM^viGffm8+`+o^?aZ!s40yVakVj0MbQ9q_t3vSH&U(Lk`_HA`ruxR7FNGa z1S_SH$IZ@!h+lxZ2^%AFn94+MRic@%_*&+J^Q zKS5GfoUX}RD$_n|*2ZXivV~4LSzLqsAd0u=BO8j{A@lrwaq7K|)29f5ue`oQEperC zEnj1oKg2DvhyQ>DOv%%0yC-CT7zHr^^wOTA z&^;1d9~LYXJM(5$QQ(TZ0~bJ7AkOd;EpjDByAWHV!uo5i;bg72_GQ{5d#q8p^nqHn z(TmUl&A|Z|M}@Afq_;EG?VEsO=ZS);{tx}e2OkfvPy@^V&M&#liIy_9Z|$D1F0F;U z-T}@Xc$!|*=KD+tTt~gU@P&@lCYqHo8n<{uIIt@SY;?T=yyVMl&u_F&q^z~pFte3W z_?)V+uk1UU!pEcK7EhMRQb74}abv4I3qo_L@QY~Nz+=l&cx6x@jKD#;+V96VuNU}a zt=uWZdd*nJK(hQyiODL(4j=8P7|3ShZd!Ta;zLqgPAyWm_O>+rdJI&{r}JyQI&TYUUf4}Zg(m#W0R_w{F-3LYTsYIKim+%-~6 zS*&%Y!uOK8^iB=@g0LGuo+YkH6gGsXt+XVHWZpT70wATM#>B zL09zQ&^)|*B7oHO)Q%D8QV(u&JQi61n`1fyd@fXy%B@)Xo_Enj){W>=mCaoz;;gc{ zKLbcdB-8G~NT$bt@w>!XDB<4n>U#QpDXs43GX>gKI>RjBbKXj}OPHz^qXTU~A|bN6 zn!W4WzUwWFTWoj}zhK-KQmV8WyQhYjHBJoiXPl!xK4XxB-_Yp?f`ydhrhQN0_w8t5 zNTHFBysLuGJ5iY(yBQ11MhTdKj%5D_i6uWyT{L=D6>x`KN-Wk`dyANNi432U=#ln7 z+y=0#+1yH2#G9VfmkUHR~wX4&!} zW6Y*nUv{rl(%5uXP;P*4gfolPLo(yr9)4Z>LrGxZu)Zgxkx{=!{4h`W=1u|pY`A{- zsO62l1k%t9&DeE^2#{s3Ov;D!!)`a=Fnjt>cBil9J z{$N<_*z$NXrV$r@mm{|1fncyi3%|hEfqLBB5`0jK!t1OJI4A(3UHNr8+os;?G5$#D z{qj0zY6(0Y^gxdna&t9tJAQG4PFfXXOw?$1H61;>jw~U*3S19@(!C!6j zdfEF2i0p8=LyOgqIy4naRO8!fGPBb`q$?1?u)9F`9r6(N^Ss>Jy8}mp4w|cRd3q1+ zXjy|%K-l^;_WN})_4|C>_AXalwDg-4+eL5cs7}qG-3t%dnG5_>v)2<#VC^iH0CA`` z{zC=ogYWmtQ{8+c@VwP@llGK23_P%Ahr?3t1Z#Esc+i2 zi0-MTUNZ6wtQU5ivqYit(SwA8OfYqep*e}@iJebKNT05A#rTMD z&0m`-93AzFA-)gWJ_9BLU5RDf^LBmmaFfPy6&%#qlO6>bsNs|)dg`pM9|;9CI>B8n zkqdx!M+NR>df))A!{x!8Hn&7}w`O50u^6~J1Wt^CM2XI)ICf}rp6`FdLJh?ER&q$h zT%BJUc8i;XLc7EkHoQlp$3A>^6Bn;|)1zxDdVy=kb|x(Cd!lvLr7aNjd^|eD>rBr! z?WIwLC1%uE&R3@8JPZwyPjmlis_yL5Qs zy*|rt9RQ098Pf#ng?QSQep)l6$b9$|k4pq&KsMvO@Vt8Ogy%5D-Hz0C=m?UC#Sn~v zDh@aGG$%pjRcQKFqC5Y|Gse|z3XSkUk1f7F_lwi}xah+q@Qbyh^&qloQH_vcIi8f^ zklOD?!PK9E88cdFz>0caeTs3J8XiwdS(RBcC=O%eYEDl3j-e7BOx&Qo=~B*i(>$O4 zc|I@Mk@(cO`Yrn-(^(^O<~YD(0}uV}u@P5xwLP*RjA$23uRjL<{>@sk5y3NCaYho(G+Fg8nA-y&KdEl ztYSNeLieEIH#*bAW zE|UExHfxgqm1PfLQ08h)vYhj3eu%Jo2m;`IJpRq>hl&A{>A9W{v?V_?XTS?RV%Z{tIR#5|@k*ae2q+xk^G3?L6yUU<%cb|Ahl=)J`1j-@p`_~!K@fE%-r zU#74>Zc-+62xL+$snjJjilk*c(HWbmwGRFuVcC7$RCpONcyDTyvr{6fRdo`XJi-kW z8k84+txc(;o{%7Q8C3BXO>u|BbFM{e9e(2sJ)* zQDr|~5W@hyuF64>r$Erjmd!R)DId@8XIFG0gz&A#X&9-CG3rl#%*A1ew97cDQbp%8Hm)c6@M%2yAq0t*lI(5KW8hx?4F03o-@LrglNwr(q*r z$+6Nw;-<~7Vyz-Xl0?QvP3}Dc8pjB$mQ_-i!5yRS!5^k0a~KH*UH z2A5^2!BgXKNYHXSN4C|QGNpy1p_EhbMlO5FPdX)a@+yM@D&9q_JmamDfl5P289*^x z*Z?x?@Out!7!!)#aZ=dI(jQ`UGWMx+#3N?pc>1UIgHW3UZ$_{C4f!bdx<;;&AQyAg z>v>CY=bhEj9U+(AqpKl7>#-H%*Q|FI$j}3iEh@}c1N|g3aoe>)lFcvXa1~>vXO*fh zRvvcwz4}?^PN?P?)v)-el9U`Uw*BDzhWqQmchv|@WI~0HidX9e;hnF`t=lC&rDws_ z&x*Y3xK*vpGE|s(F#Ub@CQ#$RqIY)--^B)y)N%XI7P&yln+Khy;}N@l zXFWbSv{sA>bI3GuU^Wlb0xWT3FRi_t_5w4vdi8ysMdC7XKj?#8=zNN=`xv~cNx85U zw0gA5co3;eUV4KnAv9xxiBtCE@8r7N!a8tL6<)DgDK2>^;p8d8dFn1vGAVU9|IK%b zZ4rY#ImoLdy~Aum%exNqM2q2SgUp$`5p{iTLCg=_mIbHt*O0M4Z3gRiN^D3*y~gQ` zh3n2qDVoxbS~CVWRB~ox?gpI_)Zx&F1KiW zryiDncp8G#P;m$RB04OTHAz;7h>6K9n^jWR=B)+a+;4Has4IS-afJq?Rw{3Yzq9}| z%FmP_3yD4E@8Qi7W+#C2?~6a@Usm-eR83QqYatPgGvOkEDH1JRC46`miZ`H~*2AG_ zY%ITWB$@m+XPH&x5?fzFBuvkv+n0RvRo2JnXf>CZHrqW!LgwmNxWtdPJmFgl4M3G5 z{W9CuRdXi3<4MU6EF+{6Ig?nR4{QyV?d_Qn`>T`gRLq;;*4Pvhzl=(=G;6mGw+`_H%N61~ zmZm3{Y2~`_8j`yVI^Q&I`0xc^=^fVld^tkGXHv{tcZ!wyTHsUN{2F5;|ICZ8A2pQ( z)$#Sj#56znZfU#3!r2E>YcknGCs=lL*h2l{#jW-67axzTCdrW4>+8UetZ`N_EFYkN zrANQ~ZWORnvkcMoS-i+QaRvgI+~L7`hk8AlGZhda;{{Q>d(6#X(H+BvzAGt3FPHAt z4D`e%c#RyK>9ON!^SsfMrQ{G+Av_mu^|?LkWnYDoOc6r!*z>$-v7o`%>@eptU9KBJ3-a=tlg)JT!2eNIz~6f zcJnIQ`|_;`xs5~ms-Xmd)`)+jsy@iq^Um{$7TtrG&wECr_?Xg?xVMX&QKhgs>DWLU z_K=^Oce6-49J!qJ`-GAYD2_-0U};o{{;QtZM?268tmUVGb+tyni6b1RbfriuQ4Mq- zP#XjtFSZ0LpIToZ79jL%YDo-LeTS)+#zKxFOgT&9HYhxUDkbH@gW)G9h6~i-l1+JG z^@`-z$R}R`jP>&`4qD#*xzT`Rps&>mHm{$__(MZqS+Hc!l_W0ncYG;mK##t-qj{(m z|6*;3pews~CHQ>RbBCmaXoF{Tg#jw(co_ndm#-6c)AvR?946wZ&W>qc8euKXTcD^Y zrb^UVO#ID5#~C1vz1i0~ug_ zAw-XU=|eq4*$sSPkL=`US#0*)>L7ojV?3c}ca)?5(QI+HBO8#t!e$XvqKGt) z{0`gUZ(a^o#C=M1O{nyfq^-3FaY_q&g}->(m`!pG+`?PqJoD^p8V8l~4o>}xh~lO| zUi319pje&p%b9Z4+XRQu91!}->FsqJg4pJ3htvc4S=js04KI=N^!Vytpxe#ynkFua0hakA zAMF_-VvFQ&ExU3er=)qi6hpyvzw8T*%5*+v3<~UJG7B5wk_j(etEubnim2=+2A=H- zeYrPnMypol#P$YFTRNij7yERhW&qgdUD`3xxk9&YWHa~yg(s`IglzZ^ZP&X8e<+iyA z`Hr}HckumCd{{L68c{dk#Yl_$k~7Dx^O!H}_Y!yP7XjDbNK|xfI2Z@G{yGf5dzp_+ zTrvoH^@*YOj+Z`>bwo&Ob*wCX6brJc=(hU0B~igAfa_Ra&$enFqE)sD7LmCPdNTR! zl-5}C)>XzL5m`Y4SE?#ic3cz&2NVkB9u3iVM=0~1kfc8&hdn$ zAMYP*OFX>UgsLUJdi*5s$RIAE5gRr2rNl96wT)O$;G{)U!6!%=`H-xMx>`=y3B7HGOJdsXtkjOf{c4RYMLweQz;JO(+b; zwUabzbWl8!vJ2kzXQ+pnhQCo*U<*w{FfcU#P?L=sV~SbQcr5;~!kl{P8dLclaJO}7 zNaY=K-8nP|SNGs;|M$5&dpq`DM7c;2M*!ibL&vXn-TQha*Jm$ES?|J~9w?lym;EU3 zhEFdL^f%7%da!^cz&QM@M@fg}xqZbP*Jz<_ImwhrltawCn@+p~T?P}%@6=7K@UmXo zr9no~>8_CnCW9A(W%^U}eEWQ?q7}yY$+K(4k2EI9rLf> zA-6tk&5|9l-pbjz-PJT<88ai&BfCQPe}|~YG1SL;pg+^~T1ac4+Vjb!J^h)P4BcLe zoz-Hb*#@7lzz9dF>Qgq!PMNU7cZdSag@j&sJ?lamyizy(1cgTc8fOU~t3DDCd|%(6 zFp2M4-C;Ah3rd-PS^Mlz_!Fg<_Y~#TM?vtBD+f#?c13~S!PH9#mRcP;^fJKu{}8R) zsEEL1>*CP*1YZ6j9*lc#mE|3S4CTskdI5@eTn~#*JMVv>FuToDMVqq=$sxZdos-?e zU@8i@Da6qXg>^k8v($k<0ny2jh+;NUFP)Rzg~~{rJJgiPnXh0o8fuAv8ijQO`b%C) z&_SAd>DlC}_uW*X6qrCMTTpM*&PrLpIN{4Um}u;i?EpJd{k znHWd;20&BO*EQbcZ)?@|U+MaXywv@wcvQ!*42#-=+16)HyWBa|lroZW9qq7j;{M(` zfp_HcP(t#0OjhBh#;eK>RKNTVY*V0sZiZ$tv-BZj+*_gj@D#*qP|spOP;8s^Z=GpC z!23r{@b-giJD(4Qgx)-YC$^X$UgQ!UDO_I99CrR9)No=Qgq>;I(PqH~X@1yWH)<*& zX?!sy;D`yls+5pe@A0#PgQ%_g=~dNdSV&dFt~)(sGDNLVB>dTqQA;f5F|? z5Ga^V#&`@6mbT6AaTEjSYmU8f%vfPz|QzvnV#ItZ8-cSvj zt1l%B+#yk`*3sl{Z>#LaY=G#A@Cc`KA~t|kbiZ47YSc{hIf053g01t5J3|A5!)zVi zg29|1ezA_4p;On!ol?(n5wRC@7)&c7;-akek5MN4Ym0n$={mHT@qA(j#>g&-M*TqJ zs{((t7L-Wn)DSycwImdEW^OvO{2bcBtPLfMWj#|`#_Jx?=N*1`S>J=Z%Jb_1PM&XA z{{UYz)|v6+e+HU zzsTSGm5g~Zucp($Grz!$F!mC$@gEE=^)-&4fQ}$6LHhz}i5}Uyu*nUtND$&mYrE=+OzE9ZuAr_8vBi<*LStEEeruHQ*J=MU9$eW0gMr;X~ zeOl4URYx%I6<~EeCS>oPTkPPdJkdLd8j{2GCO6{7M*6(JLjh%=>cTbaw(u>px6+G0 z8!3UK?Ck)x%95NyhlOhxS6Cy~-)&C(|1Y|!C%2^!hKAAc{RU~kufD;o1sFSwsQ;s8Ix<-Z;(zSLQ&}L>{m6bYI9N(zH7BI0P5|8Y` zOxrOdN@uNk!LAr`zTyhAr?6KzYdtseA|xeF!CFEPkO%MY}(hqXBH>TEf?{aKJ*0Gr}ZOWgvv1%lO7VSKix3*s!=w^vTg#%(@_DL_o_QLlD6~fO- zOK{y^QsN`jz3<0on*ShMA)J5BZcPj=big7w&7!w5US(>7K^wr76WrgQi`=7K^<^xYZD?4)eUQJR0V^U6^E!JAxk;e6GsVaiPu_nK(*v4FBOa8864-M_~^C+YH(F)@%=L}?aa{j!hN z^0a7L+}ovXZj=9)+xPM6aSz=&T43085|6+A6lGb!lmQ(KfHO8;ixTMT%}#)y({_S? z9<1{7GE0jgu#@aiX?2fZpo3)0K6}}ICY7R}YaK8QUCZ^QNGAGleDCU~B#?QrDFh02#lj#^jk}vDhB0bw)cKHM8tIbX9I#4pS&l&Xc3O8N2w^`%N$PS zI@)2Mb?WH|o0|%=Z#$nab|G<9y(U#oRR7Pxwp;1zQ4EU(1Z3<$J+JH#yNek|BOztT zdgUQ+#+B(1a3&tcA=9gb2%2ClvQpJRPAZTIAiVB0#KNJ zV%@VR_XAN}nw*R)S^Y|v4}f(B6K%CURSUk}Q4?`Q)w6GT;hQwEB-#J@mq@zJA5R9y zwuHw@_;bCra95}EZbQ`dWJp@-Y*c2oMP@*COv#*sBVHHy5 z-w!(XQm>>?aR-`P&8%8!y_BGR^FP@k+d#vIo(f!ACEqr#aBlOP_31gZyGhu0OsVJ0 z6+%To2B1TBiT(>@-)9cB0UjH`qiX}zfWlTlM6fh18qZ_&MJEb#=AcQb&00`d=(YR# z8eX6r#H0Cdq|f+Yqz?-IZ=}!g%muX}M&&96io>r&+u>q5yOwLMKN5?#%-j}T6&OtT z+upy%JKt73VEIG&Am_#z&$=vI^$?3Q%KqpuPZ^HJbmk=b+~_%9qN_V4w9#&_F)n5p zaE70Ho8q%4eYTdxkfLzdwjati{<{<8d(x#&n?>SR`GC~}{kZh*n>t`~oiFc*vMmuZ zKRgpV=N7VI^rYNG0r7!$?}+(7I?Tzufxu@-7(YUhm>gwQeEuD&BoOW7d{DYen%RH9 zrD8bWd1%Sq0Kl4j_(taSUKsq75d5ZVJ(0T1g%c=4{tBZ6%8;8U!|bYf3PJ*DwU0|M zF9Uc5RD{M1Z6ENwo`x=0)E^y9F~GWa5+%?n(XXw2fAUcGF@jz0fIpqSxIhORsXWVx zs21sM5Q%{78LPI+5oV9okfZMoDrMB}GBk;((G|OtLhlk40schZ53N>@ z3nLY$J2Ubd9-T7ZqW=G-g`{KuU$u~lawX3lh`WD7J45(Cpk07;&)ieQY5}6wR(DR9 z1IfU)o#gp(0&;E>^J9&EFPpQs)IwBVEU)9IrCqWA*LKYpAJB5$;51Ya;RTV`ZRQ>z z#ofaAA)rIHCRzrN;zj8j)3kt=M(>xQ`tdO^(&&tK2G^RpDizH%rS}Xab&H&cXxf%p z>D)(2N6H5`+Hgan`@T%mP>sCFNiT+*I!)kdLNKGCMCAQ{=$4hhG!SG%OziebNx6g)5$Mqy7IEzAP3h@inB?9;3!tSa~&#^1nCjPmnxg02Psx3>hyAD$`$15S)mtj5uX8`%5K~4Kh*^QPx z^cu*5=5Yhd^O45XTbFf6F9^A}K3ZfbAa$_PAO4|vT!FsoOU^An+ryo;)OkgrMmo$T z!`l4dMg4ilt3!5{-(GMHu_~9=LL)?zBK5Hc^F!0Uc>N)kXIm{dHdq5>H)KAz4rk=; zL)7dAdKDYa*SPZz*o>-ChA{ z6=B@B*#kGQC3^~EI?t#J9yjRyvQ(X@ZZGY@yNlwmQMkgZq-`9h$>GmoMFl6zf}^s3 zaK7J%Hy+M=Wci`IY`@NLd-p-_nGkfhpr+$e#+!ggDqaNUC-&2wd3xUwTXtQ31d0O` zuo(7*y0*&$)Rk)?342ZF!fo||(Qq{7|K-frq$6;t(sYf;Td8;tD=hVF@ede&zC0xeR979KmrQML=inK%rRGrW1Q#c$5lY22$CT2@($=A z<0D{R@hQtA@_^3z{+viixukqDUJh5LO5|^2wJJM|`f6}BT9ztd>z-uQlzq6l$6nl& z(fNPM8ed+9wfES1f3Ugeai;UDj}Qyus1e)jdUx*ACY(ck)fpl2-e$jfNCV8e!r9f9 zjkI9Tc01&_cwx%Y9Ig$n=*K4rr@mMDH$|gi4Jg);1Esi$io~e2RI0>l{j}sly$$?6 z)Y4$UmVLQ2H^ROSnp?~!)G@l5d~pS8x__0>6Kw1#OL(*(UFu2&ly!vvDxtmz<)94^ zn4f5`6l^Aw6-TmwsnPk-f)Q-4+s2!vK4h^?zqK;-3IJ){|+PkMB3){_~XYi5N5z!Gp7v$q_ z>Wj?tyv_M0!8_0il($Msw68{oWCJI(cA9oYVZr`B$M-qrK|q|3t8{gfe=|+*$8p;m z7<*2H^q92Mp)OKux8B#|b)MyT|33g7B<$Y-UD;S7TQ}Q+Vh_{?B`LO>6xlQ%!NHm9 zt+^mcm#^}O@B7)ujL@1CgFc&x!o>BgPn}`-WHxG5_;2Wg$qx*Hw^^RQYQy)m(S-4kWX(W+R)owI)eeag0<0sn) z(v0b7DT91_*;eterHp+=4-c|0AZFrm#?K!wBj$x zquUMy&-37aw17VWF{_XAkb0YjAzx!Z3BLlp_wIh7s_`Ouh867BSauW{6?gAtYlf&X z(d6?lI``C{dHs&H)mxeE#E8Q?}w<1DO=~-;86*zV**g_xrWfzSQJGJLFD1& zB4igNYmST^aHm7r=`LkxIF1s9z)y=D?KO1&M6Gy@G9 zV!OiMt>VvWWP2N&ING;!mmuR2pLinscm>R5Qp>kJ7gQ7dj^>6f%Uq&M9RlJN*=AEZ zFhh1pTF^z^uT`nrIMV&FM*KScUY9DbagQ~}v!zL6xyHm${ zzC-tO0o;PM#aRb^KZ9mnZr+>;7V*l@mFPtsw-9KBm|5wKMyS9M~Z5kNorCQ{> z|9hA_4Fim7@>JGS-+5i- z?U>y%f&LOCE>+#(u?MU}?dZNRs!cTku`zb(kLDjZLfBXO7}wYZU4XTfjCT0XT`FQ) zQ}TXAN#OhRo78~6(VRQ(;8f9yu;p3P?_?icIlHTP9{}XhjQ7T%(oH64^X`?Si$T`P zrYOKk)ApsLV@XVoea%khs3I-wu;XG81^ItKx~6UZzps`pRMPGfwGSC1a5@Iq(k^+> zYOcezkC^WxO6al9-O+VN>|`_}^QQ#HmB2i{reM6@&jaGs)y0gUJqIMJdU^Am|D;Oo*M4cB2hMi4V-;0{gupFU zr7a(yrut7{^|vY@G(mwgqy8xwyF)dBSGav|rz17&dodULb2Q*aFf0GC?DnH$Os3zd z&#&gXN_k=}WCVOaF3H2OOQqC$Mk6o4lAql(CAwAq=MR2)`&pp1_&@<1MR|O`$^Lm$ z#)baSXeow!=2ma0lrTXu3|3JWBN)wc0i{{}7uV*1=4y#`@|Ok2_6H_EuXPL*GN%{H zG9kS8$3U6@Y9OQfx9e~^_orQv3Gq^vErxFRjbv!pF*j=1ZxZCt8$rZ>Hdan9y|V4u z#hoMoEUS=Kxv$UwvT%_VbCB<9`nZr>Id zSh$Zmo0twX@3R2tvRV`5GbAV+humsl8<2YST6jT}>Z4L)LtmY09_S;=zKuo6>eQ71 z8VR?}o5r;h`7?`Pm!Q`{&V@bh#Xx8E0%lL<^zVCrmiH4#Y3S4;wPf-g)rupV(Kna> zz*9i${5SC9Rhd2}*T8jA05=Ec7=MO0tH|CAc3l^7L+S`$dxU?rp049$vi+Y@I^)Lw zla%g9(?O6zlq}FCoagDVi^A8rO7NHst?C|jZ%`Lx;^{iT*I_qOctrn#VoA3z>5cwE zVk1j44D8h6>Bu3c9ut>|_Td$CFvc*T-S_CGiL=RUe)-H;5hFedIaWT|Rv~tfQScdC z!lik!#Muc{6#F@$B4e;+a#@Ui=i4kX6U(}-<1j6q4Fe7JJRzBQWAZA8g!SZr043H# z?Pt~mVaeqPL%1^vQ+2A`}5A64^0Ltg7bAOp91oQ6lH8Ymi5XjiuIjk5!)zTpC z&>!*9kqod`>puF59~m=Vq^cyDjf*&uz;WYTH+I8Ywt+MIN!eYNr<1FhB%(UxrKsB7 z$omGb%DDI=wVGkdH=p1!<(@-%8(yk3Mk0M1ejg~P=MNs>b~Nw9^+~#~ZkY1ldsj2A zqt|HE8au6)ZBMO}Q>a*%#tS- zZuGh2ERWx?-Uuh~{8``L)k;3mwa$dp%gqqg@VXTksMR-QiYR=#v6 z!sJi4GV|r|{GxXnmti7-CVL7w+{Rg#8|5?@HQdneZSSmub5@j(0$A3+tXElc`!914 zVwe5B{QFZHNFx6qX>T1D)z?&pFpQ=f2;oja)Xv3YxL}?LhtEl2yi48&)5&h4a($lyr%iHQP``MWG zyi{?cvLl0!j*E|u6Rb4tEIR`FE71Bc9e4P=1DsPAFIwQ#+2M$g#*}O{nZzz4g`?qg z8>yROPf|S`A7R36qmD-^aTjAS%x;9oWoEp><6VAj*mLtm>&#uNRaAoaeaRDo!XW1arhYMha-oN~c6wMS9uqP)Y@zR#9{heU@W8s)n2whNt0 za9!~>;o(q2e=VoNc&Z_6vsUJHl+I>VL=L0tKFg4v0e6E+)sx0}^8OnVW|m%K{Nsek zqKHZQ!(Dfy+4m>l_De^uO9bIPVV=SHfd};;3mSv>ips|+j11@`N1-G}sXe-s7hR7K z0NLZy>t1$+cK@-6k^V2|!4bE{;MX2Y zUbw_QUYxT`I4bQO0`wUC$3rP$QrAfl63y0(=I;dfFhsxHiT~h+0f(v}1ESN*AI(iJ zn~^<_5gRB584M&tR4Rirwm4z0@!Hd4uoEEcSsWCnDFEd1eDV`=CEh@;ioM5h#OEy2 z!RI?KQG%wK;_IBbW2;`WTa7f}J?DP0AkP5oUbh`n^ZbNd3$PC`3#ziH>0{K+6?AY> ziy)QmLn2)q?OVjv;`WJ868?Z!_wAZ)$^4V|qrn+$5zny;KZ{^J*X&xikXvH2*H~6z z6Jgv6*#td2p_eg{SJenM3VZHgn3OmZE5@r>`p8{!E{yxr#(Pt(r#x*YfihqZORnWe!<0a1K6Gm#C(tsC=QC(+k|k2iMzY0H+EezlC2oZ zxCo8%%id+Gk(5~OSyHX`Ag=~Yy}E~;V8~5~BL!h``Vn{h!|w+}fTh>@?if_14?@zf z>38L9VKSt77IbY;$m`G-I!(lUZML4e`YREO_V?%dX1Hm*H6h4Vo>aR&*fXivabjCr zpIu|YScX2k-~Qv%?b^0A&)nnc(?Ip2?^XY9#-^C$jZGK&6fVL3Gn~6rc<)%X-o_@J zCQTC*v6#Qr^bexda6j@+ieM;`qI`p4K5}IG>2~9!jI|_{Q!m0$1N|fd2hD_?)k|D# zdU=^g?tR~%6#A858;m@pdPc7jGT+JXO!W{K*W@@1V*V}hr(g|i@KFpFU>>zOqns*^ z#eHSM-6OFLXx6^9kY6w*XA$Ks3E=VL7KQvsyJ9%i-c9{B-(D!5YI`&;9Gj;LlY*@R zHVQ-&&FIJHN`|rI=C6`*?sa7)C`^lJBpdsZ8lf?+l{CzpXzp^gDBh*+eRgDDlgW~s z(a!O%!+_yiZlgxI35Sj_kjzN@Ey3OIuhO-|8|fOA+cOu#79qO$xWnNM?-v$SbSTJ| zUpBBivmIRAhmi22jggGQ%nbm?A9Sl<)M@34u-&rnrq2gl%nJSyaXQ{!^iKD%!m8*V zaxRd zNk4?W{bU`H+%3k@Y-rC2Xn~>H>L=M@&rJK8shPVSxpBgORZM28+l$Kbrp&H@5!L7f zYAioCUu_?_ds*p@0i;ebogAIXpVkR^SX(AapPV1A>ZE|ImHyl)w%z|6cjNReyl@!;#V5_EbWCgltbK)c3Ohz$FsUHehMVWK(OW(W$Z&mjgIti;d; zs<^scaIJj2l_~lfHzeCUaXVHIl9qaxlCTR<%j4?Fm;zPy)6xLu)i>bACqv&1>$sr` z-A3Qp66tDYB8_2Ql0ZNc*G^{rgDAHn8U{gmQ#O6Z4b;vj%d*C!S0>DwU3o`HxZR)3 zrbBk~JF__of>)z-m$*6%4JDN?UT;iWE=^Z|`g&!^apKB2a&RG?bWL*BIm{KA={4}G z{n;kZ%w1)cve$PwD(dw3ZBr)>ON%T;Q$((^OpZK2A_*_By95=Fg*caim@~ zi+_BQ65XCLaGg=F6IH++f5~^QbkRfrOvf$IZ)eE;#353<>sQ{dh;2jo+!l`AJP~_= zzO5STo%u`Sr;k$hC{-~$mF!&H4I?XGcx>CB9&ep-w;!IevqmJ2*)O;Y&Q%m9C!SIB9W8G`L6NvVa+sM%ao zVo5baX;Ns2IYgw0H9spe6$X_$V78yB_n5)VoWSfGM$X%9>^(tw}5UM(Xe;oq?!F zW2+Rxr1JezyFg?pqFuId&ESjH_$bs_;Jk2rxGrf*3gI39cz%c&E8G0PryIVXUEJBc z9u#>8Lh_*b!_7-2G(Xu87_x^=_x-W4Tuh_dAD-R=x{J^Eura`Ek2@{Q!8_kT29MUb z01j95%i&7Zr<*GVaVdng#}nQe)k6j+K9_jr*|Fi@LqJ3{aMB5RF?SL8E`!a5#cdXG%iO z`z%SSU5`E^(22N{rLg<>Ph_<;d-o9o&-yZ`&h0}1W$js9h}dfqTa1M~g?A->_S^n@ z$zS+C^NjxFRZl)t9Q@){MhcRbBgBF3_@!AE9`eR5e!^{gz3$F8KH6_vA970;MRd3q zfxaD~`PbD6SGJo)>R+YQxrIB)gZ8_Zb~ehpKGWN0t&l~uf2O|%8PXC2YaZjtetL|( zlQHV_c8T_iizGD%{F777Vdpt8@rT6+-B@Xnre!^Z9E}aZLE7uQ>Y6t;+EDKCzPwZL z-5W}E?kFrx7Lc?(3gd{>RPW!!T%SwPW7@wBHSFk#kXboPSSVUvQ&7o7jrx=l5OaKs zsuHh3ZZQ7+rk%OIy<0b}bRJJMWytk?7uk!z`A`nIe$KL8Q$fo$*SrPdaXghYVGkIU zXvYLTiNG6@75Y%+GiS3WxTrVx3gX*)MW`MD0=ok>%2zm|pEM-gNE&aC@2z7OduNW| zl2Fz?IHg09syWtCZ5xUP&m%bD$46dx)h61gAl1ulk|>6aotYY-F@ookjwGwV9}Zbs z9)9%5#VZ33p{dcg$6d=Z)Z@$L!{@X&4L3sQ3>jz?45ks4dITKX_XrE=Qe|jb^HuM= zeN~|2Jh0M#S4|AR&`8Yj1P)lU3E!G4Z?4xAAKqdLF`=95Rqf_(7P**PSq8AQFfYSj z2Z>#ia}pA>{-_$nyo4@L%w4dCNLZp?Q~9iFDDw2m;;~hk&tK8 z6F+Jm>K=hV)m{0Tq{9p-k*X3xV3mL%-IP~=)$0r%jXZAF`O&lCJ3{$e&=&1;_$zOu z8zCPYJlS9Fvya!$eUypCLude!6poY-csi27lsqhrHb~Tk_Dp1#<`l5)<3|a7TmjzokY~jSv4d7|yc^mF_m;p#^_u!TYC9Xx9rFIF3xf;Oj_u z+Nbdi?T6MQXGSDr(6>14?KthO3HlR4AcpSpfMoWc49Bx6^Olk^Aw;98wcc!>00ajC zSR)TTb&`9V-M5`l$^!T=b>*xmT=ZA~-TQ?n7nFTx9CAkJ&Qo0lkfV|L(E-f=giUZa zFh}^-1FD3SitFb8*JCx>m>L2C{@hHxEN5v0Z7sQh5}#`4oPMVN@<=1lr2gYb8GtxL zpIu)|*4+Z}K)mu=^2obDvq(r=MQ`wrIfRx26^~cqY=6gB0Lwbn`#n1fka$e`Q?=HF zN_Z-Y_mL2o`2ZMfUSmOXTxvjc{y{Y$-U>p$G^AwgtVi~RqF%d6o%|iK0Y9}>?r$}Y zD82XK&8eg~6@3sMBzjmUTHfCIZU1Pno{VZ13))?R^0vt=5IZT+to&RP5KPV$c_f}h zM9V0$UQ9bI>FB1kK$n+0>&*Z;-tk%Rw6I7GwDT>xBuG#vW>5x>kK* znGlb?a12u#v3yUWKM1)HtGEtG?0H~rNn*+{-(>lQYAtR2I(MjzS%a$aIBW@LmyKIH zSM)}e#f+X3@aYd#Rsy4UzhRd`#{7xj)PVw7{P}^zf%7{K)B`~FOZp-OGF70A2s{^U>MQvU;gBEA6llbT+mzOHJc6mVvh-_mF66dFBOG2bJK z)Fjz%+s{YwT?6_{vRmd`HWCW8e{-ced-_&Uzju1|#(C3twZ5JPFc6R@t)A0b&t;)^EA23j4EI{$U;~!n@=lsc^SXsx`UDoKYmwzx9;V3ToV)RhjWa072C4HWBw)X zUQYvgGW8VTDM}~-}XT@$RQ)3voKk|_NRY%g8!9eLev;GyElcRf2M;|1m zU3^A;#7`1aH@vj5U9c@MBl%Dgpx=(k>ccPt?eKa7CP|IsV^@MP%rbJ$1wU^_opl@NPD-Yo3M#KQ@_h*1%Ux%a`u?A?tB-#f z&??WXCd#I;IC1?UIj?3%*(l zmC$`jG>lV;Uwu+oRF^gM2zB$Oqgoc^tt3S$#f6o4Fd`gbIqR?G4v?mu7VgF*nlH-= z#fM8IkWa!5`MO4+sJpft^z|tmfzm%1|5w!1Swol_>##)HZCWfGYa`qTIEVplosLOC z|1%iA&>k{ybJUdhmGOcPFNc&1?0a|#?0TtK9g%y@)~@=@jhnb{H&t!FabpjQbxeJ{ zLRMf4lvA&vE;%|cIYJFoYM3;~=XH3t2l_X<+v^(y{rbDRqg*FJ=&4%=L{;t}yZ%J! zD(CYyA@{S*+t>@G3m$eOCY9ZxN3ggr_k87nnrRf|RZee(=rJYC%08@O0t7cpKc%r6irA29}7F|%lJ?3;rSY7(3xT+qZlQ0~;S*k|XN?YawdjOlboXv7ln~4@? zr62qIXfQXbderu*c9(scBBUO8%~QV zn}xwts;u&FlvOOWx5}z@oS(|7GChC$_+QGZgz~DX52imv-Zy88+>t>GDoGc*5|d-+ zd@@$tuR`|jQI@UX@lO^-B5JGZ9{MAFTc-edkpmo!lYRAmQ($DD>DEa((X`I2b-?|H zzzQ?zj;OluTHHjpud5UX`&#z6UyjbkZzrYQ`|R;-8LaaLPH#>~C3^$@#lf*LwIKeb z{k84N&vFoRXL9hjMsASgMS78+Yvz3!bHitM#~q>+bRWotRY1{0U5D;p+{mj4j==qC zWrzJWO|NcNAwRpNfjzw)!3A$ou2Px>#FIrtHJs>9_!a3Hz}}d-2E0bMK?pKcw;Kr8$#;a1k^zPx9tHj?v$pf9KL=KaDDwUS9mBt!O)f79mt<=iW%zOk0oxQ|xaGsxtiRve@_dyTgnFG3hz>PK8 zcfk9&!7m2#f%^DBj_yXb+py{Oy#$mN+hnf0Cm*7|zrOhli=+T$K#}zr`-v)S4(3?L1wtVkV8vZ?y+WT5xXdNoVRGz*Hosa$l-G* zG8va&Y`g_MwDA~{K{`F|zxCo|>0+V0@p+RP{(aXm5zMDdPq)}^Zr?szwA`&=Hsd(? zm;7p5;{=${g1u1(T+l~lvfYG5k+Yae7V*%%|D;Mn*6-${+dJ3mURqRqGW`Q8Ng#C4 z9&!#T^tz6D!TM|bf14U<&V)=zc8KFML$92L2>uf%IlCuxP*0cIv#6FGRs>y#9Qkhs zpCD=omx;(NhQZ?QMs1EApDJ$htVHVgoPwQg-c0X`H@AX4lBhs1a9q_*UB(ZWvIo;8 z4ItI}N}vlP^b%Be@49-c+m~raG;IvOMf`$!5wi30ZGcJL=()fYB`kYiP(P$rFM9`w z_tmm@lWCfPvQs|4LISsF>91MTRPs|aX zzIg`3Y~3j9AQC{l$UMgMBp!SaI~)qp3Sy>fsXeR}T?r%M?KHazqd!*A8P&kO@=P;q z=GV`-!dPQd*HR9n%OvM?M!m}?kRM@MT67-bbCA#=XL>xfkr0!)tGtA}Ef?3^FG z*K*gL#YY?Jyh>6Jrt#&*V8}hGj1c>>MnccEIQCmT&k(ql(<(* zx*;#8BU4nvdDhQFee1e>2{m6sL004g&pJY1h`cZ2d^+6FHQ#kw^&@+^JXxRKe}p)f zi<(4=vA6p;mh0Fs;new8V%wnBqGP?vfP297T~&kD+t9XlH)ilW`GqNAp>oX6{*1K$ z?9aGHB|Fr?tQxFY=7S^upK)#b7lZc$%#}}$kp!CQDRfz@cpFVZq-gni_N+uk z_U#yRhkPIt_=7`0x3jrx^)*o6m~h1bdh-{yG$d5;Gpo&-Of&xad`|k|x@+D@peg!j zPQUI$wxWJY-^eRE3ErC(@6xTRN9Q#hk{BNnzN6ttieUFi74eKV57!BIG#4A_|BJ#(}#E zUU+H*JZQF2e~U-r;tAsTkl_*InIlb73tM01S^|0GmHQ0De1kCYg71q~lJt6}q>1$Zn>eh@aX-w1MHaz)RHu z9XZurnV&u$^usO|#xh-~;s<@twhe>eBxY6?v5}pe@81(4o{0?z%P9F6UfYMVA5XtDCHjSW0Hsvu2tN}~ZK~o*?A{+>^ z3d$AVk&+&Q0^ymczD1|t9YZGERHrP&o6qyjAu$Z?$8Asxik!aUtpW5Ge-j_Ud5!+o zV-z=`dE2ACzH!t*&f!qi{3ehVtNG#ekP9OKO||Q0o#cf#wh<8dR~EIR{}hnQYq=Nr zC=t5ZG+Ux>fRt+-?v$v%$851ZnjgghRt*1e0#b$CIsq}g3DGXesZQZPG~ozaxlk?W z0izy;d|jZ&1sL=$xW>W++JFp}&M}Uj+~NKQH}9=R%L=Z>YB})n@cZogFTChA#V?Ek zh>FlMZluOMD~S5j8ni+WS`QLkz)ad?Rr;B92y@+tbEG1CsEgI)(x;S<6PFQzwt>my z`H)RTL#H=FjZLoAGjuEDU>a_Db1|nvAhH|b-xA7x56%IC4_z68=Kz`44Gv9PKvZz* zQmdq!474|rw2{Sq?6t}gf^4OW>!{~;VM-Yha|S&cydFd;Fp{wAy7Up5X%NwxB<`o- z%2W(Y)4JeC>&Lz#2;2Ub|54BW7KatF#Cb39c|!qyCE5*015+lXeXRziXXHg2noz?| zyplF&2s;!LT${*o&}S{ljheD{0(WzZnl{7w6ke zp;Fip5SqetOasIt@oh6u>jGEDP1(s3yDt@p_=9bLVy-If{qcr||JzcA9F(z>TK$iE z3zYns2E)RZW+nBBrq_K(z6Po3v7*%rn8@dCB4ak#5!I1FSzNymRAO?{V*2k|hC-m0 zp?>;^ql!|CC;rZoAn1MpPr*LMR4piJxO7bA`oZN0%@e%`#7~CnK!E$L`04Gt=gyR-RZ@3>Yqs$BHH!2>nB}n@ORmo`6QliO zo&5CaCp*r0H9L!!6x59Bw6hI5kA*WXuItcvY5@(`n;ou4^k1> z8(H@^A=F<$)c+`i`U6B!1?EO5McvF)4AW$XW zr35*<<@(Ltl-!95FzZF*o8nsy6kd{v0Bx+w_Xn)dwm|eci8+~dT-}JQ69*OoLZPiT9x2OnN>w?b00{>= zt(|9S_Q z3lZEVS27`pFkxPL>ZwQQd8M`hd46#9&_`!=z@5upXec8%iH$h*rM+0=Ych*YRH+tK ze5u9cWRCG4PVx?|F^O@IDN9W#gSXAr#{XxyR~eO-F6M6Zk6v@OqxR26B9l!I%g?(E zM;p%n393Gr`~j-$^AHw7u7856apV6HRMGMN6;z3Y`fpdI8kUTPQ)S)@ggrqF>WFy( zqM%A;Sd%Rb=PQ7u8F@(BH`i_$NI3`}`vxlz6$INFIHFxlTT0$64M^%P zP;zKzjQ@)Ea=(rC>iWPo`ER7Ej%_v5J=M`Tu27`&e9|$Zn6ZAsm`?fGak0pk5-jew zOU(B22h+%Bd%~Zf0*N`m1{NQFI}@VhUzAZR{}ZIz7%yGLrj-sGJ3xsgI5(ymz)V7m zG%#=jDiiMf6jzx1-aas_38cnHLkj=0>$QrAJ_%&}p!M62^U-J>;+{m>v!kS(1Ok6^ zL4HCOzrz{{H1s?(i}{fZG%it3cr{PH1X+KfPQtExi-h9%lq5trfFJ!4n{rF>=$+!+ z1xuX2QLDGd6+k+1Hk?(H@8%a|G9UIW{1^e*c@8wvv7g|o%ORrNJ*z7EF=53oY{kDT z)VZ((XEHNZ`cg4QmV&W-fA3wK@S%Do(b2r=cjHvU{gp|rIkmPXNsxomw)Lz_+R~hqhk|hta6(JQe)>-;~tDg z?_v>;>0JLQi3U2^_1aP51j*6=i4bHi5k zTH==}gz&c;Ov;;u+Ld+^k;SvE{N{e>fLU@ZT31C;5zwRLK#QF5XpM*yc@a-a;(_!{d4X!?(Xe+x z8KRjVTq<_cx;f3sFANnkS(Q_--*_vD5-E_lm_gMk^L)Z1U*)NQ#$Ec%dn3q+TAd@~ z{02jDnn`p&mIAm1{Lc~tVU#O(+#6X`1jHO@F}UGS6JUTtNt-R@bC&3S6xn^Zq}y>G zDg5?3=Op*@D$7YWdrZjsX_&9#H|FV<@I#_YjH{^A=^XJ@+rCp}vfCyDaEkG{V0fjP zxO?cOH0#&$WT1dP#C~fJ?5(j}^42A0O7wsuc}dygXQ&t4tv1TO2+&5g{?ta1USL&R zb{f{X9cOy8a~GdujMx1m*^BX*V=*N{LE(JOo+fXcKbZL5Zc(8Kee%@W(St~zhMoT< z+6!_U?X_yUsPh0rg-l(wwPKcj_*GEk=e;`IF0SpxbnCwmDV~~Uh8rS<`fElQ;Js|0p?+BG7#h45~f0UYH5s}laiB^CIh@*&KrxrBU3v}IX%m4G! zTp;VDl9r61Z1VL25A>J_XqrtRXo@OrDS2y}^6Aw~WC6~?XSm1a%z4+(yd7%75fe(T zz8`a4*jur$*`CD`JEd0sbOCzDzjy}p5uv13(2qXV#QkE;x=OWc77gZbzO@0)?+VRH zmD&3IP3+X=tJ@7CDc@&rGmv|v)@^*M6usNCqNXgrW!ol~{Q#|jd43Nrfv59b$K+a(Wr}e z!1D7-b1A2>AFAir5b-zk)7wR#w^0Uw}~;QahL{vVq3gD;s(d^%!fV zg`c`7CS8k}0yzVfRguBe##Qz~=x~Ca(eXjtEcs1W-dFhF6?SQ>ZxAHW@aT%ssa~%j z?tC15K-IaLu@pBdt2wz3Mc%pD6+U2HK(13<2c|hB0n{{nCE8C?dJA{Y1W)(6+bjCy zk(Q^%$7uxr@bO*i0ZCg@(~$`xX<*iqr#BA13B-C%In;q%L6qfHnBPAPe1~s5`z@~t z?RqM4%qO8*weI0ta>rl|(&pZ@>z1gu3-x3zVJlf_yKf2d@>MD9=DwN*R9t1egGRlse>`m@6|F;+EE2F|&K_I*Fz z%W9@K<$@w21+D?flJQ`wdF)7Y+gl(7sGRVQuO~!`Am7=3W^C!GXbUfXh6+scM6lzT zK6oCVe*9;T>pSP3tNU#}Er0KE3g|0Tp9smGmi3BJt(SZU7C z-UjHtB7V+if`jKo-GN5+m6Qt25YYdzqV<0v5zmKG6YdNFE15T;HOZ>F5qpq^MgHQ08jN{x_kMJXD)p z`ZjWldu}!ycl*djL(hAV18S$AtpR}ANtWg}f;w}{T^E5|CHR?sG+K)C zrsBU3ZY&yli0yqCND96&Ax&Qg*3)wbIL|j_BcD!Cb$=Ew4UbzmOPKm zbM0YWfNA|%+xp9k_jYmIX>QcmQdQLDmjIV29=p6I&q5RZo zZWnAAS4nwGo;HvpeFBEpU zaQ#mHw~|SCs;hg8>Qr}oB1w(&7m;%RFNxHxr|Rq3^A?omXGlDNVdFxST2MMYYJL_d z;NB3dP+HSFrh#UUVeez7sy1yaOqf$W8$vrxMfVWApgh{FHJt57@2F_d1d^M&m;a-< z5#WJve=r#>w%@_l=i~&3Vpe#~vZqauGhkH@ZU)H~Pv-^m9k4H<%&?(3;-oko*L;Us znrgFYci+6X&rL(+%D=Xk0xRU7QAq$)`%3NPD%PxditAkkC>bLMpFf#aEhKYM9elx=Fvjwx-Zs+wPo*AOW zXz(}KMei>6D8=aCHm&kn&+i>!TsYqWa286^Haf%n3w}4&QRHR16Wi zSTF7$e}t1#Wp7ynF%F%{Hk}7L5q7ZO{i~HRHt=`$R*H`H?jfa*>A2xR5gWMB)!FWP zq?_nu8u(><(FO|!bmK*4sWXk0?l#ve4og?FTkSB^{{HP95s}*K-LpxUH1G!zXOP47 z+CkYxe@g1ChtBD9zR?SCYU->A@$^+a)cEA)#U94B*4OR8JB)5cUBp%?ZKuu)R|DSf zHdt~j+qPw+oAvcXbpH{3+PVGGoNdd2{Zet}R(t>wU{$fyI&-nexR%>UL@=j!7s1ge^Ex7Hu4NL6DLEE0{(Dmc@S0*D}4e6 z`+gUJeeaZ{CArQ74sskg$oV-7a@y{lGe!9@|b=E=O7&Wy+P;rdl}HqS|;V14!V z)>n>COeCeIYQ8ABKNc(jLi)aTx58zf4JM%RunV z)}j7nt-_95fUi~Zce1}0knCS@q?ZK2&OFL`sUzk(?r-1GZ>|CUu0i0gIQD&S;_l~x z37#tKame>h4MkJ^9fxRS*HxSAzP-TnXRLJY=T0Iy$3^xh?(bdAhn_@PF7T9q?PSKT zbH_3P2^a|#J~YzvbCGGtrTgZ)2xRytvF1J5OO0gw(kFMCp&w7c-Zii6o#zgoc4nL( z$lNNx_~wg1jNgr)AHB9qx?-rc0%HEWOvP^RRGg@?kN7)KS#Sn47Z9(%brbcaW#spI z>^Qf^$6qfW#K=Ofx7S8t;A;_A-S4dOFK6Aa?;JTin>`T@|H05sY**1vBX=nOgdLPX zz3_2olC;?wF0>5AcL5)!5F9tvv1QzT7-Y zOUHTGSl+AF_~WZ&_rBa(k9s9!ZE-2@k4SvzD)>tkyDY9Wnzisf9v)qGg{+IM&b# zazeiJaULP{jGW$I%(Y!6wp|`MuKaG!KKVd4J+qyDj>TQ|6?#8ke>U?wV49j(IPSOW z8|B=jvpN_sbfJB&N{m%Xip`jm1k+!<>vJ%?b>F^wK4+sZO>4fdiT4$A#pIa;3hydP zD+MVZ`9-)cUe`*)a|o}s=~3CVeOK)9B2I?s-I%98+Pm*L`acb2*x;NvABU!}RLG?( zsP$XKBoJNI<_@z==^Qn19kUUe%{#qYzs|Cw8e6uZj_vxU%9q^4L4r{9LihMihTn6B zUIdlrePWD7iHFnzY!PSH0ZG`>9}Mkci#jmSH~Eb&j~Rm@1%w;F>vB@99HOKp3F z3p3KQZ1Y-s=WN#OV_g>!n+CR1P1&uYRiT}Wm?EIWENai#K;_VeCR}?bZl8!?Et)nB zE&m~cf<;ZAoKs=iXQNySzaZ!oE<81&m<1(?V~<)%QLwm+Gb0#Y?6Y)xu*fH3HfrIBI?WiVnpK3kXmX8PhsKmX`xZ3cE*4|VxX-^Jky0bC zIUY1T#{}LASdx+wCmrEE-8@$DPahsNeqVlMN=LO%jO$ifmT!=xZIgxTU@{VGokz;y z{kiGf#Mi_lToN1m9cmoS`U~EsyOiR%qs&7pds0t6;+DWZEel%8F^Mnu1c+%mXS|rs z`4SO=_DH(Ph{8}(ny61dh6+YAP4OaqB0-?V&!hHyV{cJd;(9q^xD-3#un0GKZyP%( zz^r!13lp2@0j4sc_L!c?hus+xLU*{yWvln$x|M4qjea2K`Jj$Nyv~8=s2gCj2GFq( zG%s<8FV(&9W7$dwEya>2oj`X5HF&U@i)qT&AT+EMq>q_}EKg`r5gwSjU?!<+qoRG` z45P!nyE8nj?NR7DMu|3w(d^?e)yKoaGah@L2BC{BcP|qVx4(MOo9Y7+doBLRpbT00 zu6u}3a6_Mc`FZTYd3zNNq%Cg2ns#dz2S|hMitD_9AV|)TPOguEKkO;lpDv$%q)U?D z$5fw*9lI3ZzT#Ro@==?&QrWuj9solur=Zg_uwV z!cC;c+j)(rVyj|9@Pma`tfY54w&j~dUV|{!S{(1=>G|&$si%x<7Sdj%sOxG97jn{- z6|B;r_rB0K0bfhd`opuVo#Y|T!xeo7ZGu^^HxUSDpREVBN_?_pJ3Fp8$NCz_XWMIK zkq~Tj{^UR;c6J=oWXPbFY{-G91K0;iE69kVs{bk;@Mc>o@uTla8t+#D3j1%1b_-4L z*YoXG&!4R(9lhe03bJa+>|+aVdi;{co1Jc|{XjSd*?M)|t{5F^spHk(><{%JML-EV z6He+Q8$peys|@eiU~B|E+i!+X5||-N3YB#2eU&vQcN*i9#(r+B=r|l(r%hkkuW*6K zZ&j74c#sZ`V5G>7MiX9YdQ@3qCg=Y)34)`+O*58uZlx#b`U&Pm50c81(c!gH=XsI5 z{*ajWW2&B}2G!NGqq6Pl1VYeCHBFvsExU5(XIlPhz&!F6>bIurRXy7%6YCUB4rSeh z^dQC+5x@DYi>o{)cSQZdI zqHW?yC?6U`Zp0{I&`eqrh{;`fZTjfp8cjvMsYv4WaLy>`VXblB;izs4gcciXK} zOxWL9GHDZ8B6PA(NAjsu`{v(ehF-qx#5lwG)RPbz>|t#l^nUvmPkl!I;Wn^rHQ5XKuQJESj;uRYKa2X2W>e&q2tF_qnCOuyNF^kN! zLpq5gBZT8deKB{>|FGmfH$62iEpB~afk_Dit4xbMwSZV8Egr%2_c!udX4T!wX#pBS z%nDVFZ6`9RIF3Cha*n1UB&h2Rlv}M4Q7PWL_vUe@Spj`ht(?3E*w=BiNfY>G=(WaBvM@c0ZVtI_{#)ip- zP!QOsQH=FUB+J^+L>Wg$k$EVM5b+G)rQ&sV7+G6aQ|!<=y976I zI1hqMnhZBWSXI@mna^x#4xi#aM;gP0CmQVR|G2A#2My#$iq4r~CF6ZE`9$-pFb~%1 zU2B#+zs`fAsem8-c~>U=KxWVun^Yj zP9zo$se>{s%NP2+*kTh1OCx%F66#*k#GX_7Bt(os&|YgZVsApirt8ooK=Dy6i!W0E z4{v(c_O{XK@Z{1v<3TMfLB)fl4Z8}u!#isR0;|u9AkC<#W=CWeeu#D7n+`^zf-Tm@ zHH2R**gRSx06Q+)$r!)am155be*A%R9 zZfGY*5u}>c7LihY2G;L4#Qu_DJ;-i8I)5C;V~jXrt&m?!r1-vjnQDmZqn&(w_j+YU zLH7fq$4h63_WT=5?eC`{YLx+{O6atz*y%g0EoFtE3|aNplo#>wK1m@gnCrsh73S?s z>237~;Fr*M60a{dk8+8x3C~PEn2N=${AhSynBLe5nwF5^Kl->dui|I9F`epgrKo8_ zC(^CzngVyN;@+^|@uNw|T`N2_>k%YDFI|zRcmv6-dhzbSI8(~8{C*JE;)L4hOUpqeuSI%{Yf|l`A4&%E5oSmSog$(PHX>Szl}9z zg;?Lf$vi?_@Dh&iMhX!y;2K3(E_RA>118E6Y<-n=?lME48Wp&qilBrX#jxF;&w^Yn zwy##W83dyzCdEyqHrU5z>F3(VBpf*4^IoqxsdJKr`@S9Kii#Oda!lP-_)L%5(y3`p zo6zW4wv(i6>gUnW@^Iv#$%*T6`tO3?gb{_$-0uG7$`U$ z3}(>ZGH1PFU7=cyEs}gq^2tC}?@8+MWHH|C)J!7*jKV;+PizGu#a*H;u8|GX4FQ*5 zWAr3WRc&P>IbdFfH>!i?FQhaaY%Zr`PViGs2SsNu?(A~TzvRaG+}L)RxTe#w<2t`z zW!e6!_abQxo3B5Xzk^t+;L^dN{uR!i&wdYcPOv1=_ z78wW)c~@Fx&@IDCN7oTsitv_9=Yfc+Mc-tlHAnr6nNzqup`IuE?J?kuNSpJ0t2u7t z*d^^4&amOgK`Sb=3?z&Ia7Yh_v-K=nB@&lpnP3uI!F;Lz)c`Hk`midwN~u1F!om;M zA2UFfKJ6!UBDw=TnGfL)BFK!+p6f^%%HG*1gq`w?>MBAUJ|H{Ooy+vVXIf;qz!DAL z3LG6538~?Dz1=i?ZN?MQf^{Lgfs*nD%Ql3^-qqi1CrNj2T;59$(p&AfGn`r|O|iO1xIvRcHTWd0Vz zCUKO_b(c&164}N}DSEQ$2a9YQ-RF>n`#(CyYA-1=MLM8LxwVb3^E3Ie#TM+<(`D$D zfl!wXo&B53vOLIx9ZjhF4yTGE8|dy1oz1geXn>m_$zlFU^8P88Z78uo7M3a2VQ2s9 zhWgF3i42~RN86Y|aMYyyi{fWV{+weQO=`Yt_O$`dGD}+!Z_sMD{?k`T+TsganOpCT zC4Idwk!0P}2Qrf%XPrpl-Ymazt^KhQ-_&ZZ-RBy=tnc$VQMS}Aa$|A2%Im0H`H?5D zdyr2yBrIH6dS6rc;9#={YhyB%Cl`Wi=cZFEw7JY@&$h8mN`%@vR~7u(F!6otc}m4w z?gdiB2II203vFLxOJ>G#eE>gwFdn-5K+y{6UK<6*XRNm7*|i)xtZYP7to##QNZxD@ zuBYt?^m($gfrdUZd|M+zXNt?f$n~=|W_Uswp5RT-nFoPP=Ot_s-MHWFd|LPX+23d`GCkP&{XUGVzq#KNx;<@cb@yk&5teTv>hr^`Lg>^ zz}W-|B8ZM6Ipq(B#@aUT-^VWkT`k#Hi}GuKwkFy4@@oQ{S2ZS@0`YA1ec5hY7yc?X z3`Yy;J!AUAe6;%rL7u;d7kC75afl_qd&xA#!VW)pR%Gq}!CEFY^i3HubLE?Q_UTFo zwTLi{{umnY-mI#bqpSTuW^n7b@a}+9q{%zq%gpCvlCr1;u;+}i1Zp^?>>$KPeYBRc zl_8gjlJ(sh{=gtBL?%%4Tlf1i%^N$vUEFjS|KtlTo$9UWW`H0ED3bd(ZCACvA7M`i z6A3DrxCWionTv*bWtpB_hL#Ln6@TWo-U-_N#wk!F~L%2fBy2Q803?Vt!9z+@SijEP3qTJa*vcc89kph>$W@A=31($FSMq2=}S5`7!xSRvdflo>hloR zAh?*owAm+qXPW{l#Aa4blyg$NhLnu`^CSYNw73TCYk(ps%QqV@g%sd&+*YrLK4nAT zlSw7*EaC>Z#K61BiZ~W>X4{k~0mt9eszlIS4tvw&ukqUtV|X)|AQU@ayD4(yoLty7 zK8g$NU@{0g*0T|gLZ=ittszTK(fi-#kED#@(@`Rt-{78Ys)2{qe;vr*!`fs++w>!A zBi|QF8m_(mTvN$kL$#4M9e;jJ5XbT7+*q33U1%Vu&xpZE%nc;6I_RwbG+Pq4o)>F1 zH7bBoFUn*R)~v}+QCbvB#n=_~S;!iNrVICj+wll;c7FewM($^ei+cMwHuv*tyVes_ z3TbrCu+{SZ8K(O8c40+q?atdag7* zMravHE?w^w)x+M+U0zsmS>jtx<}B1lF080C9#ffVA23b^aTY)~5kTJu?6>cjw=<-N zK2d@^2`p83rZVX3Q2%nTVu9*bJiK9Hf4{VYno^{1pYo$56)}A|(YAGpdj2PJ+-u6R z{&QrKhtZGOBYXqyYpJy;Ek8V8aTNpiq2u!lhuvL^7f`6B@mekKRK!VTXu&r$#$S9u zkt*jzcrcTXrj)o)zC+@{Ac(oi6bC(S(Q2^aFQi$Fk4mN%8dW6lK_TlHH`|bwS_+R_ z`azMn`_1KJff#TLau)GK__xEHqWLvq#y+az6uRq|n%rb?gJ&6E4I0n`SydVd?AFfH zq^p=Gt2qpJ3MRR$bg^9yJMVuQZ)b-IB}Hih68q}~cV|0e)0QaN%KSp^`N)sX6JqQ3 z-wIpZ_%K_B8F@Cgqjz8I8&b4~4!}nwyXD*XX44mZ+#PYOx1Kx7*y=FdnOf6y)DX6m zbeh@#v>&D?sPzy34|{JJ5LNfS``d^}w{!^7(p}OmqI8IWfHXs=3eufYLzi?7%?L;d z%+MW@!_XZ=o$aGO=lRC(|3B}}oAZjd>{)B?b>H{rx~`S;>lb}WaVy(69o0VQ6h9IN zcD>|Pv5NWgYnLN%eoc?m7QT^nO=h}}3PQ;EcDr+=;GuuLnHNtpH*Q_3BADeO7RicE z=hk(M69XKS)pleKqe?zsy?!a`id?6<5`x4LjU|;h~_D2 zY+6xEu1#>k;+8dUn?{#aXa$pvoM9RNLcNsV)jb>QA8W&}Be0e_p(Aoq>tur3;G0`< z55g_X1-cIo(WD;1n`etR?jMnfe1RPdS}@u`q3RpjR9g?Lg!nA7In2lhVHxSh&61ar zI>MUHJ}dQ~_F(phRo;EyMe0#?03_NmH9S`-j~{;D2mfphkg%p&!EgTJHc^*=Uu^7WgiREmBNOc zt=E}F3171|a+V!m!^+jPxk=L9OQ|RwwALMF&y}lak9PFJcckJuEuipRylz+811x64 z(7afvj#Pgpu!_CmH)2yttMI^VV?x`?Mx$yfqgbe?7!q@r9|})5hkHe6N36%08_m^xP9&0a`!25s zbW9RD3(j4G9({O`sv|kYtGrY|n)~fg$=x-2lmziEmrppo`v%(V>pCgAKohEcrDu~f#Ot4RS9J`71jo!m8l^HT-W9%e zK^pb*&c-qaa~XIys(Too?gX$`S%XH;$0ne!%e|K}3$Ig#ygw)Qe$Z#eS6gwq)oXgc z>4oZ2ti20 zdRJA9hXtJ0=R;v1-52Yo;%a0Yv?76td*sM2^h+Rhz1}j&Ou{CQY@=EzmZ+(C=o*;L>b52-I7gA51p(8N&$ldpQTA=9mp zuU}|?&{$}qoQ$v~?z9BTKLU6_bk z)b1f=7&>5o@1E5 z71EzLgqvoh*HF1#y4PbFUlmTX{dkhK%wS7U{<%OkaC;A4mLf}6$k8VZBX5WYJq;?X z3-3N$3Np0x8i$|dZR~&)I()RcRc7kZv}a0{CzdOGOBHXpicjERe~K3Py4TQ%G~To^ z52O)^#j;rl5*`V)w|>DtlS5yJ){)jYtS(2ciiSmAaM|dJt14Y~!-m{6t9<+>R`c3KA%agucCZzlJ_k6VU^quj&;^(3D=Arf0&Ved@SG2SR0C4eI70_o!_VoU697y@8wHF)edmfGT|l}(vm(}e|;IY0IVR-xrsnlT%bY@WtI{d<#e)tL9M-MXuY1}`h`9FfQ%lxVRlit?m-)uQUKQd| ziq0M(8qBvoM3vx(SmbYcwL5~m&#*m2PL-zl8@XR1(uXbt*NFXjm$~@#`s4<>B53>n zkBI`oMrvxAKMC*OM4{*xQ3(47Q8;d~bD!epd%kX8$|QPl(F-w#y#W`-L-ph5es0p_ zKP5r3?1oRpYXs%lfJRX=Z0)u$8)Qj z;C5nVw|$TJG%|EGY4->vw>EUXOpptMuN4NP{`y7b{fEQ%vz}`(ns(HSMBrc6kKji%a2h)YpyQF9?6(wdGLUGF?0RvwS;>Xd#Q8M3zg_VOS(jX2Nu?yAc*t-<2m zTl72EM8_tpH~X|6Rt%N}J+b;Z%~8#Liz+u3>z>*_5)U1UgPm=H3RCGCsE~rB3(08c zAkIi!X*nX3;p!D?au)SOOW7(4o8Zz|2=!f85e}sB3Y*Ml+HkY)tJgg5YSO<)m_PPY zW;ysT2w^hvdCuuS5dzm1Jd0}me7swWyCqX9<$ljgRmyLqj)apBq|cZ;^50&5cD%A> z5$`og&+mX%i14qqJ~*&pT2HnC_nLu2Y0HcN1|8NacE5Ib2@(?nhazg`{t=& z`s{IQ;T1>+Ev#dogk$|^;!!!vLovEj8PBZw{rpn%yt2;%Dj*^o#N**mMc>@P#5cNZ z59+4Ar{@YK74$8rqT26!L3LES^B8Kj=RJ88iqr9*}P>n=5 zI{Gkow^rMP{;007S(^{Jayh$;1AcsAc5c(@OXst7U(Z)uHQ3kS+Wm;dn$3tsMdguIa*~*LPo>=e-Us4XH&| zHQNaJ%!_&akQ8ko#!vIoY&*qO2>hc3sB*b-6e>t+`lb^VTj~y&dk?r{lVjGFtyGJI zLDP>Gbf)b}TL#RljLaE22&TsupSOYBQKmyJBaZ#vYx;6APv@s}@^&69^lXG6W|-T! zCv$9@6ck=UbJ_l8580DTYi9ps4^4WN?&MzfH?*J&ngU;0utbW$?ujQ7L#K82OQzug}>Q@%}OHQxM5AwvUM_c9j@y& z=!-AQ3~k`K;+R#CxK&uUlNKh7jmh0U`#s5t{+tdY$|GCZ4Yg|cnjyu0tSfvJ5?Nx6 zYnF~DokuA>ujg-Wa48>KnV~bz&5b5VszWs5U1}vf+gWRSRk2PU-Yq>f?XP9~6F4-K zQ7eHQjh^Ta@|G1@crM;o6TAvtSJXP%QWN&gSE-4H(#P$*y>+4V>g+pR?Cq072T7mg z26C&9!Km4a{^L2xB$cpbJGrP-!2P7&B#Q?oG( z>zd!vcWxU#yM)yx-I%tysJZMoR&Q}}1E$s62Er729m3FFqz+lCySu2Rz&IXw7VD@y zw}f6qYMftW_({(P`+d#SpjA7>rm*=$!pK?eVKve+m-;EHJ?pL)x1y~=&>`&uOXKS=<$d1VY?ui4I^=%ZGqe*zl+lz4Q{tdqlwH2i z_ZBq9e%xaw2ePEA>ePW;#aVu_icnq^A+Mwxqc~zP6)o^)^z&Ykk$PnkhK8XfMx6i&UiQ4*?CJ=qA&85!Gq;o-M5ii?c-Sq8vxPH5>c8Jv+{838)vFq_0$0%vT)R ztt#Wk4K?+?EGXg5m{h;M$Z+d7)5d`hRi>^xPJi6j)yypPp7yCT1lfL|+UM;B2#0*H zYJ~6fzE9imrUdmI$9psrwAuIRXQh=NNG{n{=ao;M0h}ZO>doEqZVnORvwKmVw{`xx zQ2ts2fFRD&?|W3nbo9Lk>IqJsSrpR<8*)eM2vcpM^1c_UQFV~(htv6 zL8|W=tm_iqr*lY+MJ!PctTkR>$45$`UK0!=+CJmpK3F8Y!zKUi)f5rQz9E(EpxGW@ zvwM+T()Ig*VWL4wF~m+a^1>WoERHYlUyaKZCu<7rDE_R-Z{*L{WxtHib2zLj!`A_@0^D7t zS7zUU9l8~uK4C2W*6Zd**c0B9h`rSvC?9IvQXrJ4$oKmX1m@|vc>howSc{(Hn;T2k z&@h$t55p;!5MH@+W7XJ=d$I0#YDGp9EzFl1_m?9+R_`&Dq1AXKn)aF2{zfZ4W4U)r z@x;f}@Q#ZgEkB8_PJQlM+9A%ueDJ!Y8bK8`>^F2_Rwkz-BTHNXNh~)}{(i}_aTH<4 zphKFD_cI-~WL;QRF^1@}>mYw*cHZam;_-(40-Do9h0VD1^T;EdQ!@qpC2>jj`Q%m4 z^ymi9JuA2Q7^`<;a?49S8RpG9ab0C+tq)9k&Ht6D{NnvD+o}?tK1WPlq*+l5Nv=2Z zV68#3C#;7X1q;!GS5)-%i@*`h3A$ipXjCo<8&-@IOt4;(DLFBjzq(#MIRW;%ge z_Br^o290#lQ+Pa^$;@7Q9}#-n!<&4lF{>LVBR%4c5WjMtW<$`8yXX%pU6S@X`9*z6 ztOq;xh|-2O2G!3!-iA(V;)1D{CE7SS&C?%CYDry{Eb2$$$1C$F8k{xAA~aX(Dao{2 z5KgH&Snx>&H<)Ep@f+VSeFsL7%p`P+gF-lyOxePc@85(@D^8kK&MKoR7_!wg_4?0J zCdy1bG!jObxsEMI&^7i3S~0v}IKV5rrU!5!!AYhNaca1?zP* zrsd~Wl(*Cj^Xa%i``@dVC+OEyNu#&i}SFE#gtNSX!`Av}HEQ%$8+#G!63`u%IN@Ff zm-yjEqnb11_?qe$?p(cI}GUNH<62K&b_M~C}(Q!u799)@c60g%@63=!o-g)1)tf0 zm-n)GbW2Z@e5 z?irw-eU^226RK;icHV8Rrz2fB$1+JTt;?P*D#eb|M=kb2*v{|#ko6Y9Jbp9v1{zLd zFUel8{L3itc!1vFm0{#PJp;I_h>SF2tRo*T5X=ojm_?2}YHzWAHYnXt3HCBH_0J#8 zV@n?n77J+U71(~6w~~sjcM>Y&_VI9m%|@^iKL^1K)ZJ|lJdhJF9_miKuO@48fsOV8 zp)5kNKr;;2oZr>Ipemcn`ZMGG*NOEHso!S?5e&;Yq|n5EjPJ%GW)2xGrfb_oR9dfW z<%i`9;{k5HO&>w!K9|OzWiNN~f#JokIB5eWV-u_mVqV0D6$*i13N$A#@}VAe>Ga^C zZuk!CLPG6YqMjcc>TR{mb$m_^qMbP!tmxJjVf{=U7$s4ag@UP$y*vT*aq*}YVdM7w zgaD{!bkNo2(^FCU|4EI0GNjMqx7f2{(*en9E}b-m!ny?2_&o`{D}$j-;*OifN~1ey zq760*v=1cn_8>JAtAx0bRKc`uCjxsEs!`QT>y3(MxOYSDKbQ8#T8a`Q>j1bvuRl*q zQOH(6;)-W_c@j$-n^5j_wz-`%^26gH(6hEGhAD@5RJ0izE?9F!>B?aEQJT_9G+YY} z4Ek2=?GhgiuRI=17!Gb(HHkP^gewWvGB4DRS%D)OR~;CEV+~k|7QvZ=nIi+31Gv6r zKG^*2ES^;ufTOOlZEPg}+f%--xc{^sDFn>RVW!TjY!mk+9(~-D9$B{NfmGa`47Rb7 zJZu)kLIOycGCpU1MSm4w&dBP!NOy}$g}}!Y9?G)HQ2vmIXQ4Y@>==UKY_4|bkTuU% zBJU^2q1P;Vm(!eE+=0|TCiX1x9VWfY8WrMAT20<0TrzGr3PqA)r+$#cTtI@}B?hUD zv^v*6P1xeJWR_R8oyP%NeQeyk-E7P7GT~A7sqF|pTFZQWh~CtybUeMia})C12!rhP zbhP>W)DMqs{Xh?z@S_<+?()(Jc;)$=i}L=Otqgr+4zciwLNr*D5otAmgG; zA#0B(PXuwd>c+RIz9Fc$2R49pCYK2)XklK%qZM;K7fui2yL*x@&^0ucXVz)0aS*{Vlhm z|89R`lWccY=)|EYs8kBzh=*t;L@)jwbpFDg?|;wgF&sZ{@}fnr>p6#r(E~T{I=pVd z4(^7{h7p)%JyaAF}52AR{rg05O7XFRP{`z+rWPdZZlR7%{7idulK*0YqCj@t;or_^} zuPI}YU{uLCny3(?@|uCVDWuffbSTrOQek4~)%ke%O~}z*hs%ku(+h2aVW1tKE$DpmdRh?EsvEXjc50smC z*tiV^)pPZx*qz1MvN0>Re*M@f7z@bB$6u|(OZBEyFVL!pUjBLrZM!?N?P5oP+4W3< zJ17K0o#rpN4{WSr>fefb=K5?{+1-h+2f(q1C&Q4uziJS6?+$0c&T~UNhQqxldE*^4 zz|YU$0(TQf6X2jRz@EC)Y?&{nWY`NTS6() zdPHfv*lD{TMbkCEJ)krHlZBa%vDtf*^xF0nT|&7x z@dMD8G)TGh3&EJToOihUaYmt$JWzNJ+emXHPtSPVT(RFOpeXq8>d!Xqa`LKnh_Il1 z44=5Si`nO^EOhwc2`$c>#+q=p?x#2<^8j4UeVXa|Ei+mPIw;s&LQ8vm<{&{8LW}Yk z;GLK1AgZEHbTvttCi}?NAh13JJ)uQ)l>}i;Jtz!pKM+-fj5>=5Q}io4?YrZ(;Y(vD zQXx{K(>8)?)_E@VE8|Fj=q2x26-Nps8ga<73%Rl;(?Wfoi%^%VJA}ghxHP}Td2DZ{ zUM#$Ew1h>xOkvWaY8C^iVwSr!`7=sv8O1#mx}tu}y2Zx)pd@hJR+Xc05TFpS&p52* zNbS3Q{47#7ZZ5Hsb^9LH;%^^KYgFqQ(j~4z#&*Qn{CTOJ`Rml8_^C}Vod6ng6fKCk zti64QX}-YdwwT2uthQGBK-q}5pDauaJdQ|;65hQX(Hou}y@fAQ81n@GWo56->Zfb= zB3|c%qPg16tGj+%WY{W~^Ksj^8}zZ3UnIFP=cn{^;JD?YxL#m?EBWQ1!LpC76_HzY zo^%g>NXm*hkES7=U16!rdef*n*#g3%{Arr$*RP9vT{ZrwTIU7!mX1ID(|C93`0zx+ zG_GPY4A@`38H+AMd_97msvN$@L|g|xFMe1qr4y$vbnxuMpNFBoq(V}se0$ykN-gk| z#yQKJMbnO6%W=w_+@>SMO9e?;e^l}F^~V1Fdcy`4DhXiXqjp-^q?A;yYdKG{lza1;O+CYJg_L*>JSRneRZ8g&ZL6dh<&=(ZIxSqgmc<%9n_vE!d(qX}-N)D8O}M z<9#nnF|^#dL}1H%ejX2qfNJolYPG>--32FUDncLBGdn0q*ZM6KOilEKS&E_bf9aZYHdSbuEXlsx@STI@kQPWI|hvTs)>G_T2e zbe&A~i+4IMYVTC#yr3MdG!Pzt5-rk-$|MoDbE7JZhc}sMS5}v!+v>u9ihC%3*A@t% zDXMmKW0u7i6roCV`ssi(LdQR7?wbudmU_w9Lh7MOGAvwW=Pbr^&I>)hv{txnjd1}u zX*j}f14EA_8$U^rZP^?~TIIpx{3ZX04H>5bSvR5_MmgxNd(3?`_6?!N?g7@Jd-Gb{ z^V-9L&RK%55XF-)oswMwf5g?+(@VbH2QqG}^DLeGvMVl-x-o|WlIrrCKqc&6h^}UZ znf%J%9I5t3AdbNamav|5C@Zk=qN_;e^=A*0J)8-0?o7PNndR&-s zy*fV_L`A3|2ciy0o>?i21l(qs!q~#5-{WSM8JZf@FD(7|LFx=0l6$l;|5AJdd{X@> z-Q89`u!ZKG^2^4$RxCJfWsvvV|6;RJrkEg>M0DM` zKU0pz(pQ^XUU9ZInNUs6%x-{3+|KzM{HFQV1K z`bU&$Z27CrBB17=>SU+{4Vp5_L-d67oXiGt)nqs+h|xy0^o%}(PSRtrF3rh@+({>! z_4H;836Iwf1v0z*4xOwE%~K&(*2FNj+j|BYR}d!h_E;Qng4Cq7T}pIPe2MK@y+9;) zx`m;EugmDYI}1JYyH3Dmy5^0{jBt}N7l@)8y8_hyy7))Z_EuuQsVR;6|{C(QPOY~3z6(m^q?X))=w&7s{u zCd8NfS^n4Fr+jx8!jH)|^G)sQCx$*49jZtw>wr?L>+gA+ayhZAv(^p^K{&}d@2%U|S2YLN%yRW@e3D-h8z*Q5Y^=#pwOLRD zpPT;X=)RLaDQ88vP#6CaC|UkDXz6tmiV%`e7SEcI`oG;U8*_5>+gUi9w?U?ydEa;F zRDkh!Xx`zApY)61j~7M~(fdMxkdVI&MEq?r+943=SXWb$PJLEs(bcL0w?G^Z@r49K z))X89aYoT;HEql}Np@@XjBwF_VwO)GLY+ZuiDrS}vRhIv$LM6@;fPlcU8?VN0Ys;7 zHVqK*yq!R^ZNNY77H+}q`m;GWVO~I&6Q$ ze{zd^(!WZ~wix1VZ5CQE6-Ui=L_IY|E3&aJmmGJuzX6;i*xl1znXwHrm`3uoct7$$ zP!+)jyS?V?@d{I>^_~0Qt8CueyIU z6+e$4hhq!yF>Lb^(Eadk51eNQwbWqDJ4n+nxB{h%pz@mk6Q0U7SE1>X`C^;PXoWyS z9JIseCs}0y=nHyZLK(i=-G{7Y6)4$-n|Mg`=SXeJ!+F8C)BN+pd?ZI!s&T>O^*u+9 zhfn4~4Fd2fSar)R*^*VHw-^62Q${)0H+s`QGXt`PYbmBD*ApO$%Mkr@x9})LJhey_ zuQ?#w{Ht8W8_=BTiKG+*;n@7Aum{JNAYVP^_QG%a4(@_*$=2FI_BVLA?_z>M=ypZ}3oJ#GbK+m&j0d*;1EW;xljXQwxJEoSUOjdOs$8#Rl4(dQbE`E3orQ*RrH z_s{2Q-%asDJ{_@dNO@jbdd$C5W5n-@VP+IMbyd;0Sc+t*JzBdbF`N%#y zf@EXO!q%IZ8=K6ss@ie>XnHPusfkcVIZahW+IfmGBL@KJ*+S$(tm@(TZ3jR?U}7{U zs5AM-7+*s3=A0LIY_QxoDb~WHw%Fm*=@hT+O!m1)zKCVUiy+KupPv)J^ zc#2baq(d{#fwY7(hwCeEbTlx{7W`yB7Hf)_J{$wuMAYKs1CphQu>83Hv-b#t;CM7ZkA{C_bgHt%z(P_F_twR4uoZ_MUba*|)Rx&IgDgd|J*W#th}aS}OP znt$mlNP(;Imz8J2sgSJD&^NH)j4n95*4IX_zthlHfE7X}YaDo)V?y8-B3S%p$9cbY zP+ZGgm00sSt`$Cgc;cI!%OqMRZy2TeN49wX67D)HKFC+ zuTc3o-4u5%mo&gT?~d4e*1*{PsZsFxDCk9Y_!R1~PjNc^rVeknI<2K(=9PY^ujb3u zR$WWDICVZ+?pbdYC5geE3ca=nPNtKx;&I`Ye#bbxp3VTpOO6eb={B8i*-qK18Pc9mcPVBzbHt)P{v51m=xJ*q(Babe+7*&F=Dte?(a?lq2|XGH97(kQ;5R4QKu^hqXfhd8Hy+Ea7sMOGg9*DyAw zqc7BheW{8xxn*y_fLm~#J5?;5vF;G~qCN3kQ`flW&n>(2l6sch-%fE+;aONVktB?Z zlph<@Tti%*CQ$bP2LJ*T(Mhpdd5^nfCHAPuxY&M@0MFZh%8grSvpFzQwpx)0QLoyA zJ%=tF#d)0{kX-6Y90d<|U{n&~WlTOG#Zw7l3O4kTI--ijYG$JAko2Hsc2%E0Y65_W z5q87jssIn9LGz$11_$hWoR2oxPKkQ$@jW(Ox{Jb-wR!t=3Atr=t>yu+ZYiqkvg<5v z@pB#2;-vYoAR<)?k?t#I;57KjX;6lEu!GphIs${EDGDZXpscalO-BWdb7|6a$=>kI z4hNvKlF45tcHng{yyarj^upq z-UHcH?f!-oX#V$q)SR_g>9uM27!7-cmQR3(dEqOncJ;5QOFQ@=zL0C`^%Lw|IgyK} zLi<7O$WI(@Vrfo`jccHE;aK+iWxNK|^n4zfZQTbS)NuMxneU|)s-5ae!gbb}_;N4O zx43x1&83UNmE_ss1aY%H(q{5gl30-uhbAUf*v+}`32+g1#lbYCeHG>KU44#oy=6D! zMq7}fU>i5Og|INg)DWan7kT?%EIPkN!9Vfg$=_<3AmGKx#eCg3r1kBl0Xaj!bKN_W z!F)KA=#>X?PqMOscPAy}Nt=w&{hE@VU4XJ0;h|OIcRKaos;!lgMmkGIUI~X-;*{Y^ zilHwAZ(T_kMjT+ONjiNz6j=s~dVHh9%1(q{%U5q1hT7kj(>v+>#X zFhY8WOnUUyRT$I?ay$m2O`dku^sGdvyVq$8}1z%!q z70Cn`{<5-l!(^=0zfVuR@f^Z7H_exIQAMno1|n$T6CS6p93;{)Od9ysk}PIrqE^b& zf!R|tV@MxSW07o3W9pz7g4?&fFO|FU#p+$lo|96Kl`6m5XF{e%9y2E`CwX1sS4L~R zW$wJ*%XCx>)-uA6!q*tZ&(JTAYoWZjsqyi3E4LquXxXuHIL>K1>5<&#Td21n?X*;r zH9A?wrpePsbVW-Zl&+E_9C#1&mXQsoo*X?(UN47E_W0+&+Hv8}*|LqIVgL@j0Zo^~ z#fUQ^yZ`XrRO{F9r2O|Eq+I*A(@!JqH2^y-Zcku2`Bo}0%Hevm>Cb3FCOVI&B@=|GtM@nGEGGIr8vLT+oZB5?<~ShAgB;LU!unZJ2VzVm z945esycyR9(XxWT^|tfIGubA4KZ|Q}G$$7#WPQ*RHECM9F9f)4@Cd*7ewdcCkr|Z zGzpfl`OwPO7<%EmFH>ePAUnExUhrihE@TZJIJP)SSN6Y=KnYxG$6rw{qKcK9cM+pa z&Oa?*BTu*n6DAm(=A;SbnWbHPghG(@EF?+%J6GB(sEXz-vZbh&&)#S*xO#N+sWvvA zfD#SR(UyE4gRrAj!xu#O7JBqeY?0 z*|-ai{`!Xg+j9J^AUF5BEuCh%{={kWMtA0QkW_=n+E94f+)NK_T3C-E#ECHsso-F~ z0-

E`WbG!I-9lGGX-}ck{DTzagO)g~*9NQ@}G~>)1)T!5qDvdaDKD8 z1*!98oK^(;vR6Exn97yadnHC`t;=w~|G zf$wbvqT2y{c6`ra?BK{P@6im2qh8l-Pz(f(`DBwG9O)HEz zqs;I}I4#K|GA9>-x5Rqy<+;A0h=En;PLf?eDdKG6PQHw3!dUGm9I!CYn%zL>y$CVP z)wQR#`X>K}ZmI>RVr&q(&Xr?J-o7*@igz*gBkvUHTOsQKSzrAy#rG*>0;ox`w`P?3 zh>V%m(awCg%3ppeHJa})Wk^}V;IGEbn5m@~j@G7ew;sA#+dPMIk+@hy^#|J0mN6OJ zcx$x%u#%H)m6)Mg6ha%G!RieWeGPX@u}vn!-D|F01H9Xw8hbHI1+a`( zNoH(&=aFWiPNG*&lBz#7oJ2F6B@d-I50C>ZS^oVGZudthMv?a}(%)hFBwq(eJ6rG= zK#`kw7My{DyeuGia{sV`<(VRzl5a^e`A^Rwr$U#P9=r0VJ5w<;Z0oEsSQ@&=aZN^Cj;~OtmBxp zCnlrNSxn1DGJquk&G}GIq~T1aVUxnFMQqG2B>|dies+XFDi*oGbKRXErj+Hx9z0ox zEpcWJ{PsBGZci7MH?c7S9>UaWvq#t*vrC2j9KD5aFX@+zyhZeKJzM}#xQ06grH|T~ z?B%0f$zgjOtN>viM;;bwvW=mlF729^+}U%<+oeRGe<;LDCuPJKuyb)-xayP?rWpNO z8r#61G`3k~_JFS}qlwWT)V80PEs3H&I=)Y7S`p+b>xC(qcE1*!k9^p(#%>f%NC?Eg z9jAeIgYJ1tzFTd}y_3>BmeK#0CyV}%Cu=Rvcvjm!fpi^JDeyW~B;Uo(Fw_9n4v#Y*v{yCm{w zXp#4yV#gUvWs_W&SZ+ta<9(Ee+Yslx?#04K2t_mN8eU6Pfhl5+`q^s}wIJa`Bb_^( z@^E)qkB`qU4F|Gg8#qPliF2o0*!P;&92Fy1ykMylf#fs2J*p$fWHj($4jewyOA zf$MDB++X4iPu$6G4#<^A&V?Ln}Bi-zi?3p+PHAS_^4neX<|jo+97zY9`@ zaRYk*H;Ru&r@>rrwMxZ)>LgVSTyp#taCwIQpiK>ONjVcuEi!QnY{sfC*^;YHm~9O3n#t7-`e#vRR{sk=AD8wo3cEl#@cz}p3+IZ?){0LqlS|P(Xk_oIc?`ZJFTPH)d zmvb794^VPQ{dneu!M`)xzN0?w*y@P<0Xx+0u;ef|V7%4yUj(*A%Ha`4Th$wAN7!fiK8pa%S1E)i<6zc6j+PNm= zv}KV{a$Ne{xM=viuw)zEoINY3!e);JsJKlo{O;mx@ZZyO@|nrycQR=};NdTk2p@(TUA!^2yA4EUEg&n;-Nj>NfgDF11uvfQ#L zeW}&@HS^-m^bl&-?n}Be+;gf8E&_}_=W%!$nB87Vqw#N~k8d_Ty<~Y>drpkB#$Z*N zyZ&bg+s%nTA#5~3tWnQ_)VO*p{B<3@mMe4hGiqjC&OOxJY*wpKa;i`f)^DG!`?9^rEBt+3B~a`3H@nRS3G-HN4)9MKU3FAp2U6 zmC}`g05*5q2|vQs=@%osKmc32Xpo~*UDK))sMMWm!3%uMIR@Z_ zIXDNaErG8baOx#~yXj36W;sVs(1L*i95d-a;wL*+b)@cb^wwAXmGiF06bJp9)@fmO zbujMl_{V$?JPrrxGv!?Ap2Z<6-yj?n;eNYbKxHeFjv8UaoU9Kju|6Y|Mu)G|G@DW2 zS4H&#-!EE6C!nx;msnL^WmeiQcu!;*p=}i*BauKWw8g`~wspXT3qIu)OHFLDU~B&g zp0fUOT9wEg|3C2b&n&k8YvAcu&`sh*1+*_BvzdWRZnl{_haCjgD9~l$N{vhZfOGe@Lb*YK^A+nK=4|o(nX1OqJ{@K(C{{buG6>a>Pt#y zYj*_COdIyUv#eqJp0+QrVjYVmmd06aatSBxlVq&QNgX! z;JjNkiTyyE9$D&F?-sVp%dF4^zf7d-XCk0K&?)jnU=F3)(&mP#rpFHG?Yz@VpDIS~08F4aWEm zl2zqT)s}t2lWT6)r1@pf4J*N+Y3!q|z2oV~eiWSuxz z{OV3JIBu`}e!n|D_%EYW&Oq2Oi^(uuXyY}8aq>`T>I#bv>{mA1N(_?14qcztXXP{D z61Z1*!@tBf4v@LdVDy>d!%%etOElRtfWY`K=^TP!3;ci@ds%(1lvjq(;1`m!{vIuqKckuRX9l#f+rjU9ezxwHga z5#fCM(~g2Wj9;NIBg;g%1nt$Rh?nyVdn*_|7tCWyC$%S#X|folyG_YmPaHEKn(|Ic z@(%IDJhFiU$tw7_02&apR!8giF29uiHr-pvCTq84JtzV#3ToiMY`Eh{sP03pmxvzv zDmHiV+j4hsU-V=sKa+UEL#v6|s>Sy}s4&X7ocF{guIz!QlSkYDuER@I%VU$e?iK{! z)`7tCTkQEm{H_)oYtMSi2q-6odALM%{dv1#qx4e? z2{0EupqO5yg&zyFi?)ngc0R;ssWZxAv*EN;s_z$RF$JB{oJ{9+^XVgujq39tP$iwA8=m}GpJ-AgMLNv_B zI;4D1dC!sn^y&;SXswyNKh7pi-q*C#$urp*!ju+RXH1TV*%uUNX4@5D~Vw@W()6m?b+tzs>_ z8RejGZgj(ZGyiMT|KNAJIzg|x{o%9P`@l_~ALcDZ*3_~92IC)Yj+#Gdc{SWp!B*_5 zLp8ObHhiwB;ZZ1c^mAYWq(=Tu<`T>^)%C-CZ|?7TAdtmb+OEDCFED~;Q$5<+S$Wwuw(DqV5@%acui2$^JDBX!%lcgZawIFL_WnzcY zL$VX%mf`VZ96<64=ksT5nRP!LglF_}KvR9L&*z7!u1~u@wGh8I72Rn%SgSKJ$^n7e zXPWK{&#>6kb*A8ft91O1LoiDkz@?l&JjXmR+s*@IB*x|r&e3C2ydt^9r!m{`RmHm? zX+um2>~V#3<6eP-^^U43u=uCsLllp?hhAt2m>r-#RpH=0 z`Z(GNTr8s5ioY`a#Vgwfaz!L&@lAlR%I2ZuRoo4NXAura$EM!JP6u7CN85hkaS}K8 zqM~&eI7-iD#FMjhC}D|XcF1We-DN3nk0~Q2T$Xco#?c%+n3aG#h9JL0RFJ&ISVy-A zNeqpt;`|!xU$&;+$(*H3s_Q&dFEZ#eb2r(bTw9*fto#v5Sh}A|!Mf?vYWf}DF{<6T zV)p3+;Y~)0?5`Sq#)O__vC#0VdLd9lIV%65&s-k#dYDxO=`OSXEUcFH0mkxpK=AjN z%fvVRdf9JOae@3D_PuJ&wP@lO)lPvptc_r0`=Toq(byewAzy{-Z-R;X-7#yIv& zF6oWoUnC>&6nfE*5V{vtSzOp-ik??D1x26q8-b6$uF(d~;<&+XYHWXH+# z@x5I4)uEauf<42kN=WEExL|TVsWsxi(r8P!nf^renvb6I#7@CyTYM~=mH!1}r+AS^ z>V6Av|B2Y}18BerZhanCM2CJ1lQDd6>^w+KOtzLO?Ev{#P8|Mkkn%F{i_j>U^$(6% z6%Xs7Oc3!dTL&-;LcRI?*^d96DZ)CnpD^&TFb-}ZeYUW}>}!n1cpuZ5O#UuT1H!%& zJ+P}2q%Wa=C+v;TcifeF`Ae2dK9e^5!L*?L(RR>= z!I6{LbXu2NBiE@2?-e!=o8~Xw3)pc1a+*6ymo{@ zl%cQFRQwU8tbtQ&Av8A-1@O#O!s+U8eg0AMADBVG=qQJVc^F@cw+bCMu=O;!3ejII*Pd2VPji^Y!}P(0yH>AzLhRDgJe3RI;rL3sKj2x&#AqO6Bv zmx9Eo7K#*f1B-DS&HTqHvL#}EDmQa@TLN)H{ScMuT;2_2;OfJl>GgwR{0Newl$ z0D*)X&-cE+d+r(Mj(h*i$jBJ*JbSM-_ndRh9k%g%%B8%K2gq>yztZO-{Ma$>C4btC z{Il|U2Tb)??En7?P5;TyGo&=|Dw&=EY<5~o^I<+#pw4x~{2!E9I!)QVT_A>Uj<>en%&q48f z+~Ezu3XF|Dt`AOxC$<;A$st;l0-7lVilyrEzA47mwLz+P;JJTOfr2 zKW%Kdt;EpULjk0~hK{pivkwukg_D8v@Jg9Rz3I%0)mQjXG2Y_-$6s4LK@D3I6bKO( zXYmpO()gE3{XgV=)yIG7xZ&z>g{Oh~g|w6H-X3PZF?Cjc-+NU&gnTdHbn#O zN#8 zKab2mYj{m^dGjeH#wZ<+3JV079$^$1VKaiP$d5r{F(^0fNW$Optkc0{wLbG>@`V4D1muJhwN6{$=sn)NInV$%e+5Pc_Mb{X zWQu0((wZZkdc%l)^}>pxUJ%a`Vo`)fxP5-BwO!2bzmTlaV<&VkeQdu$kb0V#J7o(> z&o%$2Aw65o_^m9J@pIREPT8{F@-Z|=g_l2xgO8x29zuxOsV~95J|IvJEbE-+7UrxZ zoLf+H^>pX3S;jQ4)Bl=o6g?a#+|*KrjJ5x7>?Ds$4#WSF_a-auoL=$2tp!5DB-OtP zPOXFU*Jrifo;>MJV+1p0E1RIltm4Op8!gr2c^(9nl~)qO8C~1s$i5Yta=28UgyH?l zL(s?u65PDoRc<8^Mpbl;G)1KQy=AwL2-$rq+_#Re{zNgD$6#1zd&?>Vy%kb-K>_<8 zrUgOgJib>4ygb@PnclZ?hiPp$lRnm-oe~tfk zkVhuMm=Vm-pEc;pBZ+P47f|%&Az$vFKKC81dE@UWQ>1O`+T>lX(Q4;KQk1zaAa+2A z=Qker0dbLXST@^YXpI2u>waPm_^6)^5h-iyZslWVs&f zoL!pX>~QC)gs%dvohEc)dkLnHblUzdxWFLb50hXMljfQje%@=^eBD2r_p+UQGui;; zki*t=JWWWJY;xk`Wj!O~BP6OHf7IOgpb1?+6d^$Kewyin0Gg<8uNP&e6<7UVr=)wG z>OhBIPEIQRuaibo-2dP=yG=1S1;&$E2gS7gRHyV^+qUb1p5`MNoXZ3eU1o8QaOfNf zJw|34D!D2&rSuPb#i2Fp)^H6risi@x*PBR>T0N)w0OyfBpDt-`n6u-LzH=uoNbS8! zo1ipb=Z+&^L?B%tq1Y8IUg1w={3Y8PRD;o>yd&EQSM*2m!&)!DIhU_vYdLYB5(zPl zMHZ3Xc~^Bqs9rx6GQz};xU(IGEc<_#7=Qiip750Knsk$GS+Sp#4uBHI5ean5jm>LO zSthQm11J1`#~P0{6Cc-j2ohcbxMi^ zUs}I*ly03rudfV@hY`x#P*=~!EIIjZEXsgxwoqgLh&AG?@{Toq&ec&=TS42^1?2O} zXkHr;&S#tbU zBvhe?_dssSMHB`z?8lux9@dcdFz5K)IBDOrPTu?UL1^Ml{Aruy{KdirD#;&nC_M2j zYuawIp-QIbC@1)cFH|Ve)R%1dLGY60sb0`=XW1*`6Td_0s$bbOh?(yJ(b0IY27Pni89 zjG``nvGEjoa65qade;{51YNI3Q;$y`OrCDfn^}x`^Piu3iVzJs$WFE)9ZUuP&yGM!?EgUYcc)sKWCW zo<+q!elC@2UZ)Gj_uDITd0%~g zi%&hw_i&w}mm9uo4l@7HC2S5UEJavy{14HxXYm(Iw>UV<{(U|^uoM*-<#^hXSSJF` zycBx}`>Rtu`}d9)^S8Gvn+)wG`>qHX9<`lN7vwDdTdme2wVzt=S&E0MJV`f_<9Bd@1wCJdmpXMw?kPh;;bI%!IQ7(9wkv#fdO71yYR1)dj z8&Yz7!Z$7Nj_=z;j{UI@itNA}v&REQtsg8-n^uMn{%X^|4w_a_H+b<z(I;cMcX|cv+1PL*p1#r}t$fZs$`Ct>G$XKk3Kp zRF2+Y$I@C~t+wpcJVYH1N*0M$Hh-vS+PaM;_+K)4jm*7nnY(p2Y;Id#HTC-sD{PGX z#iqR25pn`v@yp}aQA>Xxb$|+K1soj0QVa@D+pg-06Pfhoe{TM9bcG=ln)a?#)<=)a z?09UVmQ(Z;d}VOvUwk~`yO9a8%RB+E|ESpy z-1px+sZ@eh?cS*(O;&s;ASOQ9&GV&-xuM($z=D{`dIOb zKnavu;!4;(s)RNrcWI`J%gvK*-rs3oB@|vyL)M;aTV%fE*St7g_Ntkw;k&!iMYYp0RA}Nwc~MvqS|4_Sc%4^fY6P5ZRdJ_xm2zd%5zsnC)eu{oBlL07s;e6O<47rH+_Cq2U z?z;w!XKWJOTlFdb?Pjnq;;AdoNXXsd$(i(r@l|}3%a@)?I`czvTTL>;(+x6G!;?DB z-mPMt40M6X3aQf=bP*f9n$BF)+{ugGdjnaFg`vxI@jI`>%~mX$PS_egIRs5OYCIxj zgECpcw{9*sqqFE{=OtUV0v&fO*@|32vM0fYO_fChYpN2d(M9e}U(9IU8I?%hI8psg z^=wRxk8}-i&v(${l|@=+T3^!7|2rAa~sB#gLAEfcZA#=I?^_(8xM0}Y0Xx#VfLi=4&e6Ypa2-fjFu!i(j zsr%n_&|4Yx3qo6>wi%NDj5Q)#6VC>ah~AHF+F-rE7aFWV{_&s<@~f10-XE;w`T6RU zy|34rYm8Yf%>{;ho}=6(th*UseZP3-tf9%MV_ef;#nw_+=(NexwplsN*_kmsP8flJ zP%6tsZ;p@-r%4FOz^ZLbU@gAlzKqF)ofjx|gIpq;TB0#TqM2di2=)F5QRHeKq%iL} zuIEWmsE3?vuev3JtXr2UUv69;Aq~RrTj{vD9{C-lyTm_ibMrKxjzazeK=;L58&l`=ZXu-@y(@FTF3eq?}Sya2uDMxPmm6dma!?}28G$Oz z??{)6$1!WZ8>8%Ym-kw5yH{_5Kq2;zFQtHf`i_=Qco**q3`qNgBxRC3?8%f?KK<=M z0S;?_-rp*>=JB`jN=)M{mZBA!n~syv*(jF@c^oFKnWRp zdnSh+Fp`iy5*`TJP+H7!toYu;Wn>vx&)+UBxeQ@$X9F95->Dh=^=bP|jciKea%rtL z3s;tcu44_=l4snNJMxz|>P6G}bHDWsKVgMeFc-BL@E{pC-t?@AX>s1yg3OmA5p%U` zMWab%HcK0fKMvV;KXMiIq`lA#`Xc)`!u1I_9>4W}B3wf$pUm`uuRm@P5NCd=slg7M z=KVxrn_Kw*VKLY=oZYh`BAWWom2g0I;@Od4-_^REP(hsNrzaq*=8I4P0py;4-4J2i zwf{yo=fBggOOS7BL9>N~{DaH^=Iyjoafo69qjR*Paj@*tw%wu!O9_F{o88b+aMZs& zCQT<_Q)@nQw?4lL~f-AcR7Box%I#q zYY<1tBUGTm;uz7=dWN-BfAy-=6wJ{Bo?K2_F)Z_NZ~fqYR{5{J;QoK?1(g5IUa&)O zv(znO1G@}cp9it%{MU%<)W0LHY{M^6Y@^$gLUQJTQ55h$FpiN@p`=ll|cZOZXC`%Fsqn;($J2=wZ zoe%v?Y(k$)iPQ+*NO#m}RHfG*sIJhni8)%P0X-(SdC$un@|GMJvuVKKeRTFSq+BW2 zsruPYIID$x^{!3^xf|v0s?2I9>Oks4MjKY}$HwId-gLJcySj61QV!T&=-~|Mr*HI_ za0LpmCg42kn?cevUrmATQR976zU7g$YiZh*2RG=FMw8m&oBuZGuhTpimvu$7n{hJ3 zeZi|z#XG{02MN`9ltFMwG8(kLX*bfVf_;1x%6)u`?pN$LVq6Sw!BVdnU!(NKALN)Z z`QxkdhK2typ9G@#HBYAm`9IMD?XLF?dBzZ$DkGx27JfB#h|WE@=lfF9m%z~57ZfT zjpfad)7$13rii_Yy{)a1J=mA6ly9|D-#jKOiaP4H?)j%FjLKC!NO_CzDkYMV7lA$? z%NCULpS!Qp_{{M6E=h*$Ip@07=WOcA*kk4kDK$?0s2jm+etVZ%*ey-P9S3a&eNt6v z;v?RwdCF69+U(`aP;H-zhrx%}tx-MkN88tIuXkgFhVm49?)v^wTK?I~G{flmt101H zj6a)weK92X;Q>Y+FV23sL@u420I<(>lHX2y)&xZOFnpTI4}Ol#-N^}$2?~Jagf2>a z7Yj}HdFy@N`LSNftnI_P1MW{#87t_p1B)09f^w zdLA>qH6qX zaux>;yu6?8yJPTTJqz{x>eq%=4_SFOWXI98&iBAfs>eMe`Lx?>VI8`7XBDyH3p-`( zJo%Y+HAu4d=MYdoPfJehko=HRgMmX!pPI#1LS41TuBOEi=gsO{tk{QREM zzu7b3cof3*nu%YqTIH5Hs>76KA&Z(P@Z;{LT<|LSJPR0C$2_F_g7_^zja0ME#;@;* zofAZ$4q_%}Dh3x}d=mYkMk^o&?M|?5D$QhEJf)sGb#Ol2T@YVNPxsP{G zNiwY8>ksp$q#mxyR8S_?yuD_6KsK1!_A_WTx=zEMguX9`RK4&1`tMUA3({vFcw-_% z;(&6#?$1;s06Y}t*Esr{IJQ(Kgtz^y1hd&H`{!Z=@wkToMz?+LHjDQvA;;qtHyA4- zg=trB46Ii+-0pmA(tyF7U^$yxHOCZAqSfvnh{1gaBo`}Z4azMG#L+7bIBIztdvG;| zWtDgR%XE-}fgZbVQBvaX#5LTvt1mFR_|!S-o37nJEvV^bB*38ri^*9?1tp{bSDrN| zLQouY9CfiA0f4iDfP6n{#MZEzIpy1}MfNpr71aLCt-;gQi6B?hAr<1>_GRTSJn$-# z(YQ_FepFI{Lg0)rb5=m&OVT^ivMIf!1t5{gWHK_GVQ*GD=IxLjZ%J>dG4N{%oc$z2 zxD6YiZ^f2scugbalV_@r;Spl|O6Fvn4%##QdrvjEPT3I0KFC^MkN)w5BGRtwGY5?G z0Tdhau-bX<;!{q=Bk=bH2n}MR2K+i-=`EE!X-_(l;)uww!qOL;JCe@tyUa!DxM(Bc zKc4!_|Jw0bEAbi;X-7pCC@LFPj7he@_)VD@ElMv)vbe?JzJM;*XT35@N&`n~mg6t6 zJ#q{HgEFK@<-CaC?somb^&ldDDZGMF6Qq}eJg2-A?nO)UVE}n{7Cb&Av6YfD4@wNSQAZ=njM>oxa5b1AdCqFN1)E5^XzAu#?h| z@e1(oZVKOPfz&qfJt<#%9~ICSJL{DRQSQGfGok{}_yZgxj_4)7qnpCh1Z34LRkNy4 z#lj%a0Wm3OFq+}M@hgDAOpG6iYEODaNJwXnh$=gFioim2z_aO>AlK*pu9xmo^mcTP z3!=Fk=n>Dijd?blfCl#TAsl{Id6i_m>`nR^a;fXTzH~0ta4u0If>rI9&|R8Jf)y*{ z^KvhO8{V)9`f1fPQG(ots`Nxlw{m(%gyizLZ#sO=j;(nr_#uyal*h?vY&a!29S8dP zP1jyfkoE?(`~DlD{LrFKZ998`G)P4T!<{n=g+Fk#iFI^Y>3!bcET4q7{gMPD2Q-Z* z;nqR-kv0rt`9aZqU4tuN*E|E%3E}~`Nag-gf6DGW5ZTCM<}023(N7t2p-l?&-AzM& zwU5-Oqea&AA*^Cs@!c9hSvv2VHk;lU=%@Y68iTBEH_3W}m!f>1>fkIum3mBG$`W)S zJsU|`rWNwBi9(?}4~KYjoR*($6AS2*FTknLx(|7$Uzvs}Zz=GE)@eRxD_JaD+YOzm zJAi024a&5STbu_)VS^8qL`#F1)~4$gK|CMk+y`)$A~Ev1h&JQ_5^*aL*8!VwCdc-U z$tWjg$TnRR-8k!i^QM()X4{9W`Bw@U8nu>4Y?#S*2*G{Z6_;K=j}XLW1}h@*Vexxm zhV3F!h1VJ08a8;f%h=p8xF@nQOh|$fnIGK_w^J3FhJ{u@2wYR6=Ny3i4}(fo*`QF zrhuKvBh=)R_mYwcuc zlDKw~vu58THY~uiQxDcG?9gUOuj1+YBa3duMLfP z+PMcW&D;wj2d%X5G$nE^q5QSs`PvIzHw7|y%RC~g@(=!yK;|t@Q-JOE7>I(^kgzWi z_w)_Pe6>ZJCznCj++d6&AeJm}k1uudx0~x3@wlxMfIdAABpWZoy zTv7Cr)DgeYGXWPIALk_gUYzZeNhTZkbc}r}Hpx@Cm1T3OcAmTcP(J%MSZCP`r?_nZ zZFoKHntPevdNWb&(uSMasYuna4WEbS2ib?Oo1B;K3JJQ?;ob(rafPR}SF^(>h>K=+ zLTfKW`-{Z>GJe4DT5QUCLvxMFgm}>2sbDziO1ZY8_0s-P3PAZrg zo8$EiM|t{>*7=*oTV$$4%FBUGo+z2-Pit!A+({H}8JnhT9yjR`Gi)X7KdSVFrb06n zJOsr};c*&S9Z2T$#4fO^f&Jm{T7-L_F;qXda+Uj@?&&NE%-%37peEIb$Fb^PFThVM zfitpowJk$Yj>td3qw`3Q7wn?kbzL8~%t862!?`D|Lsx ze5D}h%-A$e0{YP+;eMC{qo9vI5iUUK6V0l!Avc?bMJKHu4%gJM>Sk+GSP~u8@ko~R z#z{Oa5{3zK-=(*~E9{;Mg@;O&hJdAk%o^@ITY?K~5Z^ztQ}&wNaYsO^b`3!7nZ?e% zJik>)sDD>r5LPGf-Uag#ENH$`l2@+JtH?nj?N)1|_CnvV8{p;#p*mq|FrNKLl|Kb$&|;`fDYxrX$p>EN+_ zAu%ERPkuyUqzfOUNA8+W85Xl9>*odugdSTYm8cx-hfcWnI!z=-f&{~CBXMq0U(#F4 zvV^l}cC<#VAT(n!)F|XrTqtDCA8lTo01g>1pESKImqY z($KLAAwV$hRQz1&E*EbH{`z%w?v+k#Zj{`KV*yGbL@XxT~99SWRl@>`QLM zjAo!SD6muxrZJ5l6&=rYPnA14j; z03Dx7EP33Nni2a?SA zjztTN?EKhYmul){7W{55PD*pXaTw{^7Ecg4AJB0khuB_oLWu+gNcLlxMJXJ;61woQ ztr03TA#uFoR`E~E7U$v<{+JNZbG`?(-ohlJb~+P zv8*{;o7ys^_}YrZm=8ovZ$c{R4_-+LG_x#!5wUrE*x?*~Tml zOGeAz`Q%B&yCBv`VHcBrn?#kG==IC&r-_rIPNXwrORaZ|J!;K=EcN^O6sU_nygSDg zqF=pNF!J(Q@%?*G2X;rS?K?Oad4>&Ox*%e;;AqP`XjHMrJJvhWg+CD)NPM+T#q_FW7-9i6Lp zoYlY(3>7}pkKh#I<6|UZjLT+r2$-I+<55OR!?N7RP16B+8zR^PVry$g2d|YLTC?CA zi~}f7#$A1AJAuhMJxVW|k28nA6T%X!3+7!Vtjdv#Yej7lLLd^Vf=WYB^P8v;yXG}I zRuwGvLvIvV05)%>iisael}+c3lDJ|9DLT)A?k5vmcl&`gRmhDL#5!ZsSZ2N!hBz6Vvvp%?pL-_sSF7 zIT@nN5m65y?fS`bs=P~!gKM`dBdNYQC^eS@U|#!R3Rvc{8$%BZEHfliAWqz>NMu5^ z0_aDi1Fvlr>6q!LWvViSHd4`cJy(4;q11c>_`v65&sPGPB*e_WH3U3j+7iLHdB4-})mSGd#hrg}$(e3bpWM_8jz z7{nY2tSBpp0~pbAvG;=pHrMca6$JcDvl-2h@3Y`bUP((SIi$Jxq=$(c{oB7%nNro^ z;7@m*btjnxFH=(@96S>zRc-8XecKP_Jy*O_f4e8s8~*pDiL3sxN425-@T(~XGt?Xl zNArGuic9SKdX!7ir+@>xM;e;3o1we{zrM&sR?&&g$*XK$Js?JNd6ByM)#3hf!yt(z zaJca)E36wzhvRSrR9dvm`9gb2JGd1HAcnBNLI`O7?;HDzY5s0E3PV+L#cl<1(5E3KAZ1ejiwV@%^Mb@ITDGCXMYow@qZPcnh+}y1H`r+=^Te#>v?WO*DeplR(Xq9 z74}Oo_OLj56A_;JILW!Dg+Q~oYVHXd{*wbng~RyB;DC5&~fJKk@T? zou?-0ANZnA968>v(j4}9|DI7Zo0N3@myTibN2U>XC_`>6eH$ypCBa<}U+q&|!03j~ z2?E=j*&5c(o!Vhp3?xS!gh^05r07Tw26%q{%@faXTPz?_N!X*o5h`#~YU)S8W)3-} zV^#v30sdypn%k(3KCEGW!_L1OD~TP>zfNxecoNcbga9Y9NSO5nk^^kTE`fe8#dR*N z04I{zXA9+eOA6^HnrG&5CLz6xi);SQ+rr1*?J^5gua-pGs5ddrKtkS9aMps~wm6}X zK3h)s-`)tJ*@cPx)9mi>O9)#0o}y{%DUqYFyLdHA4@6Qj4EU|jKgsND?-;D4pk;Kx za8+s^iSk6crgqMxJB3b*@I7xc(l^g|99Er~LuuovV;bfeSo?HEs#QE=jSe6LQqq`- z_5j9dvLQEQt)2AXf11(lEyJQm=^2HJ?^(Z5*ie6taW5DK^>)f>%mzhj?dN`LP zBv%`R*P(|zI(I0~!gy77B z8>!Ve%WQ8?rE-bx((u0mzep$q@ zgU6jfL?h2$-+y1+|9!2i|I<}G+iQ2VRlGhplyTW`L)yV*Y9f58<>FSOoCO@28>tiv zk?^~ry~|&oupyhhiKoix)tdx##XArs%g)R3(9au{v(fcZUWCVX&W{s+XUE6KuevB9 zH&6+LEgs@S8HQPTzEKbIRHmi(UOa*0@}6W`h#AE{a!)tPHA$rk9TcNCQZV1423$U2 zSYUZExa{01H_DH`e4eMjm@$)mUaw-&D6;t*Jg`|VV>>HON zK|C;HN&1CM9Bz8-a81&U%`{B%vI*}+4Fdky`)=n=kPa z)IuSt3s7V_MjeBiF92fYm$4e^5>8u3Oi9ag`;SAUFO8M@zrSBrqYH) zi^{X}Z?@YQHn^nt^rn$TxVLwEZPL9+P`hE6rFqjaJN8ekB(xl^9>;zw+M5c*SaI@W zh9reMZ}s(_si$6OE5f7vvDtScNSjTDVfZ=S8&Q8K{&M5ua4rkI5IXJ182nAi zt6Xh@7{CEP1JwP234k6Z3yxWScfVEn7@MN(Ep(a9hqy=}hV`>lyUZ&#ov&w5ENu9C zU4Nmp#6CU#|8H?SF-b*7vo~-n@w);~mb@tFHK9uIZRXG90)+GF`1=^hg^@qo%{d2f zi0y{|EqzYMuysO#sA07YE-=e;3`N63U?Bm3p8(HYsCS7k#ePqN&fSQJUaubs#YCV} z44&Tn5xW86Q|YlqvB!+a4q0}D(E45A$FF}*M$A*GfZlUxzszM5eSM`rbg(41p zY9claf}6-Amq>Q77X&<1KXM=$d`=D2!5z>CXRp&ON)sU{nLrktn3HKsyEEf3a_KGF zN91zO^G)H%BZ6aUh$qb$g5LGorf{Tk`Q4b@iro^0cX}JXr_IGRACEosB!J;n%%Nwy zj0xu%qMJ~remXMjHyg^Z%Cqci5a{F+!dDfM1aS0Em;CRAVt9UdV?Wff;gp!IY7yi){&SHGU#K+F> zzI=|nZj<~vUI%L4J%zq*0Rwt|o!KU6MrcspyDE5#`A^qLi*u+}!Tq#J&|GDMy4MW9 z@0WoKt$0Rv9+Qg_S|hU{cK<_QRon!a7b=nGF|1&!Bxj@7En3<5br4ALbTtd`#CV%Q zk|E>?h3WYygm*NOH>l6F>|G;4bHT`x%5u>GL_;PG4a6rL3gN_DH#|{)^A`-jEm11x zuN;%_+<6o#L6LDWwH?& znB?*9Vu;nFei0mQ$s;_@bMM@9lmid@g^m~e_eV>fRWf$$2wdL^JY5)EfHy1#an8$m z2+m78vdsGdR9{8TSG66txMOF)7dE5!pPJhxy^ z1S{N!5y)wmLAmB`ZuCdfPe`ACmxbyn6%FQI@ho^IP(9*$jQ(O$xzg^x*y>$n!9VJP z2wx}?epmXI;J2O*7K;x6eL$pEyMDU>lv*H6L_OcTlwE!300TKV(f+#x!frnVdIxaHIHtNvmkp z(dH*U`Ux0}j6E^@K>{nMq-`o%cxbBQUC+=|etR0VUIK}ng4{!sh>ZlsKp&2**(j!w zf`B$Wew%6$b`Lr+Syc~1M4H6_JwF{CM{~7gT^B%PhCYjdtd;(hRnk&u`A*@mhvB$8 zXJQ@q>wop-nbRX$PUliwTGm*ChRME;%#t*c07#S>{MfSDLR^4B&7G$T&yu{D5U zV7jD9O_<9U=}_g{z=KY7(HQm@ljF)8cgruW($)Gu_Ti$LQqH$4O@F*Pc!?n+ZD+!M z!}_?>j5NROrWz(*PN;1yjUjBlcV=c3!`O~LIC$bk&gr7~)Y`JsYjYmNg)@D03+w6Ja>5&h{ zKSa;Hq^Y}MMRCHoumtG2WPiwpA9o$ zub<R}{pnL_vv;xcjL30&dWBZm_U*CADL}i7 z78EJ*ZUZ4CYk%LBH_+_%Yi>ltfLFR{`PgV41JuGBb*s+r!~yfR^Ht3y@N-ACGrcf? zDnGhTi^sinO9jy5flwxxR(&H_8UX@jCbfl920AmuNkscfsv=ONdC+Wu6Czqj_Xc1( zF9GyELH^I%1%YM>z$~gLtH+UV__Ldg^7$%L4!HxP)Z;+*(4Ji)1ffjDe3A@~ZlQHn zQ=XOh$SG+K0FMyvhVbj}_Uzf$x7*i#2I1-~JtT+`5c{HrdAXDmUM{YiP?=l{r%T}0 z&lIo{{7M}pZUZ!ef(jWp#+zNMMM1ewUEN-rkiR%MCVK(;p8i0uMY1u6mkB#I z)Y`H|(^lyQ76jJY>V2+d{UWH1lT2orwellaR~ z3kAOOFk`V~)S}@x{?>cvEqaraEU)=|`%8uP0(oeRrO+cmGHCVjdyli6@Tb?WSX9+~ z<5v7vY+il-?v3B4>-7hzH2qMYQb1H6#2feEMHVIY@eR5au@UC(t%yk^Esq!B|ZtMEU zJAJodpuy11=W}6kKjg5$q8E`ArGDW?>m%hv>a%l1dqB1h|6^$7MD@MADt2op1f^9` zyc8ThFzceI&I-M^U|2j-ZDHWDZ&VH6yk+r)r-7>nKJPx$6zpLjDbBj=T&i66uso8X z=Q)0rmT(~s0WCLIs=225zwsal3j3e7kMoW4-VpYYK$idrMdl# ziPmfu0dP3a)g>HWPodb2)V4VE2K$U4lh`@ zUE#Ej2`9%}tKvP`b>bae9X+)O#gx}W=~}|nQ&uFGRmH_4&z+LJEtV)bgKK*CNL=MZ zz(_>_N-CKBxEc{OG$b#h2J-O5I^=z&*oec7YX7)XPnjPcROP+F4nh7*5J^sk!d^mXY>NkvXEqK-}PE$8RgU zsW;||pZi#05K!@elseQ+HjsYmwJ4g$WfUMAYE()RKD!XqUux8}j+A|XtLb&91(SVT z9!(F*WLqNc;*+$N%+{Q{bo|zvy~D_L8nWU~hGpL0w0Ae2NmNWZa=z6()A2h_NfCEc zkX4cRO=H4xQ$c)M?fH2;3&ii9X)*-<;&epI(`WY62(e-wP73{T8vq|<&aiI#S_HpT z7+{?$U;V-pO2hsp>TpHQP&s2bHovwa_F}^MkAkgkOhq2=rt;-m`ZTqBf+g+J1##$v zw0f&X4y9#N-r1XJ_YYdHr;Q!b4=M`#A~Obx4ZvdlNxUIWe=excSGiro<^@{N~^5tO{}gl zI7WDkANdJ`OCG%v(QA8@wdt?VQ+ZS7iFfKjgEP($mgezn>%N&zpk>m45Vq11^4OmN z6;*x^IG6;UQx$!_EO5)#5vnp7bc@nwlYsl;^him5PdIa$%O+xJs`J;M1N?$XWYhQZLH^=p9vux;DbnaNI>CsMSV81t~rQ|4?Z?Lfk97q za~Az>y)ed5EPKZu?r=GnKTb%caNT~kS>-^lHwHA&yw-|)HzQIFo6bL@pf{Lc@A%b0J=c@f$IEX-pu30AX5yBAW-jQj5o{3i z(TQ|WqL4o(?XqEl_Zye=-&MVM9)cEvLEm3Ebf}<|0)#_~Mi_EJsv}UxsOjp{H|gfS z75u-%LKLT}y3;Gr?OGOcS8$j40gC}N0Kqgx@Z2?GZ*V|gUMuVDpM{Djfj$T>Uq%~| zTD`47ha3y>Go=jfzA6VdBw|Cc5$4P**dtx6oRA)( z^(1QGv$HeLKNiY&61l(3(ge(IcGzLPqVH%nSiM&+u`x>#YGvXH0KMb>IZ(DOT-X@- z?h{ql9nVcykp+vswp*cDKR<6!0n&vzKVSxLGs=S&)r?>K72soQBD@Cx2&dk<)VYVUN2zDQ-l^+Jgz%8v0drTRz`q1F&C3X8a|#YK`vr@70$<5p};E| z>F)Zg^ZIm{p1ma-(ieH`+#6J;hK>F*mWax0@9c{k#)4pp1(g>(xyJ{+4gP$WZsh)b z1E`yI$J;U`k;houi+t&4yNkl1dk}E493JLcwAuA@GR%3)P(AD8exgLL>+0uTe7-II zi^~aua2==92-OMW#T<*X1t`)c#QkYwvt-4QT<^sv{$L)2=~&|XeE7A&4s<{vu3Gc= zyT4`>7Uq9?-eeSTVSmdU&ElLqY_%A z{?-aQCdBtI`%80Dm57i~3QUv0ukfN~3m&qE&HAy2*zs6RP89d{9x|N|n9h*2lO_?F z+Fm3o?HM;+;V*n~8b~W5NfJOYMP5u*NtMQsCHxjb1wcLktny!pzc)fq-h2ZMOq&K! zs)^0*Oo}h(A46;ArU)ls@Y>rP0xx(cKMZ2WGm=s$v;}k~*(E0khvnuEEdx(d%>s5+ z)VGLU0e4g`(VaV^(M{n+#dOdPeZoPMMr6Qxg&xhy@4KI+lx7`VF;eJEWKbs!@T-%C zg6Ak)sT(OW8J{Z-iTVhK2sKNN!VmJI32v_UbP8wLPcz2mKKRjs9{>Ol+)^(cJV&V6 zWqFylD!pir8y$Dr#7GS~a179W&^^SxaHEq%mNT5vk2GmbZtBt0ZziV*N=1cW-RC79 z8^j-s@&T0mOUvKS8t+l=MOz|Z?I}YwvHyAjJ|1;pjjAaPX4~a3^-N=z0U(lBG*$g6 zr9^i~QqDSh!tU2pL^RQF6ReSsR8*xcz-7#OmltUOfe(H%A>FhOz`K5L4eIdaS&71& z{vrc!`KyXj;w^$hr_=iQid3Zggkjxs2Ip%RcQ1-hO6y32%*umvvT|@;bEZkbpY1Fz z)ff36be~ zV5_8`TafJyunmof;WeWA+K*cv5QpL~m09Ag**0Ectjg`Hy#-nyUTfF>pWeu^|LKjy zE&|+o~I7;PM&E_}-(ee510_0aZXa$f0|S+w}CGxj5S^(uZv00KAg-MIItW8t>*BKq5c z=~OTkhpCs945$cTt#I>gqia>^a(vMdLMaVqQqy$@ZHBP+TrQYKL8;hC=^sO({AC5@ zVCYREon`{9>eKA%~O4|CUb z{m$b&F5r1WlbCyh!F%$rHYv>(fUIX#SgyE!!R1I|c)hfRbf81MV(lJ7DOSh1+zGCz)?K<*gwN7uA*%EOmyXGv z4xu;~9`2!P)R|p3xoxgA<@9y!mi{_7x=pxMq_6<=rIgq*gH4k9AHd{e0GLGHgE@z- zc*psL6St^JD!pF6rpnMNV(TC4UllIZ5_1IY#&S85Cf^$GKC}1^x_*) z{)EV%J{zB}A499N@WL0C_mZmzvN31Y8OfS#L$Auo&6q~H#7mR@PD+xIzH%}e_!Uz) zwG#7Oi7gbS|LRqVlIhg~$4}@TIb*l!3ZCrlIp{jqzPmAFE!&$m$o))ze&lFYcr7a( zA(CvWU6zBD;_RodK_c>pjBr43SqNRd%!;c7I!ZUt+TiR5_vAYV_fOK2eu=#_oXiMpOfx5#$*OjkxLOaXDVUBI zBH_p;Ly&ub;U@6r)A}9Gz%bzHfLk;`g3Eg}rKhDpyhK(tR^7C`kDkSlNADBiOIY{% z8T+_xZ0YoYea(zzCXuha-twfdg4k0^$=SgypG86QfW}L8)X3Gn)4jkhQ<4DF<{gQ~ zU{4kg%^A#a&3Lvz>^?g+t3)PQGT7e;+d3zQ&9G+Lk|#91wAdT~kO-Yg6m_EQNzdnN z5&?-0!bsD2n`q`??gneUNqcoe<1~X$&gJ1o1+iYe;?_(D{EYCl$i|a}h%H+ZepBOb zuq4U#Hk!2obKyiJ9#pX z){|rX^*lZoaAXuZr2kKZ)8={9QF>^_vQUOZuhq}N6*8rJOBKaXkAPVBL545x#>Zs6 zxqb6`tWG1FaBdvgy~efGR9V5?*#q}GOC?uimm@wJd54{|gry}l(iI;Y1=4PM@pA=W z5N}jvB|o8J4mF=a+0K4plU_6`GB#6krP=9x6k_`qxycziArSPr+SD3Lyo=g8Q;RVj zieD0VAK;Mj4yGn~^TWv@KXK4bEvZLf9k#7ee96ihZOqbY)hZlz(5+gP)ptDa=MD~)js3PBDE$jC_jk;+; z`BIodW-N8;TjyN>Z=U(YNn`gt>FSpnJ3(nGx=4R^E7qD?jF}bZh2&oLU>ECYf ztEdIdojygd-9O&&j`e>4?!&|U(TGpN5b`bEd_*`YKm?(b+V>NJjh3psZo(7*)0ShmSEflpr|W8 zWy1rjO|pIg%_%-bKw6q`9^r1|Z2GiFGRPhS{6ktRg;a3W)sd(|ac{}2ioK@=IkZ%I zrDheW08C^mX+2J+J!dn=J!gB6@!K){HU8F@o>ak`N>X#m1pOI_G8LakO?)DYlBK7K z7$fkIB>~g5?n0YKlj39ovYwI>RX+SJ45q+56xHwxJYJHu4S?3x6T1Lw)E;%05~_M; z+v35!qUa^hm^!Z7G?cuyeNo&0E9?uW;ww$#pvOe{w8o=enT!s<^>vQk5epH|KQ}|7 z7L~}U=~U;qg>PE5T_A6+sN>!qD#{-3j2KJNy z5Crd0#O^Zs!{?*|?Kg-YeNa66LW%k(R{|YG4uGnCgDL zL5Ra{8S+`f``xdKSVe;M26k<~h51LC-7MuAc9t*C=L9&If0_qCm|=EjW&UZt&GdA! zAAXWa7|=;-U$Nt!vij=gEmF?8@rwB8V!2e_cXRqxcUI6Ov~B9Dk3#$jKWVSg07t+| zd69kDGCTF9>VXxHlXOCBwpK2N&H{Wt4z3fr)8DY)rmK9=MP1FLD~Xa(sZClP@w{c8 zwC=|d@6WJnxbJBv_9Pg4uSAw*apaPx;+EmES2Q-w*KzZD=mEobOVRx9+Em^eKIy>| zJ%v5x;R`e1Z4wNo4#`f1&4s@xRAHL=Cel?I0L1e9Mn*+t${RL^j=}Nln9$Dq@`oN} zjqCF!l*UYOZ~sTnS|7q5O-gqVz_p1^UgjM(ok#*3;8DT*`hW zIujM2D-2J?^b!nP>5hL9A3&7?M*g^}-8}PZP=g1!9}ud|sS)rG&0enDG>NWCa`D84 ze5RZjb?uYx2Gu9Jq>vFId;r9+RJU-45Ud1-R`gv*Q3~b?tsa=ol^Ii3fBNaimIMtz z7QS`seeKo}rL2E1{{A4-QNXDSahICK{ zX9q~y)%YagsJ|`#jDzF2QAGilm=k{$ZENw;J_AOXd(?lheBWn$oB$c<4ULnM=)8dr z_K?)+9P%;=m%^Eci87{U6IuGa)$Ljyv9%NQ(eYXPVg}O;{4tP$@1O)<$Xvc(jbOv| zuz(E0Jr|gL9+LEbqaHkJ0wT$ZV!2{k5XAgA^dk540=Ap{{OI~sli*`U3oh zBZ-jpB%1nWLRav?G|=m-A%>q{p6_~Ul7%juXn^<~9cTXY;p-ik0?C?ew%BT5w)y^~5XWLK!U)=@P`TRBnjk+<}_*m`xi&bdD{GP{t8^L^eUob(^v`v3E zJ_uS75t(UH+hCI3dJah#+YD&=^zChrzWeC9yKu4xVrU;9VgSH1M~-EO6d=mJu+^S) z%P8slcrR^5){20>K@#)K;1e;!Knc~1pJyBS^&)dGf+U*K?`cM*(wV^D%DpdqoEcIP zqB~v{eFo=~gZGZ3je|{#r*Sj~QnD zrkAvnHo91;@^fpW4jZyWNOhEyPoBxXH!T?QZY3AZ@ILs~MM*?@PUT3)7SrrjyaNfG zE{+mUkQ17NWxGeNq9KrXrI!yU3KL9$YrmP(lFq~$Z&Pj8sKk<<4D#*;lH<1m6Y%PQ z0eJblEOjaAkwo7IpuTHmRco;4c`JC06{k=6Ned%#x(e^O{=Xxa|AI-j{=xa-A{9iw z=?vdCu3l$dIqcsDaPwOr@>#x-^_^!SS^9X$wEDmh^e095WU~gg!|LFw@LDZ z4%9P82^u$MXx}hy4d;I6rQmn%u*@uE@k~T4x<$C3sH+HNsmepWh>?1EJ_*{fcLeg;|TXK~T8I z2g-V>kg(NW8YZ{3U;;jXlSF;-+nwzJo)iGa=oH=%x_8nvq)G6gYC}g&xi>x9Pgv>{ ze%l+4L)Eg00X9(;I2&_bctk$44aXFlV*v*}q5~TvPW>`hr_jBk!9Cg++~n{U$=#G7 z3N!dfgREjrDO5QgllcqFS&N+PXn%eBx|<@pTmu{uP+5I zyb&OvrW%VH&+gkDyY`Ie4pojCsf~Sr*4eV-VXh0BtUso`3t9{h^YV)_{QLp99tp#R zR#=YJIgFFKZ8!x8X3RS%B{tKt{tP%9!eS5s7p+}igQ|k58i<5HenPpJ>^A}lugNMv zOi%(Jtbek`|GM$7x!2Udz{FZ03Z{TF@+2>X=akk{&Yjxj0wBXgpn(hH<}>$N6faG^ zN<=@^JnUGrWiqPbQ;`e(WJLW9ccu-Qq-OseT73&O zWC);mt%RDUj2{l-Ov9eTHlknt zy0p6Jm+~|KgX>QGXZQFph|v8;2MeOXU2<6hn>nfgR2k%dX*1|djF|$(;#(%)C^TB) zx=w*d9TU?!8FiCVS@!!+%##US?Cxoq5S10~S z71AxxYc?w}ga^gr1fLpJ*ia`0TzZAPtrd!FuLQ=|k+cu=WCO69rtNjlIwv2@5yRbp zfdSQAEIIjS0+Te*o08tNyV2V)$!){<>Wg|ZNc&mRnE&yWe^~2&kzrkxCAM=PI4uqh z_Q~heD#|N`%@OY|_DP?A+^O4bG!II;%hkaGA90+nZT~BrT_GX<>uaNTN)a*GJJq87_b6<$OrUr9L~SMRR~cvFvxjdQiQfqe6JroJ?;Gd zjIrKiUW$0SRGnM?79|fxac1+mJB6fgtuCiAykFI_v^AR`QnBYsvh& zAI{Xh0{mXK0=<8LC_QhqD>vD8C~NS$xU0=3st|&-P*sG#$^i2lH@Q{t!%r5K`A=Az z0!XOuvwULdOO1N;#DZMEAXU<;E9QsX|4nUkDgGVXX67UkG>X=FIP0)G%=vcJFq1Ki zpAVP;ApxLr-K$17t9|)?7_@RebK)r@`tHS#Z1v~e+My*S`8Iv(HHEFwH%%%%b?;+d z=YBoZKiGIDELr+wOD&dU+lt7NchYgfX}IgAzjycW8gJO9XC5mO2Tn13W~0#DR4!1e zdSM%r3$AO+Hc$^<5{fJA_OU97u5>B`uZFd?(j4a8E8dw>?_pX06hxUelCOIZTp8&} z0_v!7UF|PM$n+Ai4hogIlbghgPQAf}R$0DmO#BJl+`Ethw)ZcxMJ_>i@1wU1W*K~!&ONa64=d&dl)a2~nI=9~3W+#QsUT!7>D9iusQ&e0 zF8CHM^5IRH3k!LtbccL_>4&|R4z{yy8Yo%6b0>@agG5}UbEd+a_!YI?aCdGpO_o|_ z4S*ZqyD49jtbZ*{UfiVLa(Y=F@Iu^vw`2{ot-tZ|pXh7Tn(jYg*T`sStH5s&X0NDQ zbHv-AGxft~m>2DfRC!*h-?z^}5Sa%f>w9ILbEV>KSh7to&I-Q3)dXq~BtAZ0DE(zB zZk`n0q=fA%#}?kB&F45!*}mU2Oc!AE6wD%s1Rq(+=mTs*zFmI#gho5y!Y=`Kef>Qb zMYiay@6d#SH;5ixpn6cT0o1+D$z&&Eb&Yz>1?!A?9+AT3TNwl$vko^$vvqZP^Ff+K z1K}l2L|5bL<5ooXjwZbtlYErUXzZ!C@Gvn$O=nraXz(d8ZS2)QD;|aQFXv{{+Q}td zzb+($jT?c4z{36Z=;({>WY^wt%!GY$DPc+^<7}A~Y1klA;t*~*-hqRLT>hZ-DO*sc zp1zEP%!$huu81*;QY3R%l6-&EJM8!`95C!Z!T}Mp@$M{2YTYvDr*e!o!a=pn$~`(p z4PRqm%w}n(6_kcO3K_P)6=Ajn2L6dvR^=km9Aft>a#MF zgI8Eej41IegM2dQPnoTFw>3>wpX6Uv+*m)}O+S?k8L>crs*hZym;KY{UsYyd*Za-V z{6Gq~53Uq&4Q=vDCxvq|uLET(;`yhr3$Q8&W>Mc7DF=kSf;h}cakbv4Y3s%Bzj#UE z7HYb|6>b4f@k^qX7qXL4-imZ!$gI~Ytah)1X~IrZWa2|Y$2aSXC=>rvt23aN6rJYw zhG5$ssD%ah=i8Yqi~%3@5-xJM#h02puTu#Lf6GKoLS89%}lM zW`nQy!KN%Paz-|SN0%ly_ZVLkV<~T1J6Y`u%{)Yh4loSZ^pkYtovFh`N`1b+z9Ef9p z=Q-@-aZqZpOK`c|(CZE*dzpVvuBTs&tt59=_?Ms#WGOpP&gT9s*PU-QiFY+q+*g7` zoK*5>nNM?O^~G6N)hQ~}3U)O>Q?*6?gg^TR?%_Bf8jH*_`>8rdGK;9Q5 z8EoVQ44md>z)L=kkm?@ukB;hqtbZw=4`RN;?e<2n5kM&#B!5PzZ~^Cr9Q~b{>FzYk(-8~ zzV3$&!BV7Qc<>qTeD^soU;{HK%HuSI`oYbfQP20x>2nw^Qomu?*Dps3qD+Fu`x5|+ zIhfG}QKOe|WelIYBy6L29YF23&y<;MJ_GkbUc;-q+|(nGR!h~QDgjA{?}4N=s)T_R?$ESfjDT@lGG6-j4!c!MOacSuoPXvVX8(^%4J*1v81SWN)W6_jwg9 z7F1|)>O1%k7GPoe-owmgwk(-7gtk8i+468UTb$G{N?DOTY>4lElxT}1aN3YR6DEFA zTG?79N~UzLeB@)G@YaF|(_6cku*q_*QFDgavs=drXQHFY!#s*I;UlG(q|a-D=GePw zDq#+W6UWL=uCj%&@_uQ%;$HP%{-}&=cg$8DLcL6SwR4%A?;ZNd-%noq>Cd9HEtkPn z1t6OWmo~VCdLa=pn8}ht{CLgnQJ(o;iEDj?>c9GDg}*1#xL=0}PFuXSPAa-P)=F*e zfWUZ*CC7JZ8_3ABCkKXsih8XHFNnBTG6mia`b??hXXdh9FNKxwy*Wbow3~1Te^eVX`@AJ zs+$H^OqaEXRE#v7Q!X!Q0Qp8A&{9UZHngfVFK{p$h zhElp-v!%#rvA>Umq*jNc4nGlE9_MN5)INH z$Bt-SwZs%`E=apG`KT{WBQ|lga*+}K2J{h1Y;QeZ4U3-E5{PlvKg2SLGsDP6zjf&K zoa%`$$!9GijzUV4s?}yawz^rwRJvpQRoU=apS*TMt?v0g@B@@%nFyK2Y20~)yhjgDWNI1FHJ2C99?$zJH-c_;VEq(BYYK*)3o$5JF_z#+E zOkYp)pQ}B~=;VFHwNWcJdnr!Lefg3J0!v_1ezYd}XY-z-b#STD`{8wyZzlXBW96=5 ztrMm`Jb5Up1uzQ+klDYQ_p}Uc=mQ{8pTMVy7D2b zb3t8ol51e%iRw-S3a#~)2ldhzy_Sv#eRUkK1=?(sKA8(LK-f%jz)D3POsoN#l98%h zkB!Dj9|77T!|JHZ>!U7|*5}CNb!GP20zLS&%r{lYZF#q%tJ4s9lS5F+SfuYlI0qQH z?@1(&-v^Ys17zRrQL%l@56q%3o>RK&3%HC1ja&iBZs&#tnGjR|(>sV}BJp~lNlq~m zNwpDnwLq2d*y=-L)?awldNDjcc6nJ~i^hVpUztkQ0SZaTt$WC*YtLMj8BX+WOjD4NqnGIv9S&4sI*ifE zm{Jw*=Hg+i!9d&30AhB|orcBMq!dbaY{jNZ@T5iz!G1VK6mEs@QCU8)nf%#b-Ou8a zhRFSYqEz;+EA$A0%J0)BR3UZh&=+=SjxT=p6pp^Oxrh znccjQ)%fs+$LE9>Y){OvD{XTDv<+IcMIie$M%U+@1&iQ!p(G}x39uyGO;y!Ra< zt@Nh9Pv_tHssG`Y^C%23`2T3-=(*CRg;lWFE(GT%;!%bDX~B4`0N3;SNtoX~^;1o3K)~A!1~;ny$@6)}(S6x-Ab+lIb3>lb;k?Lx+=lXQ7mnW45a8WrxQr zCDfdo1P}b)DojX25K-bQcW*q>L*~RCkNiFW>XWH{0ac=f29+Op@&&@Dx7k1)7s{-u zngQpD<}Bygs^XzL4ackmCDU=FeOIS_0a@8dgB-r0w}e}Ln;{m{YD@tjVo>EZwDv$UjNAigTmQ}F80x_7PWE;fH+Im zZYWEwzN5%US)oBDb)I^Ts|z^Y;%fR?5>A%X{;yU{zGam9+TAW|Cb&Ofn8cu4DQV7r z{%S?(V65GJez(&Nk@m?rS@kSGpoE^*S>^=tG|~TMh0{q;i4VWF!sY!}E1U^oDZ@6q zMk}6aOy=Xy%*I4VnCq|2iy}s`q_6CMDg@2H9tC^I8^kE8o^kQ(^VT@Z|Dqyn_(p?r z@s{&9XZY+taX9Bs5gT5T$JkI2LJoahAw`isp5cEl)UF#WY_})zGhm8oU#YN&gd32(ArlQlx zdHW67MVH^pjpG&rSVGRGv-6xSqfhF$?;#>mpY`o7iL6NZ;cQgS66h-J|ATJo5dC+$ zN&WXf=qC4B%>nHIsG)kzRX!zN=lZFqr2qN1rP5h5lM6S%3U}kt|7L|7h!boqRCTxb z#derpCF=gCd|#TDrt5DqtfyeGs5>y9VnJ6(Q@^s8x6K&@qZRLtMM@ow`uJ9BW!LfE zN_g#seFl6c?wY`fTaFNaGqfDmzR_{FRbl`?ay&htS=WLeT5Vz1;h#i}pYczQhQu*tYq`kXD7r5__XNY6q z>d~ZMw8tz=*Pzq_-)F^*l)(H!y$>zFi7F5yHJ3zTtuJ=myf5}T$B?Sjf{wp%kUqPW zJW0UjUPw&r7ZS?w+sfpLKRmS-@SI-fMfUDma__}Ze#PPT8#1@3gxLC0&!bV~hL1OkQQU92g|<*8^Rs@8C^f?x_kwY!6o# z`g}eHB;q|Y?{c0q1q32oSEj7D_)D-0GM8_4ij02Cyes+4!_M2%&FX@dL%D06=ZPVm z57aOno5cvZ|Dui4H7Mz2Xh8s9?#WI6G!T8y_Fgspmk(9k%Do;p6=s;6V*JSJkcNMVrWG@k4RuZa^`_ z(x(WzJ41(s+_d37^l2;#WUW?x&m9x&+;&9PVyMO^}}4fJSo)?na-1-eWls>H?rFPF)cM`?xU8>V+>sLja!dT4-<1MoDoYmu zHto}5j+5;Lc^B)rllSbi-^l@ALw4&@C@g1XXlFYuZf#NkNyppL4B3gPFV{(jK{8R9 z@VbcBI`hV1Ni_@Pwj{o6*6Ov+X#Rt8Hjwj0Uzf$Lit)`IA_5Jv9=rRnrUuQg6Q6@& zb-C6B#NO7KE$bZ9pXqx?Gva~u6v#JeRiRIa4=yjvgH{xqbOj!hWxM1_Qv|Epoa^1ZMMZ4`wnuYKKU+bdTj%wQrUq++|j^?)gwyPsk*AkoBkPl-a# z1{cohuwq}_@MI|4bX0rx`H(rEJ){t+Ndhf@Kj#t`>EEgNpYQ09|E?hLoMW6DxBIo2=-xw_9-8b@oCpc}Rot7vp6>Nt!pg4C-m7UL&m-Ua`7FzD%{Dw+DU-hbIG63a9j0#;E!f{IHGRF%YT&F#KqQ;b+` zKe-n_{XM|o3W3m&z@|iv`)dTGF+0~eS6X6&GA6xdFiEeylYeEJcAUpuBr!%&n+K4P zq(<$fUA0f>X-1(xF7c{q=aHgh0@agogZ37=|msy%?jvX>_1mczE(#+tAEWiw|@4;PY+f$ zedJX^Eei$BRiLZtJ*?B!iL7{~_kk>m&K}MxRw@@S!idSUW`pAl`x|X!Cfd87c`>5# zPVg`{=QP25+bGWoY}Rk<>C*}~5<=u#T9>=>UZ$0vFVocnkst-4R6AUFO9UAbimqaO zNcngejJnrm;4A|9RTc;Uw=D)m28WD5Ms`(}#?>@jX2svX9B-V*Qg^)yt3Bc=$~ByB z*#1t_q}ilytYRoD8GOUI(YGd6)Ewkq;3FPz=?j$Z4~YDp9oL}W9jvvG_O13Q(IKG= zuBr3>#*7NiI~g=kvlF6XWo;i|p|(x`iB#r|*m;4V?P^j&I7FN2gV^;5oI)m|wnAVf z#k>J{?%cL3NBjNHFaPLe0kRHG@6+Y@Lf}X3PBUin!+b_{N>mnqSbW>bmR)FA?bh&6 zK!{1BX{c*$?gqmqiJ8l=P^tu~Tlz-VDu#`?@{zB|tC0ZI;e2_0C)97z*4LwSx$T-8PL6FAf}am8q^^%q3(z?XaTwCEE6w^dB1jX2^(eII_m>#RY@r6K$YiP?KtYlJk-#_$|8 zl9A>MTfwY&Loq_<76>x0c43|ypEbIH8ERw{K7+I>1FjRakZ;?o(t4H;jm0bAz%sy> ziP;UfGCa4M`2AZ?#Sr{<)5^|9`f%p)9qG!)tz5Ftn9yLPGFsgTGpvaL6ftZr{ADnn zL+X~C-b7JEmBYA&(k753LB*SZwsoBIIBbpR%?GL)pnXS|s(K$1H@W|23)j(NTfNjj z+aYLb2fRPmeDX)I@6Gv!4$~UWoGXAB+>kBLi}+QifxWWXZ*w{MHcSsadB2%%ZqEe& zu(u2-RBTY&)kA=erL$zsxqUfaz^zi4B2BGOzdQjf*1@bfZE?|#AOb*aQVu0u!{A+$ zY7f37m#*I#xF~K(32_8w{wc+Isk%!wmIy!oZT5Pd=6AL{VMtvb)iL_3E=aaLj6w+~ zRDj>I6W{I3^TG7pfERE?yMo%2kgi(RX>rD*5BOhOQ)I(tk`%0Lrxf}kw-qw$es!+% z$GkE8+r`!eE;ciJW;8Ly@t?JX??NMV5N^6SDeq#?95JP8)9>dEaC*6DzN`a);)s+x z(SfT(WdRX4ny8+Z^2`x3nMRV4Xpw2j$(8VRi^>I#>fb&)1if z4hXl_*E5fwH@ImxsLQxDX`3D5 z#r07C=0es0;1;NQK8-AZ;OGOcBx$4-814hm18dPx=~5gnK*22nilW}R*{_LuPViA_ zyA^jV=DOfqN4@Xb{0^Tixei~rAHSbw-XXyK&j9n0HcDv=pcu$+bUh3dXgQ)SJ<8~p zft@$uQc|I&DyZYMKZ+7*`%F1^W_cG{K;-Go;jbr7TE(gXdkaoeyF{a{)y`3Z9uIv9 z~I2Aa=crx5!M^23L0O4j~l|yT>ILqF+Oq)qKlI$tF_xV&{h? zZL#YppAikeg9;BRJng}?&Lj*~k;=6nOgObMk}qCRNTTHin^>vAJ(@+lp7N#f!Lg7+ z-RooqkaMe5sz8$6USOLUIJdjIFI5Zpvcw%8n^}nl^y9O^QRY2QqT|zWk*{N~fDP;r zkO^F$^qZ>jlk<#w0^IVGGvgs@S5eC2JghO4jQ}*4#+Tt`&_Z)?9p3{4XvU<&sn-}K z`~!NLXvi@5HD?bE^lQiB`btk?;aVt;*qm)9!w<#(LlQ@Je=g9PM3y@GmZN>Bs-@z!j<9$ z&f)Gd0B2^qNl#>zZ%6ql@=#^>AkWQ$uIZo+U}s+JrhDE$YQ;L6$XY^9gtz3tJjD*`lxKV zJ!Bu`umnb4!!-@)7E%iB#4I^g@wN=lF%^tck|&{Z)s-vy3UZr=uP17SDnd;3{9PqOcgut&6~@3-4# zu83O4f$%wMk9t(OwJPUR70$2}=K8$T+3yx)qz;-~fxBE$V&7l?`SEQg;L4A8Cdo$m zM58H7jfvPKJqz8D#*DroxE-dORVY(o9bDE3&{K~O=sYUwlzwah$2%o(2+tK2$`C?e z_tpoU{~-hVZ*qkgGak_HnH8ZQPnqfH_fJ>13^ zv%P@_f`1)VpwxmGXa+{!cVjAAgaAFXKtk`-~P1vd} z4bVkJDFaRmYa+eXrTRVe}IoL5MEP$yf! z_g?AEKUJNX9-RVHSDT9nODEnYb;C{EG@N}L=#mVuIi0u2LeJfV(&5TIl1t+M7xP6?^M(-rNfVLj%|DJde}E9mp|l zn!7F&92Qm45kiK-q5>`!*)YIuUnVM4&slDkn&(v4skeIcCE`lOso^kAcvpQu2DIW- zyWa6ffPlmIug;w`RF~&!t{+ z|NR;i$KwDoGw9ny(gT;{YRdg5A70B89rXj)2cVEQI7SC|vbIdj=;l&Ep7MD1(^4fJX+UmyGxfy1*APa0cVBn9(1xNkkU`(*?LsSg2T_S8X z%matT<3qj<^8K&TC$rO#nr#%gdg+Ehu%JO#uopccTPD*&TJeiOC95tTQ6+isvn7)oTcm28)m# z3OLC>)U*GKqRknf8NCI1Jf5KFvi{MRs`hzh*yUO*F>7d*9PJ?PpBBbcqUVXUMZ!=+ zalSz0CJDtlNh0{hmC+;Bso|mL04G|r_Q=ak-!y2Z2s0Rm6SxYHcYHahwUe3q zBjUS6gT#8PPKzF;Nfv4^W!2ZygHp0wC2V4{ci;QC^+mYSnY@waGd}yMz1tcb#-pGX zDZ1BS4kF*o1Wd$70k-DBG-Hv?CLj%Txh*Xfs{9~UlmfY}G+1Gd;iUP^k6vhB2NGG7xiM#>@; zZ~X$Tfjzy%^c(Eq6om)ypYldKhL#$ySCNuPZq#LvOj3oww4ffsWuhWi$aO{adTTI# zehBm?7y=z7bBhai8I8}xbZ?_?o~0ZAycY8T-9A^A3Cs&cgZ}kvVGu4ZVknfHsRH(F zY;cDbb~80{j|=x=t~n!Jj53f2O~F6pIQm5!7E&z$`3eOl1`o@Bl@IYb02muU4bg|T_5oOJ z&@AFvrf2Tng+}Q>WabYDtHx>~NhF=W2PQqf_z0S4Y+&tK1Hcu)>8)@f zyeu(ooImin0f~zgpSevB|Jw{dr{702WO$&IfR(W6VC>#c3(BXm#EAi4Gs40aI@yX> zOAvalrAhu@-FL4^_R(crE$l{qaRHn%Z&{fEc)yRi?lv6jktc>b^nZq?GdnI7(vn^aP+bAOl5L>eFpXO38 zgF%&hgofzm+R&h&Ah+XbPk~@&k~!j%2D4_IqYqCmZG3j?4=AdYVulDXz#qcJ@KvE5kjrfdHP3xMFfQU@w59%%_a9Y9;+Z_C)% z_yp&P!&_`Zv;E7lX+yh%kmDc!B=I|9fJl)Fd8IL5vwv1?CVz z8<&ClivZ4`d;V|0AhE7mtVl@<2wPuJ+D8GNXqU4-fN0apGYoqTpq$>7f1xCm^~flc zNJx|nNz0_P!QQW|QC>HAomO^dH|r=9%FHj-$O`6ANm(JhhUN?_E$r7AVLjuAyRMsA zGc~zBD^@;6os;bC;6eNfUuLgY-e=hgv@W86dHt>@J_lwlWgRu`s?*$0^9LCG^)w{Z+Q+WIz z?E~rVjjpIl(LF9upiU+KucHOVGlF_8Y8N^aR6n_S=0M~AQKtu~z<%JrsrxkZoBi#| zSXz*@h^_-lleX(~K-exDSP@H8{?oqTR>UitC=X`tc(WbYXwS`m4EsU*g!IzGqoF1i7 zFEX1W!lz1JoqdGyG?wBWd9>siWMf#hO27QGw$57kH!~>jnY0RE37PKGd|1qyaDUw% z^E`%9B%Y2i)t}mBB<>**C2z|Zj!?wDTe(ypuk)B0 zJkui|zbo90HdZQO0~ol~v+8Z90_T*pKD8O(!zi*cm3Y|JJgJ7?ny5r6MB6Wl4_o5E zMK*?;cvj|Z_fIfuAH8E&M$c^Q!SfCS9VSJ?>&J)px2H!#!m^2AOb%-E_U^0h9CDMk zlC`VtH7)WJ9*gq~1)Ji4rJ?G)qYBuOLj^8M@Y9!c*)qbZV)R6*UJ%KGqA$?3@c#mGYNNF}1(xgjQ?x5W8@3sq8UG+Db0JwK8 zw(6VP%C364DYGv-cB!*&@Yr+WbK}AG)gOEgjQ|@@Jp|1hE&7JJK7SqNh5^7X)Fab= zD^STYqUr2)b{a;JxhcH%Mht+vYy*T0Mx&J`+r4A-WNugm67+dSZRK3Ll4SA4*IEEX95<%u)iEhW5LH}UV)Q7ak9%E^MA7uci8-r;ny z3&y29Ze{YWJo3i+$!zbQZT(5A5q!)kn18=qJ;`;kC{{G={aEQDjl#-!@`U80#*L01 z2mVKGwMUC=SMMEm<*{V;JNR@)O*7;Dq=YDuUrpY4Wx$c6%?OC>Me8O*0CNi|v+E6$ zY4)H}x_ce%a)k9k9y?RtG>D(9r0S)1T7K9O)L-$$#dUs*PxGX=`R*OC`9%fOv+euw zRqlRYW2>cKE!wFkeBM%%~l!? z9{7$baVCoSGqG2-#((?==4t=1B{=#b3Ae_$X9f@7b0flfB=Hv-b5^IiZ4nVvv#I1@blZ=UmQ|TfqzOCD#wDR& zzhlMK05HaaJZ!+coax*b?DS2b@R|KYF?Gd)$qJYXo2!WsgviZ$uB8UMVfLW@`!qA> zH`?y~B3>h|8M;)^$MF4%0zRrAjs=5PbHtTpqndGPG6**c&yzp$Q$0AI@)I@QJLvv4 zEVVMEJmfRuP8IFRE~wUkk@_V`r9t$Q%xMW2O`q38c_2Hob2mR%vIl-5%;2pzmMgjC zb-eD~v*|^H>^GLb74#K2COlE>kAR9KoG<8WE9K2cqR#bJv!VjjWZ%^x^Q6qZbmw~S zws23$_emdbUh>el8Zw`OENLW1rBsfAi9!^xnCPe-dA1}cQ^B$bO7)d1;(YZ8@;m?? zv^#`P_ZF{UBByRB53*3gGZbR?%cyTj_8d1q(fn;q)RkIVn1~;HOSmi~FmS|3}zc zM@1cX?cO3tNQ)BEA&4Ly0z*pIh=?>uONmGgEija%bPm$eASImwQbTtQoie~s0|W1m z`<&;T=e)7re^`sfTGY4pzV>Hd`(21lU48+~)Zv|#fLwDd?)T8$57geIq_*@a9rilk zJ0owEJx_~kl*{;|YVa05Brqq0_m71W_>l4cH-qwQVwP9o~HElD~#pl@&+W& z7r9N90<}pAR#BU{8-5wB`clKut6a+)ZE`;XsU2_43SHHxKs5_YCiQLLapU`3C$=J_ zw@fW~(`iC!2SO(H#ofVN4mINl<)d zB9*-#5sin-h1!@Ir^wr`q5i5oVdkLVXKX{(o)sl2NgjPxM9^XqfZcD#I}LyElKqv& z;>ve)?T;Z}0;d@jf)5b)zSDff0X5G3u$@0`_$Q#7fb5#*Dc z({!SN_!@gG)~XXtp6W0Gl%U6YUF{E~o}s<=mz0a1b0lT+MNR~yt&hD=yoPq2I`Tk$ zMiTuz-n4$<3n2w`=8*JirDNRI7b8Ft;0+Yn1kCQm@Wg6fY^NmtNXPNtmf%DXbP{EA z$|?t5e_Ulm-6vsszmkgQ^QraHy78uQZ$?{p4d00WEH>I#rmFA-5>FOi%ncL79czt$ z`7lP=C8`U9904W>hPFDGN6O+w0?GUa?>>PyT=E=w(Ezk$6Lcdzw=xHOPokVMhMC>T zt*NHBD*$ht2%gppbM``+ZvoeMm!TN#k`OQ40;X%f%K_RMY;tB3$5#oG>7t0D-h0ZT zk)Hce4~b;_Ok9S9BMCRzNuZ=Xu+nY&YkUOIYHtIUf_xLXByB|WKH3(HosK8#?<3^3 zfI>rH)EpW&U3xN-)T9^ASUr#Ayw}<0E`JtVWg) zVSFM=V03QE&%b(LuIWcsH8qoVAGCXx^Kg>`c>j`lzkae4ijH!nzK*j=a)odQxT?vK z(c*xuFtxBJ<@yyFS4qJ?%rNG;66g8Q2>FY_pS;<*LbP8t#3p3YM0~bD7c*ZouC)p8-_4kC%e@EZ6`c$Frg`?w5TAipC47Dm`gX5pWS_6zlD4a&scM$z zei|?a_T49_mB)^4V$Wun-q`im%I7vdPTf)$i|~*h3;rn}NyVzK7hx3*m^o&qXMAF& zb1_NQQY2AI&)ze#FWvAgpl|%HaBAUW=D2mjG)6z2ibYc|z|2tlc}?jtu4l?-#;4(2 zpC{MxRgAaz3MGt)UohyU6{$W(YQT)<)Mk$K4`u-UWYDRm<182UIDNZ+&R=YC@NFO% z9rdA{cjKfDf+;WdHxXPc-#OwvkS>}Dc!G@GNT}{lN&fO1Pb->adOD8b$&1^iFB7I` zEpcV+w+H&g{)%7Qj_@Hkbu9N`$am`+saOMrh4RzoA%CdWV)L0eg4c`oh;j%`Qt(?I zR{U+O!YGgAFlv%7QF;aJ8d_Hmg673%pQyN4EBjj1*t zh@9qBI_K}>k)`PNm^oC5{^ZpCcdmnQ3{cP+qj3A+u=wb33!U>h)%~LY7@x<56#fmm z^{?slBfR#j-y`=Ogu7cyakMiHS8@pRLG4@teNF`jh_H=zmmP%I@Vs{J6{d_Ho1~6? zhyNY_K2diZ-S1GdR?WA=`9XVPyRZagw~u0qDp?fLT48>3G$g8r-1h-o15&|ER8VS< zCW-+;`CAbov?=&$R6I;sKjsDDpdlRozGmQ6i(N4ewI_SSl#kTnTHoYuWLD=3lY@Rz z?6Z!NP27uO0}VCYqZ_G5awj!}?==#*RGXYIh%?FWp0|2196m98pd?88S@NJ}d`7Lg zh>g`IUjr|o#?Sid|c$D zLKRaDwd6bdXMydqIh&%Gn_&5~w5>?}Z_6YTeJu;ceSz1Nwrj;K3_?8Uv_G~+^uAd& zRos%FD3tk^;@yBr%eic1=7@J! z+U9DkDyf-EK{nyLu&`$x>;#pVH`uW4t+rPF&iX2FRJ1N|3OC$G&RuKfeGc3ID?k3;~ zXK($o>^R=EKO0kr1 z()pH;g2*|^M#CbER1T8H(#7ppXUoy`P<+{Am zu*u&!&6WwSn`-8A+1!#mUD*QU@7>G=+AQ~-XC|?t9;+lcg5R}9i&^!y$@?kzWI#D+ z=W9hvcA?*r^+7~()wZ40#W!AqIu5$Vv#15DR1)KTOqQKi5^QtOWao?eHI0jWp^ciN zM;+rw%d`D=Cno)dR_3KVRs`VbIl@8IuMdeFiBG0t-qazBqwrahu$>Hpklb-GLS=-- zwUTSXef@pka?V_|7PV%!a!z|=#TY1-e8s?vmV+D1Dpr_udwUkHGH*Lla3sN+ak6Su z`M13+H%#>I&z!cRyq2 z;uOr-3lKZavqBgfQP`dj?*B`3S2iV{gYwn!{LMbk3_%8^&gK;f9%% zrMKeRhTo-#IHUUyog%jIA2csT_i65r7i~N?)+Ki0g6p}&)D8Vj$zyi)ovFQ`iu#gZM?j8LFM+$JVT%BekTiY z+Aj^b>@&}~(TgXP88sc(745{<@pMv{q`#V~qhWTG^?6uc+~VDa`h$XY>$m`nGF z_hk)Tk7DQ8JncN0o!2Gseh>59Ol>x0moxmN!yQ15F9lKcJ8xRf_GsDrF;+`*ReQ77 z2K$SUtUBL%e~qWUg7BV9)O~bT^nf7RS*zwuZ7zo#MmsB=BC7R#zG*ws$uEBCy1>5_ zn*G5RM*iigcYJ3T6|A^vwe1fJh?Vzmw!rabWY~hrk(3R-n%zN-{y1wka^`8|*wadz z1d$)ClEVE_;l#fR{-hc;zWc}pB7RI+;4Ep|*wvn#XGj#G@|354EYtHtLI}B_h3u{MJL<+vA5sN#I_s@qjJANM%L6!t3lY)&4b*3b(2U^RT%n2@H1l}_$Rhy6w7i^cmPoF)hF|~0u zNx%wLv1* zj}>dRvZB5$m2ChgrOk?GM>y>7%lMgSl~v0nF1DN-@RrhqKj)^^Y5JN{c=S>Ses4yz zYVMmOcF+d8sZ}(`1CF}TeQ8=5lI%lzPkKo=m0!lck9ddDn6uhoB}3D15g{%NzKAmNlZ9#q`YuAb2Z*A&U^}7yCe4-bi$GQ zqjPrdx5KaBV~dx}=X;9}k)0u*wg_yGQL!_Fg7Xs22y8jv8%v51RfE}C75BiI$8p+O zqS465=HqVGofLV6>{2hG96b+}m*QJd&z7=CO+FhY{wz7>7kP=`Jh?b<^5^p1ixk{G z>SeST!#%E>laA$>*?QzH{_iAYx(ctbrfs{~WsAAliM{i$T+jP%Twmfb3Wi|(6T(N$ z_!KH9P#YmNK6V*ZDPZV|>!<=%)z)X7F}+G5`19M<4nj{;LrB!8NoU=fVeZEWg508K z4u!U;h-MYCr*Nz5U@ea%S6Oa>KoyAczHZTACe9x4sut{sRJ;r2c{1N`!pF~EKu(Dh zKarX7(&V|=>rx?JspR}UFLipBT&GgJ$a9*nAA0}zrD}PVmu4$X8g3i1MGzOJ%Ch=a zJ|=(8BxNoTakAul@VW#n@cME>6hX%`fdS=`Bu?E+k zScow+1&ux@7LDvoI_k3e>ZYE+E+BA{t$h3904`J%K%49TYlY*q;YzyyZ4wNBjLNPx z-$ZYe^hJt1E=^94f>)HVQky7ra2)a!!}5iDFY%}4d7#kI-&WFx^O>WgttQ85v8Br+ zrgLwxbfdCrz!Ya=eB0ldZJ%Xdlx~5)NdnSykQ+lY*U%~6I*PB_Z)2IN^g;cz!~y9( zl{vN)%PZXhw_zt{eTDZ0x3$f`{a@8ZHYRog24O-u0d!vNKbL?0)>)qN$U{FyWBps>l5&HVKsX5~lfAv#VEM*_JI4c*)dqzp|d1MHSh<$mizT_wdnj_VwJ{i{uZSMvl4^x!U&m%kY|bEx%0 zKfTIlc?TepUm4!Wi=eP)3Cu6XWh2fy{nE5cDVX?Vy#fcX6(lSx4Ct3AOQbYGZBnx;(Yvup+VuXTORD>5l$dYkBR8zu=JjyVYp?7&D7s9Dqofo{ zr~r8n#1pd{f>3`3)a(&2@jH+7pP7o1OycVMbuzbHSbqR2kKM zDtU&^1anhGh>Ygzhffl*$U`cBNbll6eL-2%E5D(5MbP@-LXOUPmYUtHHA#uvXCxMe zs>ij-MK%l_0;hpi;!N8kDw!h2%MVjQ34m)8#C=#Ivdmty)8&LvHeChoT%v@mxl^9t z;Mh$3t-Tk9r(!+CXDDbPhq5Mt1)(_&Lpf8J#xIIrWza1H8T&6kCB>&*A%+bm2V-+~ z$+#uP=(iP09`#o^=5NtC<<*cb*c9=OBj&4D$qnL|MWTl+fU zDa;RS(jQL#SEf7VO@2!LscTXRZV2trjAE#b0FNa%^uY38&`gjht1@jY3}_JPG^@VF z7P&ohy6suRULT!bYIGXgEZ(C%_FY|58YT6=c#R&cnU*4OV3$uJCDsIk#4;aL4~IQ%(@sZD z?5~M&n8nTYb*~xKiC|vHpSOAZm0okU;&>|K0x@2tuPKWV}Ywb1?U1{OqvQ=6KNyEp1%i4(DfLv)AAA^GrGxqD3XPH;^qi-fF?b)V`Y zr4cQ3H7x=uFU84awY~&W6CZ9@qX>W$^p(mNZ0A_1n4FfXbh>PLpD@5A>dM4gq-5PG zAHh@)+c1Ysqq8=d3g^onj2M4_;7ez@X2r*X5U#eLa^Jpb{T6Ct?a;l}oiUEbc>Rez zmeF$^uI@D@Ycx1kXFKq1318R?ATp{77fP>Q1d>S|HoNQq+?{6g2b+T?+j(7Gv29ZG zo$OGC)z76f^N(S{o4+d;MP(tXZ7;>kM@TI>ZrWv@uaNp~2hjyig^ZWNr6ApS+e*@n z2@L+%N5Q0vFV_f6DyqF+dv{is>;K!hOJ@No_p4Gn5VatI>-RsOw!eQ3D7(UOPphAP z^0`Fg7qC~#>ls4WZwh2PPs-mX^X%j7pH9ou)~G}4CAmM2dPvZtWjTIO1d7m8&$JM` zHLN#6kqhM9u)Iluf$6YP*$K^f{^6NngGO#^}5yb5*d{)1MnS zTZ)iO1iZ+&(L+vtUB`Q<5SSH_x;Et+?iv#CFwJvmyE67#M!xYnx`mi+d@gmPfHC#m zoJilsOVT)p_(h;e(H+$%h0>P34H7AhwSzl{b%1 zG0!sE_wWW_pJ6)d1qztPSwix`|6ZB@zEJ5jz)PtqWAK}Z=jPI!BGK)X^lS>m^Kn%8 zAU2IDTIP8GC@^^|n>e&~GR24K9zG-Hailo* z*@G&(6=J-7N)R^@l^%027|I=j=R`B*Mh0uDaNjXpWWW@R+XHfe#o3K}3=grKcsIUH z`VoL(=0V=B&bdGKgzR4Td-HRQm%iQ#COSYAS*^}-bHUANdg-T)lnt3d5zXRm%7!JO zg=f~aHCAo)ZBeb4QRAsUy*E<}36^{#6w~mFP5=&mgm~H%3{2XV4mHZ$U@g(?q_Cfc z!53w(nh|a&`0cfDBj7TbYT3b%^3!G%DdZgFHxmO)!DA>)cWO;-J*y=@?9kszBjTMI z*OZ9*)VRZbKbvhAqlr7zwC%QZrPbH#Xr#3QMQ zV7$-$v;prC3EL3_RB(Da0D%wtLk^bV8=1EaaC)$=(UFT6!2hRGo8%omSiQZQZF@_$ zQYek#GijEqzSxHZ%US_Rc_}slUt{VKQ0S&jPv2dd9JnBJL&c|AW>m%1w9o^B}o8?;x0?9`F zn{S7aHfOC=70n6l`Sr&LOYu2V)puIDA)Uaow-VVuqBn zAM!U(zi5rWlWc`Ax1?`V&s8N)43}4Zxv2h(Q~XBUBZ!dv1Q*+KxY3fCM7HVhzZ?i1 zX-GEp6T6$%NGM1ZK-gSF{`NXSTaz8S^2e_pze8d`8Vnf@gz@hEzn>(-yOZ=@$Rv@* zz{kt&^@{Z$RnR^1q*Kze=kh{R=i>C}mHXbWzcAv$a~u~p)@QKB9%Spi z?6p2PY1m$L)P{f2BLMG5q|!+m7$)Yb*_X_&)s`5G=Pc)&x_P12RolM%+GOePjJsv> z(2pLBa2Y|Z{%na5vHM!HF1vJR#RjFlnw*w3e^{MQ_R-UnL6X8aN3x6bOi_p+Xk zUn1fY6J0SGEPl|9#>TsC{SPYOoN*Wt2q4-I&m6ED0>r5{7+tZ#&w+jWE0m`1C)nru zIf>vL4)X(t8~3YEsJM;@e9Xn^xMprid80sw^=R{>QE)px&ZEsv;4+il@;~%OrNZf6 zJ6-pRzFVpur;`Sb6LRo@N{FWf$dv;FNFyq3m;)zIKbi9=bZF!4;Vq_3-NDr5bW(k{ zOkTk6@rTv1b&UPZjSgxw#wW$^u6hjYi9aTZv`^ma_dIUS@IQ($9iak)0+y*c(_; z=9sNqt`eq7^p0tv>CG|jT@;(JpDIoY(!vW9h`nO!{P%m!y%CrX zvQwQUnPdWjAk=?r1l8(qVh*J<2+a1YBO1b_U4I-lS7JGbRU$~GE|{312UJqG4VJ?J z$macDSDRxuT$3A+&|+ z7Lz&4{y>BZmcWu+unR%T>&;8odbyeuc6m#FGM(VJBZDE&Y56V1cgtMHMKMou=$(>X@TjvVy=!tTm zsoJ20S(ftpLP@$f6ghG5f*B;-TH$|SzdgW_*=_boHluyq#-#h6lnmge%7Fgo(f0aK z`Z`O%yEG69#WQq-Zt3Vw){*G<>Z|k7eL;FdoYbN63ixkV#Nco0wWQNDJsK{bsNa z(kA=!eqT?PNdlZdDOe;j49KCfEhFcoCEtq$zp3Pqt6QTm^_$(ivT0bx^9^%u( z>I7npna)MyslD$)Kkv{&!M6+^LXq5tfl7B7!XoE`) zt~#(#MjG$-JZ)YtX6#gm-et$2=MpzpPu;-d%rhgya3J}kEnnVg-~(?VzTWz9aItB@ zOCN0CkR2}ry|yXIV(t2A&9tY-FE2Lc@aSHCqueI-bRfr(*`2g=M&i& zVsUsA324ize1B${gyYGol4?kOk@(`b*N3Cnq@Z@@54~$ggIlIcpRs9s5#g4sVyA*! zh@$x%H`rI?M95JGp{a}nsTfofJ(j#3cmlT(c(|nXagR0TI<+gelPsDPkBo_l_`~zw z0KVu~YpK-3h|KUe4R@kQdWy-ua?8 zF9vXSrlBHx*sj9&!2PLq6c-8oEwVgw{Q&HnsTk88j^srDpkdrzli_U*%k$q_jL#Ah3z zJB}gfWU|7m!KDlf5pxvH=%Zd=U`Ff{`>*X*>PEH?NDfR?A?7b7PfH4s*PT~;0eJtm zjsf9=7x5dgw1zBU{&{$eWqK^h0yHu$2IxLR2m`tLr-JlPjp4bpM!u($uCrFj`UGI= z)KK$ah8WJq3X63xGdAw(eM0ugj36!5+a2AD5GFU(aNQkf3RX8BS1Z zKiy6V_cdQ!*9u3B%#Y&x`5XG~6H2Vqs*uUjf1roIb;6@W9>ycGQArUK;Z(J z8ByGmk8fya3&eMq_I(G|O!;TZFW*evTJ7+ZR&U7gScMllh*y)UuUM`B$z$;Qn4R{> zs>3Uf2u;qzbuk(goZwQ^G##T>&f_6dNpoLq5|#hSg8r zWXTfU*UnT5=WZFSiwki7W)+SlDPt!gJ^Elz5-n=$*l$AG&c@tZFNN7-Ffz?~Y0V-sBHPl*~id?X$ zRoim+cC{&_`9)y?^s_TMoNlX`wO@HOc1~y>8-cW~#S96aGYi|WfzFq%{?q{TP^)_B znm51nDoLv#=*?Sbd^o+)T-MX$$!bp9-t{jD9GrZLyg~oIT#HJ(biuV=~W3y*Q$m{uo zCg=1sPmJ{E^k_i2Z8l{C*~$7XxX(Ls7LZDI>)qGxIYoq~x`v!@0+~(++f)3`>Q;>7 zedox}?K4U!e~>@eYq;7Yw{3AM_cj{yfgh-k&+1W;h=}PBfD;sy-_yaDTKgFSnZC*3 z-wC!=TN{^KS>S0SUtu#|#Ym1C#`Pu!mv%gWxj80aW5oZtSKbuedW$)vID3hi7|qH% zZ@w}{rM3A#IRO4OMp+Y%_OI#Tn?Tm>HmMib=R4g*l4B8rA-XHNrIcQuR`?HHd_~a9%ca+^?qhAj0rrH99@38WzH|JV7Q&z?Up>6e&@)L;+NFtY z#8P?D>0m$n@o=nHs9UUeuY=pzN70$Tdw`~jpaxNgs2 zZ)terjaKfVw6^g>`Hz8_l+_85ymZZ>P+{e z=~#Wg;9>?B4?pN;GS>ODdat4HrCPGjrkL)qp7xmQxp**WA+%0-l#Oo9*{n;6Lcg>y zJ7OEQ%Le`|(#-p;=;w|6jh^Q~)0}N`R*hsiDb(Q~CfKXETr{V?Pi@LL)WmDw#T8dL zMK6T^HZ&-qGQKQ)Ic;Nq{KU9!9&ES;D=sU)MVv?4WeqNWe5uwO)c3vm#Ct$Xx~KgOC4~I# zXORu6T~nrBj=Q>#As%qCq^$?F@d`~nrupKYU(?cQC7wH;Z8*QE2-=3e^ZGHl=H-sd zMLW&gQT@v3CFqrNn9|mna4hS0SxI5k{Q1#BVoy(=;}98+I8ol&lA7FH0W3p5MjGOE zw*90;(#xq$sSO{E+6p=Q*FDpHQ!DD)h#LJA3S;!97?yiSnW)kGUVO?6KilZ?<2-Sv z9CVHkPpnvy{mRknpG%eo@9dre3O(Ht661dXj9xl`V5FNv1n{=}U$)%1U9Ra=_=vS2 zgZ-7}Jxud!b&jUoGIK{7X?Wk!P7-Ds5o~Jk0+iptR>cZgT(60GfJ}Ey}KQ5HuWjq;|?fHMP$3MwmvOT$fUn4E1@Z*1{ zkFAdL55hxm{jM`qLO&Wg8}<~5YIfU+(ynBU?6p zW?g;$>GwFVN7W$M(68vGh|GTjkZl~a{?mpu{L-rXQSRIEt*zhz)X@)x8Up$9|76MqcVHtb(}tV8K26 z#-%ed_NiAg?hg?~du}^Z-7d^xvXFv=6xawbdc3(-+^k^}^aR&7gwB zn>o}(C|p@~m3$i|LoV7GBU~vR{>Vg;$s;3Woc+|T&V~0Tps_qqd@D^v0d)XtMHg3o!AJUFGui>2tj%CP)@g5xopKbRYd&)v*HlDZ+4xx|L9QHM%{+T`tbIhxxQDLpm(BU zknFHcm{hMGwtF#FO8Rb+3Ks|Brw*d^(W;Q@=Q_@5)9>f`f&7W3JsQV+o|LtKk+9O< zC@E{Dze_px!g01mLCbZ}{UA&8G4%?mlIq4lC%R$6_Nl}xk!e=R?^cp4SSsG$6e@-h*Xe0;Niw_jC&{aQpsx|E{b#&1(%-Y98Q0QAAR zY8G~7+mNqTfBHpn%yfR&4>Losorvh~fz}CwBxK!>J8%ys?lIErfe>OlDPUz1GP<H)`;wb?w2`N6|DiN7w|*74_V+rr^Q zu-mcFSGlJ27>l?}>ZS-8$iu$`s}%BubQ)*lEd6KD!dqCW0FUv>{FzUjaI@W#I02lW zs6|ZfBl(THJGGaBa5@%vjBYEZE{(xUgjbDnj}Muz^E6~#sN?sS+6p<(8c7RBQTdZH zwbqvvSE&G_ZUc@SZkON7z1n>BMC`v<0Cr{?7P}GFMU~|GhLhKDOC|w$DcQNhqBibjPI|6{C&H zi1F&Vj@VlefnmP)L&I#cs1G;}s;f;Pui8`apZwCA%9^BB# zmLK<7c1U_<#AR_09BY24Sbhdcwct)}E;I67{mF>2h^}8qE2OpUtGJddu)44ZYW5%0 z{%3*0p}X9CV%E-c#g>2<3^8FTJzxcj6!_p+HE_TOyHM1|k0G|bg(?)(Cf6m8q|>F> zP9_wEEzY|yFdNQ4j)QeO_^@w+!T2c@m1OdCm@+SIpj~{=r3q2L8Cxeu?bSK1Qkl(Y zZS3vfE4EXu@0OBx&DPkkuF29x0W%C`JArOZ?Wj#Jl&@W~?FH=_+r?`MJ4r%q)}M*J zQ(Vd*|9ok^3bUhr$nKgdn$}`?G(nL; z>Eb61;eCxV>9<8aDzF_F{l?*vilHyRr=j_&(Z4vc5;7yc8wCkzpTNdFuQ^F~J&{_VW zn*4+a;C%Z~-dCjGvp(q@xTKOA@}`+?s=li@P{mGZ-Eys%lNxk1m-@L}TO!N9G9D-I z9io@Q`ZZ(xCy#-ei}cfxJpv@z{)os*atNK$9l83+ySQ!7yX1%8e$|i`>8g~_lJxA6 z?RV20e_+6S)SU+S4A1}zfikv;`Lr2owp1V*-(cVO@W*ft#kPub~3pp%56kx%u7~A(xbcMjt2~x47d%xEXM!2 zqoNvwDPVIYB-3&}yVb*M$ba&N@iz&3jUbR4X0vwU8N4Ob=H;RA{EUmFOG}s0Wf?sG zc0JNBv%PD4p-H>H(bayn0pgmr#lCA`nF>^PFpIzYFowyW1e8iLj1S)$&K7&xGlR@f z)zE_p#j0)IkJOG)pJA!eWi}dAX5^fl2xjs)om2^e{YQ78=+2EL3p25f9d$8R-4n%G z`Bqsez7D%pt0TF;H0BBoDH8}jCnjrwsCadK-aeGASN^FoJ`0;}LY8W=d+?d%F8{YG zgplAzOAxmL&cm?Kl)=^J-wZ(ar@|U2j<>jT`>>;riSgSwYeo)PyyjqJouw1&TZ5ji zNBEC62wpmxWrpTL!0+kD1WFkD?PE$EfN((c#tM*RktwQwX(yHJ)NLBSf15v?dL>fO z`y~@IfQx*!&c68?bdH;=)x7k(7d*kyu3cuT5hC`oR5nm~E=9GHYwrZ=jK8^!k!&Wz=G5a$ zWaT3qL6nPAyI(H!nL~D^SZfZj%NQ~r)$EiZRA2U77h5Pt+RjgV<&hFNHkDm*$K@6e z8jEBFKOgXP`@?4FB+PW8XE+pEv*=Q*c2(-W)Bi)s-+?dTWe*A{)f&$c?5vq_Y>jfR zS&j~CcJcPHF(-ZQX<>ggWFPd7JE7!6F1j3Vn#IsG{c_M-JET=~K4<*1BaKJSZ7D|h zuMw=4Cm}1ZRsTdYr=q0%EsenY&q>bYS>$yhoE0aj(|z^grVd62fBgLGu%)BFv)Ybl zT#XmGU@r&2kVcVCHJ)dlnQl8`W9x1&ft&V5Vz$1V9p?j`8_hfW;?4+8nf5i)d&4}j z@9wn7^!qHapC~&;S&oF5*-avtY=R^0bAnI%@Hj1P-%~sU^Nz2kinZ{WegV4qZvaCD z!aG2v3HOfKYah`m9PJt~aLA=;etAx)yS)X#v39~+#-Ss1G3BUjs)JZfqB&@6~w(QLKO81)D5otjWbB%~}$5JtxJxkk1g) z#)P=*YzB(L(Ey^erA#MmOLz23boe*!*h!>j==m`YKPQgXq7B6JCVMhBLIUf6v2^fd zO&Ngm&>2#$a=td#kb$ry9B{pFas_}=Q2_hc3TctJo!K2d1)vWG_m81v^wA^f8ng}r z>x5M{FqdqbC$oR$<97+!bBF@}CUBh7G(6W%{4I2ndaj5`b=FR@-l>pZrnz#A^8o9c z>Ztr@AH5${I{v*I=eh@^GA>t$=o0@luYUyar_1S0D;|w*Eh)}rb$GH z5+dE(`JNx^3d^eE~RuldH*0u7tR+ zU7DqT^JL*bP;B(J+ecnCT9IdnqNrYe&%D=j*3BT{2I!tXK3F?xp{cK5KdbjRctr?a z{d9^W)v$Uh_&9z-)P6|?IdI)~r z(F|G~KLGEI19BeG#zNqww-;J4=<9?I^7Tctbh<42B}ea_ZYOERFxbCJIEd%+ZLD9+ zbqd8IMmx@ZvITyZc{X|To)ePp$7r4SBzFC0=i=bZ=_;R5I0$a1m(~4K+TQrNw2E)_ zW~RKUuJL=Caw*ZNul*JPB;!I)Ro*%Umqh5VdAsyD2`=)cZ_G7*nvnluHw!%E(I>(rD2d?1az<*D|#Nl}*Ibv-!08=>p+_(LJ7c&)@5F=-;tOZdTD?x~>N9ibzgE z&Vz~Ru`G?DdKK5t8;+`g(S4(93EBu0?&8v1>TkuZoV9aJxQejt0(NixTJNKy0MLBn zC_ll!bWWg2IsJ-#R((l+V{ZA6#G8geubvJtKYp^yGMfQYzx}S0v6X=lR_oE$tq`|3N@K{xN=3<5N9S z_IjeulS_bt2QKbps3iJz2^iU0nyx;5%-8eJ?sR*d=|_EN=Er3jW)GVQ)Emr8^>0JmErtmd&g9C!Ddxixk{FB{yf_kj>*|U({SX( z8qT!!Eh05C@s)3!h)|+v;s3?jTSrCNuJ7MsAP7=|bfYNU4I|wkAl;oqNY@|;0@5KJ zN-EtYFcQ)*bV`ggLwC*a-uUci|Mvdw?|x&g_fOZ-weaS=ulu~t&v_h&b#nk?do~sv zvr6NTH@{n^|0LM@;Jb6~mGuZB`C{bw_K3T*pVPjTB>pekl&-g%%2{~_44P5qCcX_y zj1R$0Wt5}b%t!mJ2+mD!vtg^MT1@&ZybR!(&c92i7tzMTP<_Ac2e(Vd+3?)_RUupN znf6R5=(I@1yL1aec8bq)ob9i{rex*X!9mYte;KI@+ELEH#nJ5 z1`gO>X(rp>{+jLl3mTucb62Z6P$cnjiy8O_w@xlUICI50L$vpQ2;GFgT*wsozT$AY ze%qz`H_mkbV7Z)IQ+omf?)LT2dVlGEoXizV7?HB~$RfL_rhO0&Dr2UkZIKV`3J8HJ$|TIQxk0dsssIT zSH7#YNDdl;_7dAxRKrFIa3PPk=Aam{SlcA#!=pl!7FQ0rxwZ(T-h!vc`X}aEq zqj!{?+Vl+^D$W`+fbOl{=jS-?KmTg)6{dtG^~6Ri!`+`GYO~3Wt*o^1P1~a**XsIw zw!}J_#iUYV1W)9Yq;Q;elF_@ywAi z^vJMn0e3^H#{&o8-w9jEPNc`A1wf~JS-Y#2+0^1#^2rYi(s(K!Djqj+>7~IIEU2 zZGU{~`aK5m(+z9+4&JVh$NtxTf8N3oHMc0qSp@<8jF!;#73xF4)MZcf*Z6d~Mj4oj z_n-t&%>L6Wi;;T0Ht}6x!;c_L`gN1U_%II0?Bje7u)Zb!F%1Ky&aa z*Y|~(REwHq*yf|k0wqIeqgEA}IT;S&H`3w{3CdzwmT94v*k*VsTOtY;o0ermB#6-< z_dnKHCy}q-YWG<86GXi{S%B{)5UM^2NRQOb9t4_qcWpMOKi*h=)QzqD6hzX?>^q|C zXGz7VlnRRIN!yYpwIb$EPJNlL1HN@<121dfV8ox*?(bVXUS7KCQ$IpPc~voI-F%DZ z8j=fRjn072t~}%CnER}=#eps@=5u7=4oE_!17E9c?$uKq)feD0KlG(KQL1{hdq?)a^!>n1SVOWyVt%a&R!I2@{ONo@*V>P%5Tsw8H4LjAbp zD#5G)xD;{WEJeO?~E|V^DcP&q4I1$b~2E(c_I-lWu($)Wiz$GQEG;|FLSa{oAVPAsg5Hzgsn_ z7Lu!lqncFgub6AtH}zLjvuH^bEaa}@1}9);>vT$pXPkeibklY z0B^WmcKttIO$AbrYn8C|P^vv8xo()N>+?Px<4`YFk$z}$pu5KF|BA=l-f12zHv+RLb$evPsEd#SVdx7?(eC@t{0-CQR2CA zbt)LjOnUdZocsjp@3K#X1J)=e6X4TcUFTx)y9NKO?tmlNx{A+)wJj@C!mZC6t<_qo z>d6_6h&S#=$}!NPc!8yE26I&aamx*oCk8bW>E4s^?dTT<9Fu-Jv1>*TrLHB@0Kf`7 z5(CWU*XB9kyXJZ-AVvLBbUw>#Ws3%EKaOTxlQ%{=Xgy>^bOe^x$+$0ffjZ3Q$(wzE z-7omQCaQTDJz%%L$LnK-o1&tcv4reqU5`!HDd#Al8O0UjGbyB{>mMBv>g@0wGSdAoq)mH$~S)1Y9BD$FX=jFff zoCa?}`q7K*xV;}B(yQhLi>Yk6y%UB3cHbU5K|z)SNBMQt<1&{sc7!$ubmT)xGa->b z(dNqp0hQj(0!67Qe6a_6F{D#Y4Z0|^rg2bbrJQ0Zugv}^?`hc4 z%4g-NI?3ns>(W~DGh3q}neT9L^^W_IPDYUN+?MVG=>Wcuqa`O^2 z;fX+inekDpKQ+@dey-hcRj?m%Om5m%(Rb=Kw(>AQ>ZdxhsMbE)kL4yupt`e+8m)nInmYj7DdtN|xhQ)5@+?M>U3oShrg(e!2VSB58Jvk0*X za)K&r?y5hyV-3D3IjeHYAF|lt%Gq@$GgO&6h1W0K0w~owDX^z>UC%6*n^S+`NPd4~ z#l0k-wrnu2H6|G&pB*VJ{B(+Ed|~@Z!c0&T1$=u0xShT$C=?(?Sx|zB+ZT8ds8 zJ2J`i#N7R*qF2+Tkx4;u#XpG`T=tfDdA9z8cs-by%{m~nu(Xg?yK4Np`y$e5*bRplRz zT^v7)EE_ex6&OcE0Sy-Mk5>(G=!C|e)iO1}0)U&v@bBR|sM87AysuiqSJjf^%|NY~ z)~U_mP`gKfmki^OK*}`!;n0&T-KsWeuSce|*0iFlt&0Wzmy|*UO0tWo_N^cM!3{qzPBIaVx;9W^acwxO%74O!yDm}v(IUjz&a|2e~uc} zoV@{W%c!4vv{QA?byzB1x3eOwneZc#D{z)OFB}eR?Wzt7u4lAZa;96~ICM2x87Z>t z9s6LwdKBM&jcgXAr@LXL*mM0*kv9pAxaHaebYz5Nss8I7nyP3+tSG9i`SzHvYXV(VBWPh6fM zqd3=X6zF5<{T@w5G-yR7D92T~>640Z_rs0K>#c)i0)eo z_*XUtc)Y|ZtQ5yza)RP{(UxEByd;-rO2YL!_FESxyIgUHv z75zl;AAb5bKvuo&d++?9wGW%~Qoj`HGN*wwT-1MX(hawJLfUo3C@jW$NPd~s8+q@K zFA@t6@L2x2rVJ2Je8}tlw`)_ zYnPaVSxM45scP%wLZ;`abuYI>24Ng>M&> zi5H<-=W`=EVxzY_zdoe98yeE^36j0)kRZHgov;DwZ7^2{ItYJZTKHyrTfrWKk8=E! zmUaT{`3P9;sLVat_OxR^`sXxea%p$_Z#)#SUPR1}eSh%1y~keOj(f7*b&lyPI^!M# zMajVM3CTHAf~=nC*ETG_WoA6J!8-#aE*Gk%Bw+XsoKD1AIT>0{udd!4g5E`yLeRyl zT<@JPoh2wQ@$rzN3>X0qw9U!ILPT^wmgL5wDc=d`tZT3JdCg7ds5qnv4PKV zVmco&2=Q<^Q-6B9h{{O@y&VyVS&3L7_rj4uhZ|*3ooGw(ZM1S-BAE-w;#ic$`~dc`a2HSg6-QBY8kS{eE~pKy%i3yj^HC64e`&{bp(R z=7plJ51pLx*NY?{)4*#zvvL;Ex_s(fZVs&!#{cAHa1JcMU4`@X4bRp(FRd>0OF&Wz zOJey!!l`Y$Q5w1^7egrnVK&x5OvILmmv$Ngw`bGT3dyxD%Mv!1v#>+DeLunB#;$Sb z;xQNZ^Y{e8tN~S4Ro{3f(G={cFq@a`e_N|$8|FHkqfyqQMgvBpOBUoZ$!>Ix8CDJV zc&5%?J-b$D_o(%@iS+s3R57)pIQU8S(-8`wPyQiwnnB+7AtV zN+zsfD*6F@2iqfB*^v3oQQ0d>pPzP09zN~d2MQUT0=t;1?`x{Ph;-qwVgk?vzQ0n}y-Ch@dKC7mNf%==taB_l#fvp4 zgNUmv{OROh?j*`DL|T+0tk;g){d&Xk_s>Hzki8L!qCHWbPwA12opt_k&G3_3ri$`To3)TK_XiO2g%Q{t?IH#+%2Fss*Z zY+e31jiJ2EoN6jzqwcG>J)mA4SQZeEI>5_9Om*^|+ zAclKwk5pm(vuKD4;|2*~raFCW>$Gj)91K|*_tIhzF>abII6D(^(;^v;%49=&4_T}y zum)G{jGcAFqP{JDA?~s$#I;R-M#9MH2K40-nI+WHf0akpe&nPSrgcO$>8RF|%(pFH zk%GlW-%B4H1Flb-gHD&SWK>PA1!igTcBEbvZ!-2QAAGIZwMa2<^pT-3`@IFJ1SxP2kV zH@H7I_PaFlSr;ccJoR7~`{OF%MCIzJ0tReed+vVKkv|g0pAmcW)WfNa)*Z%cy@Lc{=n!6Um3vD3`n$eY^pfHRIO! z-Y01K2C3^sW;6Ty*yXG8Km3#2RBnvGmzxIc4eVoj2Tz*^@JhzO<_3ibguL_c>dNfx z$1rapN`!x=b&z4MZqo5N@=I~V{;$@_=akQ0b8)cHHPS+pd?uccM?TpS%`qXqgwqVa- z{;uxna3zp%iaSao4RUV+E01no`o!}g-o6DF7x!AL@5yAPJ1kno?*Pj50&u~>mb>Av z13h=qv;Sw>3uv3SSE9R}fjV?r69d=*-*ZuF!&J~FX8cL&CoyE@MDAkOLRPn1(k5@) z;&3%E3hwkz<3usFKe1RxnTE=UuS|FcD0$qydX5QBcNoVkAH`}iywm~ZwKno$N}p6(es&PAV8NaP}Me9vs~1|b(Xi8g{6_TgOg(APHn!h09>{K&$xl|s%l1& zodAlf!oL|0f|i5ou?+_q|KxtbDt|!(@$HuAAFvgu90uHNS^}+1v3b51(H`959abA| z_<1L~7t%Io=K$~yoB(DfrgE|;!pEb4o$H8U!Tk4r3$kU;2^5n(e>)L~{dDV^u31Rf zu-&MXT-qu(06rLj*9F48baMdZ0e)^Z%9L6AN|+?+fzy-gb$(vJr^Ji}+%U60Pn4Z% zzioAG8va~F+^r9Owtp-IFB2%_FB+_KpFAxQYj@53@cx;eUOVS!)A#7hqtM!Jda??t z99ZlmcSu)_7};}g^bUMws|7YE1j!+3O!I-Ch*8WIHH#oN!dwrK(Xs$C+5tP&H(CL@ z-Z^y0JDR#a=tCd>NqhzNlp7RWd8bmi&M5F<)I#Q za|1?DP~zt2TTeoBlrHToTjs0@{^D%S9jjQX?%iISx(&vi0R zurG3La4Ri73^}o%&lPg_o!4Q$czXSI=RMAQy3C`}SVleSO={*L_0Ol(T^Rn1NF!hA z;6{gTk;NNCE*d*DP7_`-qEns^grCHb9KiLQ_FmgQjvq&pKQRjVzMIT zyS-2I%Mfq?1Yr8y?wU9m?2H0xTfKgY9Sdrh#f^%W>B(U?L$HyCH}Be|&)Vg4U96>5 z2hqd4!pX{QpIMi${hub(fcTNh5(C|)NtfhSoTP8o6h9o9O@1=~H`m$8C>&9hI*D|D za*@>Uy4|n%bqXB!7vt%%QRE?%6agKw!x!X_W&U)$B>jEH9WzJ&Y(%~u6y7c>7Z-h>rU!l^uC|(q_<}71TzwC0E z+T^h;f=6pU1+0BMD0ug!oeH7GZt$fw;=mI)8h%*aPUjOy8vGYnO=AtEI>wCvR!C7Y z{2&v@R|lviBk#1Dw6han8*P4Kcf?2dGq(_>kkH033jU}CpoXd571q-Q+96n7!8i{ZexRVOJvhwwlVhWbv|R zKUyWKBL{RTH6=XYUHQrL-Qyd(!-#`8F{ztpSz}GOeY3`&o0ddL3aDnR7Vi<0-slmZ z21oy!4$r6Q(?&U>rVc7`72m3vwW%2p+_r4|m{c3|JuAY;ax)$#vff9EFieZ~HaXju zq}rAIlhC2`ZaN^3i!9GP@Px+=e_kVV1#{?wXCVX8M0O9gti9$qhU|Zf={QH+#&nFE zn2~l}Q~$S|j=$N@fTxyf3-{Z<*-sPEzp8h(}Saae3`~XcJsg+vCL7Ia9f`+SJb_&K^5a#=`s{pog*H{|wP%D?0wcyGvxPlEDk&4w`G!*&ve zmnWeIKE7zviYc>u2&{-J?_p}$z?@U@n%wIjWPl2+3x7?CvJIb7!ns=59LC_{p{-+> zn^QY%d!bDjQjA^La;~wNxkfRk172>AMqXOqo_XAlrS0j#2TBRaV+K>A5BW<)q`mAY z_`$y8zCV1ue13Z{M=l%YKaRr7;t*1{%_v>n16u}1V3(r@wtf0RPxE|MA<{NPNcV3Q z7R+*KIkuLAiGAdbMfM~7)WlC%ib%B{ea{OnWZ!81mOPAuWgUBz@9=JeT(+~ZLW5i| zEb@{-s6f}mMD>cqwka#)AvJl$7+##^rcL3BsYE|Rr@}ju$B&)Z$3f$rFoESpKzuce zKBA^ibT9N!BRJn3Zv5PMHj8KMM@%;NCdU%QoIS&3D@tPlB~^72B#$4`I0IGEv5A&} z6+c=IokAPk?xWx*V!BK--5FLw|+qXmEHSax1y|H>UIJ*Y@R;&6dBy z9#|PeEyuHML4i%>Z+-dTSHS6}Wim(-J% z+mjxtvl*FRWagJY%Y+fN)>E7uQBeJ%ICn>WiFupmKpLYF>=U5e!hcD8_|Rnd^9Ovc zu>rkT`vdba{Im4Br;yt^dT9Lw1G9(q6bg z{thA`2AwYn@A(WzF*nydl6QfR8SKC)lYA#LqV-B+d*-6nF$QO2u6_E^OgPXt0lN(Z zX~4kZoD%;@R@!!_d#3%kOfNyZ>(%VrssP5*gI^1(xbwSFqhnKZ`y^+Jlj&w+Q!2Mw zC=NN+QR9K9^g20Iw@Rp_yibM#|42;`FT0C(rD};Cos*mkISqU9!nnX#x9JUNQ;@5f z4Bhr={2!(>>}h78-FeRfQ|90D5*UEI1du}t8S1aRgxs*^u=P7D#QBmKXXZ@zPUPn3 z4)qdpD< zZ=_F^MKamLNqMI@b(fZkvj8Sw@HCj(a?5hKgu68wqbt$3-#j#PESfWGS1WG!f7WT6 z7&}?YO=cdPK)0t@>rn7uyeUCMDN7n`Rz5J|bKHTky_kUzuJ_wWv1NaOc1*yKKz<^<+novwfP(r9(aOrn?>&}0X zK0Q$TAJV6&?@Yl5fxKLq8i4v~lv+A0w8cnvta$|Y1J~F{0kjDA$8kU(_qHd>9Vp=F z+g9l6ZRsGod<7(fxZQ2~K9Mht;Z)oUyIo22EmqX70qm*AzAV3g>d#>_0)anzYzBix zZL=qABwp#d1u?D{cM$nlS4hY{U=`xE83PDnnNz5en^^4~+Aw!&+Q^-#%%19_%ps0C z?{>oL9|-nS{8F&wg)>ey7p^}&r+P^zf~3lNfara?aaGDA>-ni} zT;3}vT)s$e zRo*h>gg%kAd7nNgZ1u++Uq=O@c?{PYfu(Pk{p)t7k8fAk+v`4+fj(Rxr0nnNa$%NR zT&FK&(qyPt@zCbKdH)y1Q3bpl*8`Z?Tr~}DN)VoJG>MSh3XP5hKS1<-npCMQ4YDyB zhY6Ot3z*v{-|w>@UE@-5oh)}vFh*aFfY!YFOTE>@rRxh?t@9NA#o?Jg0pK`p*fh`9M*sGO^Ll!2tM)Nb@wUX4N9{VkzFTVuV!m}pdg%8)#d;u(Ij$yz=>S}@5 zcabfK5m*ZUJQfAy1k7V~OamXE^62U43L_~yQ+aF#uoAASimq}MeYko(o$7%- zF6kv>6fbGHGDwPlu?P3c<_@N=Mfr=^`!EpR?=nf8d?%V)gGRaejd)amtB2{H1H;dJ z#gMx8Wl2+0vZ;guVv=)pq}f~cIBlbVV1I?U1Ald~(-&{f1d&Bsf0hf5|K=`ns{ zkB+U=lkNTJYI@}^)9tQ%v*m#X@*02M^o9gvC8wYC<+33j)s^DPlONX&kozOiGRD_`xlCQ@N4fmX^9U}A z@*o2-7Ro;aUixxDa_LS_%)b|udduD&Qo zOx&FtPPM2muXfTHgK2$^?8I zCuC!TYX-f&+WR$dfDp}GYtY*j(|ToP(J`sG*1CzpvHmhfQsKxDle>{CLQ0YyNfT3V znjVMBXDR1QF{JE#^ak4}B4)IH$aW3YL0$n~!3UN8j}gjbeENq=%|x@?a~xN`Q|1kv zB$Efhc|JH=9C|gC6lV$#C_tc2lvbRt8Z0FdALb*cOP_0Dp|Q0 z8Q_k_em3A4qQ9WKK&N^iC*D9@D2pVDd)%})0GR;y8g=}4BYP{v+r`EMKryE*E70L4 zRV1cv|EhreTLaQDik?e(?OS!g%pEG;~$GmkfD=)q()0! z-i0#lu-lnZ+REHmw5c*Vp9Li5vxws7v5)&Hwp9E^UcO=q!d6?RYeDaNbY#(NFA@d8 z7i>hy6IJ<&r=91)In=5u=1D0hNHmt;PX${bKcIBYs$REtsm>N+`r48m_r%u3zxHG6 z1hEwzEg9ODfoKXtQ&0Lcs4Hn4BYf(uE1oD-A&Xaq*7+}AJdgLjwzxFzAIk#J>bZZC zUoQ5C-pg-uyJb)tl=ajLa>%RhQs{AZ4Sg}cdSMsnsi?g7l6dZtjLveb#WD)`l1g6aiOwFu!B*|S~Yd#m@ zzs*`jYNuHVW6cFTxXeTDHg3=OX8Rjut6m1X(~#-PQ^Y%4R0Nsn-d&e)j#r_h!TA{Q zt~0I?OTyu~OUcrmM|d=RE_cXD=wwOE(4On?sra>7QTVOL2jt`w7HLfsZ55SerDnCP zA2zE)C+0P4?Me&T=Bu+>itwW@?USju>*a28f4;wf5#z3%v0EioAj>Y=A?1V(%UAg{ z88EcmokFaM~-~9 zDO!Wy=JOVL>=A6+ZoXKC%6V;pvi6Vip2b{rgBZhUIZL7f~+nxk4-_U(V+ti}*qYN*^m^HujF{Y)Al<^(=gz4i zJp&yfm1_$acsDJy<`3vz-FLi)Mv(O+mW@~T?%r50&rgy&oM%p~Vku6B0|Ov0FCOTz zse4@~d5?gU*zY@-p?fiOml_zuAi?bP#rl-g#b)Qc^~&?au=kZ*;vNv&i?(a)h=&n7 zH(c3sJ9gsEX2nK$85M8}dO_aJmjXAnKS%wJ>`cXcvr=JmHcTy+rD6}^nDN|H-WG)h zp&Kg7Z({e|f(!A|8ARlrahhclC%?|NRN7AoCX*|BU50JA)`c`3Q0~rl-@$~AQ@^KJsJ-@&$fnU7%_)aDb}Y&?$jNc_bLhqvj$$^U{H|EUudNj;QJWN zEk5$J4L!#qPzt|;PjlDuzML1108{z=i1-y-cj_5Yzpo+zsy-t10yQ%#LxDQtjus%4 zz_Fl}Q^gCT5evA6k2u1v?p5bsAgV*=QBUBYqp(Q8xVvQFE)cwE&jGSG4c%<2n zyT+VMjZJ4*Ik9cs@B6-IIHuqC9^Ls7itG&9&|JUzj;QV)%8t76;si_9F39EqgvJo+ z+RCvgY@BjqUdI#QRL29l+_!-onp);E1RQkq-I;S`6bj^&o1ymANreg+r!BVVrIc63 zWmdW80fwl8n5wjvhi=)toa4{nfFJvkXpW3y((WENYN)nkAi^q`5mR+2J+ejK(710N#7O;b7V7+sd<8k(SQh%YTR$<^2&uRrU2gdDbrOv-YGq zA7OnHhPdp#l-;A2A@v!5hX%g8CU(9GomM*w<6vm02&u4Wdo`Epf~0Jnw_w2b&sHI@ zaom3MFY5jAjQ@BLukQB&Pof#GDnccDOvs<@fw2@XT@e0a`gPVt`*ml>^3OPT2{yVQ zf`=Hg6f_6U*WA>N7+eI4EJ$5y?{JKffb$A2(8a#Z4!YXMFg25RzBKRD(50T!Dd2w# z-%yV&rqiF5@WI5-2-3_#wRa?3#Le{i&6$~^c7FcyJAE-XeYq!(Ly#pjJC<3VMO@&< zpg*f1HMu;HC|5PzAeQv^E`Vzb9Of+$zCCLTwG1JF z^0UWmx(rVDcwL=yac8$S-CKv_-e19Gv=D_0liX}XnlH_F0WZ{HjQPT|f7HOg6hvUZ z^t)h2O4hwKn?|d`y_et)kFx2t6LR3-Q-!Us?F}U*E!_(T0^O7SSS`Lj7Z*4AeZGpT z$|v;XB~Bym+b6*23*6A8S;9x@i5Gdy(|B-4FTJu~j1Hk$Cgwa-*t4>zmzA zJu1HxS1`rJ+sDdMCAM`Ud4OAQ8|liqj|N^sqmqFt?O7sXwzhAmSH-}%xU@pCiwYBl z*j=}$>ZrFM$AtAG(NqWjywd+()1M>nV5$;iY47;8cytrBs$PI2Qrmz?-+7Goz1c7r z!GWj!*>K@>`zfO}^N}{O;?YBD;x%p1&_JO?O(4sd1>+F&iq)nVrfNOWju;{YPZ&6x zwy~qg39`65FjR-)z6iEApOI5Di1dS^y_5f!B4Q&3PFUa{c^U1K{O}YFD2+M2-USM% zhEdch3a{D97k~33#w2x`Xd0;1AjOfF-`>F#t4c#og;p%iOnB}ahAQh+_7vR%*a?K@ zxvZ4Y?y?uIzS~{3Jlq02 z@NmRR%-!*(Dp-d3%$#?*sWDX9IANdVMqthGuLGz-^u9-Wt*(;?Blq?Ap=yD^gD3wu zni^gKr!-SH10{>ovI*@_VH@d4mT~R132MX4s?}*NNA&i1guvcX$46N%p6P!L+vxO^ z3)nTagm~3)1-P{GK<#R9k)G8dI^9L-N%o$A5! z;y_97i7f8al_5_Ie^$0~&pGZ?HghA`CKggmkuk}Ob?kwzD-S4;Tw(=eRCLu3N8~cQ z2_R#<@Ko!uDGc_>Q}yVA?|&H;1X>Y(I^1y zm}Qso8`(I_P2!&UdpNN|xjhj>4iBGh4+>E)3W}*gTP=qRBVg~_PHT6|l)+Av_Rpa2 zjA3FM6;z{*P9eWWF6C|rU6LLp6q3;&XC7azJSH7j}0w<)I65gB=Z0LL_t~fSh|;bszXptVjKMry{!=b2#7Gz{(9E95_pT)uvcVXdQ~$+mMkg9H8Kl+VaZDDzKiqc8npHv0T2=A=j8aE$FN zH-DBKtQ$qD`~MQwTMRO~>YJAh)n~q{YUa;hK6Q3>T^gGrrte0KwU_F0S&!>9^ZMDa zhcCL4-P6F&a^~{<9kQ?!`5jV7{lgiLIKwFCaYhD0nE@Yu%_6LjFO$Xxp7;3H47ScJ z{zho7WHdy4E8VG^QZq#4QRd$S9;Tn3V3T@wz!y9omfCd&tdR+Kx$5@z8~x6L-h5lZIo$GO=gPwtSEP zrTkL%DaqC%ehxoPqiiBGk&C&4sOR>Td?$A|lwo<=w|gVNVJ;Uz-2E0Vntv*$VcQc0 zo%WqLE7iO5=-p7NpGnKy>Z%bu8)`&*nWma(u$y&RxU>He120ff>Rs?UQJmrWiqsdj zJ;eAGFVM??bo@9Lt5Q;-BE~7ysiJAdUS3=`i=q9rs8d?Z@-N$7j?P7EezZ>9D<~0f=2_K&)R_X`l2M#95wfPNp)f3Q z@0le))jRc<;5To|`&{jI z24rLh%J@@{nm;+Q-1;MeL*%|ys%Z;Ta;D4t&_&jzvj_Vc+qBeu0#6Z^-ES{zy;E>a$@Vt^7W`4T5fGMp(YT&knZ z+qP0S>6&CSS8&uLlkchtjzeOhuJ)g}bIh!DArS4xGw9DkxV&3I79HktFjbY-JlfTVQU|8e1ArtbR^ zHGL@=Lz#_$M88G#w$`s55Nl_aGm6o0$%X#+3!{v6?3qV|bEEU~jjh-?D#pgUl6Mc? zgj+Dg5I>^zrRol8HTrZUm>E0CI2@WHrNpl?pF=$4R{$Lir|~xC$XG+*D=cnm~_RpM&seH)$;ko7@$edPacgR>u!Q;m`dNH+oulTOUZUM+Rm}y zMYnua)E*{C@_8|yv!QtQM7X9>a_8z~M7p#rbGM<8u_9SBA$utyE>tb5V@+g>@sRmE zw9;t`=7x0faq8fM@=0j*j~op$ZC?V)dgmKGB>Eb^RCIW(n@=CZY0rt<(V6D&{qQ}E zi_6ihn-0X84)T*i?`GvWKSI%-sN|h2fjeM$w{^igiR10hcEKn5+y8-&`&LZQxK5yr zefB_o`!D;g?2TS5piL;l|I$_;o1TTPJld84oI%z*rCt@7roO==4*15g1BPx;-IyUCjPbfBa{WP)-g(csR5xRB|f=!bzNA zA}%Vh!5zf1QmevL7wu7@NfF7HBaViV!|ozr*Ye>Qqy_mYHh(R)K6H>Km{E zL~=3Q)esQL5cy{u{Q5ZNp?xWKtj4@Zj-fsP0hL5V2P8kBql;Q_!DoZuyh6Pe3)acV z#jc^R6Fk&U$Tj+MFP;na=_`92h#;FF&_X)0(s;Hguc;i2KM!4iQy%oynMhql9VA5Z zmrL5XmY`Bqh%|iaN21BuD{ofy5>8t_UZQuw!cKC2-Kf201|=!M)X6!B#{{WXwQjSg z(M=qS`cX+$Hb$in#L4HhB{G`6SMI#-%RIj9mo{c1F%MDKhi6sy%2+zq?c&n!Bi9y! z43lvwpZK!Ev*MJJj>ixZZ_3@Da(-O`-NsLE{X7T;FtiqwD-WyB~a5QaQ>o*$U zhxlANod+2?3{^^l5qZBc)4 zupHg{`TatbknKcY^`Qi?^zV|Y{8B0Rt(xiQvqB@Mwa*%#kvo^a;d5w2?BGs4s5-E? zpX2y_#PPN-N!ZjMIf$RCa~;hDGKuzU^k>aPUk;?YZb@!Q5FAc+{YVUE3=)M`0paw}$V-cgcA0_3}flxu#oX>-E5l;Y;G8@#FGwgdhjj>W6Kton3DN z%01-Aw#~r0DmkwOI$k z_p!6fTdJIeedqiuF`b19UV7G7F2UfBq4eK#j)W<(>b@VMh}ZorudxZT%ulAkMJ}gL z3(eQKk6)Yxj8}Z3RxGe?%6f*X63jUoOWQ4y(qUNKeuI2|62Zl(b;N4>u&dnY>Bqyo z%C^(WPpmonl;RevG_!oBIv*-!DNC`^Sm&$lU&qA}N%wDl1`nPvCN$2GijY^7dK|Jx z-b7y4jPb_j2PUecpE*3PGQ)Z(>y>lkYM86z%l8XaiKw@Ch(x98t@hvBSG_;6mHQga z(^EJ;TT9DSW#;RmuvF^V%@VCGHF2%jx0)DKZ@0eFV1mq}rYH#Y6VlrWPlFI}b%?($ zk5%(mt+}T^VPd=jt=IiVgHBh!A}*o}t&jNEnU9u%tLa7Pr;9@B^C*}`T-kKf(~%75 z@w>1g#v}TpPZx^)vPW0iiboTwuH+*#^pqhhQcP0TS$22D4_Ayr_WfS=7>cqhZN7+) zVx$vSTv=>Av$KFtUujyOEf1_TMSf~@YAnLhZdEaipJ$IbEAV_F;a%In4{xZ1`1+@j zQe?Ld4RjNGF3pyiR`JoEcp0igHM9wGrufhcXhjSYEebQ5MHzFD7u!(R4`BHSP+`oV zr-Zmk34i4SKW+u#;W+BtSdT8DU!U$x%75GBYS)qiWHCz_h;Ui@dpNCMvppfq-pj|J zHzCPOwP2OtBzC*=`jv-s(hin@-ZYm`TF3^j7}Agqoex+yXD#Sy9+_TFO7Kvu7dQ6|v_Mz&)P3BFat_-jnc zll@V|c0d@6; z@1RL6o&;o2KQ*>b*vq5b-83bZ};I7VHPA%{o%y%46>qAkkCZ05}0k^o}`5097 zqGlalE_C7&0geIwPCfc;y*buV+nMR+1$|}^YPb)Mnm*%6i_VO6Z7a#8jHYZ&*DH!UwO={HyiM=W75+7NHx=OgFrU~3x9U<2FyiIZU9 zzRe-i!hC#dL?W?dTlHkUXn{2YmmupSA&%EPiC8@cy3O+Hz}0QTllo}RV-3Rioi~eB zn_dJyF3r>P<>HWhKF)(cIcN{`(z6ildob9+9P*N>Hm6@sA50k8%@E6OB&t}k=JibN zg+H>BE1mBcq=1sUBJh_nN~G9pDssfD?EmctL^^1lSmtFUWWyU5 zEP}6`TRX<$9+S;A8`rXK3T8B`!G!S`m##2<9MzH6Mr>5hOT&l%L1g42Tj#NH!k~w2Hy*JsZY9b_I9_a9z^0GqGEf-IL z)V{nWw1`%{6d|b*9vP8kvf7#Br3EsALC>B)T(!UM6jPp#upOocGJ?$oC_5LmCoK0% z2BxTE#|*0=t4AGJRdrvjJ%ch$;!n$y^fMQiN<`u)*1S@(^|GQFG<|f2`te89jVD#X zzAZ@jiDLf?_(Qj?OU0XT%5Mujq9g(AKG~PG)_ObsGIK^h_cqRmuuOhw38n|2wXvNB zILayqeCxk0Erbj(jmre{ugA9VS{sD#Umu_RTza)IRSGmfT8c*?HtIoReU`yRpySDg z=*)n%ol^5eCOu*^KsUfNl21RCT1O;pPmgV|zAR~tJS%B!N`!r&P^^ec${?s>oS{&R zm`g*QAgd)zQOe{|_*)x2LvlHq}n3M!r?hZwW2r_*Z$?Ju;*h&&!MrV5# zdi?lzouk*Hd%~qO1~Bf2-C)F)HOLj;=wA?{J(jD#3rEN`%Z2@#mmmL=nX6(7=Q$KF zdO9E!(jMABKu3>D+?n=}_SH3RP}C=265Rj+&g{_My^! z<#q>PM3-CrDN5lwAD8(mQ`OJ+P={bY4FTA%nH;N%iKO1%OhLT*sZe20sr5Z$)`9X{ z-0(=h`@@bMZ(F#l^1Hr9ysY?gdXZI;MDG$QZzi*eWLB_sgzvA>N#RBL+y8CWlV|PR z4yL}#_*qp^J4;D*OruAvy_9v*Tyg&wYi}7AWxua~tDt~EBi$g<0@6cBhcF6=z)+G> z(#?R#DBWFyQUg-b(h5k2gw)VAbPYA+|H6CSd#!cvwfEZl+0To4G0Xu6*Id8r7w7r; zo?lZ2S}Yb&$z|Y0jSjBN4|(_W7-JD~n|?6Cyq_<0Pl!r+U#Iq$nQa}gZW=a^TjBM% zOV55=>8l>pQfvrN(yq&BjK3{Bg}>Xhx`o&Uw8}8)w=jg0$skdTm`qT+>n!8Io4tEr zTdM+Q5G(!aOHf}=)2@i{<(AVM-)*N?7yBkw7gu8Z{M^9VULYHm#&(Kwx2bKcosFMI zBmYdfe#+&R<163Op~nxH-GwcpF)_VU3H4~84ptSl}TmL|{qfApMz(KQ%O^m_~v z(24x$=z67qQL5Ai2|tN@-Dl(j+&T$hjKYh0j{50)-FXw1k$@cAq+irCDglTNy5|wO z513!Hvf?VK-CaSa4et*m&_yPBl=(MT@797X~)UuBCRB=`Ac~3c#jp;CVngSBkUITk`gI18V8S#gIPelYr^93 z|4Iudy0S({f?%l1F#j9lcsI0yQlWtDGB~?(MxJoAEX*U7G*j;J$nT9LAQ@IYzC3El z!XyLRiXQ|KXJ?kas-vcvEd7E@(zEuz*Lk8NHTK4Gh6pin=w|RlVu!1YZJRs34;* zE}4JyasGC5$ln9nJ{AqO%h}IQ?g^&G96-4d4XlVh@o4!aaP&@0pzpEQ^ZD&uHCpW& zH=0Tc&#W^`T^U_x&4Kaf5lc11iGgc3`N^LbNxf6*1N8f1%%D%V^($YL^_z=xV2n)w zua{?4l|nMkT4pHR=Ajq_obcB5%~cLb5_xz25eU=nc_WsPylsL}f@^`imm z@^!6@9B2vQ=(_ZR) z0Cl|v$jcSDL?1^!@j^0hfBI0Qc*hwVd&SGs-WNR|fH4TgL30CUo+dErx`9!b3XD2$ z;DrO&RtS3SWz^YW^>N#hs2>(-t^e57l%o3Pq7{&_c7RvkK zt<&3U?~#^TIm-&^zfo<<40`|NZrQM~n5w5!N#e2`LO(PjS_u%7NBGpN)jSPTWQ9Gq zW$^laxF*eJ$lzG4G{9V%p7)r?V;j_d6R)4BDNYymuPlSxz$uqG-NR)h4N?B#Jo9Af z9$r83Rt5(5nVjEzU51~Dq%d;4`E1tKits#`+xUs^yJu&B>2eF%^3E8WD8$~s>-zjI zX<&z!sa?o06aRrFaJdLN?S#B@f8e@|P^##ee)8qi`*+X>p*5J%_t*(qv1uoh z#E~*Q5y}ELG=fx#;og2I0k&KR1FC{b@0=6O$%0CE=Obm0EkQb7N1v!2t$wpcBg1o# zCZG|C>x2LPuCdW-xF{KPQ|!RlnC@;?i%U2j?wXrtiP+5S$i*RO4(rloRv3!_Ga)cJ z&F_t;y|mYbDxf=#@=A@_`(6Zw5-huO(e?OM0#BD2UpZv<0t1N6+vR^uBy)j^svj=0 zaL8Za%@dhD4C-Jfh$>`&?Dk%naAh;}=Ri{GDfi%ZGH*{ta({0%w?#speCwLMQBSYE zZcpzh4{BMpI~fzQ)Z>$@tR||MLJ}KD45xCBYzV#of(Wj0YcrF!=6=j$Wg9b_3}bT` zf|)&+L0FaFEMn5f>lF;K)g3=Nl{>oEBjQhcHI+`EiMhY?bme%e>=ALC)58Qz^H&E| z65I_ToAT)mb&K`PWbbVvzg^P=yc$x87OBo8}I^JwPH%h1<>N;1i28ON0-Zc0hq2O z9MuUu5cZvHRmF>mZRgvR>=djlSy91)Wu*>A6GSym;aU?NnvCK(8+fmJzF{YoZoit0%W_otcyFl2b$W|l8A++HdVS)msfcO zNv4lKh!zesYX_9G0e;lxWl*IAfp#2#q&Bd$#&I;I@8IniPrWhhry+g zq3eN#7Z3JhXJgj}M!<{PiOmDN3#Omv82JTAjx-COdm(H1B;xzRm(>%vbzb=z)^cn5 zyU;?BI=o>tlsjitIuHah!c`bv0nX&d;^-K{Edb+@zj?#^akdx*Jt<^|-c9Ypm(ITs^F6i*OA zTP-O7bLEN~?eKE6-wSCOhTUKv(40%whahfve%AE2G} zAUHvTXiC%er;PP&Q@eBBcUPLd;+09uYq{W&+~w~~;zSA*&yiq<6Q;@dbRD$2KLCNp z=@CrqT&4NJ;%RqQgPa*@mf+d`XIzA-f*KlYOufix(13g~y5d2dhmq3wYaG1(RVENv zbeh+|&8l&JT6FBi;3mz!m<{dKUoKbhn8&z`xTSScuqdEP?@ww-J(c%p?wkxJ_o^1y zI!X6sYPl{n`yCeR+z`ydl$K$xXr+6ZTZH6^uih+lu4LopMct8>Qlmhw=ke6L2ONs> z6%ze;Er=h!f>r-aN=h{)L%Jhcp{X0iHtK_05>KSsPdW)%dM941e-*mLz zGxVC7*e#*h_?ypi%Uh3NQ9}ikgJ~-=65U-=mN@$q$p1qS53pHYRoT{lxH+{~);1Zmo|%4@ESRbCaK0_ht8x4&Hpnu#d(rCahHe^?2fvDws99Sy&Sk$S;dyO8b4+PdW@=(A<6RTYbs&D0!ZXSw2YDSZ? zfDBquD=X@9PPf?$G!;CYpfA>KtQuo>>WyOpVQi@Cl$mNdQp3<9z{|pv%vL)vJ$*;> zA3Xw=?LMq0U~!SUu)V<1*DiKTMou_SjP7^RIyU<2!<{KOz(#6t4MH&;`q`ke7nZj2 zQoni(5fb8syn+h8x`@xL%q$_Mn@n1x>5+6>J@>^JtzSe}-7g6bS$pBB{ylwsC20KM z0i#d2)e^PpY(UTx2&0CIV)9+a(jlVnR@iApRa0gI0|TN!8kv-9odIu%ozivQ9F+|O z(K7~!2Bzis>qBKlr}rIJQ#jnGI9lZOqXuC>GeEkpK~0c#6PB`4K3}f6{L^c-1*;ZR zC+k9?hml`+_lrWFf|WjexLZp9Lj`TS(il|yEA~upq9CzIl#d?$k!CKCf8@hpN-RkP zmJpMdf$8(pg{ZvPDvr>`xWZ3|0Y&0uYDVSdTvB6ONGwJqv%}B6u>*zu`<}0+U+xc@ z&TRGlH1dl%D2G4{3O!cL+ih7szlx;o|6CFfu6wC6K5@3SZ7~bKr%Yd9sbJp+yXcgD zo~T{@38iRyk;-^>LvmLXG0K_K_RXs5Vk`Vo8aib?A{--lESa?ti&-Bj6QPrf$Oc?D zl~W2VgTXnbPDHpQ-LMqN57jF*n*>O(i8XTBsfyzk{sF;QLe&R9)xSF)vu)|&&Er2_r&XOlaoWZ9TDOx# zU&uFx-5g-uzYN+n{atWUTFI+$En?8`+ePN{*lF8B^2Q>)%TSIYANE9qa)XSE)E+IK z26B+pru0w0gX3?0#~bq0pRSdHg$`1svecr(jYgN7Vj%|j8zLNvX}=cPj?ETdX)Sya zjXViH8+7itTOy^tZ8x?&ssKcXNpKnXwfRzP85LycX`(Urs6YF~kzD5>IhUByy6LyJ zL+Rm5Q{x-?tEnWp&YA0?_hiuFCeYYtZ!Ce2_u!1mX4Lq~=b+tfd|^fJOp7!N1V6|t zotGnMA`m?Gvjlxb1fTm44+!e_> zR6cyGr`sh$u_pe{T9Q9}j|20cZHMuMh^;ra;&D!F4Hr%WiPq!cWGZ&=z55YZX-SGsr*zyGec88!VtzA5l(JH;eihWM!z`yIdoXbwN4? zlO^ZjduYxXumEfqlfX^05s@XF=#zTfz;kt0Ts}2@&*Xw14ayOmZK8zmcL8nKN75^+ zAV#7k-(6%f1FJx$M$nUdHg>ahA;*~!gQP@DXkkycv#*kGI5wH?zz3>1-CFvM`!ub$ zzB4zK*bSQRiv}IAM=-Z%_hf*UYF#8?y`r(ji9&sQo;LuyU^H1mvazRUT@%F9E41b< z;S7iBZg;cefeD=*^buQI&c{>wj{70jtT^z+7lVutG;YJ>b#ggv8XpN9gB<-RQ`!_U zlSj*1NI-f~to&>NPTgE4`%sd#&|t(P(lC&FD7oH<$0DmT{Gpafdp-O_56(;S=*`mU zo?F3F+k#r*&Kmj+lp)?Y}Zi)Z=&UJLrSK@jEnBse?x0kAE;TKL)FLMEo*} ztob0JX&G3`^^UVP?$n5*MwCqXy+@O4?vma-Zz{7`6HCE94ppbH_^+dX7k2a{Z%*^BmoWzE!kcXbH&pXYw+-~(Z)}`&-HZ8t< zYIR`WKf=IS1$BV2waFFRklOTrKuWotyM>1jNNE=McwV~*{-_5f<(S=iqqsNJ#Q`F* z9p0vO1H!@HfQqc48dmh@v60o&DTx%xhvO?prE<4;uQap=fQCl5%79?b*-~N@Vrx~1 zPG^u*_D~NM!~-AQ1D^4%NZhXpYT`}PB*2@Y16E+i_r<4Q^m~G2v5|e97Ts^v$0iFNRKcX1W>Kx&Sb zq8F22Ha-?)LI@8$0DT8+B&ye4{8XFY!%!{@T%K>Zh{iF^xc#a=86W$EPw7B-b9e}= zS4efohi&w|4ihFe^;C17wv82wO3LGO#4~;xTk2TbELEl9n4G-f5FTc`%IA;hVkhxz z@J47#SZ?Q(Waumpf~3m($wxL9#Xc(a4?yzRD3*xsH?A1sO>nL<$`md&(0%e<7faku2)0rO-anl|E1Xy^T06V;UFPU?ettS6aFpMKmgaIWS{ zh*EAGNL~v(5o3C6SK#}iy@^$-SFu%#B~Xh#pD*1di?XVzxRg4J|JI-W0xQ$c4UzHI z%@5CO9{Hx(&gPFi>QEvN^S_`ry^MOVxoCbK`;ML}@2H7$u#4c`esGGtWB4`9QsZcT zd)0oHs()!SD9kU{yhLZVlap3HlKl8}s{qZ$`qSs67y-t?<;$;*hVt%ui}kpXmq`e7%siwOi! zTPv-*yPZUErOn;4FOaEs$F0vN28Be5pXmDs4PlQI5yKf64j8d>vZMS5Qy2)=suy-@R^&(|Iqv*o#F9cO#Mo0yI&y#ZWhwg1&s z!e@GSeQu+Adpml74q>kZn>CeE2LR2wSh_8G=V{Y8`|)dj{wCoEwHj+Hq#nRgj5%Az zV;S3WwN|Fq8UtXj0AbH|LT0v^zKv(3;4%2=^8UIoFq5_=gQ!{LVV1!g*t?kf&~BmJ zb%=>4wGMEQ3#UIt8MES&k$-noc{fMHB>|=ly7WBkUagE-DRn969D4&$8TGL8A>yR% zx8M8+((QAss6MqaF*n#<>VzG%UIyUeYm+TfAd?dy5{MQ0i?3-*|DH!#VUHT?+^>cg`SmcN9! zt6dvYk`p)bfDp>$%%Rf0$?r}%b}ltlhQB8C^n`DfHB54_V8d{poKd*l)~-NFT@J1yt|ZIyS-d1V>2wmjxL&niGnN3XpHhJIDXgGO zSFy`9H{Q0Am_(;|U8FHH%2Xg}*B(Tew7%*F6tIPmu9mRTF2Li-{aAbPX( z;I>j-*QvEv{+@QNXXzG(1w?efZWf{*xr%(22$_J}USNlTMHJgBo;0IfY*==#?jj2a z9D0<**U!HZ0R4CM1}JfHvm?i+U$|&>`EN;ksF8 zdYipZ5q~wKz;@)IvqgB|?=#c%vK|Rc66X>n8FrczdD(){qZ(chm=-c7LjW*NIu&#a zrUii0@q}eA@Prl-!6yd~E6#V|&S7>&ZZp8+`QNefEOW~3r<9TYiS6F8H1IDmxZv^T z`>O!BQU7j5ukWq~4Qn$x)X0NRMAF+JInqlN!kGJ5*X;)kA+qM3Kg*EcCff%!ic|V7 zZIT%l*RRoH@hH*8T=i(RzUe6n8axIv#};W1re?#?d?tcFRP5n#ep5PATsNcSk>E#z z<^d);;IuGFccZR%qENUlmeSW6!={<`?$1IAeFoqhaR=W?%%d3j-C6lOH3}Hz5})Lo zom05&oCBd>N3spW$I#H{Om}iJh-EZm{Y3)xJEBepbM=8x*EpDE&|`e)qOv;FAO$Jb zRL*LrtoOndS@o;!gV1M zav6QLu`1%_Q!bx+YLQ9jlSn&=dzAg|ig>?!U6G9+^rd6rc25<=n`^tLR<%;tbVK~J zFR~H4FPhu|=#Pt;t)8h`0i^#;@AAHO_XzNC z3D6y5bslZ}1zJ>RqltvH>vi(Zj+PUM6$ZL&K^WaDBnPGB({h>@^M6MrNqWlOa;^#U zY`UyYt^6(^yCb@UHuX}SF`WN-`V^8ncT{wE8fEheka2_76?JZSIY0KBk(C;qX`eVL zzXIzMua;h7cv!v20^d(&5VRF2=75CmxJ0KDAJlw#4xdlEn78Dqb$$dq2g2DQI(pn+ zfQt2L!fH(-s)?#aePkqBTIR4n6lPgepTKH{c%!;CegZ_6WwV_;=~~{Cz@!is^|JxM zG_rUVb{e*`cye-Uy)}O%P*xcR$w!R#j3RC}&0%hto@=+=-}Ip-b_af0eObN!XI;AE z==MGdCH|M|1P}g!nD0Ij{tsYY!pc+B=o%1PG-jyiI@e$`;r{eI7b+p!Hs$aYM|kP0 z3bV?=4&`&p8K!TGgUZdCb4|PnDD8{E(~$^2K@l7Dr(c&vXL?OJ2huz_t(qzJlPB>c zM)2Vldas9?`mqc*54_%VA1dF2i16Bkoi7kIOmA~_>J-lmk;ynG*PhQ)H404WMW@{U z8sjsm+9T^tDfvw+@i|i}qCrSvq&GzKH!i1|6!esl!OttkUk~K?U%EHF&GqtQU1w=NMIk66L@rf1=tdkC< zSC()<2tG!D4hz@D+*oUSET&vQwr z!enqA-Bl&SAL{S_MDd-LJ8%|vhVGq}j{Ya9cWC4fsW*vHPfhe&kuNpbuY$d_H{#_3 zL?!EL%OLx|E4|jX!@txOdvb{!w3{{`ghoX4y&5o5JbQO{6`#Ra^*AzCDl9TI#)ai& zP}&IeXW0z<^E0CzLw7zV@on$@z~j0~9t9?9YM|E>yq4f&UCNu>{~_`Y4fzM;z4bpM z?}J>mnq?m*2=?6H6geqqZE$r1adwB&9f!Cy6#{MzL=EzW#{ux$7hW64Daw;|aG9^0 zO+hFbLBqz^a5=$^&Mc*WR(ieaAu_f1ztfzsVaXflO?`mVhhywN?A$qSMWq>*#8F`( z#!u>mFR%_=3v_3cMrKdL%D~Gd-jZ#*3{EUXjrK1l+9_6I@X3`W?SN+77s(F|ub}sI zV3_z|Sr)qS?4 z^zBu4l#JopsSt1I4)!X$xnd3p5u9~OeiZb}+)=$bR<55KWC{p*{mw6>sK2Bau}bVt zz4no!LK{hmPaD&0pl!{^k0=FN&+8qefYFIF?B6%8>}$=*mgZbi9-$y^gw11=oc}@JUYb9#9@h_;g4#M zz5?9kGe8peFD;-}U*3_OFbCKEZ-w8vl_;r&D_2Mq2Q2^kb)b(EoWxzU6j2-snYhi! zzElB%5}+!}h=1j4vWs)D&f%fF21`QTvQHrdF6z^EO-~oJ)?3C7?JLvZvH;KGyfwKt zmNWIHUL8mTD%qWj5^ppM)`J*0dnVAd2E+*7%YgFRr~?QKgBf(XN5E zkC0=?PFcKXDpr8z$NwzgQmi_2sxPFNF2v(Qhr5oJo`j5V2f7aIZkI{RWey=2(t4yu(z6g!3xmp(ZA{S z*z@Nw4*SbvY1fs9=dMsVutJlu1*z7`V?Bo~Ej2ZS&%L{SyUiC-V%n#^r>! z{weQXq=Cxf@{2-wauK=%5NWeOp;g%}hNXlma?w$dl6mnwy7iN@LB5oj9c(@v6Fyh> zjF#=?kgS(loT57{B{BHpDT*sg_+J^y=4aPMS2&j5(X9UrBMN9A37lj+HK{vImv8rO zGIa22(OxQaiPoI{4X?BQhS$T%Pqc5VG%l%vKK<-Ea^28Q9@BQU=WpUW{OKMvqQ&yu zI)m;6`4rHWRI%~WS$$G@%`JLDV11($jy62mJi$&*$e{1saNFLm2C_dj&o!*Pd162n(# zmWzn=;%KgW(89Z0<5Xrpst6)>T9Z0l!%a5F9ZuVeXNpVtPAskCc?rHr5or}f%G{is z+Ent@(|vFGF8rjSrI?hWI~?(%2+XmW<+ryx0znfq4@pv=OD1&8{&s(00JL?-h2O9? z;Qfgro8Fz!G_$z%NM3=g$h4ifP21>3CYfi^%42R{R6Igr^*Xo!IhQ&fKvrbjZkOWe z3%13SYzLNcqW9uxB{DUG`mZ-@o@fjb z)`5?xkd$BX>^Lzl_@L(r(9hQ79KCu3*|;Mya)8M(<-0exn#m%*w74lsw8?9EnJ!=} zrFX^(wQVE`2`V~xQ1#YcVHKBgQ4ulOrxRG`^i7Oi&_H1{FXjJE`i8#rtdVS zXt8p`c}x+J)j($eba-{_bdFPu!x-lB~r; ztZ~XuBz6xoK3yJoJXO&>t^Ja|*5^l{PM{bD4oCJWyfs%}k$a8F1nfiKF9xmJRTaO) zRGw!C9In5MM{8eN*S)1@vJT*3ZUZ;w6vcl!@rb(^Pbx@qib3LMocJUv2&y}Q5k)=* z+8L+=hoVs=h~Aa?dR(78n=o_laD6pqJfY=zq7$k4wBMm;lx^y|QulFd5b>sN7PKew z%L8MYJo_#&<(57FNci?)YN-U}1p%{(u%*ffFU~G~>BYCkMNe#MlJ^5u>*Z>^wUtv% z5~p{Zl}nx+Mmjo~AY)r!O>>Iq1C7glu#1v@T1(MOsXV6ZtJ*df-}s9hY{Uk7wea)w z?oKEq;;$%rzxYhxo1wO%KXU=b(d~Ur{znZ77s`IWh2es$vQDCiQB`-BXP0PqhTGpM zHNYRPK=G8FR>2^3_N;Vg5uEE{K!?X<*KQ(sNKb*hGoWs$R>daKKmIOPj^0G^2gskdtwfPW7m?GWDpP#WShz zXMQC|+E?SqdsW~?T`VEo;lv!t#}p$=6S6xhkX99Rm`4O}UshF(sEB<{>~pDHBYtm; z)z*|6t@=El%s^q{Ho`Wlq(kBL>%XYQ1o+K8jROaY6Nz2a?k}9`*HcCuQ|?l&28b(u zeCx4emcSi~cHK~f{7Q^=QuqDP?iEY4)q*K*(wEEIs*7R;$Tkb^D$n~wP4r#5En(ArWdAF84eF~{J5jVh< zAD$@G8sFWYp*RiXN@L<(&mcYfDcx{s5UuS?m<=BG34N}^&@_1@=6Wew$T~srFFEvD zL;Q*KmAtkjDtb3HT%h+jxH^j#=%qk%`uG)Z?vqGZc6`{J3!$IUi^T8c{6>D#>h7H< z@%;q69TS=GO+2@E$`eg`Z(Mx?diDXKSXTMc#*@D)ibH~naxLg}KF~^`s$u$K=Oo8G zZU;-u^*raYHA2gNkuI!>ya9YZAy9NEnPpcpKk6|v*gyP50ft!&@3@Ng;TkV)v)qRE zA2oFpk3W?7UGA`cRqjA0YL@Ht_E{gLXq7 zyQ+&E%pe49i}2xH<~dJ=el~e)K%dI+ofDtjhkgQd1m9I1FaVX$*qiFP+`yit$tmB( z{uV*1e5QEAHRp%k`Ak<6u8wpq8LpAyyp_z;%==IJZd1D7zJrJ+(8x0$VJDT;w_xN) zJG?5a5x&vtXWyaY511lIfUyP&GD3N$M4fF;jxsp~nl%;Ox@v4KIY)z5hLIEa3Lfuf z%Lm^37HFtmOp#}SN-}vr;DY7dZp2d60FEavc*f{esv?wIXWjdxo^p}sJco8e85cyrytE|5 z@akRDOPWILPxF~v>dKGO0&-CKSi4gFzM>7<#1aW_1Syer0CJY-;HGy2O-m^9s1{xH zSdDrAYgH53)*${aIm=Zc?H~ChX=9Y$t9=A(ml1tGey~~OM2xndetE&2X3Ox%JXKGb zIiC`3CJyPm1B;7#22_#!;H`%(ETE*5JTnC%AJTqp{7|ZK+Gh6cDQ-PLGJn_9hz^j9 z@@9-LvVQ+9Ze5#Wi4%tCNUS=j40{iXFNSHAn1uAWYiMSz>TfJ+1Qr70DN6v_H z{fw3*7uaNvpYYN2>JWt>j-{j#7|JpOr&OU?fKlqEKzss| zsLjz0<%eHGXlf1@--g3|Mp{|>AaZPbXtDRW;Hmq4@;H<@FpiMoM zW@jpm2pHcWLwp&?-{TT`0H=*rnLRHXCYgLt-4bq?67QG$ZSZTUNx|trfLt5zHaFrL- zHReNGG|nUrxS)nXJ8`~JLcgl+j%VSS`WdqEpf_zDY4LhTYQj!I5L{lQUzxE?wea9$DLG>uL2k9h~fUA;a2nT9XZOy)v}W_7|c>V$$C&b zBX+04hF!UKPESwdh$q6yOs)rY_3=tl!I*huPb1$5Wxop1`nyr#kCZj8)=fRIaOZCU zb6=W;Xg>NwJ0|qM^Lyi<{*65yKTe))q>BW8?8b)geZJVZK*=n=R0n)xqX_UI;HqS+ z@8Y`Z*a;#-E!uQPL(rHU;?2#)Ei#d`TAz!f+ZyPYv@#cH(09j0c$9i zkabDR58*g_ny#N!0yhT4`RRVC@$1)!;7$>u>5A^YK7-C;5-9OL&m+E5l+dZ=|6fva zZuCq=Q;r{})OF|mf6QljT{LmCI-Pn*b9M5~?qk-gmOb^l|9DDYNuW7X zNxanC!>T*$aj8h1l6fzx_O!wuk_PtmKgX(y=(nzzV7I?A!O-rHVDb!{fK8hzgVc#> zu@M#D>rHUz&sP%J&NH`bvJRpz*yp*(9)JZER>W72I;r`Sy3Kn|&zq(S@4+eG^|NQt z109eLi36uCCnoMT*;md4>ffp3UVfr4wa04w@baJYS;U4)rjvcyBkD)ny;WV9ehe^y z4&2418Ydx40*qO(uQ%9PQSgeB4OerAZ~ozr#Y#2VDp{F|Jyjv{V^$l7jKZqsm4z-g z<3I@y;YZQ&;PtSb{S$K6j_xkkP74W1YZQOP-bv$`FAPCvDNyI?oG)2j(QuCqgx8PW zvheAoS(ob2}~&r)OeFLJW`f5^$-_;qjaMx(ap2qfazi*c2nG{BK% z82VBVD^FdZVlZ;$z}Hf_&FLIoOqkj|yh%Q~lfF6VR6CGgl?ic=!x;??uXI6 zLx!oWXQ>(yT#tsEnC0yMPlB?mGsEKoOwFXk!RY1=kU{3(4LogZw2m%v@Xo737!ySs zD^+A#J$jV&hGT~J6(4LNS|-3IujDZu6VPC06U@RHztBKZ5*=^Jh}VDg9av+(W_aBN zcj&D*9(n^0z*r8|hqo7}v z-8cG|8u3&2qR{A$wzlI^prQh6g$|L*ckkRaRsJ+I!E^DzLnU)ibI?H=c8Y~7Xl8w` zU&mVp!D#S+y${L`c$Q7+;+W5#wH>~)QtQD}RDBzFsbv07(J23=P7F7CZMosa>=jzS zgCjw9b}&|5Cy@6Y=<0}Wf+#jqd5t?#2V0NDDn{R;F29H`tHju4n2*>0L{EK2z$x+g z0(*W+(S^yF{52j$x8(L3=^NV6D<)X)ADCcxq$4PZM!8@c5`Q=lI7Mh2e)i;Co;?@v z>GTDG37r$aQB$1qVMauu&s_k%EH>waWS97QL$bwcNl-s<`_pV?Nfgcu)? z8JlJFGma8273*q347p7)2r#ZO2ubPL5(lv6m zG60sRR2|rOZ~KnG5IrxmfA4|$o6+^Be151|!P9jX7+ab#j+iAI=0{PQ1CU-pL{UW~ z_sJ{Mt|NH_*k}Wsu(s3wD2(!?tJ>oyNlq?qO z5`iwk_1Aa?*+%Z8K=P#RQ|arf#x$YdzSEsjc-E#HVrRG-w{tT=Fke*u$VK_kE0oF; zdMNYvV3g8(ndwC#{<7y-RXIg-Gk=$g#R~sfD&}I(eAItBN_;;hYXEKCdR)4GZG_W* zY=WG*OJP;Y*l!?D*r4B3gf6_3;0@fH1~3Tms}RsYXGvs&P74o?8%_M>Z0`S9GX`Q&Y$-?> zSNG$TH=@^9?-Ruf1onSJFLWGu7hYt7;dG&X<&BSZzTaNA`;SNz$@2Z0MWjpXsdf%j zJW%{V@riYz&On}U)XcEdKrH#ypkW3Ejj{)D_nx+03+ic2KBEfmr2-J)yrKeSE@Bs86Q`aWg6rzMz0pDPIh_{|X)G&kmmf|h} zYl1+dr2}-4LZs!7n3SqNVp3Z05R@!M)HM5)Pjbs~`Z=$HQhw3+L={}a9!M0Y!9hFc z*c`sxC-?=ye470ln<+b?tycZ^DX!28PoFCzWj%?}qqq8^)$@;w$&j-2m3s|Ve_@3c zw~j@xVPr9cCXNyOKh-M`#PLf96Kw2%(+f)Tt6T6EY^j+O2;x!t-yBu$!!N;~LA;Nu+N}>8OTz zEAZj& ziXBmVF)=%j8K{if0CS2l|CEVQqI=Oo*)4pMYl>dpBjgRR`Sd_JZ!fn?+o#h%@$mK0 zW$h0HXk%5U+d$njxZ$ufMYb8e+>Xp?$}lLn&;%H<<=L-&CR}~9?#@33I8)+jJYrrd z2io>B?|(+Fz4#6NY8S`PysWXmjJn7J7W?XfMiLO?hjz zBEF=14P8%HeBhOe%6h}{cCcn;(c-EruaFedNn}kUBD3eTUy>k3ipe3{+{Z*N_^@z5 za#>M_6w2CA-Ph18&Cvo)6zf!NolsJ=M#Y46J(Tbj#c*} zhFkLAYQ0_r6t$8Ak{6T-yag$%Ak}4t41Wfy%skg{`+0rmSZy7q_ zP%_zT&feR!Odxq-Wy-lu!R@Cb^$=$AzD`5W=|wAL#qqww11mnsX3Y`mY=9z3X%R$m zwST+XG~|xEg#|7CROdTtp;U*+c@N|Eo1&LcHO!kVDcCdaR}iop9&)VhOhe0BJ~6tg znVou((~|Kqm%?LKB7v)5k;JXklHWUhFxmL}=S7dv8&M^}#N^P$tbj*J(jX81?u1Gt zXPa-uLNB1{%GZyihB@@_^z0e<)o?#>orzCdpMZPdv)K=$@v(zLVD}+~eN$~ZG7m5c zmY?a@)`JSi`gU|_FB8rl(<3ProRpT8seZ)woxeH_tQZ;7Ivo}J20dlqIG=>r3pv)! zbsal8lX`p>yvsj$)AZvdP(NrkN9w72nLQhLYwdhHq+&0C0h+lC32S!3#xA}Rbj{PQ znZEa=*rw_)G+Lw_TF=OPCVHE{U9l(-OD;J+<*$-%>x%`ptM<501L*LSIVoFK87>+> z^8{F$H(tC=+lo2h%%C@ns+5;Nk^tRtEBq=a*Ul8^J(}Cx^A^HV|P9xZ=D`=+&wUyMv>mFphKl1_jy!Gc|Y`}<#>~Bb=#}XZ2AI(7(62dhU zG=M~lNHbMP!y!=VjM>$udRc#TK~xD?0WU9Plb6*3uBBxO2ChBke%3_@2)DTD>-{#r zGtCKa{C~NAZ+K;h)NXA&&N|!a}zV!o35AqYzh#q20kW|lG8{m zl*nF{g8@L~q}uA0B;E!}T>S9yd*s|P`0N^v-)#8HoEl#OGAMUW%^B>hP%$?#p8f^Y>6ErF zmnWVjg7wkNb$_fZ@fnq&$1;&Nr;s_GO+vpX@7S+In%@z}Vg_vPwS%92IlPVraNwjN z^}|Jd+|Jup$C+EPJGNo3ic{HWTl8f`FYqa`I=v7bZKm4*aO43p1C{k*B7r#LCHnSy z)qkPdCH^i`-CF(Xx6bz{W(O9l%LHfvv+&8pbu&&#Q&EwvIfMyh4uL46x$WKqVL5kr+k6An6mc9?k%z*d_i4ke zY<zEQPTSxTK~io*jU}T1=ddG!3mJ_(B!>Hp&Yfb9l@k%ll7@Px)iyu&{gL#k_BI9jL>MFJ56tF%yxwi@LdeI+~bv3cL4 zZfrSD5@JR8qpAO`zUqTu-V1MkO9)Sx^r^3AK|ByQqA!)-WZSw}?+MZrbp*<1)x^a1oS!dF20w>0MQN zFo$U~H4fS#1=J!CkwmOW*^m6fU;)Mv6>LjiuxJO-Kt40bF~Xa8RW}U4>aAGjhltZ| z_kXwdSi7)Jr&smp@{kq}f!!QnH^oB%B;sye)&%|=+0M${@KJ>ro&{y{NAjJR7MizE`IZ4Tq+| z(7xG~#9h8$JA}z3`8tm+{|IjQp)ft0`zP=_3IM-05FCt2PL~=afSsW!DV1BjzsVZmZIrhvc-HvKm)^uOs2H!Wb-)syb=$z6P*cxDyxh^7^b?x~0< zJ;~dkKUsj$R3)ZnjILW;!h!un?WTq&vQO-#_u!sWo`NJvW!N~46-AT2p`cMmmmHw^3x?{%-|Uh7@Y`|Q2nz5n8) zA4KN5&g(jl^LPA??{DUNo&E4c#eOzm;-#LoELnd3Mr+@>vgJ5cnf~!LBa;1^H}+Lo z9R)n+KBW|SHs&0&TheAZK23u&-ie6@E+Co-PnR#@CkIhJLMYbJBo7VM-3fP5d)`Kk zCjb=r)LoP%oevTdtU8BZBclpm#_+rNa-!HU5ibwCnk$S3?L8)NA^lR}1Vcg=a$K%V zQ4XD^b2NC6^Ze*(oRWk1^H79yf$%8Lle?(ID_%bWkjc#JpC6oENwyt^Z%|?rr!69m zQjVVaI?1KjvtEO&`;DvZ>v)3Y!=s*=9!OCU7^@r`%ZFB0(mq;b+|VET;QCFES2A62 zguBsY`g8@=WAlzGT{RACYQ9)at(Lu)t%Q%7mZy5gtY=@Vt{7W9_u|Vvr^~tBrp}A!(|bGrVe<7(v1@&LFlu{mlg`+11$s9T{)v!?$^;xbd{*gZC|$9a zr4K(^Gq;xQf{Ze7;h5(WWj*5o(csujk*FUZ4BWb8(;pm-?dHRU8d~#VSvIzQP$&IvyhPBo!FM8I zwL7s7O!a7OV2%Ia;!PKfFVOH85}rZ)?tFZfT@LE*I?QJ5x-Y}wYq0`RiajP;Zw{T)l~fU(85SeyvHqx<%k;9K5Y>M$LzV!;I8J!oi3g~xc$}O zh&}9uoJ8Hb69gF6r9Fh>=Dy;gV^Pp?9rohGH=Ljx*ZRpp>hvUrZmK#9U5$0uI7&oDSZ zLOeI;5af%TqX?T02)@BRko^xDL{(iNQE_lZZ_LZK!HDhul6#*>{3-XwhGz}_$%Eh~ z?;A@OlwR;6*Rcr@wfJr__u}fUt)*@KQ6qX{ujR-H`XQ~>KEz7EE}yIVe)u2)EYA(s zQI|G`9~ZH3K9$Qr4_{Lu-f=QMAoF5$ioL`-q6|+ucx@`S^Y7l^$I_Y)D_6{nx#ETV zSK0&xZ2kT+2UqK?3gmqsy*Ua`ecArt9pDlE`h_D|`ZFWMWpBOyquwi#X%6exDt`VD z*@v>vh?DnCv5aCI@FgMTAopX2;V!seWx{L>(ObrSKZ=<(($xCX#O z7#_3_n(o?Wo%J=eicq#CHP1>3jv>Oql_rr!NYP`WZHb8OCq&GK`fuYs%lYPc!KqWiAyJFGDQt58a;2 zZu6W47fyHRV7WQ|^7c0@&pP9p0${|ZD#04sB~}{OuHY;^Hz|#GQ(^9msMQR#?O)Dd z`>o&3;M}fbvKFd#GX-!h_Z#yMy-c_7Uf_(eEesnilL;X`~@WxPo>h~7VZMopjL)gimteuLaQ&8|lCYe+{p~^IwJ%zxC@U@G^ zj~}GJ&_C8^>D?ko5)CkNmnw3{-ZlLdH^PO9YUxWJduQM6djZSIwrv@L~ zk<7YZ&cQD!FuY~3>Bu!*1PdPRp3g#$d8cldZpFGZ3;Vyiu{h2EHBU$vag4OatD>v5L2z1EGtEvh`E5&OIcMyc>o^J;$~=H*cWc(@ z%HzFMt^alrbuxrkACK{s-V|bpo5xhYWn9pIl5uNi+`T&X zZUZ~Z=-cZ#<@uFhQPh3XbPaW%3JnUlAOshpqQB-$sxBF;z|I_(=>&$b7-r3A#BDiuGw?)DAojlwNzfl8G z5m%>-U>`Zl6VDDfyPz4`i0RypA%Ax=a;&(nWeaR1vW@$DNQP1JBh*s>85+G28&iRn zF022Haqk&A`nF24YPz5Ll=S|($^qdd*Q>aIyQe((mgqXByuH-eByJ`fndYEIM)yLT zWE>hFHSqR@)*cNaD!pWsoo-LFF#NN+gHF)GBTW7md|m3W`>>m0&W!XUZV^ilPcu_9 zLOuExl+vJ{RE55YZ0(~RL0vCym+(n~CSHh3U9Inajx9NIHCCETy?U7PFv0NJVUcrA)sW+V2z=|N63BQU(28m-^fA84-dr#3v%CeQb5+qRAt#$zJ3rummT zZ0k&GNtJeAEnUpIEb^3W1Un4tP(>GHsUyDAzd!BAhX6HESpVM>hh>F|#h%o?0t~?$ zCqVmtq8ADAKft|sQC9%KADV{6Xs(J6*8_8=-#sq?{gQGA@BBwJ^?$1h?+2PurYg9w z;`Oslj`{DzIx~p8|APp7{{B3X`STRZbj9GOm7q~|t->gFb)~cfTnKuM6{Y)ef|CqK zpX1&CI2LPr>noiinP{*wTHhKt&#wEVx#nat z0a(x3ol}QXQzLS~{!!nEh@4f4f*d)7L1^21tEr~Yd_yqYLo_djdIS?9~nWj7XG67mgCFLwO%xz@(vMxecc z%VDSQ`_yLHpy?~WkN3;Qk8tGL zm0h&1NrEAynd-Ca6M6t%={t_!w863rnlcv~+T}4|?@Sk;b-8$%&We=>3S?4O;a+!s z#R{f$a(MfL(AM01(>F@sMOq-*cz;s`NtH(H<3=NRTM>I6I?Dt|#UIvLu6qaQxT_c0 zo`dv%px<gLrEhEJ0QUD0C{ z)HY9}?#KIrnHjCr$R?{Rp18FIMs4eeivdi+aMvA@@C5MVVPtIyF)^e;b082mu1%3v zGwq^47VF^cMfKLph2xi>;}G%Un$TF0sqL&oRLXYTNM&^0*aIkB zQ{Mc$O+*lC_qk7Suh8}E{Xgx(jDr8CcHzv7G&7_E^0};AT@R3$c;pRFI`C1XZF5^! zW0(p25^GIrDoE+SQK{_ak4*$ER(zGo*qih26SPOYgrYfzQFPGWZ-x}58}dLbX-C>{ zF)(Kvq~g)xR;D4S7~{Br?7ic}w%|hp00DaQ9+wCeqR*+|ku0L`H?aHJ%s_BmeViVP zjpD~+lm&pO`@c81s+W8OvIR?*&i0Q%qAl;jo|48S<#VQTH1019cC9p#>(ldR82~?c z6>qPAa%mMnN~HlRRp^&$VAutB35d-*c-MwK{?3{~Y_V=TCx#3@5TRHEdpI+qmqHG| zZ(3n~B@~W+Qg04V^YkJ_;X!-xyw@5%dwHIS{*MYOnKI6j!nJ>r(k8*1F-*x!vfbFQ zT6?PJ-sBX%P`*L~{;KZCS6~tiuQw+Ay+(MkQY=7icCqfMTliWgp0Zy%pr<=faR(LR zbUxp-hvw57r>q#I{2w9&L5wCVf>mNjwY=WlO;un`60bA+xlK+0TbsP&FWspD&RS3P$b6#xAat$k8Yo7a(={bbg*;4EQLuF_I`MEVZCwgkKI!ln9nI%d%3ii zt5HC{AZ5yvWFFzdsj+ANjf-C?;v~AM&aLPHD&$e`MsE8f;Rlq*tUm4N<-orA zDqy`ZaRyj3z?$Xvdf6tdpk$U4ZcxhwtlXOn>`PU09(p#St875wo;N@*7re&Q$_a1* zC`K25fGMGkG}`+|d2?eV#D4ZT5|&*r%Ku#wW-n7PmaxV|Pb?G} z9GDY%Qd1246ycj{Y|Qc@q{N=^xp?ci+d@E(A$KRyHQx03@#hE4!|Xb8q# ziUJ1~(np{cW*LjVp>R`2tKd+2$QiZZ3zdC%pw{{xgigS7|vTom}VzTOJ)Lj#K_74Wd zB4jME3=1l8b zz21!;8Yx)4@X}%3(>u*8TeSKQ36IMEeZph&J?|U7RX=Bl|A7@=*Wvg-f(ncCEc@QF z{WIn96N?ek@sNn2IB~>ay)AxpOC7W1!DoE=(5? zylc`j7BB;@(L%7*Rq;R&T#Z?@60UzXRcnp`_7{}dRx?5EB$Ycx75o-O|8U2svAuFe z`U7E4@00|8rsv>@Z9>PS+eqa^OkzUJO$Yy`2Cj!(py?~4y|Qu`S(dsEt9Uj% z;64?l-v^uQ4(yd&Mv5GG)k`H-|IH~p_W!d} zn0hwkB~%Dey9@7})_@J)fn2NBFRlrH5;Rl5D+*zu+5-&#EJXrdZze$2F$8*G#0=mT zT~71ouYE73*oDNeMESC$ViHgn=CA2X-A`~Kq_L7dx92&TM7?J}OQ((|tldcVzvNG1 z3!nFiDzH(C3Xk)ai{$$B>3xRuf#x>qJWuesWQSVF2>U9>=eN1B&dH&i3<3r42$!C7 z?4|cBgsTtNH3zs|5)kFDE^ExNw#}V=NH#*IT}?-mp>gG?2c38gA?UDt-ROzwn}U!N zIWrn8O1|6Kz+}MeFME`9*CgSn13Cp!uRO46oQ@LWTU(rHrfkuP)^_z@>bcK8C&IrT3@Otsk4oR4KVwwiOVMagCG09;y0B zHtso_0XD0$ezj4vYuX}{mVgAx8&|sL?k$m@KU`LIr(>8l2u!W$74ukI0jkNLK4quB z`INOsc$D6F3>1~UUJA^3oL0orN6>G;doLfJ$er#zq_9Qboi4&+or|G|p-0#!J-T~J zd{)w3Z!=7K`+ZFwZqvQ}JmRBJgD2xIexM8cAT>oL?9QWk-W5PGzn^$DP3rds zrVRV~(btO&z+spNe6#nsPJkSv3=(Im>-6|SlihtBA`5_zgT6JfwW~h6A)H&!)#yxn zLvF5z)S+>ZmQP^ebEOq|175H62B1GWDyBE#^`5iV6?&=cSxj2>^7m}ZDW~onJnJ5< zJ*UF@P70?Kw4gkth6$zj>ij(XKfA)A6eb~0zfM+CCJBe*qvnLoEzXYV&S)6T!q*Po zMN?(5O{x0#j^6D3f(u6$?aK=EGT6&iFf3yRp$9@+ps=(b#JRy%(kp6<%mA}OAYAV$ zh4el7+#I_|I-FoGb926eON+$fbIzQ>Z*a2d$aCgz&qt20j0;dS5-w(m$zM5tESXuD zb37)C-w+syv%c{i2$_qct^7iU3h}l97hLgJxzf4H!AIQ9Fr6pZPF;*2dy@BGxZ+=W z3cNdDx|8SEoMrRscOW$sjo~)C|5sM}wAgA%JYd24?mt{DSsVscoPaaeQc{)Mjd`Rzihq+a8 z7@Iq+Qs5g55^N!OGvZe*!(3pF$a`&Pd~mFW4I}EbYTAXjF-8sE5K`k?$jC;vX({8* z_*l-hW7}D;Kea8!e8BT=6jQpWb0DaG_jJ=4CpBXRBM({Rb9yFxMfY|`dMG=1s;pHg zgcRT-^>wMm2P33iSkeV4E~_Aowdh`<4nF-}ouXVR)&7ShvfkN4B@O#q$h=M8N*lvv zp~L4ox*e7$$$YeDQnXJLl)X%g4?tNI}q`k?4yj9`|L%L!dpVaOP$S<5-`&OJR(e z{7D}h3Djezw7UPeGO~3GMEyMU{dQ2^cHZ)%MuR($Mv6V}&$G;YwI;u`oeqH=X9R#uM+zX*F|<>X zyW@3>-ltM2!zjVQgF1Fjt6L_3#8^M0d+woi(s`8Ab)|NZO@`Ry zt|0}G7}gWoj9L4o(fH}aqeCgjaJVzZv6GR3)+_DP&yR}t>2#PnQ-ocS8E0zJ?6cHL z?|x|u>z;i)x)>sJz}_Oc0TQ(!#kCfBsDDW$Qh|*MDX^{d<*e|D%VelXdEaz@5d`>r z9&~P+=8(c|K%bKQcQTbTe2bb7tW9Y<&++sA`_Uj`m>an=G$stT|YC7mW{5TlgK@MLwK+}5g=DQAYT*DRPSfhVB z?XaU(5Y2x;_Z{p87U=ubdu}n;^o^G*!ab3?w={!XSZTY|2KtGn^5RaTQiqa?1&Di* zWE!&6^c#J_p9uE14OX0Vmn#nXRu&$(NbcOx3SJwH1(T%#Rvp>gqaex0Iju|{Ki=<) zkgsY|b~u8KuZ_$ahY7YvoH_zbk>>n^eJxustp{fkl5D2gmI^t4c>z)tD&L)GI7`n| ztT`*qg`ULGvM-CRCj(kI)8 zG$!Ju(q*^Gk+Mb7*$@_h6_;1<;2s)e+C6j*y&xPc|CCi3`MyC6TADv_G!9JgT~ay@ z14xX7!r9_Hwli(Ta_*jA_2k3fA|-Ec@l=0GlZf9{##O5i-bt8sDtd5_vOwGt$Z_mn zD5zMLY3Y)mYu`4NlmWY9)4V&E{DlW`_xhRP7s4|ai1xL$=6A{tWw0Bd6-oYA>TL4RXid;qi_$9r021G!*kORajIu``r1DWs zYhhG;S22$Wv0E>7M4OD2bWlbum=c+lJOW~ON3f#hDsKZ2rijZ~<}8*x<*E*eafmfkwV7lx;T9b463JjIlj>HLzE#L1`KxpS+oD`}Csnk2E3 z@QG%iYH~ctNWT*7Sy*N*QfA#soMx=!wQ5Gj$ z@@PQf+`OUnROd?ZH^QQno1!&xW`Mtq)K^sD>Rsi?6YJuQ;Ks~+Op?z!Txlr6MUfi;kp-(CH#ivLXAky*{<{OU`r(r117q-dN3QE=?MCo!9 z$cr}Xo2~CovN<NFLbcXUeaGVwp5n~;yq6RsbYt4^gfTTJ<`GLcl)zP7i01ilbXzqyu2*MSDhEZvx{7xBg>1B5EkE?eviO~uytRi5iz=} zyu-;rkl$1KQHnVRB*zZHtR^v#sn~LsZ1ec6;yP1t`w8L+ojRRfFWuX)x=*3S8L|f! zJdo>(!H?{^Vh|_U-qCF)6MXK$cvD^0j`u7&3O?=`QD6nL*(;tDe++0Y86uVCn_JLv zSxu4r{dfdh6`y|2N|sh2C_~%y={lCQ2m9V24R{n7_%E}yvG}-aF)?SIu`qA?iw4WH z+wW7G>O|+}Sk(M!RvH~@0vRUs+9&+*O`kOl)<=L^@sw)P?Z_A6Fu^#Hv2;;;AbzD2 znaP}?aCDaJW(h5KnhjO7UE%H55;QOMkrBuC*IZz!2v*7@TEmg6+8J(aEIu47QZqG`O#A%ub0eR_JlbBCpq6r2;p(N$^9+2 zKV<}2VFvb@@bD4A7T)h^mxeJMOZ;d7I8lgvkF#hmgbgAajW5<%%0k|s-+QPrF=GdN zb2(}q`<|}Pa=rI5gSLF;r#Jtl!a>SefrZ|>?`v{DrfrJ7#H7(+(X?nXukc#!0;1zP%_oZ{0HJ2(UI-c3AS4q>|N~csk+YR973#G8^)J^PEWIXt8{CMx_?jr}u ztLOJ{EolVn0cZ591TSHQ{;f_eI`2zUlUAYqHa55+*nRhxa~QhlF-HX6ZU9+jgzmn> zq>gn#3B1B2jcYf|jjH=Nth{xLF%VsgG2b}K_Xm8`TQ>T)CKM!TuN0n4+kP#+q^pKe z{CexcrxPhZuOJzw_K_YKbS*GO@$O0BQ@t+ux^v1K-qyAM-m`lgSMaiwVIM!@Ez{0@ zTtU<-aXg9pkNl;drv*;bz?QevZ(Otb+-;sdB;?Mqb2CU@Dmu8@7N?PKmSR?g;E-Zm zL0uy{O&Gur_dpie9`^CLi6+89ng zFuXzcsty%MVs4(9MK7q}B#c^BJsr{6zlfxzcG~nFauzM^AaUElg7>1v{4kM+Gqfo? z`Xo>o+SR7zzC+_a&*fPCZ4QatX55Hpcpt2P90$qZulVE&z#KH*$-t{Zy7ugTs9iwr9+U{A5bY-2rJEQ91X0PfI zzwLAV`gQe;*vqiU4Soyzvyz37e z{+0snzVgcfIg^;V#A0e3xU=Yn0Bqt|Vlk<+^?_VA#aWv)jeIemL;sKwSLk)P#3)@B zKEf>z-MBgaSzeGFp}Z>w*<9%j1mWr_xXp_Ki194jYz@8Wl)Z}?JcylT@`f25xy8qw z=Gt-SIsU-gk^mZ?98J1}FyEqe>0hZ4H-zjT9_q__M6Z}tO;pQTZ}PV4`XHL=THDZF zR#jBO9?*JJYUjCe6gq+eenf|aum9Uk`hCkBs;^hOYK%+@Yvk6>r0@CAt_S8)DCT2W z@M)#@mc!efDU1g(jyxzO#;5Ugoi5o2tWPi>js034=Cf)rEHNL(#)K0UebDSlFG>yF zQB0>W0}+!axSUw1??H@OEg7=FqIB6!x&33OV@^Effxj*_tcWK4;#iu`CuN z``l}ukDbrMI>4}gS}8K*OUTK0dy%H5!dW(VeW*ku0aea@el*GtYl@KuX^1m@Hrf2f z$jdQ55WI&>5-e%eJ`SgAdU-5oc1ol7nph~}I3R-pUU807W4-mCKClrJa6qGg-(^^c z$ls^YWfqANM(NsHuLoLCX+$g2^E~&T!0YvoDUyn4(KCJC)8H)vvdq)yRDJbfv?`wh zE>1a`^pX4cIFbt_x(SXD8wCn?;N|-3U%t$_U2ocW5RfS4eJmh^``!CHQBQ*RfG7b6 z`UN91kcPB7BOM!)*!Nsjs?EG~5wcCT$>ILgpGZ-`GO8%4=x|qO7lsS~&JmpZ!lo%H z-P(gTT?A$Xg*pZU&xZeAbw-K!l1@|s5VB_6E1r!8%&**<?OYUmoUvJlbQxLaF>?+*PHAV07tNa4?%3?m!c>6FWKXf540i@c}v+3i7#I@a%5)aXpf7y$hZa?;j^{`{KAQm&9fRv z!^j(z@aah*1*KFyw>93H5%Z=<2LtgSx~)$uW*rvTgC|l+k{%-^+=koMo*_Tn8V6xz z%iFsak-&-RZ+BsCmsF7Uc>2;quY0F_sVMs=f!kj<$Bq>E)@d~-M256TG~KBeJ1XQ& z?>!V=G{v#J+lTc8VW*hpOc{?o1CEvo5yxMa02W{Hn;M+hdSvNYM}K=)o2o%jNw8v8 zM4zFIN5{JOs%ItE#e>!<{l*yRIODDO=E%={wYMkraX^IIwuBCtDrD^SrH8s+UwUA> zq!&3Avx-hd>9WFU^($O3PPMg90@D+AD|AKQU1X>MvZpA~(0wk|GX| zo5YPzhc-#JyF=*czveBKjxPP|;W=Y9CXg+qw+(#@AE4c#m zy}=kc(%UkM4rfQ3k-i>*F^+#IF}yx_I*%7RQ{%vmt>R8g!FR0IHq_BGa(e20`Or+L6;IQ0nF-SM3oQ@QJVSDlo`plZzO zSJR!&NUT%)YTG(l@r;L5yYe{BC-+$Ew%O`KLhPMYg%F0q9BUMw!SrSaL<6M2?hCz9 z=aW~*(($HgbURIiCc4f1p~eb^!)MlZ5JRZ;ymxx?NJ+G>P{Oan-fJybZQe*mS?_bj zo|z$#!Ll~21J*Nl1^=C|S$il6awx&dtw&cKk%WE4;7}|pj z@g%P@d+5!)dmoqaxz>K2VdFyZ zA4HpiH?E@vza3Iw^QOu5afFRazRak70@r>01*VI5RxfoG@?X+=GT)!l`W*N#X`L!< zFC}I@?uF^x%YypSUAo-I(DG#iFUnlMKzg3LM~;`R;_M3&{O|Uc&$Tjq!`?{^qx4LC z3uY}?>m!FvE;_D-G+f|aPZTsQCqh$GJL%-4tEzFt5TcshhW2C@sYt}#AcK!RycY!Q zSM+N`^b$e15Ct#A>vCOG9)PWAq?HoVbQC@AeRqJp8?qm|WAh2lEcxtImuAQ}y|=L@ z4q2xooGO)4-jNiT!+iU>&ub)%E-1^^3){1x&I5arZn~8>VX>yFVE>-lPp!IU!a&f7 zWnx0Fgwca-$f=(J(gYJt?eBzA*z1WYFmr+gtc7iy}vf6E2B3U zVTJ@CeU}>cn@msraa&ievkK9VjK{2m#{%~SKH3YNs0TvAcADKB9O$XZ6bjB_HXwRm z@|{?3;|T4Co$FpDf+Xyggu-uno&Hclq#=x25H2@@V(86c_)w{wusn%#Vg15gXTCc9v$|x>cH@`rS*`1-uoLI}r6z?cRt<51F)Fd?nQu zb)f0vHQsxKll>*LIs%dJ$8;`cbwoHsUXHUj-Z{>tXr&xE`m~j?75=Q0rM^)vDo7@L ze_3=*d#?cfLZIeSy0#Os#vrNHv1&|pUV6~vaCIBgob(MXVAIE})sU4UBewMTt_e61 zWB855r$fZw4(4-7vLK)d`>O5=bayfi$MuTn7KrB5#1KNux+J6Y9sQ`ilw&Djl<#+7 z8vX&Iy(dkX)HKWLCS~gs^>96?neU%RZCdT@!GTl>TXd>S8QEh6yLp;ZUXp%z^iF_O zBJuchH(?YNB5*V6C6V0W3&S6fctvkv-|)apmU_(*yxyal5(j<8qG3vvVP@aLSR7O@-? z9&Z?N+F=8^x*XlT$@=}-3vfb1`&*2|2Q4$T9kS8>NAw)6DXp5`;RJ&Wv>hYR=UUj* zE;-Jr%u1y1=>t~wg*=lZJ4*kg4wLZPezlm9SNwJFgU9@Z0q z7IOwl^Fb4?wsGV9Ydt?}Q=c7vaK<5Ph<{({*7t%GN?UxjMC9>F6RuBv<>(FD)4t*o zfr~HCqmrI*>B_<_5J!Ys*uB!BGYTSC3J3REaCu=^j=+I;r8Og#xG+Jt?$%Z z2HIBBJ-&`AOgf4yj!%nwN$UDDd%5P=AoH=k=4#)0eDkZ9jVHOY5~|a?xqf$|I*wb_ zb&`hlOAaVE|J*0(fPE4;LIli@5{M>DiGad@L>5kwcOStMAFGE)~G+Wr zQZ3z>9W&-TjAFNL*tP34M##k&qk?PXnowk$OAlN-SM{1-D;2h~7q%}23GLNA%l=ki zBXe*zbVNTJEh6$5sCSdwCAM2hEM9jW9hxSJJJG;IB9wr_zO2ddRdsa{iUj>3BjH;r z>JRD?O}Uk4c*qX{kydeKU$3$bi{sYs3lZ6{+dK4IZRtAJ99zGZW3h?eY_Dr)mI~7| zDb`OgVc{milv22F_(fA8u5l%%9%?};{Aa2&a%I^@q*mT07?$PO@T=g9kdrdJdY*GW z((afCk>Ztt9oU5{zv=2MsA^R&46lr;+1CBJp$4x;9?B&NMO zmH_BY?dHcI0rp_e-m`4wgF_7!55$Op%D1Gwu`#3bv5tFc&bE`9 zow50wvVWWiDEsP^V0S>-ul}v<|GaPu>MRhV_Lim&ZX~S?S?Tupv?JXin(cBwVCOq7 z#K!zPlc>T2Cncx>pZO(rBcF}=`9=H12f)%1ojir$C(lajviBSy24;(~W_P=o(aMb! zg20)6c1PcoYfdoSl3{T4O{cj5Wt9GLt;)nJ@5JBxQV33n(xo7lC6Lq+A2$oSw1d@C z@at@H@kRo8*ZI=p4OQ$F#?8~}%zCAnx%)aFcEZ%6aZuL~?54DyRS^qeVfHKC>lOm; zf3*VVBDvGX~C(WL}0oZ=vj zCQ`H5XqLg=(pzyhAf}0IL1W$xpUkKO?-gG8W4)8e_FjaBjj0kekLlxeIO08kR-;t`fchi0VJnX%i=7@J|h_dXQUblocAJV zzaouSB5&L$RgTX_xoPadvsKe}gHg|=b!EZ+q_M6N9?^?ZXZuKJL3#f9By{c5s4RMX z&lTRHlgo+Y`{g0t(L0$BIZMxvvIvl)km+@TbajdOdFs?O=Q2>+3t4x@Y2T|M+xkm6 zdB+~%*ZBTga-Mp#oS5Adp05#_iWXj~ld2o>&d}weX9;?0?*aBIhV=ZFC;fc-ej1sA z_3E+{Z2Js#0%=OyNA(Yqu<)~d6>=+V@7V60zK7JQ#XHtcW->`FIC#nk)*ft_6-vEd zo6hqC7sy{sE4IyX32gyqpvqcCJh;%?S;wbHFJ=}ho7@6p0I6LB3zc-cli8YMK!USb=yJzYISc@|F9Pw4 zgYkGj6))bTF>hEtILMXPo4K!wvkTEQrxN8@5XksQM4v-4@2T6yHSG37Ms$*6<5AI; zAzOt|y~H;bMxn5;->$MmPxbG3VXJdrcPWCsEWN8Ss6(ZWA3IozwwMrx&D_J*>C#Qjdw~RocE*GGit~o8OXRwV+m0vdpx{bsbLqK>uvOsbo z3suF3_nmDxY-XR!KQy8{pEC0GQZ7HUV46GW{m{h$Xkfog>94IFV0Ltn$OJO=yUWjj z6+$y~S~YQ0s;CR#^%U{^!p+1R)v;cGHMaPuw_&9xLGSh=b_tJfK#W?lGSw*?69H9! z2(Mr-zwf4;RY$IB+kAP%j?Z*_+l!T$!+~Z{I}l&WD_0i0BnCjCn}GRHzUMH+Y6>&s9xS4W6S}9~@q;8CymSG%$%`#C9aE?)`t;7uc6b zrTH#&hwcxEprV3H9eW7{bW*V~W)=Z3mIWJ+xd-{nm=Et$0R#KkS*i*~AD%{~M2jx@ zzKR^Zhf59I`O6RB!yVbtC4*3az z2oDpBEvQBnNr4F~k- z(8^So6z)XrxGq$jL`QMjNCfakaw0|wwtWA6F7Z-&g&mD z*~IHaKHIfOmd>gPbf%>UijVR-Cnx;QhivP7*W6|o_{(L2##kq#oxTcmNZ8Zd`-)si zBSIwIje0)7ol?Jv0B9WSNfeujQH562M)Lz}Ong_3oAw2d=oh=GN>P&;QxO8T{USMa z38_I93$D~2iTiQ;&4U-=OEQjD1wjwCNn6+uC2?v;RU3Wf`P!+}YG*`3*4^kmm6bi; zmGTLv%8FuEF-5Qt%Cj2wt9tqGO|5_E;DR^#f0y+_AAfk>0g-MD^(;+yW;gXSiNNYK z%>dUp0~Rx=9>oS2*VEqHgav{or+r~Pne=#V(SAM0d-sY@p~;5Ae#v~m6|xIh|P6K1BA}HbOZn^NR(;yG|OHJ__NpEuY2`nQNmF>nW@b-Pi%!w9(Sej zf!Hz6abf54`@N%cL3CKdHE%w>GFVpHPIMt-EpR0{=`64UkkSgXFPSYE?sd~eKb=S{ z9qD1Cb_n#Fsu~?#3NnmY4oib_10!|+Lm#hnnid+)L!a9IZe?n-YBV);1ACn9x=H81 z!wIdGZKRL}k&p)gr22=;>zk~CW!6ql{0L&O>F~hhZhg@1wGQ5=ze(wb)9kAG5ichj_a;d;Dret z*5=FMOfTHeU6u*h*yE*>_E0RL=w;TA$&d975cL#uQ>Cgszy}6BL=FJY-83xNDRMn* zatP)p{6F1D{x)v+umf7A$PXbd%fOL51nAnF_nZptOGf0)8C|VK915Lyj-Tr%eD~y$ zO*zGQN}CcCjgW|?><~8R6g@kx9Py|h!L0quMHGE_GiRZ0k`D5nst$26e8;`vuXXf` zi1By(=^<+TK9);k%!bc70dzDwSXI`I_wMXA&>=ec0AdnJp_=t@luLhFZ8?qC~ITp(#cHNwV z9aNOdNP{v&qJSv_d>rXizsEQ>302x?E}X0Pr_MCFapHOP%R|Q{<)tILKS@OMJyD)m z*18{?Q(|WIjsY@Gdkk692u2GIJSWF6>4CNL@@4NgB*LCR7np>9250nvcRh5=DG=@L zJ_dG$Km?Dbjb(y%S7s-2Oe;vdUZhDK8)yo0*OTjeNo?DxaP{=2`9U$Qnl5;$E zd6~DW0|ReR#6zYpcV_ywYejzbNZGy`4PU23y%`4Sm>%oe>EX+Pkx2EX0A6oWWerR9 zykjYvL8VpEy#BlRWB{KWT4B!Sv6W#DNi}$EFwY68^3G(O;^;}514X_uJP_mlfXLD`o}Xbf+}rHXST177wVe$0#5QzFLY)G zA`=7;#Q6%lcg{y*j~U7wy^x}h*5!0>x?HUtGaNXd``YNk9;1M^WJLtftsq&RI+^Z? zv$m~YGLpGmPpfta1cE>7T*0#j-Z*WF4~r%NTTh$VqJ|$Qg@X8}SV87@K?Rme3;--? zx)ZHRH@OY`lex)Hf&!tVGE%V96Yd>vzKmT4MIV9qm3~B z&)Qn3k#qhq7?0pzEtsl;LY%#?tnjsSBW}ib+U-i7^mgyrig8Dzgc_uDF--ByDhZoa z&u@1gUfz+Ht@eXx2M_a_pD#b~TO;%*D5{|b}*7T!`mqoZ;NTGa#0=3#ZgMU}ApD*Y$8N{;CM;o!dlqz3#_YA`Mp!Rae$ztts(%$bwo!WKT0veVQnOKc2O{uBg%x=2T z7-I%fSMm689=c<8z|6$Y1}60g8NwdNbK;8$XQ(P6h4ZGNnWYrmc9q|x;maljRT7xSc_=v^cZtN5|@s1-eL2e%J@AGzX+NlXKK~M zV!!z_4?8Qe_id$%zubjh5pM@+Ae<(5S0s%LNAq!ZUH0~#{fvaeFjnr&%sP#$=Lzpbpy(_~++ zkc@Ak2yc!w!jb?&kV&i=bEVT_*+u}*c?S9NRkJtj5!rav_B(={>LHe{+a;@ZOT=Ip;j*oZtJtzkjTSrL23dxv%T~?)};Ok4A#PJla7sxZRYqVRCHB zQqkLo6{_u5NX^xU0u${I-FdUBx-Q4!eupFPbhj-TMmDLfv(-O-F(emVlz6t}YS#H6 zw#*}LYrU2$nkwW2-3!@1*>GD-awbos2zP=bQuJ;t{agQEx=dVR%J}RXQ@5X?zj{Dx z0~wCwQkWQgU%MKGy_m?&RjH0D{-w->%)T(~K4tJAK}4Ent)6SW59@nB{T*d#b?z;H zV(s7SUS8Px{i}@L=8nS|?nd7Yz4_hC8qkk1DDeaAXMwBVj>|5o2V7~!55|TB%Z>+y zbhsgC0#M)vaK}52xV+>27>ON_mfcCXHo3@6_W|&$es~lgr{Pns5DX7fjZn8uy1gV8 zX$>g#=0WlZF?(!gg3aZEv8wsUf_bF?O9C7lo%nmesu)Mm8p;Yn3eEnhnK=DVnhBqB zP~R6^TqmHh?ou&H!An{Ao*PQMg_;?f{_b3QJ`qro#toSw?U8KuUwDxIz|8HFibEC+ zhKxFe1wTtcdlBa0bHs8IjPuEX6y(L|TcyrabB|d`{tm!Os8G}d#daWy-Wm@M8V~A! z`J8?JQobQuDFKi6QZF%nZPrbk*DiBl6s9hdWSilNskTC0TatG|6=A53L6jfVwlDCP zI7@LLEnh;2EI#ztsiKJ|obS}yavWU8KOEWGTl%9izto{X9I^cE3YpgJO%r{$sI~L& zL2PBEo*&x{`!C~sgvI48Kf^bkvHsRe^gU)j-%0OMsrpbQZwML*G&EynZis1Q)!dYN z>HIo|g*f645@`FZSQg(!e8SIT%vL#M6|gosBw^-VIk+4B7b#)!XcR>&rXC&}>HF4` z?6zOyZ3PJB9`_DjBX;jH&PQ`J3%z!reWtuw{pE)KXZdT7pYLamvT*YUzPvuv}ar@=9jCHF{neEs0$y;3WFH*F?(Uvxe}IaF#BSxb zT&e*e%d?rbJJUn1|5R=EW?b&$&Mv%va&6KolNPSw^|6-DzgIQN`G=}HjTR*( ziAS>g3x51duOZofYjra(>#ZsO9U|Cm!aFCSNCkuRjYHfVEzLQ>UDDR~!O~9r09-M`uE9}f@>`x6;uWNPL2nVr2#Cu9cxNGtMv6sM2%9u8 zQ$6T7mTDIVvx_l_uN-!RR5cZft8Nt-Nx)a+LhIJM&BCuaDmofU*7Uwp0RDxRmf0IZ zy`l>3h8P6Xwpji<5+J(Yuw;OU+7>RwdEj2}ntjltu9!B~H+fh}MW_ zZ%xXh_4a8G-2n)zVc|p-&~f^n7mDAFJL>*d9jE+K$MN`wj#J%p_Ns-TN@qElDg19L z&OLm@fCe1%yC`MZ7xug7&^-|qAB|D7=!W$Ier@3x>xcGh7RR!@UqPds8@<@E zv_#r4SyAQX0JS%VI1xNKI{kiQ;?_A8SufhEYmcsqlrzTK{SRcu$ZPak)0|iHh%+1g z3n{0iPdm}y4wdm`GbO=BA93Uk1!F*pfp69gyNA@*2$p=0Yz*>WR|9PHnc$CNAZuRG zq}5VK=b$3-g-OP%AogNC#@B>1mR`)VA$&_|B&`t-F!RZ6bl1!*6%llmL9sIP4F{xKzrt?>zQo ze`xr~{4n&25OaS760Z$=uxzkzXkF%Ca{dldvcc4&Oh4OmnET3L__=*l{1#t;hBRlM z`|2ye$GF!X1`61)E<9WphT25NgYh_>5#iM5!5Z@*%LAjGiVd|L;cW$u>n>ASwLy7j6 z7WuiMqr?_m&QR9Q!j3Hpmd}agjbty(YIYeDvK$L1I+Nkr%9M(dwyk^<5{#Q>cE7TR z#;n^;27%Hrnw%KU^@>j8_C&oZRvC-0f4t%tV-(|YwScL2ZTD5}8;`fwvhf`TjPPH3 zEKQYbtoSY*!nj?+9~vRxMUlVVx(ogQ{}z>JZ6E$sl7DO65kdzi*C3t#Hx;IPr$IsuGUk? zsr7eFjV~1j`~3&WVKedSekteYkcls13s2y5%0Ur_;*+Ka&dtuZY8c^7ohX6BY~S;a zb6zZM`Rf)-^b_nl6)*sBNx8JzLXq;=_}2CMM?@np(x-x&y`0DP#^HV#`|0L$nwVL} zX_B6B+ktv(z@6WAG;TJ%jdU7r2IguwTRSbRZYcM#KddQiOO2ETEHH)}ePK$bxVZco zV;*P4Wrmw&MzY>)oT^sBZKNx~8bvbGi(?J-@EisCj^f5+8xRWOR*WqZ} zs>%-628%l`R@01jK1y*`IK<@8?IES zDu-FT@2h8{K0RS+3R6(Wnfpz;y~9c*s_bqYbwXOQDngr7d%4GogQ|rt3eTmZ?)*d4 zq5D(RnQl$ymy;jWeY0XAQrvp{r>ygppQG!pNPpW)f;`5qC2~A6Qv63o!2_X|=;tLf zLsetMht>+ov(IJgq5z5sEdv+fTaH>|6)GrkqN{AJu@RoCkeairX0E17 z^C$TN_t?j|4BCxW?jtI{F^~>cCnPJ~;W&s-*h`imp3|ZwiHk4ROmk1F!%nIfe1rlX zSUBz?=JS$#iUZAOO)n^3|Kw7M(!_$PYd#HWMG94Ngo-j(%zrlbEDX_0>ty;VZ*o6sN45Q zd%nB@B%Y>y@W>8z92-Bj>n{$4vrTZ)ZV@+e3QaCQ#k{LlH_&+ziEegHv8tJ~;aC(0 z)cC9-NaX6N!gZFoshyyianvVpruG(fQol^R6&Hce<+FhIrFmW?ELGVhaOP7~vQ8WX zczk7DG;p*mQALmf(@<*en{DK{(_zOfi>gD_B>7pA4o}qfHOOI1$SOJ~MHOV_UO?}I z7l5&yF9O~$D&T2H3OftrRMm|wR*TFE(>fjCQdKSJ;M_1w=vXw}$hz-q5n&n+V|sL2 zrdbfKlJ8LP?u2kWoPr3AAKZXGr^n=~lJqkX*z}|>`j1<2mRHZA&mIKW#PX;`(x;H( zziiS_XMXuS(STrH?a(n!C1thlpi$SUB(S8pdVeM3hMaOv0wS8m9aVr24BF(poWy67 zyZQ>I-^i0?-4yvz7_J$gRpvi=UMD!4(PC!b(qPQ_5Ojl*8N7o=ScyAv1AVWKAl;M~ z?JG5;E@#sd;I_=)@Cx-S4-vfi|24bCA^vjE#oo48C{HS#2!ad{|b zmrk;GHob^SlD(Ofld3EzC>d-<5TfSk@V5&%c?vl%@O)`S-=i^;B_!?)*yV2+4?jQ~ z0}xH7ipXM*J4x29w&C82DeCAOnZw8S-^5ckfnN@+pqRa`bJ3^x57?DlN>%R~hvbhJ zg)9YSVyjy8BNjoZ+OLV8Y6^OHA~?D^lpy7!;wc-`EO7$goYy^zX7sW8 ze$^<|BcUWVderm&N1R~gZeV)MxFPLU=DF+L4JbJ0OB0ve|KIU|%g>ysfRjV!u0NNu z-ipMVC2>$Nr=#_!$57hqKorcb}Db>6T}sBIlyxg_kbHcgr4 zqtQ}J$-F~nptDgkm7amH3C=*IV$20fY&s(wCQWe@)!`R$MLrt35^}gvA(#IIQo%I(jIbR~~a-o*z1UnxS`;5>0jh6W9;wS+s6ma!YcF)l4LDeWg zS>4{L8%Ljv+aG&N2DWTTGC0o+9RW}YuyIXeeYQ=#SN_oI**psvsL1+cA}MCJSJtOF zyUh-C&rv9Q@eJGDjOPZ)hzb=|h~jfrsA|X0DE4BQa9szy-lwo(-#Z3KBV?a?T2mbY{}fCv3FrM7%!;==%cPPN?K($Ql9ZyK^{#hRz5kd~qr z(-J|$ErZkQ1NxKaIqb+gC_cgmFh!oK)|QAeBiDg5cb$^52FMsO|BY5ge~z?wS-9(d znZXk?*w3iOAcr7_#<{)yvgvoqr`fu-Fcicpe+2*7$0`5j@T$+j@mQ#@vx)ueYvaEW z5r19V-xvHhmqM>hydn`FZRTVdu{OXkiNEiDV=+zjJAFo<=;A4QKLhA52W}CneEX6B z_!)LHUNzoCqOO}KQ#m;1^s+L2MQI3_B(j+oO#?|rE)(tC4xl6*hAkx?q1;EqL%D_DieklEu#KrV}6PFQzgi9tWeG3~yqX3~upQ$~C^*ErTl z(D47Hy0#^Jxw_&!_9Yij^KsU%Ysc10ET-j10ON?v-TtN5OE=cvX&9tz0rwz7j(}^- z9e$Fvy>o^zcu$j8TeX5l{4;<@7`F;)WuylPvZ)|Czw-YEkbT~|RDz@wl;~NG6~w+9 zs8^x3kVc_P@qpvYo|hFYcj@?2@QwzCvEXPrIpt7C7FO%ToXDZ}hRC5MkdBfo5G|!m zBqRrj@sh9CbSg9X;pO@Md5kUj{H$@*deAlM1@;^(TXBbF$Y&SYI+9LrRY*;)G^c`3 z{0W^(!&k@XT`26K_mSdvEr*^y{{k}a0H7Vw5qS41@rvdqzuZ)TB3EgQ7z*3RhxEp^ zL7E6qmi$5Oa>XH^ZLQ6Uk=N6eSevBg+NNYjJ(+P?r}>*zG4?BD+~cKcL$xemJ1OnG zpEG0xaRNXm-}ESQM1GSEsZPl5G9_FES49It4E*|m-CLSPyaTUW ze%gocOn^3@LTy@7RCFz_0L-a+-Mp;#syPWPZGmmDXXNq<4XNRmazI#E*bNFs#|()u z`hNN{o{2?zM3AcfGFY7hfouko>YLhY2*P+jw*ccG#uY|LV?kA)A*Z~Jw6u!w*DA6Z zyAJCdsC@p7CeZW0U8H|mMW2_LT_m?ZVfSj@E!y{)J#wY`37n{Y>5DT=m(=CbniIY9 zl-3y#JOa=d5`h~#UT=3id!4=aGpsm=)Sb>N*GXm@Fnbv*ElydVX1x_iWI`=5w~e$m zSe=-8!#}zZUDZ-pQzcVFwmP92NOtqj$UldvVLtaJ9>fl^>8RaP+8~ zXvVwng>)la`0i$*eHK3zMuk`zJq-EQYnPELdn@!4$Mt+is!YxYiBL{Vjxx_3ttOqR zQC}NQS^D+QpP6{&O`X9Tdj{p{^>yfW)U@U3XO5T%{JccPK!+%yC~(P7GDvcZS|q8O z6R$HqaEMSM2z|S|+~gd^YRPYF9?SY2!7Qp(D8!L|>OLK}>Gu)SFx^5O$|R|JO&nhn z<(G+L#WPiQaCa(HgNwEAM!+8Z3LaE z`puotfVTajX~sEPbh9_^1mr_mZc*W}<|4$@Y{eMXx#h|HWF$u>zl=b!EA4?iD!bqO(Qi$Q3cP4#Jf?@ybl7}DD$CEN_cHiq z(TH1}1ladtNTzICW7f{MT8T{xF6v*KwgLM|`K9q>=d-!1JyCMZ&=aY*nE;5TBQ-1P zD)HJOL$?zjVbC$JT!ueB7HyjQrkp?cVT_F_5T@N-ePDD|=bx`AE+@bZighb-g4^Mp zYW2@Eg%(hI*lt6Obd90M&0V&%t)J;E5qM*Z_6O6hE zyA!0=nGZ=>3$mL|*i5$sMPF=SKOD*o+j2#>4*3Dfi$2D@$F>y#JtvP)s*tUnNkfbG z?>k)DKbe0aaww;8{4K5uu*&m-i3bz62gj6(zeUXR4 znkZ_aoEjGd%esoo#t6?R1z7%)=)y;+<2X-y8+h3j#%fJrZu#@+;2ggn3f<%Bu5r^O z($nj%bGiQ%Z4SHnCl0Xq?2)w&{P=bU(gKK8#JrCgV>UVNl`~^)B!^sjd^V6zo_*N& zY3?}lpwaM&CWWDQ=3v9BR8LWN21aS-77K8ka-yd$GuQHCygKraYMRRB6*yRPESPIZ z)oZM>qG!$DV4IJgk7eQMgcTIg6@E!EWNB?{zOQumrUN7E)8kMIY5%o3pk~DIH4b39Dk3npxwE? zR=$_T5k#Fu%}%3QP6y)0JnKKdG8%q-{+Ol8a~_9^$h$}_Rot$$W6j;~49GM;y5d1~ zrXrrx>M&dr6dcgttZ3CZ`y{~J{49cbcmt^~!yY|r1Ij$wC=xB2*{QHhd@YNwOU9(V`ylo79iyltp&M`J zZ1yJ}-dZq>4w1taB^F)|&c=VC$8t*p?>B)n`66ykf)#S!xgryiA?IVkYee_%lD${q z-;ee+r!|UCctuUi4CW2Kr2v?*_V{}p!CWGBKtz&tK*TN^O|LK{VhSnAlXx6wO0bA8 zwc^cg=Z$c62K}Jbu;~7%@_2RB$_i_u^Q^t)S?^Xv3BRLUAWvJuzNcYbD1X?}7q>44 zbF4&wq57y66f^qDwOg1{Zj>dyv`TGRiz-dvRb`^MR|}NBjx9G_nd6LX5p>@-0I(-huOX}HtW3u8jn_?+*t`dN*I|cZ7$et*>D;izL z2}RpDs7<$n)+IQy;5G>qfy}b8M3}pj@>csr3RE%ES?uYY*+JKVSUA@#%U6xd=UI0H z+azO=w5!*`vW4e4fQsr?yOEro}bbOxJCO}#CreQJrKR=ug`rNSOMrMYQitbDBHy=)hN zt1@*n>wdI>)gZ*3;koWU?Fn-B+EC2nJTz%aRhe&CY?7NVb=Nr`_U=rpT{eBC~D}X1DGI_!Q8DOsArLt`_TD{EEi!0{vjW$^j+w~IN_$UH$n8TBTWZ3O>o`bkU7ls2T1s{E}{HiLMZIt1m z2%aV|W|JY^>#+dS-*%Cq30?)aRlf?TFpkIYI*r96R&zw1#mAvR>OXg?P zTFI){4jo(8J||5-gf%W{#o^tp%Dz}eC%k%lJ$EU|$;hDLFR8QsFR3%{;a^gxHhJFD z6At?wzhWkqhlwxN6GqHpWjz@8oY(wD&gUzb>li^W8tQ!$SoIi%yC<`VK@H^|z zE(#j7ceUAYr#L~w)Uu;KYLd%hg&Trh#_dGBv|EWnI-P&)-($8JC5BMT20#1kHF8@n zj%NyMmUlT=+N_?s(ckAAP4#!N)B67=b{3E%LHuK6BR?Of`_X?-CZ^~0!&xj>DYy^p zZrLBiz4Y(eF38rO-IiB-nLM5dEuapuCr+^zqkVQHMTkg^`0?)b-rUhz1>By z$GFj25MW)pV#9u0fxf&5v?DEzL@y;PK9D?UVRxlUx+}AB__!GnSsIk^A5a=+7%*)S zNdx9x^xUlBq3?Wv$5#3uNKnU0>K&;%JRV?LgkL5@3^4BGVu>Zzv~+nMX`d z8coGNOXRLhE&?J@Fbt3#1e~1}yl5M`)ad1H*3LL^OIc8_n$D+bTqV?Dl+>5`YR>)# zj_g~wX01I}u-TvD>FJ=o%te`j@@UPX`Ege;t{X<-erc%R7s6*OTX6vis&A-kJ1iOm z^kVDpoVJ@Yio5_UCN?1h zuTs=?WD5(XQ<&yyb61hsRyFxvnnX3mln|Gn<0U!bHFE@+r%(Syk9qod9k6(!QgxPX z)>;+;b^4uk5*z{eO;R5t+E_$kx9Wn{(e%@)Ijv)TO)>yCrtxpwSSG-Y(OE*4?M62e zlrU?I(sRr2I1wR%4+oZyD<4l@xC79bpTe&(ne&`hQfA}SWJH;wcltKc4Db%(ApmbN zsup9!nDY}+XVSH_RpCe#&4`#ak_^nroaIoUYH0y`x1LYES@Mi<_6^*Cn_cA6^=N(L z`aaH>PNaO!z{x63TFc!sXpp(n;_2MXsuao6>wbLo>W%r4GoW!xSjj7pX!?8b_mNcB z&C$nCHq%|ciWSGUZ|RP^U3)Qm;8nXX>0hmL@X1pU`7L!*-)fue$j}YB%%2_7ClQm; zbWL2k0OA(T9g=<}RojMG;tkoHG3>hjyS?(Q5k5y_%10_J#)}}nI(@v5B9nL;)yEPnaFjeb( zZX*8EBC{0;ngDL?8g5S&Bwe*|*~jF7_gl-Nn2LvrR<;rMAD#N&s5UWXts0h*@vfMV zF=+}>nZ=$hW#NuPPya(|C7-Sy3wmniEBjC$klR$!3_?O{XTzW$7>mOJAtmHk)&7OY&VMr%E^l|7oQq?(nSYn8@C zHL#7p-?gNF^SP=C+K&W-k%bz{1on4n|BgU$C`8HImdLwdD(HLh%r?VrhUSn>9X@a`_BIDc&Ps+dj?INK2_JH%Z=I)~`1-lTfAk*1hGh?qFh1SjCw3ylwx~ z{jdy}Rpm7CO_#`8mMfEy#le_DmnxyniJnf4P$GfcQhLVM*Sm5w__Yx%2EGtBje>$3 zuJUQgL}lPI+47Xn-xH^qgpi4jldff_$&MU@;WlBTh4BsvNc~9=2e%ky) zPl#!*zwh%GRpjHMt_J0WfUHBKM(a>=Yyy;1h|YZrl!w@bSRY@9A~pT1r2_gudGjyY z5~gQ_udl2A7zRROWzHL1Zlwx7@M*Jq;V{jeX|X40E8$4GHRyJ3>YEi*sH`0`_+Wwz zUf;gpI&xh0VdRYfx#KOZyZGc=P*K)*Rum6e9NWa4m`r(A>@4YN@~6Y*nbqS&wL2BC z>4$2lYQ#d=&vov+Yh8AtwiCFTardw6#dViHrbJ?@*lmAB{83b({epCt+jp@OX09bN zliu=hyy{;WfBzw}-ud`TWYwS5#}xk-Sy>8hUIKKbSMjs zosuly+ay5ATW_=`sb#gqb}8&rGX&)tn6ZVIJ?3P`x)&o0$Qx5w#)!ySMDTKWsxwnm zLf%P$RqR{9XnbU@T3L?Yj}o{0_praqlA4FgLY*D&=*FN9QU@vS-fV9AKa??S=99iiI+czWB+nfQT zjEoKn9gEZveo(PzasHaoCw$Lfi{#73dfFeS{Ioh+zpQmcfVIy32EN;^0sQgooy4I5 zV8DV@22?JCm=YBgfJ)zdBrP!TRlY*22_9Cb9v{nBsT~2P>8-ZP1FMDVGaM$bH>7s^ z{<ot!IlMoAOQBaDBj(Am(@CQXw2;{3p z@1~Q{gjpfGXSJ9i=H7&^5@7Oq1drUcddsERcLRYrLAHrL+lC@7&nkm%=?6a!C#AC| zBOHIW?zypWVrJ7?T5&tK%W&|Ko9ZdcI2n5=|P@btRn};3i>0fh`Q|^kGmV>MFvM( zz;TLB_F~3UV(xs(>%<8;9fR~at6cXIL@d5sB1dKu_HJ1$v(e`;QK@#bSl@fW_M+^= zHxNKZL3Kny26AprFxl5!fc)P?b%51xx&8*j#T!E$vwL>bFs%W8mJSY{v-5W`Uf%oR zKFjJyNr&S`)Pn+9O^&fdtH8M|tWZEwM2MwPJX0?6p(%&y1Wd(9OhpRP(%~LjWi>Ul z2t(y#PmRffe##%*R;}SKTAP0R*o-AhQYZd2ov};z&W!eFlal_Nqm$!XqO_$_Bvgkx3n4*DLg-0 z>ws#SW;FmfL`*Ac_Wpm-vl)nhHzbwE%TLuvoD6Az5KGg`xG5;qK?!*mY@@DV5dA3tVYDzGL3gh?ry20JCka?-`qarj&KD~4b3 z>nBPabW@S~2E1+6HRQQ!K<1Bv^8-!=ul?A;ObNgfF(DZW+yd&*6StV5| zc76E+Otvj0qaL~4G!j5eaE!5mtw&NMY&Xr9kzi^RGVbG2oz!F#Da@;y8$!~_tLL}q3>d`tF4CYrv4VwSp7@Fr20S#1 z8#;gcGRoaR*=zqDkOB!QX9b^{IQdT}3}&jhHYYm@93R161G59{{HfFX|FW8iFO93b zpxT+e>i8vPK$1NRc{XBY2T z2aam>C#h!v|4ck}A{z(3dVHp((Nqrj(9Av(KtPJbw?Z7*ByqUex*`ys-X4MyHvqUp zGStewO+<$C-kW;Z!tM`yCChYUZ~|tF zL;X$keT1acP^ff!#M36t4Z?l?qr zoZwG&nYU-dnqElhOCs_3xMc4qiqy#wiFax@`(;hM)C`df@*9V#ER@JTjPQ zm$@)_-l%ik3Iq)T>=|@H7n`1ECw2;MV*7#E887hp`8XVNN=fWsjzKRq_!sIp*kRo3 z)&sG%Td_Z0hUhDmJWFpo3(#~3B>;iph*{cb#%@jJgc<+sxnTdAFRYRha{f*&K^tDv zh{gL>1(7p^gD`G1c^((b1J&d=wmHsOjb#$l^bbKzEgtI5G_yH5CKJ(T$+ovwp!-Dv z2hSCFyE^lIYd3Vx+3nQeNQ4oiZ@}kDXdA4rk%YcVyFB+W@q~#P|Mk+dZ+-4I z4D(CgQm3~N5}Ylb(auMuRHSHnaP*#&~8S?FSgsiuZ(`>W?KLrvyyoU$-obuvz6uFY6}@Nt~z^m9E03-dUZ?yY(5`iS}$fiB%ZnN zoGgK6ENKdWY%+Qx(DT)`6>Fq)y3?(S6+Fc8_Q#+N7|iA8r}no*OM|jsG`pM_58lg! zZZ{WuY|O=k8b1$`@IuW@FTr6jMdbO)D=G9}pzdC0$0m}}g=AvE$kB1@};tG0iMG@S2eFH!)t;nCQT}=;|zw=}b$C9w_M`)9tJY>S2`S=ZNY>op#>+*&dt92oPb z-n^*9lnIplm5%w;`06E^na2=DVE&LV`0%mD?qj$qPBotieDf*|-#A8xiDnBeZNmJt zFL5i~{-j9i=k=nrq|J)a`qyH-sPCp6P)qA)Jbid^xrNf{WMjFvQ~2(Vw31H^BAW2^ z+yJ@t5beTac?OL2`rx^VhRZ;neEzncH@bg>M z;A!Bw#OX46P>{`$4>uTDhP)RXLY2o%pVb=J5gC5}_Aq*U%Ghgj0 zSQUE4E+^WF0JHzh$RobEca)21tRh*m)&Z=r{JA43789V@`WQivr@|0hd1o<=ZVu?5 zOi#P^7|L0<#eS|b{w}C0${jI2v^BVVw9DDRqC(CI7Nsffu1TR5>SeqG9l=L9+5I?R zX-n8NiC`K%z2PbzvAYa@kvlf2m}bUk&G}|` zDNiBr#~IQrou{{2*+Y10_;Xop!N!_~ab52~kDyj2ljPEuWBkncg|Z<)S8j|yFh_18C0bX~HV-aE;AOj zmGw>7*>I&)|L2N|xXchQ-Y(1C{N(Nm7r|IkZelh`mf@p6#a4sfTmsPvckpW1ED5t- zk;_K3u!UDpDc({!?JryJyl^+gMyx8CE=CG~`ob;q{TTq}JYa6U);xm)6eHglO?UcLaK!4GFpI({oq)=9LpV%YJtxu_nSRl|iF13El{k5mZ zO`00UV;9F!#}%EqUs_cK%y6d{dnEZr_{$CZM}92SCt7E0aQ$mcgb z+QeKcj)Q083^=$60XB?_u11_DdO?5V7 zwNuqM7x6hK(gr3K&le~)>eqZ~;rAo880zQU1rSEmjk#tJvbmvL1)tOk^{w(twiWIL$%YO9Wz}Q}kDb3eKMQPsQ^|PveZbW0*n>B0 zpYMmr?peJH7FH~KIJo|+zbfQb>Bl*Jt#LY3Y0B8d#~Xd_bHwY=OHMb{K4gbAH3EX& zZbd|Hn63XtRAPQ3DlCKej4SVnQm#OXvwF$egt|btb_e|mX0ANj~P(JCL zFcW%ML$$)qDg_Btf)>sVCC6n(4k1Sfepz3Gax_zN6SoaGIGW-czVjBsm1|y)`ht; z_yeeGi4yD%E;(tZ(Wrk*N^1B;t^!Zk)%&EzeA5cosP9W*#>n906Fll7ii|Y=;RjX< zxq>+f;!59aPn(`(bQNy<=(0g|Eq*{en%Oc;jSa!>omrgi9NBgW9#VBcy*$iu7I}`+bU35cGNS;h zkQNfln|`Q%roc?mR{jrW=8UO7(>1x=WDYfJ@`c7;X5Rh7UB{TxO-qa)Eo>9o!s2?z zJzebZceG~pgt}8QUA9gQw}LfrMkZ$6#jcv-)~v{P_0H{vTvZglKBQSrpq;je3YNpU z_;QF_rKMS}`I;`0pEp>?Qfdg8_<^IB~Yzj|@bFWXG; z5hWghdKxnofUmR9UE)6Vn;oxSXP-SxhK{y>j1HYgsp0$;{^K9|@Y{>wczp`S4^04% zb0e0nr7S!V>0x{x<+vFLMlLzxKG0>bwwGGR`+7Q^wSKbH0FY7kf$ga48lM15`HH*e zE};BnvIB^U0p_fzT{L`%ffQu9-F>tV%KXM=0EyC-np{_Ta>|h{BoCl=;+tG_=;uZ_ z%dvWMiJxA!@Jli9XUXzCyV+z!{WM^(w;ElQWJ6}`Hsi)87zd*Pnnv#__}uBR9~Kj0 z4AUc+2b}_P!PJmiJJHPEFS(xgx;tUX%*>k@r~4Sy80y7yZNe&hFLolrgR z*x)FN3FLOl4NXZ@j-aW%dMbacbNW$_1Fq*t((Slp?|@m+UZ!jfny%&?Gqcc`Jc;Sf z3e!y3)tx3d+G0e+1<*e%fr$K>C0e*q;c=(#MFUxL!z9oVc9GLHfz_^(NjSXvOAIy} zk9;yiR?iZ+l0kuj9X?81+bn#y>rmGGSzXNh-}zHV4x60V%OFutxm&yybtZy`w5p*~ z(Xta0-d(HcTxgcYtH;U;CIEoia4uq38srCm{=Y#_a{{wStfMQz`!z2PRdWLlVi=s8 zMJt4>wyS~g&?LfEpmO4s-(`3xCvExADSKuxla!hF3FVVBFXVju&yG_HAcF%){rFKW zp@?zoZ9au^W+pSy$a!qH1l`0fm-7Hbqv(Niv0B8bk*PaA5X2OJ*2L3BK42kvEa&rM zK~#HP{f&FZu~lG%gYh$szP&C~@^FxbjCIcleQzHqQ7&2K$2Ez%-K2oKUNR*y{4C*1 z`Xti)S8d$_Q_0a%neyY-44_3j@;Ds~O}B$`N29C;C~zp}Psk0|1iX6~Eiz zcV(Xbf#mC-3TZS@&RwUna9Hb1^_u=i<9|&kHM>kG6>cm;N1%r=TGV)v*vgKL%P2@? zn&Su^qIp684PPTluita+5|alLgdY<@kIG(SBl zeyi`dU@Is~u>136R8pI*)PD%J438Y-Lpo9HN3DMdL}vY#YjssLKNGKX9RmDoM!^M3TqTg#>7gT!l4au`+x0W@_3k5ul)z5iT>2g$1|wVOcZ7CFp)b*aHR zb2k!NNe&Bt1{8y+j?iL_EC7g5L$;QlHODhghwprmu&``up!(NpprBNhRU$O+8~Z^L zVxv1>m!nPFs9tkhV{)d&h4O*C$PY!Oezu_-has%Z+Ay&xt^2R8(Qig@?}z9JIa=cF z7iP;3K0hm6iGBWUL89!&EesRs5EBDg+U?#O{=LcXvtRJEyJ^8UcCbQ0S+2d8!e)f( zq<5Nb?v-!%B+Wq#u=}xLDz;N(9x`;p;zldU$+hPn1X-)zeJiGQ1ho9|L3 zaMvfEmf{Yr+SQGT06qF7X7t|iQJ1Bm^VAaO5k4SjK6P#)UYGrP-kWz@;Fp|v^sjOz z`%T{SXIICoF82SY-m>3Prk^yS{R7k1Y+1*&mn9uBN2+bG0=byCc`H$i9wZmKdjE-w zPJf}4`>8*nWjfoc?c^SqV8t$@ccBKco}PWtw|oDM5{qQy7c6r{*3gj`Mjq9Au2lS* z@$pTz$|6~zJo>Ax9-9tlh!69=1-1Wzi$-;$xM{M-eNJUq#a)*yYLY7EUq12))2(gLzII;kyAC=^jjUm!o{7e;Mtziv7Hiju%beGq|;`m zdj>0gaXZGw!HzdqDnM--#Uf3`3NG_}T;@7lS8Z|^KyC8MOpQ8R6nzRr(@8TW%f|eK z;GO`G^6Xn&M&#NEcU?`ARu*6Tmg83;<8Y z+=WV)g&`;w!yO$VE`CPM`DMyJrbm_^)aD&4%FY48B;X?R=NLZ}Xf@*x-FWb*KK05q zx{E6=3=3nI_VZT!u=|ZPP-nJ1Hs;O`im}yfOJg5hXik}46IPEsKJiaevRXZDYg%;x zerPflavcy(d~>v+5fIXm}DQGT1W< z(lGN_p|IsipcRv(1A#9a{=?2>VY z9e9nWIV-dJ*j`%RAi5{C`z3-V*vApv##oEb*-}3c|P6% zuwnFQ^@Y*>&3{bTm>#rGtowAW}tID848lRYiIi5Rl$GL_rWKkuEKOH0c7;dksxO z?+}m@I-x@#;Xb}!Ipd!5-FwHle_&)#p0f8|d+j;rn(Mn@7ILHbUif?S6O|qVaf8H` zi)$3AjB{r%lgDX&Y-5n@mP7WHOQ&e zi!?*^*kt($b+3VSWM=t8myzD;<=1z)!$khP2FXPmMc)9xdG=f(R|{~goYJ?F4m>+q z;u3OiJ6O8J9^d*842l!U__MzghveXv81;A#y@xUH|K^|x7ZbL-r@NQC@Bzs!`*$Yw zCbBDKn*fggYi9WIvsc3J=nTeOt{N!V3xB2?Li~Um%!hnO$%+|$0t72VWNp`9CUeyt z*q_Wc;>&oD)Xvu!zsu_>F)k)m6<99c%M!IbyjMNsizn2!OT1z!j{wSTNWrmH;!h<< z^Kix`irhjh$QgiHopdu`X$bJ%scPhm7A;DD#hBl9Fq<&w?tpmyO82QYC#nDrRiTcI zH-Srisz%GWpV8bU0Xlo!nwJN9SZXd&1&^(+c;of})^v|&MAa>37E%R?PDq@!r9oI5 zOigsOe$`Zon8=h#aw*N(6~g77cn!_Ku<%H(m5anbiX}KEBkqn+(J3Nl(7quePqS_{iW;X%UWk2!+6X=0Xzl?_e3dCp4TufkgW)e|z6PLL3xdVDQ z*6;-7lK3ARojLIU!4vQs3a`;`=g3a`=mZMdihIh9O5}oaPDvC9};d$d)w8CeMya3>nE|kBUNU}O7+Z(NOObo zuh^&eUeP4o757BTkOCGsR0*8VmESyy`BrJ}IiTC^uL_K5_g!%e4Pw}A{!Vn9yg;=y zC;EK>}{hkRwWGt=dZgt z&%Bfy&B)!Yc%7rmBTiHR#TV)x^tqd`7JzasJs;L|vSQzC6_K?a zY|7Rry7^u5QlK0!*B+ZV`|Z$BZUkd;0$qIl{{v&q@*XY+EWvh;m8ev>`?57TB(>QE zs9Q)=0)~cmT|&A|lMeA|s{{Nd8n|pv&wUiu9}rzsd>*{J$ny;<(#ms3I$ANNqJaIm zx?dvQSK&4~3oeTO`-}Rcxi{S=`TVwFhWm;S}1NIIfn8 z$p`1TVGX>fS47XR`Ex&qb5WvH-Gr0vKK*Q1o(BP@&G&NDSR!hFcAT(T%opXIsZ<6Z22eq`wi#P>pHrjT$R*U++Ue4l_`hg}oEcIw$vNN+>Mvw!= zNoYbeHQ-_VTf^D09YECoi~0O#Ewkx!U>|$L@``;u4qJt57We!E1FR-gxe1E^agQSn zh?WR>zgt9#1f|$?B<S0(5pn=B+Q6MXM{dSi*RpbtoCup4=CGjm5upQ8F&}1GtqeV#F>=8yT zDy9kNf3Qv>1!`1C)SoSUw@#Toj_?b=Uv@{rz+2mYS+B0Yb*QiFdooWjck_gm*?h0< zF*Bt{v@zfhinNda%j44>snGt^SE2ix-`Cg{!`8I?vPQ-EW)m1<6J{m66G|pxtfpJ7 zScl=$!`cyZ#_90l$PW-ybfo_LtZlC$&_cwGd$^Vs;VqNk9g8Wf(pvOX55}Nm5%p~A zXI0w;yIw%#&nBit0FRa*;f3_5Vt}jk>m@p`&?4TcuDUBl&H>`+ptS)YREb@F3I%+D z(l0A~388`Q2ML63Pow{^5qUiYhS9C<;6$o}rF@Bg;bRp0C z0(moP)iW}oOGkjtG0$6G_H$1OSe;nOvsoHQ`ne%KYN&+5@_tg<@-%7US!G{MExS&ONm!<?s~HF?uiKHON(!M?D0QR1oBU-V(%60<@} z^riW(LF`O-v_s`*M$f(ko|oTjYTXS?#BtO*!a_o_tcKJ&S-+fwYMenVukSo~N!@hl zBuPYe1@-jz%N!^a^!w`ov|2p>+isEQ?U~l|37z8gqg4w z-ns3v+zS#^KH~~?L;>%JFAP2OiBq@Uo0YTLY$fd7nI)0Ue(8Vrg7%oXB$|hiO3*$s zg9c|Nk`ctNdR@`ep?;WkDDnFvqQkIwGT>9F40A@jXlY>?jVo?p?}odsyMeHw?FP|#PM;{@AN)oL)R^JGL7|Z6w^Tl)&tf%5gD8>c zaMY9=p$OKPT}m>Vr7Pcgz$#Cb59dpq)hQ4ho}xb`n+y}Tz1Ho4MXXTAE_)I+(I=a7 z2h@ntVMkl)fKi%Sa(8I#J`-eMONni)ob(ADMZc16p@X10F>9+}gn(In?G+szr<5Pk zS*>1&j@x*CyKgLUR?Nl)f1P8?XA+<(+x-0^j_?zAI4(;D*L8p=a8)+fzGE6UsY)s8 zEBrCl^m>2$Gh#~C2vy@Jf265(o@lhwu2nPLKSpc2?#BQWE31o2>td?d7D|Tbf{m+e z)YFw$={~u=xH)=r9OJv&_vDJ;75|8`Ir2utW=T`9{XDh(ZAZSwl42j9sRV!CV*4$f zIpd*UwGO49&mPwss!e#XrpNmFN*sT)_hOv<;mIuBTp1vFR?yTz-d(YM{Kv|9D_?C2 zT~+c7A42fK2SLbpnqRR+!SgXqchqliy2s6Pau?L-TpKShJ|LVnZ#@>xbb|g%3jp4Q zY+zD%;fRb~!8dEZZyTiA(FU4Lp@Ut6C!gjo508OE$ddFSO9^Zv$__C_AZP4B~xk1P!) zPRb*@#*FPH*+p6?sEEaiJwQrQ&h1oWfvX=mUi8R5Ys$pE6omxO%&Bk#B>iAU!oi@A zo5ZM;;H>2N6V%|kFF7SD=Q8L9F62t%Nm=B9iR!?(4+HaM+2Qz?u@w;iSc_&Fn^+>n zg4U7c3+k4SYs$SJ@GtnWU#sVdRg5GZDQF=H=XjY95guoVqVKvBJTqb^SpP`}lJ9!K zo4aF5f2C-h3>t%jHOV?QJNoBI)2U1>STReCDETDOx1Z3V%=S&?w|FX)|OTWZ3bz2C68u!=>d@hS;llwd=@JFik~szNYBzTwNjnQH4g_4vul6j^6%Y1%6YeJ9ryI_jS7kt}UM zHl0R5+yyLGHkytjjvspeF$rK)wv9yuM#<&NbHV!QXju4 zH2q3yRYx`4^l23FC#tv8Z&Rk)XRt(RE8@v7%mY2@+a@C+`O3lmlh3=h-s*t6I3jXF zDHe!7Ju&#mBO32snHVvX45sh&o8s|!Cmf=E=Vs&FEmwEeb zD0|^Y>2r_#Hhe3#8KzwPk_Og!EyE6c+AhLic`U@gZnH!K4$a5tHTtakfk~Q4VPRH{ z+PVto--GaqOo-z0Vy|(rgaNeN{eR_@qBTOv0*~k zoAt5J<+l@YCpM+ZY1Ug49{8NyT4_*u;|cwAQXTq*!?@0>y!@rh4swJMcdk(x=pe>w zdad?%>Nf1%p<;!S3j5fpu%oSi=&QgJgxs7G5-V;-qTuDOGTSN1l=LXVWxx~JTgsJmOKBv9`} zZuo~Bp>P=Y1(8#Uql-AZ{Z*Kz6j3sXly}_2rH`nry}`E)^&;qXo4LgvPCFj%bRL1t z-!H3FF>~qU=tat)2eUk24F>Q>p*qrlACAM0t2d8&>heNTj+9N!{@z{lH_Nc8gyW6t zA*LVJ_D*{xJiU}@f|gJ|XMFg~M`>^rpXNovOB~A{QAZ|}1aS&scfK~*n>^82)_s8c zzQ>}=oB&CTsyG~p$sE=g7kDB@^g;{qzDegy+{3(y#UN_;1@m`}L>uWuZ@yJ+^PPs9 zEwQ`K5l?b7)`IISnkOBhB1K0*7-IO(_-zd^lrlhD4g=R}sAf3vy!AyBgn-H<$xNqK zJeJ-~YVtimvsn%}2RQGrZdcE9kS%zpv<$?85rQ9Bty86Y*k{`)5+SAIw4cIO-X9{I zy`yLpOw@=|NOh|qemBj*$ktYvok+~LCpF~+-o{494bl72n)YFtjlW$+mt{1g8s$0q%@rOmw_*}=dHP3}mNFQhaZymr_nkaIR* zNi9m~7x}XWN_!c%0yWSkKOA=x&CEhCUaF0;B-{iHlKWhdJB z7v2v-c!uw5&YLXBM6g?Tcw1a9WRykV(Yec4oi_M!f`i0AH^V=ZK3EH6hO z_(!}vmIR?qFPq*UMao3rzlY+tBHcBr)UzO5cu0e6)NFHJuZH)}z#@WTUqx$3$q%%4 zk?nwYLZ7eQY>?&G^`UfZf_ z2S=j0-vP7=qmf z#JnS4Wr<@+uBfnne;^{%3gVJ`cec;};@8^fS@g*sL9*^>E^m_TVr|FqLz8Qq@SuRV zE91DkON$8ebXIF1S$k~Vc$5FAy_KKIZ*|nxXR~Mp`#$zZlH(z5CEF#^-6860{BKatafo`BygonAs^r_?JXiZSW%MRsw26j#8);Y7h~ z-ZfZR9{mOwZyC7IhpFHE@v20$6w`5_`1%yAg}MHf$DOmCWFQOfTXjvRD;yto;*(C_ zkutJ-f~Xb?#qKoKKQ`(Qm*^^Mp~g71^}Mdue+0+x1~MNttMnSu9Gop4--Gfs-SBKa zy}r{N5alq>ia67-xL`7YkvjgSwqjW1efm_1l(>Gq-*t$SLo9NL-4^aWLO!s~T~((S75IY^{KjSx9>t6%&qqHt>a5Zx247m|U~(%ED+JD2fZe~unx-u5@gUQ7_|vWH6|yjRuq9&M9+ayWHlUepQ=qM z9!J)S9IF;y%!;c}H%gM+UV>R&<lztchraw))ffzyQ=hkxI|KZ2D56%dzA&51tsk&V} zfj_7_}%pGgdlhPkk@xevUHYNbIcIK z=nOg0E1~RXSt4$Cicv0hB;7CfHNXuP{#!zN555Q9m&U*qEr08dk-=tn{EBA+n)+vd z~J>UeY4J^sLdQdPQr_sb#msEAGSNP1^ajzq7Bng zt;^oj&F0vyuIh=2S2`1Itq_e`Lj6X;pwl^W2c4hKv#;}4B^%XXpq5r4RG866V~F*X zaZ`AnGWy7uG(lo@zk8-Y^d4Z;BIDC^blgx7d-PR}z*e|{C7*!VE^ykkfKiNH=Lu!w zOL>e1EjuI?u@0oU%RXaPo*(wkCf>!2M4&!D4?CBR_w8!bnR>t8Bj|@W+=$sy3l?eD zBzh42o>Dun726@?n!_)s+Vt?-2%j2Mr$}A!iTli1lD8gxQgT@IS-zlj4>nGrwwtYo zPji_(MNdMDw`j)C)^Cu&iy}X@okit%Qq_U;QwSyXj zNIlsK%3-$hdW?Bx8AYD?KSi~%a$4;tF=08`i;l^>3HRmO zb%whm-=_9sNn$n2p*=f~7!c8WXF6}Z_xV-XIGK;Kj!dPILgLizbiy=;!EjARUb4KJ zllVPo?k!aEoE~_DK_n_(1ge4Kl(n^g-clh(<$`~zu=9}-@s<25(wo{#H}%6}l5UKF z+443c?UKpB8A7DTp^)%R=CQOE8OXe1vqo}HN!RS9f{#^PJN~0irl*COb&qgnsi_}@ zk@b?#x=VXY=;46H*BzZ3b3C2)<^+;6g-s14>L#n6;#ZGXs#Ip`*0(brq(;O^W1llA zl45UT5+O)jobkE)_-(YV@?uy~MCb`fd>2i0FVueziXf zwPkP#Zza1v4tc>|(0rISrho8cJyma!`q<>HT`;ms=lCj)IIHT=s_kM(ak@*ggFz!E zFyk`PA&pORU2%&6G}u9C56MO_aO2C|l5|4cC7^xy*LhiXL|El>1CIGjPHvJAvjqT$CD*|Oqa=h z{(*FLjQRHFnWl};2f~*?L&Erp0{aUWTByrltGRYJ z?V@-WC`@0PZS(0iw{8fm8xn0w%ng8R5pPoe0T2|20RVx@3o&|X{+=#^bFgR0P6O-( z+(}^3w%`I!tNH`JC%sp^`eAvG29H4~i0Z!jL%l>2NlIPi49#4f?JHQiGfNpgwgoP^ zexlcHEnJXUM^bDyf#OA_-_4>_yLR9fcl?pLXxH-F>ONJY->C4t53w zPpH>VHm)yqdXrv`flw3?7VW~TNt7OMWYUNy?ZzZPUdrCI4lvDIKPH&N8z#E z2T-dXEExj=I&e!Ss-m-j@Ajwh`pG;Mv^ydb(^V5+XMr!WvSznnD{K0^^{Jw_%EG$S zswMU|+u^|hrQ$FXa++v1E@SnDE~||#7|~!*FKB2PIOqv9@^EHs5qX~;PC-UD$#U4~ zTs6k9?(EWXkd1C=to$f3tS_K&vAksGytOT)IPJpks%CY0S8=*+EicNP#6Xd$bC`WV zaJpa#TG;#@u4ZLPdB|x_p;+ZXCZwz2Ue~E?-z{8LD%hKF{IQJYdU6DP&)1%eYrTr{ zK3vdq>k8N%3dzT}G&kT1oqiDrrQ0?Mvygg+_)!woP8B9`xhq1H?2a8ugVWxjo2)ta~=0{KQ!haU6 zD0=sFzk6JGeHzDJ*sP9p4q+9)+ojZB|BeA@P9OhuENfKF)$hpgm#t&P%nCkNI&k=_ zT>2a8&0i-RXL*Os8^erjqo5s4Ll)Z9inc zUmCt%ZLJrcW1KqzFC2QzY*(<>dx|if}j*TPwXpz`MvHeCa zbiO70{w9y-U%PwzzE8L2ig$AoE=HTq|EvV$A1Lkbl^|j<>CqxGCsgoW`2&LFzGWRT zqFq&kS*hS!6fko^%Y(R|!#-WJNuJ^QKonPtQDKN-#k#e`y7m((3b0~eR?Kqn7T}Ne zm?5s(!cbN$^rF$SQDopIvN89xnRDT+>{9)BK23>OFscet!2PbRkZ};U87K$zxE-E6 zh37P1y$N;`0ij8LKbMOrdIqZ?SsEB>9~q^7(Y-b|y8m&>Y1OcoCa1DY&0 zDj}aqa%ddNq!`g}9;et7eju9z2$aeu75}7l?C+%d!oo3kd!TG5@0M~2itE*`v3^SF?N;&Wz~c%gb! zFwC|ZY0;n)?!uoDDizr5kfVn*>Hgkwe_|rZOpz7Nu?;cuZtvFRW=pdpqBh; zboDfD&)zBD{qA=3-tc`y`>p#y;`x0OR}2)kCt@s>>tmOHby*Yzl}CZH&C!`0Ofa(c zX$-^T_s?ykC^G6TU+^Cxh+9(ixGl^4HiGchFwOA>hsaD(hvFJ-R%DmKKH|;*N$|rT zF3zkIQ1FAD3AL8kC8zI>J%h<7<51I7hxEPai8Cti0bvzZ>B~yU9)^ zxxNv9-GM$m+`tbHutlZ+CW}@M*cSsY@fxQ`n-eRSZ;oym5d+Zz_HT*^SbP8YDEI_e zfCC`=+1roiZr_OXA&~@2g6_t_xLeh)VlAeh-X0~AqCGjyqIMdGyhti(QHQ19nhdLf zcn#MCTM;E&xGA^9Dvm4MS~c>leoN{>bjUeKnZT4r>2dGJO@)WOH0{?yFiQn*BTel< zF4wVfWRn~%6`(Xl5aN1-Bnfs@?z<(ZL41Kyo;$L4%JDt#tBKN^RmWxj96o8%1;$Nl z7}+fvUZf$6lJ<4HO_}l4j2frZI2$G7W!IL9p5deFY+%MN@ZsD*0pM(16>V9&6pCd7P5Tz9cgC890E!exhbTW+T!Vb#1Lb9O@2vcuu_1ObG zc6(p_5bh*|_<%MMg5u9KmamC9;+Sx%pIhG|>B4AUIQk!+$&os3kC5{u` zzF`K?mxcnogB73*S?$F$q+ol+8-HaFE17ZaT$K=RU4-~_6^r90MB~87Y#Z6^nhKRn zFgufe_0id?&eXf>2Q=AZf!PY1VqFQjXa!xIA`*+#89hQUQt@rR^2eA?!D3T(+{k-}{_lq1bF=a@2ic#SF@hT)8uY*QL2R}DoS zs<7Hf(PN7sp9{On0v---+}+#YS7e}%e;JJ$U8%*33+$&=);;VKFaF1yeQQd)3A4R3 z!08=|p%IrCv>Na;W!$F!qS+s=0!lWwx0cwO9S$Q#{1Wwx;k1{y^$^d_Byha{?i%%& zqMrUi=1tkxnAAsHt`|Zm3Sgncw&alrVuFFk#GIe~0wY}PX!w1@kBGy%>f!Db(gwZ- zNVVqjCmRLKu?~KRVwCA%r{meo+j$q6I%EQ%&(@Ah{GvWV6Jx?$kuFXh<;pw{e0uAe4J+*KtxeIm40@H6o%s0bX_+?pTXpf znN%0)LzEs1zN5J}Kll8LCXOsclkm=jNPRz#JFSOZ}_|DBaza-c5561pF6tiOztEnL~+ygx_+l`?<4`GBwSRaG>1 z?_2N<`lzhb;fa9Hne7qn=Rthb9ZacXwLu2(40x=O~U{Tw8SaVXS+#umb7mXKWg=EJ{alfpVw@H z?SCAOYMfN3v2py#&LYU=T?X14*d36K=b;U`dLl%B4vJ57e6GXjAjofz4+OTu|N zc5|W>z3ynaTlk;jNdxDfcoLG{6T;r-bZd#iqfM4SOw=7Hcc+Ev^9k_$ba+t`CfQ4*O1wAl@>S&I8iY7Lm;fFscWg zH}3m8&iPL&cos#d@_hNv?P>vZZOb#|$J93UeTm}k+RgNPA2BX}>mUB)zPp(K2g8a@ zwR^Gg9&)O6#xO}462Ee{#^$32rB^wB&)TS2C)TbU8ZCehS0cN^5N;8o3uKQk!XWJB zlFq>o+t7(UJRuk+PZxbYdiT+XlgXwON+H}+X%=2@wz@asWF`?VhOOAU^>hRtM#Lz+ zfB0OOc&-k?_l*~o;DhWEYRYOzO*#J$wHBWk*XsxSduFt0{ZhANNNS)zRaI^kq8b}4 zW;%QwM;fbiJ?YK8zWIOngsp%I@rR&Dt5Dx{dXa*y_hm*rLom0o5@cSzOU*($X^Rrn zx8q^ldS!dky`Eh7=3#$?rY>S{O}};Pf@k-z-_C0%Y4Sm_zm**5!wCaIH{2Dh zQDU-guqAuBlP2ACbD;;%idOnO7iIgIH4;#}48l%1y;!rQl@)OVEqXh;mP zdm@mJ|D`qZgHS$aVPyRA*KrOvx@`SLQ;GJ|e`x`b1j|IrhATQLO;laO58~CmV43L$ zORq|>eJ4Lv>6388eT9wtjaKTfolBXDEDbRDy}&7ZqIt$qlmwbx`U%>s zWALQk%QK|8I@ganGt#_CF)B8&Ar#RLZ1r9rI%QNOzFqdSq?ew%{xjG zt&YObo-GSjqGh|eZM`Uin~JOJ;vnb2k0i_1_s3w|kZM}5o)$||uVHHySvF~3R*+j8 zmuWe%V}Vc880a2IgVIGIgAVrYQ8(8MO`Kmx8Pry0V??f)T; z?&98pO&saqbDcSi1juOsAY1*e8{S#qdGfVwEqLe_1i-pHZs(DRNVUW&ped4hAKwS5 z0>M!Ilth%$r7h5q3;8H&yOselxR?Xh0HqIGpYnq>KD-5Gnzq<&>9EM+Org$HZB~AV zFS)_|?Jsx_sz7nB9eo~_lN%MP@Wom7YhJ&TLe^WQpl0F-J~+FFxYyXg=(MOv-A#NI&J&>1G>ObZM;}27 zJd7{H;$L|>8v9J{wpEp6?9A)>r1|b^3j1AYcm0{;(O+u)I?|Lx&ore&b;eG_*NfRW zLj-7?0)}qba_ctUc}Q7JE!FdNZYyrjk5Bq3h+Pgc&8wQ9UsTv=K{5fUxsUEsFUyiz z5?n#1#%w$I@>T7b{Wz2@CYa&xCRh;FUUAirY6Y+zpmalQCMvoZ$>y`@mQdc|9*a?a zlRk66O@wfP+^$c}<=pRk{EMKmX2NLDs#+=+5-m9yXki=a`T(H?&k;#K_FWkbn8=wp zk1Hbge#2fQ{gOC}*nif(u9jv~r~Jn+^?O|{I$P@Zu2q_Bpz|7e-M>wj>ZuhHhEGyy zVRpNCz&c?^%qU1`^r$j3P~v219fHT_P0NCBANZ5}LqqYC9wTzFyjR|p=xwmcyjy_# z8FJ|GkQmrJVOvM&8KrL(av^_2RNgUL$CJ5 z$^o-nEum}%jOsXsinRl$Ah+ORfSoFGYtaPFF|jO)K-MXw0D_GBN&Ezs70Yr4CJX4! zWSJ23k4gc5#;eP%grWz_KPT9NpR!Cw@t zVRrFwtQz8%v>3~P5T~LdvuJgacp@2<#-~VQ3*%;*B_CEHUnP}n_cbb^XP-eSoQNm% zcwHH{8Euy-tFk^+S2%Ep$PBbO-4Qzd2CkPHcj03l7SbgLexw^6a@LnJ2>Iti_SHoq_TM-(h z&YB@yU|53wz6#?d!gE~$E~o&ueKyx-46C$RT(qyV4Rs4=g(I!R zsM?p9SD1CtYwb5eEMhbXuQ-0uxn4+hzWukZK;UV?2joWJPpH9Wq`7iSfI(S_1V)d4 zx6C=LS8yatcF`B`(*SL^?#5H@qMrPBRRP_bg<&)qAo=VYTrzbz$#*l4JL=`YMBbGoD(j_>uxR6k#SEA|Xx`#(FRmRoUwp%wAk7t8 zI}wq?A&uft;fL3=U6d^9-n`to=ND*QTR)$cW{CD@N1Ie`MmpQ}3n3y!-Bd5yfB$dl zft}+`b~CW&f#NA{MYHB?e;2!Q(A@sdV}roC11wcw%}%LPq^4U4T!5W@|)!kcpaJ6;mfX_iv*SeY#k)^5QB^*s!(2U`FcE{pk> zqyX%f!B3SBL2hIlGn<=qS@TJIUeC~Nh^_QYFR07nhd&2@e;F9IIa$QTdW7^I&B5GVJpA}|*TR0+P69lCF%7w<}{i36OH_cFczw2#YJ1rJ zSpj{8;rr_IYMJ7gJ5&dG@`=Bl$Bti&%97BCc4SD)x|I-I=g3J1FniDaZTc%Itld~! zrsMGItUOm~J9KY_{nn)wS1bD^bJX>qOiGGJx!A)X2mgN;6;PZheE65BK;oaGf|37= zsKD(1Eh?biik?d@Xx0fqr>`Slj=B6?rr-7+1oDbguYag@5Q}*>(AJk#BvRpMkkBtq zdo5#1hj$CFb6J@XlwQ9-88Bt5HG{pn8X80dncvzJecXFZgz!p`!!XoHkcB8@h!7`V zuZe@@IdFbRhbriNNb^i@TjB+0VHedYy_9c@6Cw1{{hc(ynSScQ6@CYSHHavaMLVr>RZN(23r{6nH(b0Q{-ASCm5<+rVQ#mN z=+nU(LxK7s=^A|- zH8bhx#Kp6jJCecc%hW2yH?eW&6z#?SWb3Nt#yBFDio;E3If<^w+ zE1c8YJ#|Y<&Fk#;Ac_G&A@Cz7|wy%ZO3SLb zDGyG@kU{f$1u&^QElKGs(~)YT7G=n0ItRYSKD|(jT8fK&(K{oXG3#N9L^>^{h81t- zDjM{-S2wh-c~u=7Un@vHDl2O}c8+_fTSGbdDyv#&C()Kc9gSI1CoiCfMh}ozoV>nh6pP%5xiJ2+A+H6{{3&ggzTZ;=5fQ`nbb3a zzFgp+L%&S&-)O2U3wAjz4a9bJFll#lRL;^H(Te4>B)RQ#zniCz^{UtPFIn%CBRZP3 zhX!j1RTNIwv3HrD5g`O~+de5PF4^@3UU<;0>3j2LxZYW)Z6Gx`(Coy<-R5bt+cgB} z;@9*UbUwKbDFinF2*|#^^|a;>RGr@0MMw6QDS45ZO!+F!li9CAF{YLlcNgb1Tg5+H zRxWDFqUWCy%Wi-xG%KWDhFWg%n{vNL+38l|hBku8pjko)UnFgazNWE}$#{D!jQdCl zrg`oX!I4&dak$|&W7|%SdzZ*Kalac@4_T*wf;5E58gt)z+(iK z7M-L7y#^sbGF%JKGh&yldql;e+@Cj#P86Id*}{kR{BlwL5SbIF%Pvv0x4b!{J2~rT zf4m(;BZ}2uB1E_d?al2Yb8X>YA_$=+6BHnV@P^tR=^T}<=L-u~J+2=RW`PIaB-76J zR1Dsce^e8G_*z9JfzqFJNq+4w<_VQVW-^&~w1cXZpd7Ia|uJe561Vb%D7noppZIWJx$+`rscY4L*>YWM(}hdt8w36o01GmLlnH;vcsMmE1N zOqER=0Q#Z>sy^1KGX`HaO1o`zw=93)rY~o_wBe;@Uo{xjopIxw@{l8x9T$GWt9aAA zp_7nuKHr1J%`;ic4m>Ohg@)|oMa&3MJtmQPvVW?7*#AJ(bwb~*Am1{JPDviJU{zaE zi4lzwA{Nl6Oma##*(Fgw-CHUc@>sE3kfYhaqT0@%zpdJT5F_k=jDdlvkb!=TqG|MTQ%fa$nR^c%Wg^} zmUiW72iW|SCh+v>`s6E-b@zHfr$*NIF){(Tx^FU6t!G4>>ha1Qoq3*!;@xFCKJHuLagqZjK4o$C?x8<`!`a%XIGjgr7`g zve>4;&wYU^ibpRv4Owj-9Q8ZF*Co;y8J}o77i}vGOEJoXEIwBVITW!TwAgzTL155f zQ8Cy__BHO5Xy4;+BH?;LpYG~C4qk|}eAE}KV6+b4ok{C9M?pvLWap=nu60=WYJ0a( zVQ^2q9{VJL_4O(G2UX5#r1#9&4$PRlP zM^~lBP9`#j>_SjXu-LjMUv2eql5kSDgcGHJ<|n(?FP6{u&X9LnI+yG(_2W71`_A_k za|PGAvW$COt#wa0kE`8hB~GYuBr~Uc{@II3=gkmK^{wL2UV>C&xK9qDBG4m*8|l(b zzr>3?{ff0=K(J#=&3A`;L_zJ@%*+}k<2^U)2;7Am@^4xGlmvNZ-herfEu_dnDL+M5 zQaB};&Pw=rCF8(X80REITS6yn1VyMz`&9@A{_2a`@RrRI1{lzDjVxS?@AncjSwq4)uC>I0Fr=xAm=v5DEv}kHQb#~=3}MP za7MV`h{c7=9*+|Dh%Nx-X!MJ$eQ2>7rEFDWW9+v&Wx~eU2p1hJ>P5r@T%9cO?I3w* zdk@leI~Qg~g5%4eaUS>KG!2oG$_XO;x(FFM*xRY&4PRoCNT`d_jKGXa7F2bzwqz;# zewInLpEC;0aT?|5dI^^u>7ATK2U85_XBdOU=|xX@TFF8TywS`HHfv@B7ote3Ro}{F z?l)WTNXMh4NiRB@0T*+^^ICTH65_c7$+`7@_Q&0RLQoP9LtgtR!owt{6--_s;1nMNuPowvQzm2PS*2bT8d{PH%oGKAoe4!;=)g<506gx<_ac6)5t;;Gx%d z8<6$b%Y6hh%UP3Wi!Vrc&c8uOEKGp}D}+owqyace(xK&mDARPLso3jZdd{=i5RG=92tWW|5$@r0U$WRe9HVkYYP_e ze`aP#t9_L7jx^>W8T%24?|^BBb-wk7sH>}%xWw9Bfw>oc^4Y!5bD<4bG= zDj#OWM?SuQclQWeeE!y4GFhNZsz;lLkIwlK`)?=JhsaR78|6>V`X#@>A?i4b(;@P! zG*KulS3R9su8_cnWamZHK4pj%H0q10TKHnm&-^9}pDRxKB9ftqp2MeXzy23xXC4jp z-@pGEWGPFf>`WyjWEW;ErKpIc>}z95w(MgcDJsj@vV=iml6~J9Std(H$i9s1`&b8K z`Mq_2?)!T$-{t&{KRTT_r!(XAp6Ba%UDxAUZQeZFq*FpOS12RZy$5(y2s{>pUCWGI z>N%*anf0mJAmjYki(56D*c8;?|s`4p6*8LmlgkMxk&Sj@sv z-3#K&nz1uXFW-ye7%hJ4x+=bv(`mD9hDbVg5q*^c3Tr<9yZri>!Q&w?Dxk4n+{20{ z%Q{q5-pjslIc2VfeAOUCphLzGFt9}#aO%5B15Pa{^>Z4)!J&bx|36j*h00RG|2!8~$~ zd9_8FzUr+c>H7c(X8S#BeHc|54!4fLcamP%ogB?TI$UcK4mGb7@qn{~ zU*CH){b{mQK9?LD5N6Rfa!ttw{lwv&%Y z^q7gWj+AKW!FN#Vy9UmpHdL~ZeBKh~WlaXe14;)gV&w%$|43!-m`6W;bfWVkYlL#?;HWQ3y|( zAd5yT?t*HV9k)+;e&>I5n*#F|+A1qwA#8Qc-*m~`jbb`Be_C5!V&n-R&umgX7a6#M zwrvg;#kEuAeY|9CLvQvIG1fVvsH-b+LzLSi*v7}Cyx&e}JQ-^2Bni^WH7kUj>D39m zeDRBWwp7`X;gUqFk%V-6(o*I6;jbKMK^4WLaZk+E?=|r=DBWH3ueAq?88>zw9uox= zZ(1geF=e6*T-$pJ!kFFhQ5~CEH41V^&ME6OB5I>!_tQ#id3W>EL~%Dlk~VLJIYgD5 z^XxnkdHs*fJ@5bb&kggFYaT36dx;I+WET%e#~0c2IQqD}0j-$*%v`4l+w%DucXmXr zlZEwlg8D1-AHY!C2m~dR(_-rXG2RM*zc4&%p)#Qd;W}?_hOiVd8dOlCe~Evw;%d?V z;RW$ArGd%O0MqRbuK2$c<$v)<1(Gs==}74k!IquN$WRh!)y|^&mXYqu=ZkO9 zbt?E9-I=wt&^Rq)L-hc%2$dS}Or_w)g@@J8pW#2#9+Pr==k(!XJ>J)ocNO{CXu|)i zL8f^W5R^3--&Tm|J-qPpn2Q0fF&pZm-&*koT>`L$_Yl82lLgUS@UY>X}Cp zuPpV8gW2LV8riy35uxc8+h({#+)#e}Tolv41Nycn|0G2zbC3c^J_ysz&q{Nv`tW7)9M0QjSSz6=qYszl9jtbk7rNSHSOm+jH3sR`m%-!jd&{6nB`!5 z>YV6~!)jf&((!3j&eD9P8LRcq=JlhO>7J!|#%GGhiVB4Vn&2~*)xw_2mC~(05O7gJ zB+pEbYk4kY)V)s3#OdLu2-Sd(#qa87o_KwfV8c*IZK7}G>uj&(^}`o8j^uL*&A#&2 za_0o*@^-@aNW=Sp8~X5|aW%RcxH|pkQxYo$I2-oB3~F%}Y8+&~Zi7Jo^Yne7OK6d^ zJ%ILR^C6Ylrp#Rv8{>xwqbA%3ol>>q3egKhC1&2c6s5>8x&_uaPw=f>`}VfUxmYYV z9&RN$C^+(U_=5RYDwsh%2m{ayg!gHc1VzI(3+NCOFh?+2i4zd%G({;8rztU~u=;k7 zaQCs%7RWRmkk%|l6s$FV+2_2}{UwLufDlQxibj(f zCfC)!UZxQ=A(7Alqu2A|CN}RHPC4b}=rq?+10H}2K0-TYpyZ1xP>6%wLORWn?b*A4 zc=jMyXOnZL|b5Hre)%O;+G_X3c| z`0YK&CGK0J+o=y<77YHwDYy0r_+au^Zqmkoafu&HkvcF^WJimKr={+QoZZNvK>zkv zYvWK?v)%!28c^vP$yaZIXWgYAp02-5H9;wEfSKO|aA`2UcNRL8dpa`a(hDjvr^Z$d zYH0?9qM|X)!ZZIBd3SGlza}lfrx=?qsy&@#>Ydry z#w51o>Yx0=yReJ--SeFptEAbjY)cu=D&?#0Z?^Zw$u8I30muZmQGr*AnTa&AwrC6N z&|u%87}YPc6Y8k6GRsB!z3k*s)sw%XU*9}8J#OlMF<)kcC{bv!CgbgIcj&gU?L+NV zK1Mb#^b_=Xp|dkU{qX5ufQh8biR3!-u-K3(_+sKI%~f@7i)GnW0jF!`A|vu^sN)Vt zW@1;Gf7jlTte=*s*%Xn~ngDB>;3Xfb@AHh5wu=602xyd_-$4b6qzQC8Z;-xj(w^k1 zQciMJy!3hn4qu*^nbFHj<;xO=xZkMr+jOvADxj(Z-aXfZwt*y{=eSnkM+IngqK`E z@h=FUG?|nWuORh)#ZM7c&iwokdnzq$G~=1+A#a>#_>whhp)Z<>Ite6m@X;) zEXOwvT_=C;#q>8k#T7Z@z6aQk#B?ON%KbQAB;WJHhy6;OHM{BkV=YgY>^x@QTG4 z)rs_Pp>7;*r;m^ee!-=uuA8;vm7Ld~?(1(VO2O5!VITo*Tut^Ny>Ja<<#yF?4}7`C zgJ<{2&bOPd5={DuwnjV~b6JBfMU{`*8Tt1X`U8Vw?5%bn)=9UodiKfU{a}U^XT}aF z>|Cp1pW1MA)Wa+RzvTu*MR$w*ref2fbvLV$SUOA~C*x_w`_vLs__zv4tIKNst9yt5 zPJL0U?E&|XxS>Ixto}xsGNm~Mi82xV0C=s=9V=(Kmkbp#>&lk1fFITEu%(4!>Th6$ul0z$|l@T(J<5QlgdA3@#qt*dG1QW`Ki!zLdH*WtSZxgIrVq-2vBW~}|Jjvc@A&H2NCE{WqO5jrX3aYYI_z8*bhK8Y_E!z9uo{hSYB>obNp$OW228kokOk z5EQbgc7b`8%F2D>M6Y85^tw&jreAiP*Gn5U6bm46fve7SjHn4ci^IIN>&h`mv!#S# zxpfxvwtdWQ&Qo0borJFIMm={Do#b-CCardkE45zawi_UV-LKxh{wi218RNqVy~N_Ka-;oyIUk|T z=gtBvRx+qCECjfXb;!LH1LFbd9Yn&r&e0+^-WtA2R5~^dXsk$vB2zM7I}} zKM0wKzeO=5uaOqxe+p<8d_CjmLCySdDG<-blpVx&WcL)L0s7RL;}<3!sJW}uAlkH9 zan}uK4PQOgsn{}J{sqN(>U;Lgb?jW!%7XVE%=74+u@>p$?}YAYeTW~kd12Uuc!bho z0>MaiBSf7dDX+ZQIowdys$ZRU zrXRMXm$SF>Ch5QzB^e>DHcp%Hph}Zn2Fp5MFReQF-V9hbp@U3^^cMB^xmcUUbNvix zmb`fZz}bzuaYi8c{g!-sHZWPhMU&yp6!b`5cx^v|{9(&|#A$C&7_j&~py9C5+Q5{F zedBA&p%8nGJ@gz*N5$V=%I{K7FxIFA$r40LJx{1EPu&*|a))i*<^3 zK63V{<>WF{rVDYb{=@oGL_v2IkJ)E+zo+!`e>^9H1z&y-HbiL4+&>CDN=lKpoi5!T z<_LH%@gMw(>;J{CP&-5Q5afB&QCNud>Pihb|Ha6Rne`-dsk~r4K-%{lg;F_oWH`5e7HpHmL%~= z*5w#|U1{d$QPDm`1W(Ob{mtK~uKX{92~(U!mRiH1!sBA;VH9~!_u$&S&JRyK4i4q6 z1)Rg4jQ?1*UqEI~jbp*AH}W!ru!J!<1q2~-Q2_dHpemx7qSrO3V}FGZR+*~pCs^0 zmjXd$0d_;Ra-4UWk`3za5DVcQ!k|LVv4_p{jQ}VGlr#BxvbOIh#br@;(XhkEs_b3Z z$V|@W`-kE%8(%{&gZM2YiOzSazyiYLl5wln8+XNY&Q~9)M66QJMl9?(TCcXX1k6V? ziOg&!TmTWD;GL)rmVkhZa=O`$&XV_Y<7q^jy#4^^f~y@j!k4oUrhC&_v8@XJLx>$G z7vpzk`A)Lw1VT}_Up-Dqj_}TGs_D{p+|dh1wzQ15V%?kUVKYaP(HBePEh~jxJeQ<0*mJ`QkIQRCs$ctG1@EnR=Ws_L#V7PnF%V9S1r>3H< zQ8nbV^`k-un_aE@iFXI#muIAr`#!dy;TDc}n`v+mVDu1qC41iZ`v%wVp?#;q`a$fS z!zY(`JHDm%1SC$-GDSF1yUF|UA-{IolxiJH&uU3exR5h{WN&oH*=(g>eB&`KA3NC- zqHEErWn8ecTM{jEX<(*M#T`<3;~f{~z@+96HUiu{d;!JZR04{4{8?6)O4EHrBI6^k zxL}cJOZmXXvzu9W;wt+DkVsjXn_YaP6Qd(yBikxUPXl-f`N~%wHITlf6a4!hn=?^}#6+{=sqaq2N-$lYm~($c{2k_Hp{U-A+N0-Hge7 zuy(M|i+4T?;(m!w_F75z?#FwJMsb@@}5J#TtOuUUQd0LH?h_9ftWFkVFR zx{EZ00MB15E~5R~JKX%Qj(%@IZ0x6*!vUNk5M0c7V0N{F7~Z`>O?^F1;wty8zX z*if+Gr;??RAD24by){F^Id{=sEWmQL1rFpt1e8BjD`g)D_Q&QON9_wNV(1X6@EXe! zm&hz~nc}|rum8eEbX6^wK<{@+#2Xl?u=pGp%*$e9%MJ<4eWze-EA=Xq}cvk zX1L!|N_78tsC=5_Dg+_31cwK$OkFc7Brq#qSOP;$!Dy9j-iPhCz1)mPgEa2My&49f z5$`TSOOL?Vb!bH9*X(UuI+uZ#l>O8gh|1H06mk79F9PNGgMmo z?$LuU{Y~Kgg0C+=sPU_;306}o!A)ABm&ZawbuNp=tBvdCiQAT<)_-p1jciJ68kA<^ zTz5#1GsOZ<5RZzlfF;?1GEyM%;rV$>eTYqsxBi=XsqZ0kvp>sNIqMDhTjj z2nYq@Mr)=)lXOGZ+gvRTFh+k_jYJCr_xq9Z! zijz2OD2`ef<>$|9kK-q_`7`Z#8&8*HrrzwCE7~S3$jEwznf~TzIf&eB`^XzEYlHCr z55a}+h+0#)El+IYMTSm$@|s-CvW&JmEiMbw4l+kNGzC;jKH%t%8fTx`xy&*81}yWz z?hgini`JyCbsOFx&~IFGUkb#L;c4L2Nmf&cb2${iWwPOytzvdhom6AH0jH z*wriAFKNa%m5e&M%eT9M9@VkvaGsW8UQ*1;;SJGYKX59!w!Pazy5(-~NFh>lQ&kU6 zA6|;u*50A&q;$sEf3>ajpI6H#A&<5fzhgCTc0TyNGnIBEu&gw1MpC4^{A&0E_Bk|s zC?Ds@4FMoH;bm7zX}j>t4ECIxksSA@L@%(;X<;^tcD4^J>VBrCDNS?6H*D9XPt3V) zE0y_j5}Q%f!Sy%O{+anOc3|u0#83*EV;T4KqMsq#ygyQ#E@#w0 z!VF)C7M-GmA7)zXY$FsNuhz3y*OtL(SiLj_^!y-InqX>PA=sM-@B$I~>QCKXg!!V+ zAU>_>9=>I!?*?vCJOS!2dpGD@9{eq_SD**>l+UVxI_C~I$OrkzWR)=eND2bM%MSw5;)0WAo z)pfAeYv5SacS!Qsgi7=o)HjrHmTYp{sy|{T(|;TFWHUS9B|YxXIg}$`ZLgOH-23t8 z9Rnld!)}7K7(kX{X{RI>iyAkR*KKE{m$*TuMjH#ep0xP$H={gSn7}n0=Z{U*Y2ykk|SPwg+BQd?DViw?f39`V0J!LzM>l zLw*P)WW?CI5I{jNsG@a=&G*{;H*bI-z>c^)yq*;WJ8O`Fxnq;NMmu$#uzj}iyQ ztt&#Y+QuQ*>^oBvs7-9rq!cq415uz(Thv7C5z{vDg6#|67c=qH!&9lnVVUvoEtPXC zBHo-L3XKg2;zSod`Y^f)PjJG%J^f?p&~x&Y4?MASpkx_cLDxddbS2))@z1J_GM}D0 zw^1T`KmS(UgTtbL^My78m())6NLUO)`T}lT-z1o1lOV|6kr&53OT2m)$d4hv#{5_x z32g7SdnYY%!eaxckM?7?ogEulU7E!;m8Cjdk7NCuDwIl(mK551Af>%=sZ%)rJ{R6? z^TWBXbFl>tl-D@-p9kPIdM3V;-uhzV6h7r*goDPXTJ~ckq_!s_8M7chS1_Z=bC-9QQx{(ynp%4qJq+)&$GtS8+rUHIUB!s~>bM zsc!hn5$5e{9$%;1VS-GC1yYx!Q9EtCx@K$D+<6C9wyHO!+qoJ8nA)piG%>TXF zpK*`HTnS{JQe9v=F#?v7V=0+U)lYH}DbAm0RGNt@hwP!O)<)JjkQT*Oj}+=X3M@1z z^N+l9vJ&`b+Nn=v12@N;EJ43f6#wke$-wK~K&HO(lbxjOG_c zVjH)QWpFbGkE0ZHA<{!-(75p#AOp8akx-BpNI8@eA6;razc=nLSXaV5pd>w6|0gk8 zC`~}lK~KR3nBENu8l=#x_XDBwi#a;Qm+`Ht5@GXBQImPVvGBiX5@4C<8UT(<3 ztv2iEPkr|KNRe`hOJ_RO(^V(_5@;iZd$0|sWz2rOg`KeGIZ{7JYs;V*mdSXQKSyW( zA)!D_;8gEsh8XPEzTKko94Eyi@NYaK-fMhE-oK;T8Hlx3$`NdjotKOLQ&#%p&hh{A zqKG4Zik(i2$p=|dwHIq)OXPcWUnSFSc6F6dqQ{C#`<=_*s;dpZK*p}O4;-?2Q~UHj zbC-zl^!pZYFTz~lz;q}%fR<>%5v6vm!`ypJTam{ULS}cOBOF0ji)k zR#&n2+(-ht5HlvYM$8>d0X5OfaFLl()A+y-D9|&{M*;!S|7Fjdc6n~hN+)|pMP$5- z*81Fc&g~WCoJRN4wYoE|nsBtyl(eUBr+k>SWnNB|vlBP5kAMMeg*PtwGIcU53pCSi%zsf&I zHv!f{MpJfy@wAW5x_w>)?j#B=+~|G<;NsFHiPjwBtxA2kj_H5r`vrxR@U=l`%8mDf zwY-eC(=Cq9e$q4LP7=JO$sXZKTCK)y0C*FA*``exnV4L+T{nG_R5o@7Y%NoR|D&zt z1)wc>QXwd&eT@q;eD;?X!YR@36ZZ<~o9MNs*Eq*@lE2u|68dZ{Uq=7T_RA{Jy#?6Z zR>fhiUKAm)o;ZAuD7_ZXQz7;g%jtGm_SvWkrkl5l<*gDNGBfOtFB+gxLP&+1U|S*` zzjy)c$it5$h*cOj)AK~2Lnq(yIs_=@Q5^gx(#Kg_`$ey_vnQL|MKio7(%<|}j9u1z zeX2x<5`BId7CcF(%a5Z_1Y9Z+%MW*DyW)^^`pHj+z1goe>GbcJhW(7yX;);iP83vJ zjP^vF-?~Z^M3t2dzB*<6I9Gz}DfHJ~RJlWtk6mtFk?h@3J24p8*M&jN3>ZTKspPE? zz*ezT$h8<}x-1F9so`X3`w8TPy~MkmLE+?*gEjLc$Lin)Wt#=qLA~-br4d3oa-p>zA@UHG08!X$Alyi z5ffF?^b1UFQEhh{%B;_!yt-*%&Yp9{ly0f16sU?*XWRGFYAE&g%T9f3?Tl+ zudxmw-@Ib@OvJ+hzvPWD8O$_ihve0obS67Z@6n~8*pP_EWQFN&8BGJnh}!sea$zN% zXQ)zWjmZJKW5c(@a{xz_QN0qVBOuMlkNWRP`tBX95gU$=1P=DMJC1UC{)ZC-m=xPj z7TUluLD?0`hXiU;JikcD2Ez`0y8$Xd7^m`Q3IP!r44rwaOWb9&LnG^oZJG;l2m~|Q zEA!W+MZC%sxP?F6P4(rzDux;=075U3mz34`1=!J*IOYhz^|DWOEgML&R^T{DR|)rb zuKH0#wjBFhoIXrB1>%dmA1vV8+6V!|)DO)+ywdgtodDuqGo6A-4`$!e0DZLdc>rKA z1i)})%6Veg25rz$(Uiyf#vBzaJDwilaum3-fSemNT|&;)oPvd58+5X4&q^Ghy|b9d z+HVz%Hkf$Clf|$dN=6bz>+y9(YaOWmW4Sbf(L9;UOY{SPH_$s08cp*2JGS6oO(roX zhP|8Ckv*!6CoBUg19W2Iy+UTd$wJ5Gj@{%I^8l=7a|-*qN9M0BfCU^^FLdIW_7%;B zR3eP#UST^vyu{Kq*d}OOj*6D&qiSK4BDno>suyNA*XF@^x*}~_jH`W@@pi4#vBEd! zl-~_+)|0QyWp2t6yfzwg>Tdsq1VUgq2G?XPN=8y2?z;{I$TZeH`v)wjR^{YOQiJi^ zO;@lFtvohlN47~%k(>%$EcUHIZ0J|Ef(G%bh~&v3_5p{c1`XDga<-4w2VU%G*f7if z-1mzJo4!}%nZR^QGt*a-?_|E` z22DV_Se83f*wN7|*-csiqmWq~CXUX7i_7)Lp}a0nVZ>n2thwS?zTTKl9Rq=HPK^mr z^>NM=SU=&YvGRjNDf%WkKdU ze|ESJ0gGXffq5{U5pzWYrpE8^Lpk^MT6&%G%M)NciDa6vr;tApq=GLQ*OHt`FeF9# z7JTrK$8Pf3-_)C2JnhI_ZX?BpI?Ah?c=IqeXv4lq{poXvsmDmPP083BuUVj9X;nL* zFT@I_RDMu-pt5p8Q8-S@3APA;n3gBO;`A&^^2+qGU0NyW50fF7k36}XcdmS_^BT&M z^Shq-L-oel`z98C^`!db2PP1>J+6OAeQ@@$n|hd_Km?8vObQ_<_T=)D0Vt84Q-|S_JS4Cy+gt!u#5V{KVW!XJ zKjf{n;$p>SfL+=%Y|5P3@Dg=0tws*p;l!daI{Wg~?I%c^TD;Emj7b179W`Eu$+@() zYMG!caCjNZoU6`dbA}L;&t+i;PL^LScv@ZYlrnYQ@ir*u_&p<5U=4txmc#nXPa!sF zjYgl+;cOHjbBa1>ajYao^Tu~W_Wny*fFO(;HdGto0V4ohfAH^(!xUNhI2;a$)q8~q zH99E{czWhw#!dwnYqqtrN0+UZ!^6Xc2D zEHi;+$mQ~{$pRqOKl3sC!KkZ+I=YYfO3Qf z#`}<-5ubZLYjCK0UBo{d1+xFyC=fa>PkHScY4h)71l32M$N$wOP!+P;|1^x~6qBlF{yGkxMn~e?qi16gYt3shnyH4zCu}ut z-s2(%ts72%E1=*70t>nU9|Okbr5h>?S8yV5&hnc0Le{459%>{flQoUKp@=`QL-L7m z!wQ07I3%x>Z2C}F(z;zd7K9!Cs=`4~U~?O$`Q<>54yxI6gg$?!%0A@`>g!8$aqFIY z4(z3Nl<4Xo>2uYG`j}PbRP_n{35iFhg|2MD4b^(9z|Z!l^ax^`x0~FZ5&TU$lKbs` zDbYXf6F10Lp5T5h+Jx0nEAQ26db*xB*C4rOL7~!wp}>!+-}Z0Fb=@z%@kS5*^3efV9Q(_BPN$E1HTkvBa&z#l<3VSro>!OTiu$Fmuh;UMdR|rwqm4G& zYx_9o(rOzd`z?_97!XY4Qr}0dsB^M&Gy;}0>J7Nxv1DFS-MM4ObGjk|Aj<5KpJKBM zeZ?Cg0=oJG@EP0IY(H+Y@4;l~I3~7ywo`aHc8XREY{}u7 zci22Naa2?u&ymqaP8=^7-<1U6Lt5g0ud$eDW2AwnVIkHN`^U*GI;9Kv={5RNdo3f7xKRhHuGnaIya5tFQNzw(EvG z!t51xy3fSd#PYrFyuq2M^wazX4pgk(wEy;?_+iPhHNJRu#`mlKg7kCQM|YEBmX$Wj zTB|PNt8qPvTI4#H7Y$22MU3{rkd0Wkx1M|muVON-YC_}4tjIx0@_>$=r=|9%9a z^8fZJOnYDaB=zdWaZ28C;70LXX&DWU1N7O$sr`p**^Y{ZJp21TZ`Si5<`#_hG#6yb z1DM*)I7ojkwo$-y9av6KcB->I&ji;&;?gWG0uEh{gEQuU@)YT5Cr?ORssHhbsWj z!Ndwp``lL9{toNk8zTI7F1nrqagc+*>X^0A-`b;$$aGi;_ycp$0bmYl-4@J&AHRPa z^0ZH0KZ^hOLz&Ag-BqFfUi|)7`Z?xVtx=jnGwqh50PYO?licD>sC&7m2?&Q`zu}Ib-Q0?3u=KODQqEmUaHz!n@$Xe0lOs-ANKb;T}|I!JeVR4UN zuIg>ctaq_Hht;(O8^WRU^pV0-|MrYS__mTEnnA|x&0+a76W6X1<8k;@Z2TW(z3z{) zZs#uKf8pxv>Gp_~iHr?a@E;GC?~^~HA_#Bm>EW@gDW-tO5wCs`3@??4n4H$TH1`$$ z=!J&>noP*Hhdb)`39!paa5Wkl6hvyZpXQYa$C-Qd6x{#>B;C1<9UV8?sZ~u`kQc1= z0(CLMSHvK(#SAEmL_G|8Toin>oYx+uZWzCx z+(W@mljO$E3|k^ziIY`|U^q6kB`dqVGS9mg?6>)vm^-`Xwy(&CPM!#)acYGWwW0KP zd6=?6nJT!Y(HY^fOZkQJjmeo%O2T~)frAV-bTZAiiiG66%GtvRNznBexdAxSd%vQ1 ze$wr8t>ZVTyd$#Sk@?^FKTAN>`K4%)z42OJRU?20Wt*Cr76 z-PeJpV9S`hPFwE9fxyT9*}ljC7qSQ?@AP>}+O#4Ggr@GJl%G=faKitP*Aaio>&0e3 zGlM*bI^G1SEj=rLIFT|S0zJ8teQzCR#n zyM>y65l0dE?Bd@k3f9V)-gt_QpNiW92}-|wJ0xOdPNL?<84z8mVL|h>j{@gQE862K z-!1*(Iex4j!#@0%wrakOmb;>L>j!3ivGCd=_r-`91tDL8`^WA>LT9o3o&~ z{=$f<9`;2}bEe{5-Pu*XLoo`{O_EHf$6;jAq7&8V#qY6!Dc8*eCe6R}-cmUZA~Ste zmHV5zt`AN&tl*s*S!%cu0LGT|alJmCGjqsEr( z7x|c@Zv^yP3R{w&_~eXE6YypGZh+bVzXYhaAVpiM zP-Ld!M_r1Ky80ApR4_WX4dC|c6(ZmZO1K+*vQ`K%i6{xj4Uc1B^E4ZhYelL*1}I=a zLf-`Ft1}mfsQ7^tVAzxT#u@}=SUCxGSn*hJ2AXkMkq55JP5D3mLG<-Eq>*Llb`JY= z90<}{9G36eVG9=6qT;5Iy`e^N1{8rT+w#F#oi}gu@u=;P#J^*yv~6L<25-JQGREqx z+}%doE{C`B42tslPv0_swE6}<$)bEJ?Md9-F&5c(p8W|W?c$79?EQ*l-oqG5bT@Qd z&o!ddA?!mR>o<{<^wfJxGXOXj1)+ddK_d15mEdE}pwW+gqW}4P5ZaiRD2J=$$<$KC z?4(RC5a#I`)^bP%2vjX;7r+36TFoo-e~dXzGR+02$A98B2XQXuSkK?x(X!HhbFLsS zM{q{ad+WnNOvg?7Fa=5*UNgR?*CAcRalCQZ_;dBe2RnI4`Zn5j`%K}S4;w%utb_^2 zEnJT)I|yyWl_SsD2}$%>XZ!JRkS_Aezf%={4&E5beRh_g+RpE4VUDE#08mVljZ1Ca zYdv6>NkE00t-iK*eb%7)!C}$64A&6z?B5{^bmXT@TOaIn!#F#V+@Ix}{z78PNS_%0 znX*9qLs{T911Jj-i?X^XiQ<~K6~BM;SY9d4ZQG$C%T)i}T=4tjGnd5U6L$d*&xEO& zx=F4thxzjzX4l&t!%sO?npRMG$DOqfKruy;ApKLmxI+Z;DCfQ5OjKL9&-+y@UO#?a z^KI^gQ1a=Y$Bin#6nPBcJlOD>2>RR+g8nQ)&#qS%`z|c6> z&y7~+1_j#E;nieY4RnE-%Wn-Spsd-p!ByMjdIP`&LkE`MfV7aQ2kT8-DlhETyjFH~ zA=pLXORD2ccrc=TSgjV=I@hxSF%1k|^fvhG3#BW{`p8;2pDggpIB)CE=j?_2v;icM zX8%Lw=#A8ocn8S?1|@6pWWF;qzv|Z=*#UG$1S&mXOeS>*vTG$A=GB`37s2*Y@wFVb zO87An1UsHuoCGF?kr?TMtKDsd)be}FC!>(SK|RDfzILv(7leMtS9MW!9DPpwXaO)6 zG!=cGP3-~91rIDhBg@q+FKzlh6kg-4gI`|BxTTSWF*GdJm=|J$+-5CvJ{;T-JBs+O zG+6)W02x@+t0hw(di0jV`qaZ9x9rP+tDsfgmg^!mDA`PcD@W&WaljzR7ryYNWct?F z>25)j=Tu@xE{eKC&yLGyWPkb9GihoJ$SU#a7o+IKteW%w6ibBMLVP*u@zfoW?a}RT z%q7y0MI~jv!KZ}Crw#+PjVu$z0=A;w7BPyq#!TzE=KuUqa!26MEfV1?)1T89!}ndk z`YE+@H5You|7)*y7A11AEMfRjTB1Hl+=N>$xt$R3&sc?_I`L`_`18+xxu{|RbDpR9d@mCUfU!N|lyfU)_c2 zy%I|gwp^SkJ4)*4wzKn*n>@tM3=iq&Jfz!KsdwHpn&8~`gWNvQZnQkq5}BZeP0>+3 zQwmhH-0U{1)sy?mHYKt%F-megDy^@e9!9yIS*w8sFCI#k2cZ5Hsetaj)I-7gN&F5- zKxzxfwfv%mMHhfI43)o9qEoNz0+X%cu*cg;U?2FCdNc0wAh2`{>IGk?feDD+l723D z>sIgykOsJ-(cO3fERMeSyJ36RD((G9{-wM9HOqClR4U@@pIY2F+SUlE_n8f8F_&+S zH$6YP?`JPB^f2v;fy#fUxr?!=dNfg)NOxp}GEYOUJ4t-K&Jxyd#(X;Mo50=)J0a}f z*a@QFl2-3^>r2g9)IVuh#9L!Pq{*$%1#Zos`%J*UECo9MH__cXM%D6fqPw|J#QXbp_eDHwe-oCD0%|F5<&mu3nY4WdvyOt*x{{zOI znrQ7#pm_H;`q7TocQc3@RKKAQLKXn~crds;xg^3Ie0b|{?vn)5_y_M}uxwr4j%Xdg zP$&}pjnnwB`X$EO*Q)NvcDQ)EvP-hcN%?|o1>ua`Z#IETA7`rmUc6v?^wQA?fG7-a zxE>6m3>`o7cvzY+8i+U;oSYNYf8eznE(nOme>#;*f~)$W*e?T?(l64q+O6NvaXipX z9~Cf~6rS@gJDpXsKiUoz;Msoy*xOIXq%_($|I9t~R_)t#h;YDRg|*BLrt=Xa9cy`XPWC2=(-4z{(Cwd_mVs7iimI zw+o~Kyu~jYw*uz7RN0?)Z3ZZF9Dj_jMZV?cQR?zRlWcp12MsSfzd$yDeZ@LG$gvl=6xJ1y0y2}+Oz z*xtEC$6n?YpIpTk#de;++_lGZ`vi}0i}HWRBe+tc#fVcka197n%$9Tw zGd_BVju>-897^YnMo-?)Sc#nMe^&V2CFOEu8}SJ>u~~j`BHlKTIy~~3WH}}{TIgTxW#*|nhJ^{36^}R>_@@9XYOF^K+1`BJ!SOJVwGRJf*efMc1 z6*=b8{6kPqjIdT4QN#RNPYmUkKV#0khV1}AGmjmOS_-_Bie9rc(mk5UNn0a?5ipjX zJV2iil71y6X!1VcM)9pvFI(5+59dZN5d?d4iE7j^h-6IvqNfn!)cv@*TL8jJF|;T; z_<3+VspAs&Ed{%^Y)}(RBtp5C?#P+xvo%ht8nL`Gdn8ajDZz1Fp3J)s!Ndc@*Jvn$hNy5xq?IUoXS42HS{5Ikp3l#Jl4HYC?yb)4( z#ZX|jBGxB&Ix6IXha?$$xl8M9+z zf@cmcOv({H^Wl>>bT;MxZwJM@a1#aIH_oI> z$b%EFj1vx7KvJQBaeCf8jqCv!qOZ^t`QbCpCn7)4Q~nk>Ncq2L>S(5_K9D>^E8JY8 zWx*~RI4L6LRpfV@HgU{BAF!aRpHL#0xcox^J2C3~L!|!Wa;XC0$#>t9%JbqFJOmQZ zBEbR%DLqOzn@Zp|Z0XT6w_X+}ny60Cy0;-71>F4G zG$}ixTCa;;Yg_$nhJ6SiqY-BT(l}834sAa9bDvacx259@Fmxu%0PAgRvUkYb1S-Q5 z!E+jM9+{yvo8{;B%;t5NeP*Zbw0@IQNfloS^i7+k(UhY8=ovCMy=ZQF^X((rR-0_j z*JqTiB*w||->QF)rC54?LT6XMTj|~H%n)lkU$O({>HX>lzK0GSYV%G)Via$%;Js15 zHxp_*S(m7o6`}PNAM2}^^d%-UVc|O+yFwn923~C$dFAc$z+-V^r(3h0=3mr9KAyTa zvPZAA=UB(pBuSCNbkn&Yp8i3wksoTg3jlTAp()336bRz&Y3e_uF5H7BC~68u3Tp*d z-PHB;;sLUClCX&`Cd;hVB}_YJLQBAB7OJ+VbL$=rY(+_5;iQb_#P$47@5A5zs&n!b z4Mf^>h!y+lQ&nzzvzt(S6Ej{)`l8f0p)>T@l zH<_Iv)?Yj=ywA#%hE1Oq)ON^DI0(-vfPedpVk)mi5T1Z(PF1o^g~4C&r5U_&ACgog zMcDnoRk)ZH98eRg{Pn3Q7L;l`2l+U^D}6yk#Y(YfGp&vtSMnaB62 zQZ?`HYJ88=0zFxNpp;%Re&q$Xh> zCqs$!uVdid_i1043lK0g&~pQUHrQrz6@Q1wa`XDvcksYQZp25_<5_coEnvMU?nTJm$70gHY$zH*N&lsZ(*FhLDG;S*+Xcx{RS1V}zw1 zuC1aiDwO}*FKnVnciy>z=>)TlvVpzwJwG|w8JoEoJd(WVz z-nQL4^s1;7L7J!#dR1yDqM%3#y>~=JdJiptQbZ{#OR)CdScdM_fqB-GFX zJO1x|KhHCJ?)}c5ch(HUWca{jt#w`Jb)3KBIOEGt598P4GDmYe4qn}V)4IcBEiOO1 zgZwuOz!q0duVAw>sdyctJLQOf;V9r6!#}}D4Sp+U0Qm+kx4O&8FZt}U&9zfx3rZ3J zbTM3v(n;DlcqfW#T6Zh$d1Gqe$XDQYXDea3hLF3tW^NTb_GRH^^Y@QM za#hrG`~bvt^9! zsXZ{hpF)Zaw;PmmL=cFJD+Y&B^1szyT$)CE0{pZV}PKg3mKn(LI=1`xC1KvVYf-HE~ z1li??Vdeqov#%vC2+4`A`*Q)mC#(jU`ZcbL{vyjPw2Ooh1QTjmfggP8GQ_^Zq%fV+ z`^b^q8AA4|Y;TM^nH&-MSn5H5NH$;4wnr^XRsk8Tv0A9lD=DQiwtq@B$!sEMM~o5*~w92<=z43WNf)*=^p|DgyN?9tyFA0z0u{sc5GX^dU1w zQ+Z4L!=2+&!b-y*Q4sM7U{l$}vqRoyI+$oJ7&5BUu4N*whk=s@sE2)%@C_)hWT_*E z$oh9zX!XA#0>+KyQ-cmTa!9S2zQk_RqqI$ijYcxlXV<=-`asppT<+J!PK}SdJsy$h zBJ3Ak63!`A-FxM^F8FzM_gkU+qq{|KVK?uru4&G2Mefv3gl00|m$58TywprMo-r6g za8^NVwr5HlZ$T?dDlS;^5Adr*V5C;u=Uxo*fWZzQ2+rA+sHIC?ZV=mJ&m?>{b+x<8 z;!ETG&(*9;1LE+t@q>WOHU={N)YcbV4z_XT;!w2nMrUhGw~)6iIpb_%h@K13$; zX`P9I{qEs20pRa5h|q!#u!gCJI2@Uvu=sXW#D@QLam2A{!Q3i27?e{vq9tjB903ec zLoKfdh7fzcktK)ZM=#NZ5!|t)Y4k|?iN}mDwEeepfg>iwAWVoW@$8!jhscZoxK_EH z?VMJr-8cE#&(m1e&~{XxONAeslK5GK)|<55w?+o5Xjxesemg*hs0SvI735E9P~ zHYLG{GjFw8jZ_tsOkJ*+o)&M$f$T0>Ak*G8@EK7U35$d}T*&$jy?3gKOYs67WIQW@ z^P+mXkg-fMgL2VOil5=RW62bUFeA^`jUk3D;ijPOjwRI<#N-N{`FjAS$F z9_hfQ7CX>~ErSMbt8ut5tdDJZaGgDB7ERO;(PXCm+{ zz!-9xkTVq_FvxNb#da>r@QAm7|0G#YvwujfOT@Bi&yV~zi0fkJSRcvC9q$pe>&wS(^y zEBdPeoGx;>W`*!z4!Yn^Qhv~mX}WW9ty~AzFAg4U8~uHLn_X$V2{b|huU=uFdCnhai~j1Dw~SLJ$3%ISg(%BW z>=55YNBvCMR7=ffzeWE>d3iakcS>RGjcO7!<)kcD;{%vjYpV|VN?@KCIqpFL3pcb_ znzGpd3GN_Ag1VBpb`haKo>W{$1T=_t<0Rq|&_lY{Ma#n@;}=Er+h%_R&U@6aXf_cQ zoH^gApj9efV~2qYU1?kjJ}aMCp?_`_<^$sRY2a$b`g{d;m(huSbRU)#q&Jl_FfU68 zu)r5=A2SWM9MxK!H4oNY&7K;XjpK-f#}*L^oP_WSWbtsn$H|cGVFnTPCWND`hO^?& z=yuJ`52MR?yYQGxd`{&(ll1&mOk8%nO&fh7ALG&RGjjv^KMu&d&P5Z?zf`sBz+iX> zJ(>Nth+~USheV$O+kNJ_5#ZiH;H3h~w&M;a&%=3EY(-HL(~WBimN~lG#C<-Mmq>wb zhCJDN6yjF1AOECBVVjO_Nhj^|>0sP~c|<7b!|6Qx;uV}Ja(@!yhL}}N zWq>MhJ2UF)p^}7hV~Vzao-h0NuicA#@#vU_Z7cU-od0fepowzu69@gsBv1M^?~Q3U zZC}gC8H`bl7XwVcJ$J>0!hklVIyTVHR>sU@k}lRhB4oRZZ=_PPeLq5_w`*c;nfV_%f_Hma@KkyE!a7c!IiROW zld^s|Jpa%ysL+C$Z7rkJi+6nr!3ve)m3g)q_#4@U6o`92Tk+OJsBay!X%*_(ES=4f zC?WVn`viz7X)dwKo?^gG*xBIg&Cred{FRcP`!Vq;HdT9bX?TfW6M{DcUT79u9*?ST z3vAknjMe+)nxu^hgZq~m`+o(XRcR>i%{R@DH~45eshME{*g0Qy`nrt-#VFX1m0DUB z#1*6RZ8+^?qV`BWmz0+btqq0_NjYrgK%k;@$2IH{!+Sy%xa)6&+x zztG9doRr~<84O}OFW)JH2QB(1z@F$6NN|=5wuJYR zXwR75F~+LS0jl~hi{8j_pNEc$dN4ao-HKI4TPEetvFep}k4H-~E^(_SBAK~E&x>Ne zJ`2C8@3H+w+@%h^xfBdhO3gM*pu!r@zbgz_G3WnjCtYak<0qQ1=C$^O^aLRGqnI}@ zxu}%G;Fp=eqU|ZibyaqGjq6nxuk{A}u1En}Qz0g2BgZzZ-|!ziO=ql2FA+C(uc~pb zioBIBGo8Xgvo(TTFMXyouA=Ezr^$Jnv`Wy4RtMf&m~lZf%X7WF7iHN?Pj6L#D=+Iy z#|FPc^5y+t6DA?va28DD0pxm61ZQcq54Pt44I6M1GI=eSD|sX_!k)9Qi}^%#u2)a* zH06+U#5jrnS78AhiU=H}Q}R8$R8~+&u_mW)B<(fXgzTIX#;@$1=*7a%=Kv)-rIT(H z+OcQGjE;yLM=Q&jfY$qLQs@W;OvQ)&LFSf%7w615KWqeNM$he5PwDiI1&(_$)#kT@ zE%SI|vsglmWaOcAp~6mCLpc^j6~mk)Og!u3K&U~-ID=g@BP2H`BsgL9t%cl`tFdL7{iA~2Nz zGL_~wYq?;9GZO^bK&>8DkXhK%B@J9RBm$FV(wY(GO7EZmR>X$Z^CyxMNr6)E0 z9!QCHEhV(fBGnk7cyc2KSN+*!!_bGH8>+fzL#@WoGOLK z@*47es!~MSv@7@_NdImgPEfn~-wS^b-M}7hX_{JXXRE#%C zY&d8hJR1v+Yvf#`Cv_BZ{7?~trX2m;S;cbT8M^%3CsjD6|CeEXDUnB!!WRMku_ppD zNg*6pBhszv_Jr9`TzaWR9sdZ!&~4ilFku(wYnBn z=z~^JPmge!4J;mdj(gEi@;M~P5Vx=M>5y?&P6~=nZez%zXe4VSn=dAl#hMd=8myMD z9a}SSzanJykp6jal0gOw&DbPVlzHnHwNzsjI%*!`^TG%zHhNGIroB(E%aOzKEArQr zTQwPl>7LgoJ+x8i<32Kjg1=San4-s9voN4RrfkJ`!s$#Cjq)MQSa+lCv;u%eT49{a z&~HX5A^LqE&x z*a1g}v;|BZ9s}czh|xNYlJH);!~w76{bAo<6hXNoVzN;_L9Zi<4>KMXEl`~Lk)U$< zLQdS@ajI7b$4U4K-ib>gLhl)8Fdh=iethdi?OZD3hw|_?LjvdBHcy1NkX0n$b1l&3 zWZb*9rM=!TU~3O5eAMZzxIv7F{o{M80Foa}w_9{3y6K%!^YL$G3EM@8)7zUXU&u*c zm+*jYvlg}vWqyiF8C6#@4Alf0k%8_CCF^vG$$U4;+4&f|I=IGft@~(~vzC+Ra)dAR zy=hCrq860=)8(lDgInkApUC%Z=DuxeEGY}4^*{@k*T!y37{BJEyW9OBc@*yd=%V*{ zK*^yzh3NDL{MhLbUevZCo(M`wwmLV@;jnzT&nG%`NFQ-L-@@&>bg)?$qLzoCWiQ1( z@nOfBj}JNisQWcxE$65NO81nu)Me`aR4bVG!9~SA%{HpJ-+)i_O<8VhqK#X9dq08L zkySBRUE&I64#THEBY7nkoLEuhM!HKbZeOlvA(iMZ{%|tO=Bjs(LTy=r9ZoL&Ra`Q3 zWZE}B_}Nh%PLTv#vR!m4;(zI|Q%5^l%ewdc99&~n1?`k8Y!)z4n(Y*;>5`90Yy}yd z4q}o#Eq5&MQCKU2^x~J?nH4^KWotVi5If83Nmlz??SD_)IEQ~!8rt-#LJ%1b@y{4@ z3YZ6<8J)LyDG9o=#DxN;HZT+BU^Yg1LXc@{jZzwoz>+d|cKOK9;qMSSi5iEMufbmd=|#l` z>nca!M>!wVnhE;wEc)BCg~X6Od@NPZFH(o)#v)pp>ygp8y>9zqR)56zYF9GxTs3V= z!(IDIQ_ER2jlU)E@!H^8AOM6jHuQP)6TT7X!7^YWP5Gc`D`8i$TViD`083 zo+^D~=olW+KFvYpdo5wX$LhV>^zquCpqwiW@KLVvPY@A5EzJ`jSl##@_xm^VpIavRf6fzp(%C~a(&FRy=6u>6J`|{5Nns_X0~&*$ z`3O0R?b#!Tz5~y~g|Hn>gZPLDM&= z=CiiR?P4(1i{+UO;%s^`rIuGv7*{C#R*_ehj6dMTH%cyW_Uhp<_HIFs+LY;LLEfHf zMAyn~i;$O5=GSv}!>6nAu=?Ct2I98+tO-jQS?T7(OxE=0j{Jl%6a~cKLfHm5@PaA= zI3{X7&9tc{y}d&9%m;Yk#SgNf=l~STr3ip_IAGfTuNa5W3_O5{dk9{+1DLlypAMG_ zBV)gAkP_Ear(S2!JYqBQ#Yg+{%dBsA1j>8*iXS^hcxJ~4iUb|APDJf%>3=Dp6)}XE zsuai{k0!(kk~n0Zch)YjeWM`WYGRY zq2$zwdF|+o67(x%y>PW!0WH;|Z(x%wuKmjqPbMi~57T$MUaosk)(LBr;L|l3{4Mb3 z;`&OEFGmSTC8O#NDJq{Yg!%UHqys9`2X!PZk=r5&>z{;~&r$KFp?uGb=MBd)gC@GU zXMb4<&Tj>gvRtc%BBKSyDfewTx>5nCk|FeYmd*HQZG)pqK&sCzranK6} zdh4dnPb9}Njh|TTGdT61$9pJipbPX(?M<|econ*sj{clg;OzGO@-GrjKP~}zm?_Tx z^!g#Qx4IS-)j!xnZ|`o{argbC}n>Rya0zMkTw@6g*wX_T1i`BIxkE)t<=64FwB z6Xs;~{q{D6iVI)=+e^EYr!kJtSw;BUHoRhsGPq@@9F%_VP5N7oX<0sA9Sp?X9h{G{ zV+Zf}&q@HY&P+7?nP2mugF$Y|Y+AU*5GxhO84wAIm2hk&dYJ_sI|ulbP{%aurL(JUj-MX0k1hBo zd((d4q%kSqIecRJpr(yk_!!>4>UBDE+3B6rhJ@C;wqAT+U_Jf|y%btk;8W%o$YCC2 z#4KQIx&e;kkLUc)=yO`^F9v)#&%j%_@u!y+ZcD)_GegZGt38;8eWRTzx_=6WJVL>s zzj%7|q~4Q_C;C~S&*ce|tAzt@B}10ykG>U;waiT#z#E|H|TvkMAVILLGEfzYj%dKl%VHANILR+{e@kMTRU{aX^cB2KPx7_ zZzU>u{_X~mzi8X<83hfv- zM9Tf!iUCLzXq+X2w_i3O(m1YeaSg|(*vfpmu(hX*ibIH^Dw;TF2-8#^lgEY3xz1>z z6k=p>zn?xj#e~d}Z%HS21z!5ILK*$&`=IHHbxTIxuVw}9c+nrxc*!MnVtcaVZhfv_ z2tBkN@5Q=Xo07B~=yGuS#CS6I!rAm~hB z=LR=7Uu`_C-BC<|26KEsWIub(s@7JTCZ;j5!1pFvcjn=Ylvbz%Ba4zf^w>A5vwT+6 z)%Oe>plSnV>HHLly@|~5Jr_cRAO=&3^Ml_kr+{X5;KHeLR=0*jL2mD;X|Mu26NsG@ zXU!T;XF*93yv2^=bOhdMRN+Zj5Myo)x}1$?H>1SQKy|}zSn>B)?H+Jqn`NA@cyJBp zRsj-b@I;3Hc|ZNgWiI~Ud%(5%B;O07jCrHwlwbu<^>0DPU&AQW|oLKSa zalwUeLNw!pX<8HS*Lo2DYKAWtjJIT7jUK?y=+0{$6pafkptYP^Iw`CUaObOx!?bfV zO!YV>TID$XwB;K{f7*jt-IIHp84hpTcZIRF{ZfrxuzMJSYx-Nz*AU)MX8?NVSbXT_ z&?uA!LTst^SSv#h>DWOm^Kt*rHd4<9*x?YKZaM9AcQwsPNU)=V3|!YE5cDiC3t2)!Tra1TfZ<8h&RPSv(fU)o)n<}gSSAvTEY`F42l8%_oJ zMw`@PUs7>oow+f>ggxChf|A1m=DvuI#J5r~9@I;`^)t~KI623pV`=zTws+es$Qqk= z46+0k^+MO2S(-gteoIf2Dr^(qUatIYii+QS5_7?&BCvb8%L5r~nU8au7gOAa@MA~M z8I14E62l7Zh`zBvHd~10i1^p6SHB!^V4JTz3>4;xF8;_l@ojhcIEAiMO!zJ~%+H@) z4^A#8IZp<(*Ue;?4RZ9gt57*WP;9wFiI@9um_<)O$GHl@T7pTLrk+w9xEy-DUWZPX+OI= z9_CsSf^WMD2)+rK5Up|ev^=&P1#@hU0 zBY??n+=pRwHN@Fb2F|M81x2!toEc#gm!7p{CQH35(4A+*=zMIK0<5kV(MZ3i__}0ytAyB5U*T= zvk;fVu^s$IcWzBOhlEg9?7oiD`^$^_0`x6-k1Ee!{Bj6vwE`pT&?LWC{I&nQvUHoe z{31&d%zqYnvQ#7vS6}M&2y5kkq++vy08-TC3cmYz?g8h2l>PfyD5gyvO~^7*l?5oxi{z2JNV;S+w4FNvAxm~v{y$_*%~$YpFT@ff;DTwq6##=aFBrd zNkPYTRq7zm{i|I`cNw!2do?qy>4od(o&=k{0*^M9Pks6u{?_`%v&o>h=gjQwU{Z43 zNJ_CbH`UH z9I7kcz`Tl{tZJ{ynp|#>el=VYiV7JD1<*)#rtV{^M2NL5$&m)bc!6 zfSxfg3b$FR`qi{hn`tDPMy$kZ)}K~bY!6>%_|kzn;~F;zE&x=+r*A~ST5VRAiSYMi zhb>thBYH-X$R|}C^G8;Skpn+!j)9rPnV^)gwcCIJ(ypPl8-_|*!KDpWz{E__%5agsy8*q$%UgTTuFq`sFUpXm(WW%AB-zK* zY4fIh#9fD)=KD~u-`wqVSa7f~j;vAGd5u4xNzWRDO)P&Y`0k{@v02aeVpJ&EpULlC z?Z@+7YV1$k)@7sAL`vB8(4I!!&Eqy5^ z7NzoAoC^K+S9;Ln$_^)RA|9-^vP1e|g^^TD-GnZ6WuZJi_?8@Y)DLS$RkxUHba@>l zaY1-&H7{)DXr}(-LpvmdtzfPWKu$!eJ&>PZutb8EWO)Wur$FWRl zSN{9=yI8F)-v$UV{%QElSbGnoGmmJT^t$f@WPpE{m9{S&EqfQ6wXPqrHn3`^vr1H1 zI4o2ot>VuTFU8p@H2ZwTaWr#*ob29`rp}1H4{$6^XNB*ynLMJP2(+V{pNKk`&M8L#j}b4YHma@{N_Bz? zRuCPPY~>MO=f#M`gE4nlp8-srBW23~Fr6tXA0Q*lQ)E~t!hvz#GV+|$D5;8HYv=sC z=oors{>4-S6>hTZcrA7-4Xe3iDsbUtre9snMZm(VG39hExg8_b(X|-fjDGdNqPc|O zkwUrbV}>7yB`G=(AybpEB*JeXVS0pFQ(ja0+yl5-ash#uEHDL(<3Z4oM+#?0(prZ7 z(Lbw={gwW1gWvzA4*ta+{P)jhZkh`yQUaVzL|Dv;eOq}J)qWtL6fl9iyve`_3FHB_ zOB*%Blrk-j3ba9De(MlGeOE)iFGl=^j2FZ^Ey0o3pYY)7H@VD+Tlxi46yJ}c0$99 z5dZjqP;W_up|67|A}omTQ~|esn6#0gO|#{6-ETejTa=l`c~wUd-gjZ+18cMR1Fk>6 zd^eCIVL0N$oy$yVj`qvt(=za!ws%Hc#7x)|Ud_rp zJ;pR%5Mn!gnBMh!hu8V(ldPu3i~9^~g#zOm&bJ`8B48zO;~T26lE!;OEX8wAr&z{d zGuVD!ISL;O)4^I@Iw<&!axs7P2UH>8^6($}t8jnxKp$e*D(GmIT&0p>;P?A$=*USL z%6U?!z~GIFOo&zlFey`K&R?Ea-^8sb-C(J=(SOI&m7ujnW3#nOoXMG0Mf1^yhV{a_ zkbAM5HQ$o)VrS&map$q{gbdVdDIZwL>wb zL$5vWn)*W7wBKWp%bgvZoB+s;&*>F7ejeWB;gZ;Rvx1o4-IpHEb9?O8jNga6( znN4+8i8!7^l?W2?2;g9V2pv_vU=jY2rru%_?$H4`cH2Qcne6r~Cq#y6&mA&z5Q?J# z*AU9B{JOQRv-gKN^3A;m_c8GARz=&(om?qP1U95PE`G_Tt>4AxrtkT*EZ5J>vY3Vw zLQ8L(vtW}$!%IJ+J1?ybYXd(!MD&5+%l@TV-?2fhM~xYM%9tFNHP}Q{IeIypZhv(U zYxmsjCurX6?}>R<7q zp%6}u)iQgq|C`{M+T=s_^VrQOas6dn{pk09fhb-AVL8iVsvGj&-d|!#v4ZE4oOM^7 zHn$10SAq$%S6(yVG*!S?u+-wdL(F#+D(W!MdE!l5BB2@e)BN)F8e+lj0EZL!M^LII znjQ)fr81DXAIjIi_=nur~)X#zWDqLmUKUF^`T{ zUl10-93PDLNnoT^ZzJ*~7F(1K{5NbE_^iVqrr6)f4Ok+1#q^$v_w4k^^hZ&Q+WYgR?W#(0*MJFPjt(0Zzk@Q z@|0^!VDnZz@b17RiDifsUW>jeD9gkZXiUr3!MCm%M4v-NhF$nyNu#SkTwEl}Y+ z5E9Uz6@V$>@Z%v{`^*WJud!(M1$!(n$gOE>z#eJRz2!h$fRZ}s6MhB`Dk~~PdS57q z+_ifPu_dQZ$Y|;WoQj@qfD_MF;NQ18TeUDYoIs=0=?Yv_>KPZO26l%)?Wo_3mngjq|)Lty_^Q0DHcd4BR55-W)4Nhgpe!uA8r|xKdwpmZ$UD zQS@sadwLWcs{W|H5RGc*BW~tzp*_NKMe1`~5c3u;`!|n6yT0gEO+?;M+#TAx6jN5c zy3{fGT%xIWP-hn`*kd<|A$_y@t^MHNu#w1r!A4W#RZ_5j!A9u+Kd=$}FMFg2Td?a> zOoz7pJ$x^YnJwZ;z}p3sLwx1**dc=0B0>hE;)!8Q2a~}F)37+UpPFBjZTPdr>`M%7 zypiDk=~6EYh$$fG68%KKDG48{jvnA91YR!&YY{ zAnD7!h#{82XLbY!y6_S`B%n`|21Mm#LU9HrWEBSM5x7w?;s@Is^*12NYB<_7hGVg7 zM>3z$7l5)wN+L#xZk};iTAotWgb;ka_HPVBRC`Ww14x}DP@EUq1z#m1;T;>BL?QxGymvbvle z70?>4<2s^fyKsv;Xk$&hXGpT5tU?f*M{7B`1QiZQZ z-{+|C!@Mcc?S7oQ=;peO=hqb@6=CZimsEi9s;kPwf}Kvur{|0-)wS*Bcs;J!D@V*6 zRQu&j?X$r0CMOf+ADfk_m-Jx;wM2cwK@WcZ2Wn`8glt3nyRU1v#LhpUM9%rolZP27 zFC}}2OzP5Tm)A?A!d1u$qU#+=Eda)`@3wN#&P1lt|`ND#vp%(^*}+!;LAFt|A`JE7zf$PJn07@sOi7h z(A2-Mq0j$dL#ThSp@9Xn*o!qNdXkZE``n}QLQwy|HCBc^Ldj-yGdWpaR6YXu7>K_P zqJPamMu@GUfZ0U=ZFDJMEZ)A0siPj@oYcOg^AJEciI6LyryPbIsX-G*05Mxgy-^r7 zfMpjc(Vt4xbZBPcr1e``)R9i*BI=cgNpjfS9jT`h_gj-_wIjKCX|B zWm-FF9HOW!BtFXrUYX;6hc_raq;VImXzR>9Qkf(o@4c0X@bp@9q8F6!AT-02r{CSK zxbPn)*kUwc$~6Ih0UAl${{hgP`~_%AR%ZQ2;|T!Gqsp~vvi||l+`9c2py@-DDlh&| zfM#^~zX6&LoD@EL{|7+BuY!JiNsl4|y?f|UvXI4VrhgfI)|5mT3RAgOGj=K1H|uZd zfZtSjHWzWL>m?rVc7}d z#FMqv-8n_=1ub04OW-ckghC7kp?_r`EQb)bH4HeK>F&>Bc4Vc$bQ;X+x>Oz{oLmuG z^mALTe@crVWFjT#lHQ4Vw$vLefjG>q96QlmPh*5>2fXs@<90zff9&gHA%qUxVT8?& z{AI%p=Lk}nEuR^|`qU~EQ6TK_vD^Ssxjk+ri=d|i3IsE*HbL5~sU<*oa%Epe$ z%hiM^&9Nlek|tg?eowA7@BwyIgna0rSD#_B|CakW%TNfzza}55yZd=7%|mrgvT*Jx zpIVL8lcQsSU6*>QUm}|?Ooo$(inBuxHW!uehR&B_*#zLHY}Ths5`vC_mJtq51~w2N zgGWCV>=j9Wpa}n=L2jP}zz3KNSv`^7pUX?|vT{hhgJ(l8{%&=JS@6m&?Lxoi%{A<| zAK4p0T8G3dzT@ytF$5_ig76hbd~FWW3=xy!$+EjC_Sg+D_4}LDW+UY7&g8j?wqD!A zuwv>8l)E(LQ>E5nB|x;Vve!Q7z+$5y+DL+neWWlYw1g1-(bMZgMECro{iwT!7Emje zFfn;p)obnGTBxlDcpNXf2iGEcI=Y!j>bEZudRQ=c|MMhWMX z+QDM+5yyzT_c0M|xt9Sg^f2cIT5s||ZWU{y`TrtiF4SS_{bj*}h$jNnrwq)m&(si4 zwqEt1<^YkOuzaclh#J@S>5Zt>qxrZx=KKNP7O10ds$`z8?WctB6CRG)ltZ_TZsuc5Y zSO!N0qLLjDuO)qpwW5XG@`WzM*#MDiri+L`2#gw{+@j_KOv(^yqhgJ>7)~x9IkA*U zvlm6`CD)Oilq5H~{f=l4sEhYgqJ#gJZ;O$VGFoM4(On70P=@+oN?jP9fm$D3HawvQ)m zF^@~|MchTCr1Vf>yF6=WuFd9c4WSygMIL9oRS|SjHyT`+>&bHw!U~qtBZrW22s^qg z4GTqCVEMCt<0K#n*kYRSw_<~W4bMqGkdT8P-{!B9QH|8 zaxETv?JObCq#bAG7t$P%{nRCihakP{U%Q|szTk0YV4zKF z*VmvbPDu2&-b^Q8z>5T(w=$t1Wt2@1w>oP++fihAwR_=i&pv#9??eLq9#)3YcxHa9 zp1AGoXP+1PeD2{dBat_Y8?i0VNhC)EXAi$ly}UH;W8yz0eQztPjb>exNm3YeH2L)X z_HESNlpmE@t%^y0#1&2Muj3SX22iMz-Hyuav9{r>Ye64tIjqeb?GV_)Qtt0uQ9uFE zFQBtY)Jwb9vR8H}Oybm+{q+A2l1TOcAcBSy@qlU@wZtF~E-8+Enm>H_`RnPK@*>q;4~ikKU5+=XLda}nU|~|% z&6jfv_ZHf1zO?E3ZC0uM_~strad^bmaSG*sPVemb)1nSDzI|z>o;)TtK%GH<58FGXF`g#s2xa1*B5wbmf>8p6JwuY zkqMFhwo$lo09ZnB#p7V?;Q9kq!VnB2JBRGigt%)LYZ4R-AivTMy&iIQU^7-R#QE)- z=}u7c35cnj9T+?Uj@qYvvzR^LH0If0xW7D^8))Y#=yV$1K~{Z`+AiKY?UvuMu1CG@ zR=0H9oaJ^|2Od}Kj@uERwK%_yF_}Y2w4fBiCI6WE?&d9;qx}d|O)gr*_Z0)(F;6C? zZ_L*CT<%D`APk*wi(JqgJ8~s-nlnY>1m5dkuEmE1))cpit;i2>z|^=KQq<;uJ+Qr4 zmce*M+N;ee=Euv!Z$;QT`7wJUVLG?P+anI%QE!Ot+~-@<uS-YJzSRH9{Cpl#iy6U z?+~qZ?5K$TslU@DeY7^XRdc5nw`7bm3*^9E2NXh?^cu<2dc8Q&sLQpMCqayPE^Q|Y zg~=f)d4u@Jh#t_Q3!ZvyD!Lvu4!cGsi!4_ak3PMmTe7 zO^39fygR#w>A!JrwDkW%L1l7z`0sYJA@JSq6<4&9@cxBkPBq!irj0$;2{d7_P~iQ! zbMJGJmNtU+%{$ZPa4RGJe-Kc83ui5lK41OBq&DCt%ukDtw<-QH3k(xlHq!7HWlyt($=XQ#@2;j@I@`zhL0VpK~b7Yv_Uh62ouXwrPDEux}eOsTX2TaUy ztyx{Pj9|M`fYU>4heribl-#J-S`US{C~BTL?cYvlL}jckY*6v*YF1VS>aW_5MIONT zYjlz$e7bX;)vT;-^`!*M4Gu1iyHn4W(rCMFSpaS?TcxzLFj09AQPj`Vp-x4xW6RY* zdQ8Ayn{oDG%0~t|>}MOpW~QY%?fA)s{r^ICPDFzh_=bjWCGcf1sL%gt9Cx6!`{KvD zMh1xH%{ECfUd3}gy{otL%Or&kSA5UuhlA{B?Uni2kw0&KBuD#NuA#>m`qCR;@Zx)| zV{O^a*6Gv?`}I!G&ibhh#l6$e?-IPRsKJ9_*Ea4Wc+nEyVCpd<)=KT4Yzz_;3x9SEu3a6XoO$cKO2eJ zVlWZdp-l@s7cE`9+vPz6G4%n)P4I&do3oZy< z)klCnL)F{KeAedb1aKfmnBRmE(XIh6sDS|(Or&OiWu!xx*H(j1NBSb11AdCb{ZDmr zjSzC#qe%*#t*Q|~yzcd?E*JfAovAlV`F`7nREMZ4e$XkcY>}3M{~#aezUcdi6m26io$MIOXhX2`H!l@H{i4FDmHGE)cg5bG_o* zYQFONs~TQv8dDAp5VcbM=DU&e=B9fxA?)W7Nb@XIS*vDHXR)AQgI59$Gj8*$A#21N zrI#%HbHWTXUfdx8SA`3uMCM%$BS%Ow$sn7T=`zja{IK7qO&LOQ7Q9n{^zY);!|u!d zUuv)YKw!Pdun*Wu@CPJd!3HBFH=sb+iDt4l&&2@=Ot#`)&qX%^Af_m<=46HB>Xph` z^XX*z_rBjSlT?IaCKKXd9HvZjW4$KB8ce_Cs5W!+r!m17lHpS0e4nddx!z=mVg*CbxtPcJpoTm)dYRmS$a7dnHV;YvYlOhPwlvSf5DHGr+uu2|#Sq zQ|uO20DCg2XIuIq@I!~*5=}>_DNEys1KeyC$Sv$_ICU6~Ja7$UTpt2YIxOZaB&~eh zW4mbPD>ao(?0?Vy-WKwh(*`arfc@iD2whIiAc4($YBp~Dn*|WBy)!`!n_l(!*?y~| z7;u8kjv&?w^3E29C9FjIT)1~u3QCQ{Zm2C-b0Y3KSZaaddI>1zdIKfo)s3QBM91Kl zDaJp4ByKMiY)gGqP{VEj2sUtbIhu=y>eIwnHo|wkt9aZpfl(~Gb{c5^2mXA?F@)kY zxQGM|4#7LrUmPfQT;VZS;e@#s=eQGrhKc=`OaN^)>Nqdr$OJ~*9QWwX)oz-%O~k+O zDOcG4D?Wvs`K#21XU^7aHJaQUQR-qY@m4!j$3%yW_eXEQ3H5h? z)V;etfR|)LhZn?3-GPYad(MBvh?wxCm68?COs#}G%0=L)(Uh3W7Cl6HiU1CXkb|gB z*I6Uh*cqHuyCs7`g7W5%!2odMtfkObryVBD{cv)PTZMTpdS@BD0gO!_Q1X?vSaKYiL@j*VLoob%p3;D81wLx9_pLSqRDhJ=drlY{=&IHt^ov=LA#tu*T?dY0EQsvuMeQ8vmg&mTZ!>#iy}B>tIJ$`VJf9=!sHxpe`a>0~ zwv($fG3zTW`7+!<#8&WAij&3xdNnC41#;;*yY1EfsLguQ!DPZF6wB@6Cdo<6#t=Py zh4Rn4Fp10mK&(Cuz0_vwQ%}F~fhpwGZ=Hjo$|>xC5pQhdigbvLBB&ld72P;k1d_ii zrt7Sm=>umj8)N0qTQKe9Dh&Z(4z?%8|FZTX3sL8i&`-MZ5q97tlM@5Kq z5s?gm>)85uv6n6{I4FJjiZlV`k#EXjh-c927ndXu8i`8ja6{c%xIb$r5#cNNm4nfVFPc2=bLWHYO z!X_HG(kc@q#3370*m^1Ay`eaHxjIDNeD;67*GlJz?P+1Y`FC?wkkzJ^WRk6zZ0l=S z(hF~1+yL*42p$vffcQ)&{?e%jk(Bci zfn9YvpxF*kzcZ1lQXbvow-vB+CbivYX1BMCddEA%U6vtR_g&Hk@SHZS7wW)g-YFBQ zrrE0uGR;$-$fq(4oJ#E6-cVYr9;}Z2lC(^+mSso{$^WsJ5lc*bjeb;#2u&JA6g`EE zy&jFb(NlX%?Y-$t`ED@easu7}Va2C=8;Dw~=>)xZavs1=24 z`CfTYjDEr0zlVx!l1d_hxIeLT1@g_XG^am{oY*l7c&tTxe_uaIs}_o@(&Br~0o^TJ916;BGG0UrSoK(dVh8tMFbY^I24mv7J03vF z;{=A&1%koa*`v@x94n8MY6kAtjc`)ugM1`VSp=oy#)wt5-R~JiQhM+h7C^qW2wEBb zETiNCByJXzhV&&jzv(M?SvVAzTBK4Bg=}m}TZHN7J=`B`vi9K>Erwzj`3nvEmB%-Y z`5>*(V8gtNlF$_e;ahP_MZ-Y`^n$!p%|2i{@YpS`82+AoM@f0Mkzp48#H56#YAQ%u z@2i&FgC0JH@!co9qY`j+o;5+s^F}_1Q2W*siRbSMJ_vIcD5RV5+ZHNL%mS6LnP1Is zdhc_Zh22|xw?2oTzrt|Y%Hfp~ARXhRYxxB#A$+fLjb}$6Kma#Q&9To6cYLJ`b*|ca zvHHQGHI!}~7&?)l=MGDcO?Lh#WpNIfi7fC8-*m`{y<~R#$(>kM4V)3`6EPaWmc4R! zfP;Xy)H81#K$RFQP`36P@lM|GDVMlFbk*(exru&6@FQPk#WuJPAM#WQ85`S5NaL}F;-fVqTmoCop0e8{`~oV-tl)@DbL_XSW+|@Tx^9Gj zv?9o2KLt#Tu0zdRPqjP0l{dul!Q407-40NsKW?m%VzuV;@x*5K`je@J(LbH39%I_5 zJVJ0~DDVQ<+c2jZRZRQb2nlHCjTYVX2HpJA{o#rM;Eu|VJKbW$knoCqLl#&^Io`54 z8hm_EwG-h5ftCdec0sDMY|ZlrX}F|?~?n1S)vkpKT!jp`-@&x&HREih*X+~oPg+PqD}M9>vpXNzg}N65bD+Q{ zzEdYl_L&3+Nc?4W&JIqW`II^_nN8+Hz!yJq0^#{ z;vp1&{Dvo4dPr@$6I8lS0{l2eyf_lO7w#;}>}Rm%mF}tu0`X=zEu*-V_et zjYc<=12Whn(!Kygco6t0u=8=^@?#gSHln%UGsO2FPX}01E7UAfU&kVyNgWQ@)DCND zAh8=wBxq7uDO?1a24xedgvN;CJm6*YzC>xDbU@6lHszmWedpa3`00xP5uh%4v?D={ zKVcl)rN#$DP%efsDJeN^(~vB;FXzgtZzTHFl+d0_Hi!D88CiTp&2qfo2=#vWvsM-o zBzNU%#wAtO(ynQgI3>gteyFzzZj>T3Nc~zrn=qFq({*>9u2pLGHS%TP-bLAVRjA9=@eD^Ojw>@)V)BR zqbQj0=W-UWDxN6!%|#uSGyX$FN)9JSD{?q$AAUs;wU*_ZaLV_S%Xz#vM9;#ysdE5z zq|BA4+hk)NiCHpSJLxCq@5*wkTN69V9Z_+F@uu5zJ4Y+Sgu*$wRY2}{mQT1=Ja*AM z((U*6+e?^lG!Mb%3?KOSs_5DW004tps1V6?-_b`00Apl^9h%T^<7EsR6W>sIAamF- zQ8poV^C?=>sbqRrtU5TCC(~h<9)v3tu>?vp!y;k=&6!_tW_;A0oJ2;xNu&jo5t~h^kbb8 zL52I^-V#6c zNSD+*w`6!yraqFY*w)w5?-UMQQFH}+YlaN*KsH<55#~3_`_-c!);GL$tCJuC%d3#t z8q38ViLB`R5R^PYKhDF>rY;W7`DtTi!C=i^!m|NsO~<^wFW+ zX(!Vzy2((?$Ka9QOu9`d2}N80FN(bD;(o z^WnjekSqF>s55F7+G)8CYj+Z9e$*m{E%lKt>A#cClVb)a;O#)84|K7$BzdoWioR40 z|EUrxwUwURU1HxiTH9w22k%_7txo*ONc?MJ2s_g%TGy#^tRCwO+DubNuNP4C}>sa<@&ZutujmCc>R}2iY8JM+($Pm{GEzro|4f5 zAgz=~=gze6PXJNyvc#|cI&}(5F`{XuR?j-KcNuWMDjHon!+Q=_y$!8eq~_)8NI5u~ z-{q+wG5{bb*c$*Z0Z$MH1h?*}0vq*|m+n~*rz1tqw90hv;L?fF*N(PW6ZW+qbgtMe zkgO3M>0j?$`e?(6)5_?S33G26PdD=c3tZE+U2hg4gV_=3SH56#UB9S9m*=MjDqqWN zVO;_&1wy8}8!Xz0U40gROVZ?GU;Z5|4P@?ilQ&g_8){x>?$2D9L=(5_xl+72CV8c@ z@fQN0&U?t?!He}4ocH*(jFrD!Opvd8y!#RKx|fu9`0C_npUmhhmyHdTGEwfcrJ$1J zPI$9liLYau(VY}B@ucxNv%xcfgY@YgWw%y+{eCrN0=wB;kH>eneunE^Le|+gQ@B;X z8#LFwv87}wpBT(K9q16xJ&m~O?MUpUH|n$v*+5y}8(^Mro+J)!R`ZA$EOA*T!z@HfF>m z{)go=Lf8@r{wzg&)Lt!4fS2$RKckTT*lA*a@}u7^i)~10rLQX@a~pL^`piHvpM*HZQ$ zHc0d>7|=QBtgoj^-O8!^_(PTZgaT5YXz4ijgoqc-lMU#+-V9B(igb8`qCH+dZ_2#jLW*FvR_GVn)}P^F{j1Hxu~%F>1y2AENDjV6$quc#50v_OOt!CxL?mzSoe)c;cvZIb*cI- zN#Pc)9UQ5+aOB_n{GthZ&!5wn8s>D*2>;O=S($DITA=q)vY~e{AdG-i$r4QTfMT8w zvMMc;?qzV@$;z7yk_^6J@Mu<;r_@t?1s=(n$Su&s-}+!i2yDd@kGtr@U&+L_?@NZj zx8I%f_=8b7xA&Ix)|3|MVK***sy@X@gU~%yK>~Mj#fu9=)a|LIC29aQEk~rYV^I&4 zDpGdaVgdx8ZIqwWWL~WvEuHl{WothJxjka_IqmyZQ7MQMSRQu13I;*2bCkFVZyF+m z4b;9Fv*qeTi=OkeGIGCacgV&<$mWA!j&Z$y_g)x(?&=vkxb19CEP0EL{($_efS_k) zNjP{ssu@8hdZk=Hh)*V50Pc!jYboom6Gt?b3{H zEli zWp;FnWtaRH^gjP!k@odIAgCVgnVcwYl#WR){ELgEt3i5eKJvn<^)(^?%&@<8xxVUR z5|bub_2a8*KtK*6PO{4G{l)ZtTIv22BJBRd8gcYO4RhYJyLw&bqBF0dpSH4y=#gKq zX3Z!R-M&5bW&W}8MA3d;bIh4W$nThVYF)+4d=>S057--y*QTw=k56A|Y#k^<&7aF~Ry!7+=QQtE60Qd|$gE##LNr_OmV?j_2yR?N>{h{hHbYavoSIOg6kzK2 zSIuWv@*FJFdf;(5<@ca>`gEaNGVAyi&Js>14V_Dls=Mz%=6jeNkAWXITKyccePMw0 zUr;3JXp0wxe%S<;lUugZ$eO_pjRkdMMS~YKsyYDSdc1@huTZ#Upllpj1?tJ|6NrZ>UPU$out1c|n znclF-+1f`DLOX1(oQtDMi>1jg!+D<7Xj^boa0psaAH+36t1f7f)a;hdYddPHDSN!^@P*lm9YbP zskt~-qDOLnPTr19&yZ^?ci>X?JdP2fb|3Z|cgD?eFY3-)BDeEASv4^TvDX$)9(36t z6i|^E5!qC|mRr0M{xa^w&GlpN&0AHrr}BOIu7Q2~>Re;2Eh2c9s7KUBP6)y`ONOO%o@GEgm1GLQbYjQkFd?CtsQIlj`{w^F@oc)#0p(u;UCdcY}s$!sAE$6I4ZJK zYvSxe(yVZ;Q39zYjIrKSi&#_yP@l{DI}k-ujCqo&UyNivACGDd`{X(wE{H zvrZzf*T$WsxBF>%vrtvhS!t^IRoxXCC2HQE1va`4&39CL3ROmEy$rIub|boaZ)D}$ zk_X+2&TewX%;Xqe4|5TqV6;=DPvoplSBav6y|L&Oum}i97H7-VSB>dUmlIrJ&a(CI zSGyt`bToEUQ1az}A($rFh=PXgqRXZG?z_b2`3+P6!jbH4rO|_2Mq8VH#Rb(-sE|!i zb@37xx6r>BOyy&Nm!B-j=r@c8pXA)NZOXgIQTi8$DHjhB(X6Il8b(N!j(r^eOJTAH zC`?lSP?*-4|DiB(oFk5DcD3Vb@Qdde22aGE^(;hwuT}(dRAY}^*!EES>K&v9Bomqm zheS7RvuV$P>U@YJ`0={q?ImIVgK0S?J~HPNd7u&{pfgvQ8 zA1#2{Z8ze;6t|Ztz0s#bCG})rmSI%mPfa(S9UA_yOA;?Hli&D^)4SJ9b6Zde zA<yUaFyJWVsHkHJ;MPiM z7yd@M`|Max8L87-sEU+)h&iz;0M}v1ExS7Vc6}On>HmdSif-2KiP=(~2wko5f&z2J z&7#t6Qc|BQROliQ4}Gykn_2MZWNHyIk} zoZ95PgVs|Ey_Hk=xrdiumSbLA3&Mj!n?VG|eBE&652;u_oXyC&5i*v32q!(To-ZYb z)P(m@$ei}Jq3W+ffW^-Vq!fvR+b3mGj86ATey7%zH>plV$wXM2a3%srW_es9?(p#cv?${bDbsB*B>FI z2;BUnYpb9+(%qY%)vGDQ6&c;5nBm+$Pw(a$U>@LxhFs#3RaJ}T>L-b3E(?`M?f;$y zPo((=0xV4iYXDb&3|~Uk?_a#nvd&PvkZ-rZwxY&BMhC0S&|hd0c^Y8tiU*p$C1+pT zQ|mZ>7i+<8lmUt{?SP*^qc|mYzS6(Hsc1_xv3%>VP=E15(FbqXfd+5{&SIGhzyJ;) zAfhbEOCY)u^l#J>t8T}!w|gzY%WfvWL0wu$NK|54*xk2oPavqD`XLlatg7WMqbqM6 zY{D^x=-KYgokAq6{q6BQt@Q^4Rz#`=l9X9xE^J!2jbgSaWrkAKB&2&1A1utZX}ZFHO#emIK6J0H1^vc8mLgu z-X}fJ>)p!YywV;@@!;r%M9eTG)sdhQ*}gaQO4y4@OMSD(C({lv`CEL=c51E}uKSY( z0b~4Z!ilv@5!56~iz&npiaj-NCcnzIDovK`KUR(Zw60=2Bw71%p{qq)!{gF9RSR%Y z4eI{}FG)kS)0snlXr^O%-c&Q;^X^O=g%~=PIF$kj3GlqYYe;RCUSqLkR(jqr`SZqNho|1pM&vWB7~p!d37C0vo8|z6xb3i>ai^vLKde+gnOWpYPIO=4oL|b^ zeN8u`AvpXV0_}g;3^DxIHWJw^Nh4(@rIP-hR+T{8%Rco#pjZHV*^OICq;N@(EHi#% zMcs^G;;Y2yRNJ~kR`d{|g;H!hRg*O;m1ayzFz`m)3)Tem;q?1P%6QHU$l!58{tRoO zTSRQ4^8hXg!&&BXCoB1-Kx`pttm;AOqD&enabM;9Zu@M|5YJ*#%ORybMfkmw)B0=2 zvb9zO;lPI{bLG9Zlj!R*87wnLo1qy|r$#;(*Vhc_ErSq(I1+4pjbyMu(__09UkV3z z!>8z;o0lP7n~#%=y=vke1JRI+;4-=+L7&LOZh8-s`X}Rt1J3@Bm~=Rmms@{3jYbVo zdWRHBzb1Mo(LZeiSo;moI!VW3{a#C>8mSYTxPZ_|L#L}!e-_RdJDg%CCfqC_=a29d z?d8jkv$;Eo&lN(zN36vO?dc6s>*3IiE(?WqjI{IaccS#|<`a#cF;AZ}QB-+kp}ad% zoZo|&Msduy@etQVvE!vfj#Op}6Z@B03qNjM;M_~Ns!3k^&G!W>b>JA(T`1wD+kP-rA%rIh?N%`&7av&rMMd_<@LZYBT zq~g^dkPgaV|BA~XTBO1nk%-p|fw#@ZPj<**PLFiKiY)ZaWUqJGPagezblZej(nDGF zPcm56Fjf)OG1WvNE`35gECpz*ZxT zwI{0CZ`5qKvI{lng233)kCQhNXicy!eHYh5wqE#=Lj3I7DLhpIdXt^U6(4Vdc{BDe zr?mYGj{R3h5Hj=SzNP*6!Cipyi@mf1Jn^hmVu8-i6AcX z$+9@05AqV=Jy|9ZTa_*(Z&|!)waA(5f>&n50<*~yLVM-hpZ{@na8RKxB8H!6wB{RC zeBsW^SiK1^aH`-{aW2}(O1M`5AX$)sP9HzYPl=XkmWl$3X|ERQVDO#X=jd#+2gWb~ zZ6Rv!0YOLolC}LYl&RLG$dm;Dxt(N3u-2|gA)VbK z7MmFnDp|O!80W?b(vbDU3QR*gO_gx_L3qr*Vl%WrhL+jxnTipK1$ZRgy&+5BCfwz{ zykUXp2nI!t6NQ_>a|`G%XAUh~UM>6`yOmFWFo6#h^j7)u093qU$E{!P||%b$P}mJY>PEY$W$kS^qxFPY&xU9Bhyp9c?; zEwy}~Pw;pJ&vwVutd%O&#s%yco&bxqoZ{r7L7aO)TkOjFmLrKjb5e}v21t5yh5W_| zv}fG=D(j_oqH@Rb<764`GUTQfa6jgu#yGU3L#0Qnco0OJUTF0~tcmXmQ>^3SO~>MR zZJSd-sfoFuZ_J(fAFe8};_Hz@BM@`h48bCPyMffc#% zwxCrs!@nc$3DKPL&oE8V@MP(G!mp>_%1(Y0 zQM|1RQi~EX_w$eT|2pocbvHMV_%?T^RM?ZS@epOTNAOAz8zpUTyy+ zFR~vXt^_a|3>pEXgl*KQ>#Lu?jqR3yrO)BO^bPrsEyh|Jyz9fa{Q0s{hRRj(S1%^N{}I)x!FPtqgw*f`dRlQ%I!Q8 zZ2g$zY3@qUyF3EiWCqe3Z_N)lE2zJ=Aj7-01S_=`ZhAZweNavG3XSqN%6f-_*_oDZ8nC zYq$Nq4#@mVIv4~=&bPRy#rqqNZaVV259KQ0&v?D3>|U$%WPGf7%QD${cGfHTgd=}S zTn1S?uzB{#rc~&YcJK2;h?DFSZNEj4V9&hg+MA+Oh89qhhFf1$3O8(|4egp5ZF2JM zOU{paLQT_CSET~jwNoqcy2Pqm2xl`v<;GqD<6=dbn(AQKkC>jW*K_(UHBGg)9MRo6 zg=g`*x?4C8wJ!ydgVefIstIH3jq1i$ao>bXzVAgGnzAX#DnE=_lJt)F>9#&i;m*7c z^j=c2*Q3x(Td9d9!37NF9_88i;)RP6#{2^z*&s%Ybm%PpvpGxNPED#UYRtK5ReGk> zm^Q|6X)onu3q$);k~Z*Ozjfw&leJp!_m$|mm#C8(8z=w?9nVqpkHpdcK#66h~4&+YfYfPZmEu+BOZf5g{okNDb zO)%lp%0y`BMga=vFrH}bcK$+7tXUd5CYQyrwV({=@FM&b4OIY(svUG}TWvDnu=Rt| zyljv(_T6@9eohaR$$6KE`)op1WkfnDM>F{MN=oB@SXGI0_5DLSFqt_|V-<_c<3BY+ zOV21yC0di1uB2eVMfftIB{k0)VfJfF>jRjO@&_ihe?>$UBfF;uANX4-Za4bCk{HWq zrKVboeM0sktwZ*(p~pYpT^bz4<&KVp=5YT%OihbEmwx!)B}5~~yF}<`>~bmS7u)tZ z2sYhIOszY*99RnGtNvE!{t{yTF~ou?$RXlu$UoJ{*st{d0cKa;IwdQeSqx6q*Q8bU zSa!3!kqQ)3)>FCI3BG{H+{RVK2CSUCnYZFr!M^NX76xBU5Bohw2AJpDYLOx`oM~A6 znecN}f7QB1L{~hQ9hv{zw@`5Em{Q2;Sa*;Vh?hHWK8lpj;B`Ph1v)eDi^O&ft8Rs=^qi~u5mgKB-IKM`NYY;%}JEU@8RoY#fL60)(9tCk0 zIH%C}vEST%N{xD@qJ%N0mU5i#-W<2w7oFY-%+|dM`I|D?V*m>C)$paykhS*m^7$nr zwR@U>Jo9d@(qmT~FirPk_tP*_2Ou_S-Hm`b`uf&{Iq8ZbQ5nb|T9TxeMD9fjsdXW8 z_?g$QQ)8fZViqxJ-^asy2AC7aei@F3nNu@(U?(b)b$wM1YfptUVvj5M4^+t@!d*=m z{(~j+H>h0vCs)UhNq68$KY!iFY(ISZT*>#0KHE2{($!~tY+V|=w9Kn1b>tfd4RC_6 z7tqsyhcBWaReR@J2NwBB##O~T4N5lj+ zZ1vq=(Jx$@{35>oY4y|6xoYFU8tA+x;G z6Y&DgnnP@4Zj)(&&+TRNIV);Ap8u}6@~hts3NY{XYkR8%Uin9HC1dT2Rswg+$X?vD zx}5#Ef{;Z{a)QyR9gX;PuRW+;CXkRTdz@Ha4sO*YeI)$gVez35bxA2~ef><~=YH zVOoWrHz9`rskyGXf15H3`G>e@8paUWKs$CA=LtPoE;Ypp1aKjFzHTJ~I!VKGCib5& z2PwJ1M28)AS{zSRMpKa@V`xp7r&Y%#Im^(3FSRs-cLJ^8)r$r3d<@eSSyUy#Fc^cU z&HHYx`%J~#<^}jXA*#dKUpZnE=uJshHfTOmClXIma{I1LqM|~iS}gW-Zl?&BB>I|NFUo)SP&f1p_zgaaJK- zy`ApX+c_07ctv!c$<$TqAgwoD7~!+}$Q*z0CVKCq0W z1zNjGJl5hxc(5@aIY;ldQ51-~$pPMM)he9GJ~-Qm z&*-eNrESDHj#b>WSOQYxkeX85HZ@?KKK!yX|2A&hBcLj|7F-I_&s@bOefI`>A@CuksJ-Z3|Fgs6k=Ke27sjBUM= z2t_Unitb?WH1NA+!xJ}@f#Z%JxIb^n#5w)Cv=LHUz03*cDv(fZAW8*u4X0OzbfA6DungRZj~kbvF>`~ z&iD0Q@Wje@{(TmPij@A&gna2MHj@8|Qk(aw5*g8j;YM7m}vZf2s=i7TM~0J z(ztZ&(&+tHoSN9*I5kgOAWlt&l_W0nr)cl~A1DqG+WE1f|4CDeKk3y)d7QpoM^vtq zcKWy#kAG)7<8($to@qS~AVPVaOPbm#Pm1FZg-0 z*Ca0V*Zo+_st`G!>MIKcOpXm7Tbd$@`GvLw&=Low4BdjN`Z+t)lm_jw! zbDz9|e%2@pQLnepXY^)$o?r`_Spjlu*hKEzM+Fjn8a=NTDC5Cw!|*{wDi8yw`D#J_ zkSi`RGrIoA4Ud!Y@QCpb2m^_nM%SXgI z%Ud;5UmSt7!{ga~>1{DhSht9CL`Cee#)Ld!8A%UaGAG^;#s8j8@{fA;i?o^OU3mCx z-sU1@P3~;;`7b0WU?eC@3ly8~DWIbMP3KO~M5DdqDHnq4nfr6eSv?^leWEAnMhv*` zhd_!D0FGj@g>HxgJ@~6?{Qr(u%WtwAe-j*sAj*=JyfPq&euKU8iJ0Q_s;y3;wv!`# z`Sb`O@Aut@w=*x>P{XfzmQuCGo?P-%^Np)~U#U->_Zt8B6r+1(iA^f z&P0C?QDid^6Y*Vu&DYA(%g zOvbvGK+GxruWU8fx@Tv~Vf>EyD*pa@PsEP6uyYXRuT$%p5!ybS4q{(@fKNGO zIWzFk9dwY)NvI3`Hkg>p>$h>NlUY0%Wa4h>IfM#skuhoeyAnXj37?d=sn`eby&_hp^JvU5u03&&0L5>r>AyfhM zA@Ms~`C;NB^_@$rw$jGsVP9+PQoLCo-nwMu5%IxZas~PxyqWkh zC8RI(x)Hg!AXyrCk5kX#OtI_s!{JXZpBp=3iWVJgj5lZLe|wdcGvqoPuBOr&9x}6( zbd)uTy^ol(YhT@b|E=+xHQlIrD*5-SGmD6!@;rtbP&}&taIVFd25wkY#FJP~hP!*w z)pA@^6g4C)5?u-W=Ki;#bi&)b@KcrY4g%qs$#f{n2Z8 z3cWDuXyQv6U=$KRU`I-(UP@nO$ch?%Jt(&e&pRs&DBl&k0XT(8`&vfL1$!k0cdH?! zRTt^+e1bCpZIq1kZ4?Y6_Gq+o z!rM3TJE9RR_Qh8P8igXGIVi56)Fhu6H#wf&M+l$WOkkY)b`M8T4*2!b#V3eM zs?;9Y%=5ETH12Q+vCxxCyFe|IasL17R*Al3Cx`u$eJ9<3CA-H=-^?GDe8>DCPF7pD zaA03M!Pc;EMm7bx&y9b((D$-R_wI0WimmF?sxM9@yD=%@&fqKpqFD?b$vKt~+Wh5s z)2@DmE8d8=XVlVojfr+ZK~QiT@w!-!YyQaUKU#poKkus;eJQviZ@#sQGAZz+J@|5PK1F7K?f#zfCWHjeinm zwo#UNQEj7od?~ydS4s%Gu-veuxUkF2!{KOfdlVJ&TeS1lJAHL%RQyc&Thu5=EN0*NvyzwZ zOXM14HN>l5i$F7p*nhja4|-9XE=f4YQq93mLrdn2)k7abdb$P22t~)=I{$dxp8kXo z7P3@b+y4DKpPsRYzEQham3Jl6k6#2*>M<+DO~{|q4ECLTG4yl@89I#o15zbU55B0O z@kDbFsS&3?4q0R}4I@)KDRS(jUFc1;(&Al{cOb6-Q9IP?y_0Zx#C*r}X{NB!HR~ux zUy=~Srpa~O%jPP$xo=HRH`(h>av1#8z>tV15u>&o=;l*(N;l#YEV94Re#IwVF(S~8 zO)v`OJ9dBo z4i%NM1E~u4*v6(fL6(wWXwS|@q^%YnO9tDM*|{%mT6t^LKOOWG1yZHHOfQ)GA}SEc zNz5UslL-Z>UaC~Md&c0cp7m3}xkGYor(!IN={LLP6i(ENa4c$abHNB(IT>w-q4R5P z!tn>%2a#-+P@UahWW?!lBkqrPu(H%7{#GED3h8S&@8UyDcDL(TeK+%VcHe%^BU#4i zQ+4YhQ-}#Xo5U_?kqJ>F(-V+nrZ*TyEnRt+my94y~0>!>GXxH zM^)(@pwY^3Q#Xs7Ihp7dy^X5OzjjflM7U&g7t}pFVzg?4+ytfCn zMXmW;K6vZa+SlFD=G5oL8|`li&pf)t+1ah6vUycFa7KZQUuRFH1~FtBYM)- zA5*^S-jjR&q1PD0Jg;vFYg@yxPDzx7z5Y}s(O-Eo)F5(j3*{sD#d48GYkBu8?NL;Z zOOXM`PPqo3Yx2ZsXP~@f*F1HB``USVSdC9hzOQL#wr5Pl(^6fOp7M0!1e>|u@Z56w zGTk9l43_Xgxfps?}y_7okMB z>6|B2JWDW6$v=?+?{;}_>g$18WnSqd96@uf*(0gGK6inm8aL>djE3HDQ2TOKhpo`0 z+8=7p(n(Hk|A_KEbyV(*kQ;7=M7cfo8$t9UeoBUU-n>&>)3D7k;^(P6WLjFaNsC;c zDS=vgIrPM_Olh!>%n$@KRJt!mybJePL>>}#IbLPh*W6zk4~+B7!t;-&1hh~;6-dt!K}Ic{5T{AEi@;wbuT zB7|qXoR8Nmasjw+V*Xfhb&Om;z%s(c>Y_FD?kh$_!k^i7ohuGjM0Icf@?L~2O;`W3 zPBUSrOZKH5dt1M1_V#bOj=#i|Np|hAk|-R9nYX<5RO&YvcY1B`Oa8>3x{yEfI|uHR_tAAERsX}8Ra)k@JVx1N>`TLFJ1g7~)5 zSIC$!6}w?9(SKC?4pw0I&d;;Z-!gKGktskjWTDib^}Gn-=<@=;+G$a7kMo6QK))@q zv`3ae7OS;26a37`dMV9e_>*%ezjDRzxCN&6pr0XCkba$gQB-y^tc2PZ5aI(Sd?^yL-&F8Qi zPtNe+jBpLmZG>s!Wf^2+4yVG1*PgtD(0|VLXVeb|SyFbS|6oFOab$cQD$>+~5g=^u zS1*&R#co??toxOBPg4KAoUNhcG{g`TQe}q*UGEPD-3;XU>io3dfSHWE1GvH&;0Uvi zq?${N7r}pQiIaxi!;fubjy&!``xJZ1d~H!lt;BYo9bM$G?JKahfxbpa<2mG93c_$u z#MIK{fX1z6OTA_cc;g>0iFhcsWi$dqt0L(;tX8GIYMSN-#vd^no<~%XXY``q^fW#4 zSGXf8-|-?w`Qu(;K&nYyZma?0vwooKy5o6=`m(Ub5#q6!-+pH5t2SEu8+A?_F=p?=I~tf(#PPj(}|sK*H$iQAJEjd((g3v zZ@rWo<7jx|opo&OiC`&Nnmwb`aDtBMnYj5}~pytK7khuPM zm$nTtJVLGBUedY()t$+G&a3+Sm}lfKs(H9q^G-znuXKa4w- zJOy}pUyC4thm}*}VpIa&&_*mvr+>1nMNKHGfL-A@&s&Za^>ZWqW3uZE^5mmSB5Jy{H znGg{Dw149p_kG(<$yH%F-aHDz%&{#|2;W1Rfp0+6s((>8$CQI*y0ayCwzYNUR!N~| ztJ|y}G_-Mxw;@&d|6=UDquKob|Nq3MMq91DT5YvP?be9(YD-%!TCKfl)uvXgBxvbC zD2gJql&ZZqL5W(i_lVkp#0(+vyZU~AKA+$De9!y)JHPY%gL9E^&Xw!=e2m-u{;)9{ z|6L`$EijRpd^^Tli(7W`yiKU&mduq^Q4z6Fy@EAV+<2wv2ys`JdYvuikX5i6^`kRm?F#XqOSMKte@Ml_xVxJmC%{pXiw?C{0!uZ-h?^_o*el6*@G(93qps%iA2i!2=lZFylIuV<0?! zKZaqpGa_E%VP3V-FHZvIOMAamlR5Ir<^7&Tt`~=AuGoGIk*Qs^PJheqHMOhpj}JHe zO`#WtCtnIlR$Hx9Ys2erdh7>z=N(i>j&VQ2FSRMB40Xb~_B-Nh+IG9!=O!#IPXvpM zGO~_eA1Mdd9tsrQ>}wraFMwqio|0aiapQaSe_7CrYzk<@7>Dq$n$esS#oDrmBOret zI4wl&4%X$(5;aoR@VF6-I(O)baAZXEfmKp+z^EAuXN2QS36;-fW?F9H%MWyH!AC9| zXM`AmRzWipbdHUvP&W@eDHde@ZXm+d*sS3Xa!0HjTlg;*>E}Kg17R7UOxq@>Gy8RS@#g|zfX^~pitxT3lMR_vj= z$dFj2QEmZut z$KE*5`#ayuv94zXWmf&It5$-}yPJ(~ISwu${4e&eiJ;}n1g&G|-@}sj-%;)N^m}wM zBdW9z*)gRm-=cPoUwhTDRoiDZ##pwh#gSmBGfeX1>$yNx`$+rFhsbl|ZxdOuoqHGj z99#AjHuOr=kg`VRLcW?cRgO@K({UPh7V;XBdic^`b~ZDx)D8& z*^^E?L{9lAQsp~6M9TA1M$786B(Q#1ns_9LHEK_&ExrRR_xAA7oiIM3vac~6GWT8H zsZM(T*M{O%pq&@dM+?#ih0w)_{NB0Ct2?>MJNLQ4T9;pI0_x!iU&$G*CdR+Dj033= z+*NgAqYytCp+B3z+1u$%c3o=ebhq<&T$lrQw)FJPG(YX~;p0bjGOAO3ucu8TleF~9 zBnvN~<;x*&=kr9C&TF9iGERfc>uQYt(8ekEnW_#Hx8BdOKK{NecJ^V2nKC`J^}epm z50DCT;5GD6(UegAV5-E3OrLkrzLTW~B9|7L6Jh|qN(O62%R|_bZ{P&A8jeW*my1<^ z_#?gyR69Nw%l_)QxmeO0OmJly;IvBbeS0NTB=_MuT;xS`SM%?NIZ2RRuM>BrV^5=< z)ozM6bzze&4Z>V1L?u@`rja&$~DO%HnJV*Sv36k}+j?d{Ugkx>S)7vK@iU+Ab z!KnB2li}$gHQ>kC>X6Y&Wr6~_d}jWr;}qpF;_`nvjPC#4^*x#&&%M=&xWJlrr%E60 zV-6OYA20G*yp&==_aI`>R%~YOO$KTgl+4l=uk+|9UDi8mwfv~4vph?$VzaVsW3aKT zs&}1X_Ea<8;K+!(ot1=!AY~WZDh|M>!(eYHDp|*Xd7uzYNeapTMO&luq@ZgKe)!kMc31+7_`!Jt0Y15+8;-CK8 zD$U{InYWTFH+H8_c^LaV@|0GdbFBG)u;l+!ZYYHCRdxTY9)yFm+RYr+GoRltIC&|) zjHtrwss^m`EgaPrwQqX{2)VBn^|iUZ_K%GK2l@waxf{V9s*jH0|M-a6-OKe)%Vs}n zO?zo2V(O#=C%mtJPY)$kb-5``K@*LU_e&$|t%2?V83v@XUQ2URBM_uxdmO+Sh zt48c;VjF}WH0m)!Ux&;mzq!kE^@JA9iOvO~NU6IZTs%$;r0+|oQ9JjuV6#!GfjWQ3 zjU(@GK6e172%Ispla%RAs382QHObvhTb^43VRK7@4lk&Ogat9xbMi%rosPm_tQ@66 z1=yRAi_&V5xfn~m-I5^I?w+Y3w-9aW6JgZ$Nk1v0ZD{M#8rcv!o>&;vLqQ+FfASDB zTG<2T2zQ<@>`NyoAA=)cF-Uthj^#B4TffGf^Xi**vLOX3`icHOq3bNWyN%ULCMsl} z5Y;B3H?hk{x$k{5`82+5=2}`s*40Mu|FG6SmK`g;Cp*(--&Ij;&WrlS=yH@xT(jjy zX>)C07*(4JVPrC!c?5ZbOtGm5E(|ixsTyN^{FoX;W!StUDAchIaizagp}rw(j18V& zed_zB$-Y^*F%wa{fe#)()kkuGgBbR`yC@5XQXxkI8~_$Z4ZYJxZztROw=Zk=@^FxtC%;FePM`rslb51|R*a>z#x0*JK{C9UUL0Uap}o`QnMHSFj8<1x`qhL<9HSGpEt(L!mN#*`^QDZ;wkLaR-(m0L-9jc4kJL85 zc_r2glGWFX5wC-{QaOddOeG~uR)L#%^6EM5yZQO=$-1K-8`5WWVn5ug-GA?Pe4M;+ z)bB_TyaG6zA#<0;ey=r>+yqYLlw5Xgf1c+4acMMcV)V?TyV-SEBXSQ^+$kLzco=)< z%ivY;^&c+J9+?+;DNCo`dUNRYu84#^=dd>?JbaON3Q`$dZ`APt5;+r&$fL26u=!5>`4{8#fw*Fl0SurQPtP>o%S=VA>USF z$-E zzi~6^Tc{J-kQZVN)Scw6Y%evIy(0=t#L*DX%9OL}3%CT48vVPjluPD!uI`MdGs){r zhP~iI+Md+0lR84*J|7lFJK9|{IKS6p{ZPV_zL^iURva4Z-Ijt(lr(R12`F<9W-J44 zUBp_gwgN{#PZa$@^Z_@;Ne{o`FM^_`FT-u0gV9uZUBjLjTKpG8OdKO5f7_)k`h{$z2wR(6U2K_8_^-d(WpV-|I>d$WsMM<3*Q@! zoHT)#&(lC(H)+2=@DkK@5kNlZWo^c9B^w3-w&R7B_HVG#UfEK|op|9l=|816lp?7R zG$(Fl^QEGvQSs44&zZ$Mkn_BL$fvpX-A56Qm_Hk2b{F#VgyPG&ULJ$77D*e)HZ`Oew%v|rR=KrSV!xYR zuIu||Z|d@#%ZI;etEoe)SSX^OpSdpTYR;$)7*$Dz%;jLbZDS?#Z-X??MXP9ERQ5GD zgBx1x59B*yO7JH9rEKS-L_RKjwa--FI3EP%M%gsbNj%q_`GM52-G69doU%gv5j7r( zp*hQLE3SSQB&^BW)%7S(y!+P=oGEYPRoa_5z?{{M)mfz;a+ZF@^o$UwAon!j2#Jpj zc}MN;aoP;eJK*xG+6pCI#r%tjPNqD12jl?`u*PXjtaq^4&`1U}255 zZ9msU!=FRVCi(y)J4HKkT{^}Qoc@~s@u{4f8w^8@S8fS-`a|a+swM3=#c=Ft!PGca zR`#?lnOX*W7~%coG;ri;lqsAW4_^$Cn%ZN_(uQ-~KekJKZN0Y;dSqY(_julg;Tey< zQLrjpAiAU^T&N*2;_$D&<0u*eR6QJ@#l~VLwEeP`cO?1ZiHudU6~8oy#YVQEKzHN$ zYs&N*wi}Ug(P&2o$Y~{;Mxi&*sq@)M!M&*x<2#_+%hnR%Uw4j>QoR1|k~IIo=QmDP z>y8tAM%~;_aWMoQ86S0 zN=)a!9y~>KJf6qFY=PzMV?-qo+aK$ea@ZG$`Q&rMqLCM?$;?DgpOwMK{)APqg|dXvZJ zgGOmP(-^N68{%9yU7IY}&Ay`|kF4zG%jRl#B2_kx58>If@u6N20xfr*`*d#>s!7cW zks&V2h{2vv80kl8?P_VspK1GlvXiI3sngG>Yq~2qQPB5lmL&UUn5bq$yhrN< zzq|MhV)jenTz?tDr17`xvX|qy)pfWSYXZ?i#u$`Y>eiX*lCLQUg(K~qT*w(+8E)8K z1@g!Ff&Q83{La>ZtqG-}O{{XgxZrNyf3pCn@#b&dQ_b&;L%<^46b<{6U%nvx#peQ3 zWAY%!5qLJmJu8M!$wTeOzDB;>MXZkz7eRRg_KWjJSx@^->4Nq&Q5&5DZ~2Zp)%O^W zMP4y_k|-ViyC(e~@H`LZ@2NhTbUxy-Hkrx_UR`HzE+jDBH($jdBL5~^yU^y&xtYk0 zu?#(F{iEc$&e)M)hPn-MdE{fv@$FF$2Ur%HH_sa^nQ># z#Z*{=W8`%4ShD1sL_u|XRj(|TL}bkr5G;aq=qN9cjJ}`Lpa_duBD@k_ecaf!Lp$D# z_a-`)9FP}0&aAK9igqEk z&3vz4M31N8x0(yX>pBk}*`8B4s$#ERe^ZF4a#(&yCZn|9zJeMoeC7*nKkLdCRE`p) zHDxQXIB%tzGkQi?zF@ot2xwmV8bmS1(1(GUFU*gJ%6??9YG6G0N&_XjP%-_|Exk|u zA{2)2bvH9g7+PRfPxxT70q%yND%rvwEKuIVj$GaBKN!+aXWM(xay#S}t}qN14?APi zvC?Ik>TbqJ7rk~Xl=S7G?2|_wy!?j?+x=*qGzj;2AY-z6&s*wwKz^Y4`U<10P4K|g zoG*&AuZ2pi%PrF1ZY~KA%z)l-bCb@|Uj{8F2PE!#q5CGsKN6CC8$i#cUOAw41N)S* z4P3)tjjG4kNgC^#!fd<`SOnHQBBnN9@Tio~IMx;8J@LvUijeEj+@)Hi4D6{!`on5P zO$SgcGj1&um4*Hur8N>nnkwkayqa1byC$lbs(*rbyyb+^u^rhD-L=e)0h1YDB#XKz zq6pA3GY*elIoD^Y8J~Ys?p?*`CZtUrKP)=8TzzFsR{#8BLz`uK>aHhzroO&=7v#^8 zBZkm#+qla!G;QhIg9Vry8UYw%nlt-J%uyhEnXBjVSo&M7K*z^RP;}rF!Ob`G3tnz6 zRrIKDzdfMF>J&)Wb_gZ4Cjv7g?JFf#E$MH&;T_0|Ubx7DOE6F7YcxOc8Eb#(OPPLt zgsWe)gj>3s%@ir5L5zjrtO?JR?_e1}XS2I;ai6uAy#41k$hykj4e9eEJlP8$m(In~ zqjNf*gVif6*O3!>^A&@n+GxY=JX=uvABt`LEOGAMchxoq$!rD2*i#X9&HA1=CH6pu zvt4V)1rGVy>l;^tDf){Vh8pypKPpp)V2=rhI>)!cDveDlGLqpI*E2c@U57V1%*8d5 zl&h&K%W1cU!wh2j?(DDJ8n$|Q*t3r&0FwlQq5V418Wxo*kla>x3rzQ`wAM>(?K9YZ3oIzc~B@73dl{AW1$U>n$xsp0u83GkSZ3Ov(X;8w5E+aXIo{KFy{s zgRAyqAO@%Q6k|7QjnN&e-z@82zO-Y>OJo*(PP@G=|}(v6#Y}!4lwFKS-YgKm>9X|8yJ;gRr;h z|4~4DD<3xlwSGnpE|Xv0;F~ds^!qD~*b?Bx$P{boVSwJu$i+~5RX{S*AZIEHA%?ik zQ>5!nGCypqwOf5L5)~TNV*k3J@blM|a!GvMmq54;dN&GIy3=uXQ<2F{x}Z@|#Eeea zsi7dJHL&ei=EbeREGe^^gU1ZKDxML)cj|kL_MhYhjm|#{?vfWud~g4pJN$^#o}=Sc zi6Z?K@u{Ikc$D%I9)9^Wg`7u&8W=BfHS!w_HeGK6eF18+E2Gw!>60A6t1pDQdkUX& zH=iC20$F~`JEoHqWx3}?B(QeNkAwj1WLfu|-<0Ul=weKV)*1Jo~RE;*q$@V+JF!nenERu;Q9W(8TOUzA9j(OPB6oCa_)xZ3Qrip^M|Ols{qVRan;}&*K+vKQnsz>Wf3nBD6kjDs&JXQi+uc%@H@F z_UURxn0>Uk+$@Pv{`_sbk9nzT3*+jDT$qSz&Nst5jZjl?J)kbK2KmI=8Uc1$0`)TCJ-*?14M@+X)u-!uvw*_Z*!w`aWt5H{{w^ zFcuXlQu?Rbh(j7O;wE`&!Ld>_ZwJeo^NEq(U!W}RRc99=ZG0vj-`r@EKjzFIqRF7s zd>%HR$1aJjwXgf0%J57Ly~~j6Uz52a7a`U`i#cV zSRSp&fX^ax&mcQJPO;TsAM&k3^}Xg8%;o2)g1_==rz1i05>76bKO^dzxUNu~)^r+;7u0;yA> zpD8f|D?A~bOZKouMeu^=R>J0MKCCc#;7F*yNlR$0?Ojvq}SqX;X+xG}m$6|9&`(XC@>M@CDQY)0L2&c?%^SO{n|_T_d}FGL<`E8l_NzioLs zNr>K>q3mmrC@MJR{U8weBS~E6Vpj7D%40XeU(ibNDNMk8obXhb>zJdv zpcDC_JZJ=z5FzMH14Y<-+m8%IKW{cvun`ORe4RT`N$iA{i^}d%_N{w)j=`64%5o5>*%GjV`ep&%b;(st&>)R`Gs4@e+Nzazv}D&nNU(Am=( zW)z-q7#sqO*POccgO>Q4ihT<1|1uZGN~d;yoR=W_$R9hf`Y_8?fSY-hZafbm7E>iC z;DqnVzg*0kc@qRtcDxkVEWrH}{b_~KAaTsUAwM9*6PR=V;P)IemkH3x<@=~|Yf#B3 z)4PWd-6*h(2;T^&x$?~5>B%G2SWsf`r1BYJLIVbY)e6WF%<`>v=^HQ4LmG?4SZ>vd zFA#27`d0|ozLc?A;4zAu^`PmwDrDOo(7wX@+KPl*5daJarp3pZfsS&nR?pRDV|IGT z5&!#R-s6l<^Y+b*ZbFr^9gycj^u#v%#26NrPk=Y!Kcd=*I-U7VxvXlw+#ik}}4sD%j40ftC+ zuOB)3T3!*ATwwy8xBaJFs|+o*9`E~n@;@1z?llS4iy7V_(W z4gF>NAgNL^4}bm34WeQ{_$R zDW4OuA&qu{b=`atJn5x)6ZS!{+*}|R7rIzKF7Z2MZ0(Cq7ESiq^p))*@-L+^g+WZ1 z^#eD%+O}nLN`n8Jn5z08S=KNMPPva~_ob0pg1y%JV!Mtddf$ZT@8=g59qa68SPdzR zOKg&9Jp-%pV-rHta!Vam2|B){<}*Ly%ixN0>n9zok2GHk+-W}B z{zAL4s?mx%enJ4jW8C!N{ZAXI!jPjQT;Wb_~E>c=*bOVNA*q*_;Uj(Tc!#oU3 z%9dV5#CQDkN$u-JImAYGH$-ee2Xm?x?>u_984j{K1;043moj;Cah(>lZzWiDzzkNNs> z*VW+~NaZEY%q~_GSKFxaaii~*K^4R1-pMtveo6di8Hj|N>O~yz&if@o0@v;b``FS~FPd*}+1pfM|^hrXV}FzU9?rXDy|ZI8cBn0G=K%f=cm$kn8vpy>icB?NhRSKBw<3uhw#Mx@4(Pxe4 zChP76Jtb_@;qoN)$QPNu17TOLr9Lnc`ck)dC$YljdwoYvV|mrf2}ligvUGVVIV>^eX`*TA?d-O8eG|VgaRlC;? zB%0@<-R#~f`Q8j3^(MpU5xd~)m+BlF{UkzbHOHEY#&eFR=d zt?LI)v=F?DuNxcu%sdi@1oB!ses&oDv zClFfv%|N>s6-vbFcfUKE$?Z)}QlADoDnC9Qz8nAVCQ#GgJ-+wl#amllPU~vG$_5jMB(@Nwy&7VSS_7+Z+Dj^=$E?`19u_wO{mq z)yw}VKNeT1tna7u%X!ux@O_T)_j^h$m>pXabeR%_=cB&}Iex5H%^Ncl4w!f4^u4fh zV?yF`${^S_qb*Xw=8Kb{@G|q}2%V}RfS8Z965PFUFq*$hd=VnlRCLJZa!%iH-80eXa9MjC0uL- zh!!jlg}$INmlJ$i^bnbM(1rxA@1eIImUKi(fCq$5vcJA(2!91dXvJ%0D!Q+iEBeH= zUjiEL`B4Sm8Oo+LHgb(WjjlcrLCS?+wf>7++>*^^J7Z8^8PDXHoy~8q9-_VF zV!MD?d0dxuVM%&T6@+@lvA;lr8vXG&oJ6vx1%Mh=;%*iQ6=EGks@&oT=E99$LgX?s zv5f-F{F^C;Sx&$%?EC3BVeO+GN25AntI-HB@1zB6msWuhO1l9M05+hfm(;KBMd1g^u@UCNm6iOoH&2L)?%Dg=UiYXa@~nsWW^ zUydt08^ITD9lr~aHO?W$av<~?jiEgrT2CmkVq~|F#aagFB#|9dIBhJAPyp%g#d9S8 zY0H@>JfcZ63Z(Qj#ZU@uZZD%~q3Z)x6F|=@t0y4+bUlL>O0!o0&X5MWmnUg7km@7= zU|DMJHsAj5KJWkemC+fu2|^i)L{XAvX& zm4u8A{hT&{Q$fB=dmTL}%^G-qLlR?#C0_Z#{h}`SDcjf7&1+D-2{n}Ut{~4FujxG7 zy?qgrzakM`fN1jLM3!FdHry{}XuY8U#(uL@FpHmeie6{c5XU_zDUZMNQY-~kj3u4~ z`12R!muek19e}Y{x6e5|aGh7`V|x7@q(3{fR`%3K@WN7ku$Z_17=iTrJRYWCXUU0eu|h5_KqH$o zRy$KZrhYTvr4P-Xcv^V`=iy=3sg(ImsY)5(u68tA9#%)T5$S+a`$WLf z9x8Om?HAPOl=&YQ?zsX`lQ^RJTY)%N%ku2;k@Zl&!t;Y?GuD@zz$ih^z@Nnmz&A7J zsuj_LXR2+)P>nuJ<}|PLz60WfvwM52{VGj!X~4@rYLt1A*l7;L=}kIqDEE1I!|4Wz zsc%HaKxbVLjt&vxuS^aBN=49X3WROn4f@SD1Hu{~O;ui;1hVe`ybMOrwg|_!A)k4j z40Wc(UA*6)-e=Vhdy*hjZ^(;kPa2gm8!X8y(2D3y{K7Ho#EQ-0&HeU-%;Mi!6hwN# zc`HVOH+e?ZC)~#vUlKZWg2Tvuph*iVi0Rq#ry3-%)uA}OItGQB)I>`S1@HS z*9N(^uQPI|XWk#HCT(HD_x}i%+_Wz1 z10H)jDQ{BmdgF+tbv>(oRCtB@geru;t(;7H{qg^bxQg-d0OA@@Z{DFaz9dg2Xztn; zE)A#;8QB&s2=6~>wb2yKmR;n+T>GM=_|Hp?ohO;{M`KBjEp@C>gC(_*6#;%&K~Zlu z(XDL$(frSmV?}1;x_qCVUtH7)1LLk_I)y%f=!X)|pYD_8pj*p)It#pv;d%JcZR#Vn zj-oBn4slLc@rV2EC5n5^6q{?NaASS_41>}cG^K%-*3)I04tL{`C|`Q@Yxv4jT8Tjp zO?z2ZjxDf4gin>*b&u9`u#!i!#~nf-V)v#{^hecg6@O$F_dUSFJ?ERw>g$N(vB!sN zwa2N%p*r|XL`Lyec9TZcyyI)1b_zalR(EzT5qfu7hDs+G4nK$j0WH`E<*g5<&FZX#2w``98t> zJvU~DOjkiRV$118{HHI_gzGr=VT!kl5jO2UKy}9sAuDv;>=w_xqHef+5 z+9}4Z3&JQX9DjVY1nHldA9pM8ND@3`20dG;y*+9^K4B%C0>v{EHue?|{y=^V!JcT4 zc(=aRF}AB2kcaX0lanvT((wBMhhNM@)PgOv$@{75}JPhHuuKeIwl9; z0*uymvfhm;>}Lx%_0?Tq(@M2vaRt4OsiirjTkswMXMBEMU{4C%3D|PCzJ-{n1IvX5Bw_m+KR!&c1ggm(!-4jWJ3O_hUyvyrcaV3mS){U|VK3PfC-MK^}oUyzIBE#bt8f%_ym51C8i1Fkt?%0re9-vEKt zn|!NyjU0bXY>mcxBxCAx5KuY+VBBg3D0z1(byv5oVgDDcilQq!?!6jAPy!8VPZYAH zb<#g*+U)F-bOvg5BG`m31pAGGvH5T+Oa3kclf0ll;SA7g2!OFU zcTxe$4FQ1pHIR-`koxN{{Mt;FV0P3k@J^E!}llN z=KlGR>%;V^GGTgY*Y8IiYE zs(U8*l`u}wk-lzo^H@dr;B;u=4jQFJNqc>&1k<%v$867W8t(I+HY%==SRX=Rt&r6* zWZYF7gRgDt8l6S-f1&0Ec{TxVq5@(dc0R8_?=W#Y;BrJRP4XXW>vTpui)aoa(x zd~Vd7!Lft# z=yfK`B=3JVF4*omurP?6tbygv0}q$_-V?R!x^lwbnf-VPy;tmGTx+jLtr`Xy$=s*Z z#axtZCZs}pe&#&am`IPkH&Z<$m?ESZDpL$+Sdc)f?s{E-aVTLX`fQ<3$A09$fPS-l zuI4%WL}*^gT;Tn&q2LY*sMeDzslD^9Hj?CB%?Pobon(}s^*bz2sz7l(tA6*6MISNS z{n>ic(>EVs<16pRwjaS!L9IK_{Bnhy&UkLdQpQucr3$R2|2~b%iW>%K&f`St=KQ{n z+vcA+`GoEJ=5i3}13*05*^qUSe5CAyE#BjnW&I_}^@vAVSSaWXYlr@v!TK1ytWdvR zt~u9Ip-8U!Hz}omxy`f7tbxtiOg)MyQ!@082~=gwt!pi*+9*HNUTkcw*(5q+8RGGP zj=a$r{w8vz-;x>t$MIxxkuml4K`Nt$ZGuP!}a z`(&dw$SgE8i8OiYe#?yvy)$;a!X!r~aIAlDbwimoS-RLOqT05!G<%;ZGD*YVTB`iqQ_rYk~=LM-~9dtoa*)9CM_f&(vcbV^NGr_pxUUZ+lXe>EcrzXrFWE|AwuJ_&XvrVLFo8g3HA=c)Q38XJMyRhvPpZ-*@L z=l`)wdi>ugR~Yimd$LQ4`|-@@tG#%rxXIepS4yAm3B@uq{x&xnav_uh?D#)hA;C|FG{(>Zcw3VJuLsW)OW~!sXhW#X@{U zc0riX%ak1{qIYj?&?2~Yf%I|hCLmT5s_P3LCh_CePNG>w$59=oV%1Apc5m>k#SG|o z%3*IOd7m(LEM2{-@|RUoME3`1a9hiRGj#vuSnxvKP zzsaX$Z|&D%D4@%Y-<}q%of3PnuPbtKvUrJ=CwM?}Quv(mMI>4NFO8=#P7HdN@rnEwlqQ8W#T3P0$v=foG z=DXGD0}ndM3t0mJvVW;05hN+w8tnQ%OcImG8Ij>!BFNJ?CSk`3(OmOe=ISGVam0K)DR}7v{5u*9DR=Uvwf0mgW1s#xg=QqDUSEbDbyJ z{L3;|>I2u4SS&SaDRUCH)^bmyZN`#-kf*4*c0Wn{;_RJ$jU#nk{ylqcaL9!MmzaR2 zq|tGudn4Gx>y9V0KNEyk*7ej`K9z5%Or*#Yw zO4hm-+%U*GOStLV+L(=xlJT}NlDuv&PafJ13lw(Q<1lTT>JQ}GxbF82vaC=@iF9nX7P+aq8bBPdU$ z9$ZUnrO=sw-U0-20=_n*KlvXNZ{#zdp3clMj0NaeQybV$Zx3BWFs-BOwb|MX$L_z# z@@%}KdbQjn;mHlyV*Jn*qmPabMUme{1#A1R`OUKJT;%SKd!0B?yi_j5^7`j#0)Fns zP6uT121D#NT{!-E&G+Lv_UhlZy-#xS$bDqdy*fQF%d(w5^N-@Tq_8;CqfCx8!B$xKlc@ki*v@?`ucN)ty|Cemz zjJOKIh22zd)le*{8Xxw34dxIo>M6*Lp*_w6mAeGRaZ>I1k>l;M^%KuyDz3^4W8xkC z%bERSJ|36Qkce>0efEOB#f>I@Ok;`Fne=2s@MY0NmCQ#Al~Cy=QZXSFSKA}^qH(Zh zbh}5^?}K92QUFg|yen2V!qFleJ^Xm<;2XqLn{;n0Z}PNKy-chxxK@c{4BuQnWkD6Z zm6VZHZx+IiKT}igS*vn}8>sb;uD~NssVj5yW5w3gxnGBTz)TE{fisb7p*YM{oZrz#?Vk9cH^A?6#>TEg?Ce%MTBpFm7Ez@EjrAMNgI3$q)m*ITVY8#E8p# z;=V@Q=_3jh1VFE82l@(j74Tk@ccv3mF(pG@jdrN6@9!6Vh0ULp2ZW-vm3dhe793c9 z{64Zd*;{?u&|D3=p8eQ9fV?1@^mISLO$Hado>4U2WfH!X4F-Uv@$ipkv}@f00>>ZF zPTXd0Lz&Gg2j73lI;OVts^487uDnquC!A5oA?gX=&7@sF%8I!cw7^Ku;P4?cqv(uT ziWmI9h^58o|00$g{y&H%tN%?b{Shq6Q{Hew@4a|-2?O)Un_apZ#ZeGPNdrzshXA8;=? z^SUc&bd@i9!ERL;!KP63kG6fe{i7Iv-$2Zy(I8*W#jT7XuWXpd#&}6^gETsk6KLMe z86wg<<-^mrlX2%j-WQmBXXQaUV7+7|?hQI7G6NVZTk?dhp4ZjF)7VkS(ZVCZ@dsEH zv!3Y^Qgo*YyS-s44`GhdJkPp^)4lt{ZqATm8?h61z>5fsdryh9`4+b&01XG;Y&Q?~u`*b- zf9SYBLTB`RLBa1kVEqkKPceGPX$l84ER?aWa^9pNv^h;8!fLcf9w%FL88hk38#r4U zXir$VEWv=zJIqR)<9??6O;#*<4~ zVh}2NpzG8nSw}SX2VO|BH$;+6s6ugNB&padt@d%|KY!Vur{Fhv4%XVR(TG7?s)-a?l0T*MA1_TS3C2DZN{~K zh!(PMh2^9{y$_iWdwYflC39`y`a{|pN1u1vxeU-cf7VTVnO$V@V^%CZFwHns@iZTV z>XJK$keAmogdiB?5M|HqXq;pr{^{*30A#osi4`pF=;UA#oKs6@5>%ZY$2*Y*h|=Te z>p4~Y5qc5IB06-}w>%C^=MR_ei!+7%k&FB4gyh_AeLV}U1#79rLl zzarP7*Ewck4vQ=UEV4jf6iYbg4H1qfs-oX_c~H~*N4GoEU@Mr!gm_l0DZ&x+Y5IMf zzs=n!_`TeqzMq&ZA-*|E9y@4ZzONkZV zEHr~F@&h<_K#}%^1FMh;%%kiL%;qfi`_^Vla*3v9hN)wX07Bnc;37^7lSH;fMT?nv7+>c~PSF}veAd{@+HF)Vo9y$b zaO)&*Oj(hl*Wn%H@Pqy1t9rw?gunm#R<9l;P-32Y?B5S_yt&4AL4&Id?bmYUrtiQ$ zTtlNyH6SQmKhXoDA9u`3xkT{+461I|`IE*@r%8Ck$|2#skAvK3_y6Hv#ld5q%#p{@ zOO>D0FrcmyO26IycXY-$0@S|t?~gM;wIfh`k8@6>-TDC&iDWUsRT&T;AFei;cM^pC z#gZBTsDc_RMY?5UDgf-;y+Is*s75?kGp?45aq=SM| zq@&c(L@83DA|0gnCOvcn0j2jM5Jb?3^xmWhO6UQR-lY>tXrTm>yZo1P_TFdjId|^d zVTLlZ2AHhOTHpG9&-=V74Zw^PF30`@eO*Bsh$Z^1MY4+KmFZ?6Y@t$}N1LbtExcOr z)**nuvZQ~rk*DHuzvN+6Gp$l^?pah_InN3t6HL{K0Nx{WEa4){%(MTbj0lO~vVjce zQw?4GxkrX*s~)V#iYD^|y@QdiTWc}ItcAGIWDEWzxtAge-L2~pP?9Hdm}k~xD&Ikz z4B0ovdM-|`n6ccStXf3E#un+4NQ0RHOV#{qny*;uuTDH>VPve{;9x@K+uDu|cP0W( zv-h<1Ulo;cEf}hOF)d~^`j@9la_2kSa9Zk5{o$AcjJ*Dk%GX?H{9TaD_RZ+i`=^|o zT-cT9dn<4h|-S&OmY z#Lp4M)+eu+pEzAaq4qw6T~MA2X_OXtDKWeGKSSK_(fKQ5T8wN*8x081DI$=7h z3Y5v2^ebL3@LT#ik!>}twap$xom=@kSq0iyZyIY;TMtnm#O1%_R9Iue)FXCeQ0h9| zCHXhcZcM;p=+xSY-t0@!FjpL3r|3yOTxk>jGR!$?mmifd)pk-)^YSp%4N`gq%l_2y zZqc*_zW(4g68@XKwPypTehJ0@xL&_#BY?g8cbi?YffPdo?%S;Mie2uLS3Kc2z3AZY zW(=(X#~@ON+d3GxoKKxOB9}GAuEk%gQDQde?LmXz)9*g*tnFF1g=UO5@3-Yz+HN0| zVT@Op&VUW}DSb+4>e?d#wdE}yH{pR=>tv~T5zzCW;ti4V`bbqpcV=yQSr|*`_SQN| z&Zx0%f!J5tLYiQBS2QMrF-Pvcy^F=(atF3Sc<<^F$2C&*uu-MPS+w^cO}6WAC1&?y zzCND2<(D`2ehJOHuscy@isqBONL7fzt-q&W`99cxmGe>&meS05*B{Cn4PRF zrUaDZ8NX&sV^40%bk76LJ~j?%_~C^cnK1lG2;+K-2`4oo#MXzTsYIFY(it7I zNc7uMtN;c6Ow&cI9gbfgm8 z>xlKl(k$~EQhXdT(C`5@f9f0F+A+(tC$ix7c17an)f6d-;3mFgkoQ6u+UM|NR`Cyg zrWAW8{|bK&T|pZ7cxpgJwnXIA5zyA(;C~*u<9DLo)C`VGblKQF3FvkA=5$Zvks+RD zI~Jda9yU#yn&h`Ybzf4I_+INsj0@f8-``uUZg|PD@Mvny_&|jaLt5t&RKLCM_`a0B z4&M@s=wRS2_L<}WLJ|R0dqM1&aAU(UO`e%tvYx%JB^Mzk1{SWx{z#C>8ua79= z`FqZZmvRW!cLTuAS%C(fwMNJrVm;sF59fMjp04&i;4MF)gsOM!Xa;!vlKWbK%Fn33 z`bpKe|HpWsY4%NUl7k$D3TiOPxn}hxEl~O>O$w#mi}XbT<_}YN z2+ZQwHU09%m%t8Gx7bVUhmDuva4`vrCnmDM3{Q?VexsKfe9eqGjph2as!l?C8zgMG znGnjb#JeJ{MF+aXH!Kf(>zcGpG6Wn>hbXOSb}L}>djm~(~_yNj)$8-Q|7Jf z=wgCQ)NPvTbYl5iIZ~1Ng!g;Inq3Z){uI0@jT0$7fz}R0)R5PE+ z))nbQ{hfUq!axbd3i)9&6)Yhv_ox>Ai2x>wzZrP1`hQK~{xdaVDf-u9MU!gH``jkd z;m0WS%*ipFzN<%=;2v4e=!=d!0sJGH9pz(+NEoN?4TEwEfMgVVpK#_(U3m`hhp+d5 zLEKI`Fn&`DB?6OC13P{dkqZ{U;={*hPu>bxLyVnYo#$5HgPi30XtvX!=TQ5jnCJfk z2L|A-&+flsUefgAvnBr6Tdehb<@Cg1-4S_c*0oypX^0wPx62NK9->@9u=&aHwq+*@ zBOrpaM|BR=r6{&CQY*7wP;GHI#EHewJY0{;=wR&j_C8QL7txXstF2SNBNEcyI#f2C z$Jb@Qs>5wAj4zlG97^Py66#6e);+`2=s z%rA_zHB>G0R#IgHmp*xGg(X)Hni3@u7G8LOt&%_C7}C1(`XQYIbB(hK5CmQ`LfH0X zt90M-YSSN?$oLMD<08Q`df1#0@LOq0E{U3L@SG7JX+*s-hx$Z(W$p-NY zi>%{uOFA_48YuoB&hyf|lciGU7?G%?nC6K04XKwcpR8mT8Hr$Gk2rx>)SQ{sGJHwW zmI$2127eJ26($zKVtg36XX#a@OvBcgT@m|%KHA?hn7w$4skg=)3v|rwRYA)S5W`Sxu!9VCa%gyNA zpwWH(j_*6WUku+-J|URiVwNX|%&xWjX#Q$`L2&MWV4K7WU$2Eb&{Pd}@)96<=9irY zX3M%R`u&}MM1{$xGO4}9eGfAWn5Z_7!+JjfrLP4`i?nAr>|M^J0Q}0`P8tw0?6rVx{1$WpAuifpsumbM zUaV7!WW?cHJ7~P;LHDzJvDde5zUInkpxGvAd++%QAHuP8o%l9NxUw&6EhGzci-MY- zzoqRZ$z+av|LvfktBuRv)q8%_S%OPj)v}En%^cE`8?QwgB2hG}^2A_Y1^xUb_a`Jr zfAS2H6GFq?MC5BprDo8%48>!QLj!N|Kg_pZ?_Wy1mpU^4zT$yCEeLl#UC$UrV3G9KLEcPPL(a;s4Z~kKz#Guxao;M)crqjE;^S1(;xpQ%;i1lOLZa| zv=8;8iKeQZW&)VHxHSMp*aQKF5b{{yQ*W0SD3KJni0VyR&m$bol0E>GCC?GSMQlZ; z1J_(M@LfyjeSEM%37OyRc;FUV@zY>C(CrFfJM)#YO-ueO)A{e8_f?6wSkXUj?(0i! zj=t8dp=VnPxZXYGK?$Xu5{HApRwH*Ad;0--ofKxYtb0F=O(2~>Q z{Khl^prQ8^X=U8nX$?}U6)xi{D7XFAD@_2UEETR56Gi@+kG_w#kDg_-f%X(VVH`Lr zk^mP54WQ#)CGC{F+SR4b-Qv=lP`92}gykqVH z-L;l-`+aEQS;-o3Gi*Sv3c5?*$+$BtFJWw+vzK=L^NJ_V@#_2Y?PTxRl^S_^U``6v8Gk3J} zXhjtY4OTP`(ap#A2`)(dZ>bVAh84=u>0L{i82L5~tNu)^Y$Y~g z<5m<_OPed}-b#@x0Qc81=+s9hTX(E-1~mW*ynr1JwvF*+oi~7u2%5ecFtvG*3S5C@ z{xopiykf2bj%b$Y_iLp%n3nHnvI@-GrBAB!-A9`d0ucm=rfRjqFy?7zn(}J`a1nuF z{Mvc;PotM4oyW>UvQ|uJ`5sB-2opuTJYHs&5dA3h0lLs&!brwfGV^YR|MkwX%*aF8 ziqvnj6@+;agrE>-L;&F#?-a$kJqSYf=)c`GROWho1rTLm?;_jWSO=R=@TF1mS$lHktZ8 z^v)98*d=)(BJV=Gicw-R4(mII^c01!WP)H!>6k+;D`MHxjB1+qN=lUCE;oA2!1lA} z<>z-pksJh%f+4$5icUr$$N~*30fZ`$lDpr=ZDq9KvuL7!@vh#KLNH~4;&+8N^At2a zX<;r(O3^V!bQ2CYVX;}T?y(gSc)*lGwB7pdR)ZoB{tF!vs))lK9qAc%#6T*RLj>DB zw)Lh|=;X&Piq;mh?jy)ll@N&PXtJaGI(d5e(@ww+cDABHzQfJn)i=LytZxK)3{<~3 z62HL6f_G&a6{BLl+iIXX`N9+^tOP?J%|cr5!<#2QUWO{{BFwnBCc|S8=}s1Y|KAl$ z^E0^@w@?KFkURS7oAMa!!9cee##eC%4@bm=J3YLj{ycb4dRpPlj#rQzuRB;Y^$tUV zm8>|ASNv@$m|tvGUC`CI5c~tD&;~AH+N2*zp~FfQsK?Y0z=$4NEKGw)zt1GySxajx z_<@XDxd4z-B6X!{&^w9^P=r4)Nhk+UWb_t?lNJ+aPJTN5TOdu>&0g6DJ=u+34UxQ zXjWh$XtC!&G_qET>+?mJVEaVeS`aAf$x=x?opR1U=$0U4+MdsOX(oFIj7KS@oV$01ye9lS6f*QE<9LxXR{>F^$Z$1(h5aj?Y_G z?7I6_x+CXIN!HU zDY$Hr8fnitBkN_3XSy{~aHIT;v)o-d*N(Cpo`GMIEn@D8yhUUGT6r{H>$#vQmXP1F z=tT1#Wew^+@drOvBTr0~OpK>b@t4jOo4i6{??U&?#lRUi*2KU77?LsX8FwQSZWlh| zP{RrlzOnSk_#(I?dD&^9K0v>K&Z$V?NEk>wS5ka?5WO)F?Ald-J#fHGpewGc}{j;7=Xc+nRa2=tDYH8V8GPbKWJMSy>Y^qFzoy` znjxI;LP`?s`Mj%C5r8D3c!|Rv}VFYe@4dbuD|c!Pl~`;7d}7QkET!uk7sr zwLi~dzC={ls4pbl(f&Dmp$+zrM*gy%7T=MZP$SOgVOC*6s3M+*Ox?ktMZkr+mgTVo z;O+fqMr{m}`dhMKL886oQD!9kk18>m;Kzru!Swe7ErAAV9)01c<4eb>(KgTQ6ZJ6X z=2iue5d?p9$Tdlay>^xLKank|IdP0De1tH_FS0MKv}6A-!Iq(|6>+-YXs&;tEs6gf z+Ja5}C)yIFW8nfX2y+h-qzm7%#6Ohvo@ATIJzt{>6g>G=%>{8_u2A}U(Hyi%;PU%k z;wjCk;Y_m#t*Ta~{EG8f` zW6w=}+MnnPzO2QGOyGO5CLg!h)Dm#86pSa%5BoxiGn>xt1hA|G$G@J>?z(&7P=_mf z@sGF~mkCi(_{PwrPB^epzX$9&4*D%hEvuO+TJK<`=3rg(uHEInfphOcFIaw9Gb;-N z27?Oe*X}`WwBF{#{x{Bur%I7%Mi7vI^kkBnJ`j1z6Odloo8ITk?un25#$LT<(3$L7gL=Teu?g>wr{wgy`Wt1df9m+J6wQWTkw!+xy3+f(+*` z1=#b$=iSGrI{e|`9w^W&u8IQG{Ak2NO1uF4Ci zE1y!|`fsi+Nm%Onn;|$~j=c)Q(Pa%}A^pqAhJ}u{OP)Ei{Ku0(a*2`s^pg^X>BBWp zYiQffQCSqdQ9^j?>KftA;b$rIbzSd2x(v(PLMsfzh@0HN&zTXF1-=Lh52PeNk=R{~ z=p;k_zGr9%jS|`E<>96g5Pn7JdLEZ)hCR(Q6n#_eE?L}=5xV_dgUW>9_n(vo!Ii1+ zO(`KkOIelKgfHm#Ap6^+i$IPl z2d1^8@i;DuzILOw*);#);pE5pZfs{lc0DT_##zT~$XV>PJ&9C3-O{A*BW&NrQD8LI zQ##)U7o)MBG09_|##(j$IedQmB`^1#?@!E=#+A-A2v4mHmEAZ><#3ym2QDa#oi9^+ z8E$yb`NY5JV#C|#@8W!^Vi?&qzW6FEYG^~LI}Crck48;aUT`7AB6gkf${kv`)#6_P z))Wx4_&qUh#t|ud?OeeLr&1S7#ubm0Pe-ANl`No~4-9lf?o!!2coVGPz9crw8rpLq zSWb0fo&PT)>2ynPGHb-MfS451oaSrcG zpr31Nph&Azo^~P?XZ82i!t3k=@-+py)k0*i*sDZZ-yF!y5LT3yd+I_*Y28+h03d14 zsFcop{+^4wF#e$uDR`%}dNB`yeT>^vyx)%VISK7YT&n$pN3#1jk5o`r;`jenm~;b%{W{MY%dKROmuv42>P2!IeYt8Z0o?1+90Q*Nfx1Fs#as7C6I^-iF4qt^uSF7hf{0j8=u!azbb=W+ zLEa+0)aRM8-W^8>yZ=j%0dyQ5W0FmEjeI2Lo6{vk&4(3lb<9`gI+;iyPXQQ>-WQgA z+Ub~&mPeFW6@=QIe<=|9VEk(?Ve)mAB9$w>vMG@}9W_@(?SQf&NebdnPGG57mag#? z)A9A>)M!(eI*uTN4-uqG{C%0vojN%qs1H;r&4U!hmRM9E!=4p)l0BHv#MuGFos7F< zn6CvF8mTUvYp$JonEh{XMrxf8?@317rBKR-phU`5t3}{>r;~58oBu$F7UlUejKc5X z-OjX5E&{n$rETwLe3#KRCr^StVpWjT$&AVZ(;u6M=j5Na#=YA6o^DbgtZ0ksoP7=> zYhdw;lYbjUG4#N;VlX5d1gYSO(U^OuofU?CwF6WuG?IeFMdI3YFxt`HJ2P#-HYs0w zkD=eB>DfTDb$FtF>mgs%j+FE(2SSuP{#NO0_ zc%XsU>F4353a1HCUugl+^~P}nlV87?iYJR3itl3~LnQo6`*gD>(RdL`k>Z=kFETskh#>7pkoRWfVqnxqOO#PIit6Wh2ON(`KwRFgp zeh)-^;W>v_jyI~(rs5Z^DD&DTSid6zv(PF_y#iOyB2=X22gRn3?BnyaGFWEd=ny+L zF;T6N646G9i4XElp!LsS+NAWy4~j*-%dIWwWp*E8YrMY>Oa4Pb+rfcyG&s6+b84{(7>nWR&xtEkv3{%)lnyV*KbA0$A?K{IW4%g+l{-um~PttJSJ$ zK`nE)j~M_r!MhjoY0H3}n(S}?013a3Q30h`|9&YzHOC`E!XXj)$-pK-j!oyO!sDM2 zvB3+lx69{18j^X&s!3#M-eZ|=BepP0|A-nIU)o#UU=sb(_R)1FeM>V*AANDqx}eTa zo?A2a{je)s-lezw7;FKpsGXazz^{iY4M|gpPOSf7dv0!DdQwrR#HIrOqX+vB1j_;Q zPz;)%``I*X@5*LSzyi;Bj{FU|fsXI-v#YI1TOWANMLGh0u=Ee3)VlO8zrc}^y?aK> z*%dOYMRq)rGUO~Ba+L75w2gItZ7t-(v$<)3BiMfHKYc{VnG3Rf&nsn^d#I3WT`;>H zm4O@CwV%PA4G+RMjBszqTB;PKgep`-ZV$v>c$Mw!F)vo1AXd*W*-tAVOz3`_;qU^_ z7L276>G3DeNX*8!i<(n=sI~S~3uapFU)60^-rF8u*Oc}O@wba+uo|nIZB%>Tk=a?b ze2*sf`KkuRGx_{VO$uK0tK+8*CMpB;t|IMqCObx+{qw5!iuLR)9L_waHl0s_9z;w5 z4Lbqa(eN6@KJ<&`?;It4=Cbj~#nm|6bU2(7r50u#nCfQK3nkn6>iq2v%0|39P3@)R zg5ve=w0J&N{P*GWhGAMEK8bWP#7sYe_`I92#wUKTOt-mU*v7x7%I6JFl2`npA7lD- zbC$(`E-pe`f9}+uQD~sn#3JdF;Epa9CLyYRC88`}mR0T$nkg5b$)i5A5N1v$v#(*w zy5Y20&!9f@E9EuAbbi8efZWK@D)4`?1u>E$>{f{4A`{C`794WaEdj-Gsb)n`HnwK( zyHY>;M<_4W&y45XmDkuPJwUtJg?$dqb z@7A17yK-E0IYYDz;QeL}Lu}X>#W=-vPA4{&d`sW2X;}SfuDDNC63urLHAx;Ke*FZ@ z4{0lKaWJIO{iP6@;ch5mLyrJvq*rCI+V`&4`_-hl60-f-8f5D; zq@1&|>=~aXi(@|D82qfj%*aH(xwuW8Mbwbbs!jqOIrxOjE^wOszZSDakp1}o18`C3 zy;fj%W%YjpT!vD*{|nyIVRJ02w)p5gn=3%4Qzlv7t~IacC??dWovh9ynXD_i45FuZ z`d{1GuFw7-?QF>;4eH9M3Ox3l{)BBdJrJ?Im=5qQg{v$Vsux=qlc63y`+Jr6=KV@t*SOW8KTsSK#D(t{x8lFJUQEM$1^2VzS_t@R@Nz z*EF6biX0{OQ5)MfIxT0b7C8ORx1M&#@D6gq3PKggyZgLZCW*-D3F3j-sgYg} zXz9_ny2XilkGL^=A}G^UPtm)Z{o>cWbF zZu2z{yRv)gG8^^P{p%GQ%~DA)D8p$_0j!8Y&=~eWq}2-{#@)#=OFSU&?JH^cm5nf1 zEpMyf`FV4AApW#v!uNKE%zDcCL~Ru))c4fa8SmS&F7rC^@kYS6QbnDPS4k|#5DS$8 z5~qI@%YDuIm?+U>8~o$Jt;&KgVHDbl>y;Na*y~jeV^5O^i|u|iu>;j|`v0z$Gp`Pv zK2MQ|bxUb$8{zPMj;UNX&0hpbGA6Slo{r+*b0L_DfAd5Xa$FlaZ4PywMXea zwI3am?fym~aW?Y(fjoX5SMai|Zx*@u`bEjwW9fq+t<&G%)K<^aS*<3aIbka(@6*t7 zoWSWn$(<(ByCCGUd9MFr%E>M@o>XFMXwBGXT1K7`{pQ&utK0cbxi@hNX^&-);bw0wkTuO~K0$AznYw(Ep5|BK zxu@X)!YqJM5cMXZ^mX#frjSz&BoNq!`!Y?HDFi74{X*UZNEafg?(TRC+}k2833?pK zIbRujr3q4uMtN{tc;_{b)sPWj+q~G6xVzLJ^-%DnmObTw9NU-)bideV^qu6aKp2>W zkAdF1rajrFusT+Cme;SGrn_}}OuU?ygDoAKk}(@sEA|Q~NUCmM~mp`6%rZ{EN%hksHd=WawRGFv*Wz6Ji-HvAyfUU|k$2 zD$hRuV;6SADLV!0@OxoS3xJ4%O3K@Q|D|FN{^7e1oB;4{AToQN@-mLvf^>)Y%$S+g z=`4!3x8(VX4XcC#Fu>1&)n*&mfK-XV^K?QO0%ZuXwSf|?XFni#kRVM0~Vzp*O zJrfjc8w9!aV%WVD*k2D7Yo}8;5L1hc04m*pq13>lpePA2vO3b?uyP68H~El;{Od$< zBmyhpEN051p8YQg(dQjt-xBBY{(N)UHYr102U8A<-3NU1i%tZCh9jM@o#CvnPJJUT zE?BLt{I&a6dWr}sNhjI>rA}LAgk@d z?<3%he3z*%yMA;z$_xWPVe&UiH73G7D_d~`QbK;Z zXK?!khw3TDf7~=cs$;)uvAtx`CulC{JY^daKGqM=y+Q?w92=9W8Thz$79`rH( zy?f!m$9DhqtA`p97aN+Lz*y*uEGF2e(>t=JYPO8{nlP3La~Khf;+GnqRT&k2{_ zloG(2{1XFBDPPST$5AgaUKEf3MP{O>nq$CFiux~b^Ou+ow4uu4=YkGd2jutT!SUUIvQjD`>v+@ zG%xO>f%HCeZ@iWE>$KgIySCC^4sa4B$)ys+Y}fwW(AL7TW;j5@C7ZsAfio+Sk;*5u z2Ci7(0UaT0z<8zl^smZ;sAp$466+qUh$gB(mYu%<@Zn_7G5A1}*5IYb6)?V~=&vsc0jH^W!S&sbDOe0;)4 z<)dzBCa3>eXDgt1W#R;alo6QGaW|{+D^qt+0W15SnIaVJQ`S|zV2~yIHpi#)FU$xA4beep z*+2a|M}nFHS|`AGMh!IaW-gt$5EKIEdrbWdxE{^pbmjyX{s&?MO>qAeP^#v~w#UA) zsOr$ZJt=w#zkI+=6t4c=wiB4?)(Yu@4POtL0KKAf$-YLthx{!BY-z598g}-&7oI|U zW_*b4LUz{eg^1;yLvUF_?qY?0m>KtpdWhV`(G&-D?!dKC@r`_0EaGTyPSps|j*4YkNn1(|O!WtT9aJCG`dm^Co=1Dk zzLFfHF)CbW5hqREBYHI);NTph3f`9E%l}-GQSJoD`SJr2*Wx!{t3w|ygqYj;i*?ub z)PWhg8RMC%z>;H8)X%K~7tB`Ne-z$hwhY(}wxC9yYzvKS%@NYV zw}yHM)2}yUhr6H?@XVVlkF67Y@{c^#%cRHGbe1zwhPH%+Wd-@y!{k-^OdeVn8zbh=Au0Qk$dw(&NHcJdJ zRsmj_J2t7*!{7Tzos{g(PDm2#ukN*$j$15mb2TY-k8dNZaB%Oejj%Uy9e9hTODqz- zh`*G-yf{G-T~f@w|L>JV!0nR$0Xmcb!rIO4bZt!Rg2eLHhleGI*6$X~ByA2-L@6&E%!e84rj`ZVn&l z^-2>%e`Q0^o-BVAq82X`y?PNCCL*aL@eVaa*KX%9$KoWJeRfH6miQIRmb%1VSsL zEtqBly4(syM*x<;3uMRjWdAm+lUr|l zyoYw!;R%dh236)4T}a;me1wjKa>nj+jLimHfrRsY958o0`J&zhSVo#$N);x;eywsG^%k&jb4I{AXu26un#2_g zqDv*(5YX7SpbQ}h$>C;_O9Bx$6UdeTyhj1m%~<|~(Jgs3>^Yqe_*A@_VF7 zor5v;GCdSMNWsSI{UGalOW;nVH(X z*(x|#CSi7px8ZwIW^SfiF)U$hDW>XYeX&b?^;6ZJ>uQ-P#O}<+ac_Ls8mMevzu|J; z;(EhUJ@GbMd@}x|S6!jTo=4F7r+3d=gvkT-;kT@>n_RxRs$L`hS)C|>oO-1r!UxW^ zacflgH9-OVquC?}n{W6uqBLq!vg03}2jq*@EJQu{Lvv8p=%&t?AMDpvd+TvNIv9qH zD7a!fWYHWjzwn!TvteUYsoT{@F(+6?_eG5J(gN$mXz+}-zm_)XaUmStWDEzFp4`>e z^PoFDp*T?o3#|o&ox|Y>wf6D8@IP1LWur*nX?dUejw|5cm-RNj3

&oER^$+$jj zZd^`H9$V&rrHZW4?n5`ZuOGMD!hT^Cj~MQiAsZL6LYBSQZDu=Qs*b1c(q=*>(ib8z zD{{L$Lo+?0si$M$ji#H8IOj2g_p^y>dcnDK(*uyMK4%WjAgP_9CrFP3NM_}%WN+>8 ze&hn?(~eGVO^1}z*KKJu>X=TV?80^r6CwVbGcoC%B-PG*7PHlk%wCWOzoqbOwm$;z zSxX6ZxK^Oru7p_}+o-I@2U%;taQo%ei)@f2BeDSeh-vuc=XZ-A{?s~3pT}HmY$b;C zpl9fz3UBz*&v;odTVsTf^ItV-%Or`RlJkQN>+CMenxA;D#3{AccaQw5(K{vnH=~9P z?1b;^zrIi_O}bTJa4QqylGe3Y6vZd}GW9`41(rV5L;IV+&Pcg1uu7^W8~YtL+YdSY+_zqq&6Kfi|9k$yD0rnN1T5)RmLzebS*ByjoAVQo&$QI3WgX(x zJu+e3rYRGw@?67o!Q5~EjRW}Qcnx|r+bez`f%)e4cn>-2 znfm`}&h)Qjf_+1#8AJsyHtgfJgMJ0x#Ds|U*153rm@ky{wN2axXT?3PGUM|=rZkjs zg$8o-%QJ_?6rqmk8r6Ex0D_ zLXuEl%{v9&D_5!=v!CSoI9nI7D5!EMP8pS$S|K6+gYwSb) z^Ek6s1O{?RiI^oDddw3?0nH67nJfo4ZrYw^2LobIjEPQr$a+q}bLC_}f0NZ_%A@Z&p`~I(d@(`D2m6 z)!Tb5F_`P(zfnmSO3r=K+=EeZ^oldPrCCZD{Z|^16xD|wX-)uKYJkccln9$lCC~>`;ZXh7MwR@`0zkiFzHRyo7nro-_k|@#2 z)qJM$ca!mfkZRby9JM-|dWGw!A2bSNAc`C3yqY4MN&@?Ht%#7QU&}I(CObt|-?!*I zWINSB>Da0zg@4!=dGH$S4#t;r#pDcF?GL|-%HYI|8Nu89JJKaWX8rCgQwaU3Za5@k zx903uh_OoJf8kyBM500Im!2bO5B21_b`S@Lg?ta zm8Orx+#a6SL3)zdA8A` z4S%c{!%!^((bRtA8z_a#~+h$Ca#}1*vy=Z2rVC{j54pZC-U3g+ZI~-=Efn zUCjIR3157BVtKO$0(YIBzkQnM4tSF%CRsfsaji7WJky;wHw` z1duVmRC&=VKR%S(3OtzD-qtiZ&SZM^tR0b1lQ`UO)t@Auv0Kr|Z7F<-7+*}HLtIjgd6MaWeNUncWmzR!5yU!EF63<)Bm_~EHh zH4Zt9&t5+#*aFYswq4V5Qj6-p;Mn0HK-Bt<3Z6HU$G8c#KZu>yP3Zz;UP`oLXa2$p~9d z(!4#r{Ki4k**QW_$y-N$dCMS|F|=4Zdamy98(SCSlPcki+Msg_Q~qVvpQX3Ota+-E zUEeiu+Rc0bt6AufWG;~N3dO-qyi-gh)L!&Ppa)X+^-@{YLjRs$MF@5@5C(0r|>5;Fb zXwi*fy@no^y|Ay-)XMGwgK$oZVy$nn0rJ+kA0Z&@ja!LV159>BtNU9W(et}Uuh zO2SfXVeUpV!h}b?Jkwv9^0*}tG9}b(lzPwX&wqU+-#Tn2pJjU3Fb@BUaL)2{j9eBD zHt}&@+(E1bY#R9wf4-XOu$iZbLz-}Dm+AmpbG{9q`bC&vpEIa7j;<}gdoYq}fNenY zS|um?t{$XRb^T_7(VZ^4_(W&G?dIRfm_Tb@8Uvj4>-KMK;=wdJ2iIXexSsTVMa-1n)p89QlAl7|2f)5(mvsDx+wiro|7rF{s4XEwCJB`*n|2+4jJ6{NyiongAZJS z`HNqU;Rl~a--v&Ejg~U-aq_$0ILl9!k(3W7Oazdt5lxyYPnR+#M4sAfMR-(&)ZHT` ze`H;F&DIns0vhAH`20|A;u+vvx#s#jMc^&j@1KgjugY}$%~`N-MxO@Gswe+7uJ{^U zN^5f8ZdswHFtSy?3fXdl1>@buXt7M?!@SKS{j~`WD;Cuk)0^9CaJM~S=qnloYkfpeMY&xUL& zBezdYpCO}y-bYiHe<2Njso#NDo$yT$-nkon*EKs*-wqODVn`2?_6xtoSQXq`eZ6*X zU-w7rXH^-22t6BlvG#l%>JX_6jMFl9lZ^3^X9+y6sG=qwT*!*yt_6%}%UqM-S#*$d zY|xI;g+vJ&+uq2#_wm}g`gy|9bt$%!B66+I4T;YV<1pY&U~Pkl=`7_1%TwO>^)m=3$V7?uhu7k7gEhn5y^D7>x){}`pIDc(-c4~nd#6nwqEl?1Yq37+goTnC z^P_GB7@a*-6hIcEiMz<%v>w)qmaQd)q!3TQwF&!*TxA!ZSX(c!JG6GEG#tpxs&YED zigu;hQer+g;b*X?rh4c|bg>pN^B?X~VDB5A$g-80^zhY%qn4~?dzSddxaQz%1#sc`m=}O2Xw{<3&LsX z3yyji^+cW9EUYd9_F8tv<>|AXWYY|!s#|XP|A0^Aat67wg8=wMe~LWy%ML^@l*^^R zC+q_*HV=5m*02l84cSROP5H?g#`M*c zd!5}+V}k9SQoWjOi+brfuENKSl$@6NK*Zrc~4Y)^b=tuYrH%8g5Xy6Z{% zt+&<+RWQRh4i;A$X*EwdIc}bEr=@)Q(6Bh^=N<2{h%4F-4vgIw39xk>Oj*ynt;92t zqph>rzG()>msHGQCYWGeR~y^0Ps6aPSVNZp)A^3v&po{sEJf(Pl{?!!cj8(p+AwuMmX1#kD~ZonO$~U&6LN>WB4&SW^Jr5zZPBmu&Lf_Is=_<5S98y;|<^b46&7ehb#L#-HUfg*4l6)A04@^ULzML;hH7|?cCQ@plN+fhI#Kfw%rL<25D;5`aXFc|1*YjD z`@y1dU+a6EOh62r5hhyt1<@`HoS48=^owFRjEh@g?WNwEpLwN2Kd*bFWGlRZH!#($ zJ1Gp`1+RtFt1jQ_(lepE$@JEU5sJ_~S4rkxUX}L~6VikP&l)X) zUbGn**;7*KD%b~$VA33EV!57?Q$gCbOi{zS9c!m?v`JUG5@Ik3HQ1@$X;ouH$BClQ z{_fzZN!o|>_VXguK~Edpw#gvouQjp_bvyJTEG)CjRv~Q-jpd}{wP`FRq%&ci8mU~HwlY&?FXeeP!r1syT^-0T3&Rq zN=(0gG>Fr^(~!gwHpzrZtOHL4=iPxtN`y+QY?&RHw$b!?PJHzm>J1-x*Tt!JE$%2~ zh1sJT-w=X4oNR9loJsPg+HduvEERFmWr7Ve3RgZgUWlE<>m*=xxKuP!LrNEYaB3j=VgkYO^mQ3u}5D0 zKER=b*Oe%}y2kq21r~$$W%oxJU{9q=R+z2&Mn~VNMcpq`aDL-Zv^lSsk1v)kzFn?q zaFN)LF{;mVH~wT`%Q9`qZ>M*as?Gjvp$_^>z4!5zWka4OF@#E`{wllTKtTV>W|nWp zCPeE%WZA`A;IlwgBmWqBoO*Bc zXz8v~F+!vDNVV7x_8#f<+efKYbA&E_TyqA$r7P<2A@)(FhdHesQArQ%V9pZ=m5Xv8 zvoQiOj2mZ4F3DI zFd{O&9XL$v4|=4^Im0k{aFg(y z2kZIWwMRciyBZTvB9tCxw)kg$^0SCYs%u)SP(sS0@u7PQLoyd7q5`St$;k(fX%6W? z{piwr(_ByNUx#rhfeouqG@v{^9&u~fxCAwIEa(D`6JoQD8^_>IYA^Kx4I24Abqf>} z$JlEIvzhR>(;08Gu}r1(uH<>XYF3!(7!lj*Zsb_*e}8ux$sQBpLT^Q5(wJSl5Xli zv)8U)+V`vg`X>XegsawV52}e!VJ7|;9KN`tt%gg{qxmh`>+JIO1Y<4FS13G)ozFz$ znv278cIg!Z$V}h9(X_m~^jZM|4Ii>2SpxSoNFO*$9KIvx`|6JOw!VC%qJOrPk4KpL zdRG9SrSUfs=Uel4Z}7;$rQ%uUnCAI`lnoL^YYNvpW%o*~8MGU4mwmRJ((jGR zaP8^BDXM9Ok+dn44HtEE9ZqoE9LcJA(+}Oc= zJs5HgwiT8kDC!%@B55pBs6;1iIA$|0>r>VP$$Y%*6@?k!Sp-O|QoaQb9dVxPmnwvw zA|lrvu`5~@gLL$;{ zfSbp_*;q~N9yGHe6Wf8?!_H#%`NS_JV$SH>U5xml6Te0#INmK@igYbwG={uOAa;E9 zqDct1){tLj`27!Gm?~`ytR~dd{Mv6hZ*;a6jgg3VMgb3k=KABeYrzE|>%1FEdfxMe zCTr4fYnu@-jX)5Vp`Hp>5vZ;@x??pX*0)xGI@XtRS3AlA=X0d8N9;(Y*pe~a*^6Vv zhnaJA^$-Bh!d;KIzLOZ?=joj>o>g%=N^o!t1{*DTo9mY3OA{k9mTC}6H!A&|@}A%x z;lrT*9zPCS-Fdq~cIres63OD*Lit=JVmnBkbRzV1DdGIYTOqQaJrcsTv>l1+t8JE3 z!u3XfJkzu8Kvu_MWc(6l6P9$DeA-(N?eGRY=$(-xtPn|m*R$V!E-gBq-sS;`Zl>92 z-r!eGbh>mX52NYCWwHFRimHXATLll=ULnag;&w)s9tX2^57Ocd!q?wcU_d9-+~Sge zSLqNFGvV?(=5yq&p|R#lSj2ZP5OTTeUAgn}dFVnhq@roNUB5MGJi&|5r#&PA{+6)vFsj?a+Ei3Zh}r6-kRA zqJQ|dj6tF!zB=P0&Hh=S&m)PSiOKh~B_r4O8tTbjgU!6td?}QaUHTpCevyyIP-r~w z6Z&MV@1%&-3{8J>{@ufX+BUkdRJ4OOb7*~U5u#s5;h8x~f0%W2$Y{)3Amgnwwm&(dpcf)#{xah9c9HUA`u(xsHkX1vSAAr4wFZ z#Rt4R2i2Kee5I7zwev~x6aJYYxJZ6(h!y>vA0zm%0l(9Z_&SKZ`~Z$>sS(b5|9V!5dd&l4sU#})(9c`ty`mj)Hmju z=QN3`?qwe6HR)5*h_S*zl2WaHSI^=F_`5$+elF``H||1b*S_J_Ax{H(;)i~Ow(aQi zjywrJ(HGfIGnhS$SWHg_8Wnztc!IHwA;a}8Gs?t>-7IMCM_Pt&fS+H0L)e6Z-}h26(2&o{JbCIGAtz4Jlwn?B5; zS$b@Avb%pHp~-!$eB12pt>Mb*DhN{U#5$JiG^&-S4+mk{<>*#;e>0p;SevM?Q3W34 z&|(t2ex83vZ(uiOUtu0KS*Mi1F@HN^QQe^aRt_u8A{npJC(RR3%%A6;?+|yCyc{_D zJLuR@qMi-K8bV&4EHjGY-4f^woIH$Q5}y1ccR8a9CgCa zgYNicxaF5rJEOc!nwIN*ec~~@(cVjj=5W1ci)oyN{mzMw>%HO=Y35@3WFh~%3r4y) z5AaCFuCl%3&^~RRg36}LN=CrS;R2r!z6d~W?Sw8b+dj>L7huBJH7_LMb^@q7ahhLe zPP`h@vsgUEL9u8Uu_aL6}Iz(N8*ya)em=cbb0fLPUr?8 zL|zF)|Neu9E~{gnVsA6`l!^7qYSn#k&at^7tDr|UT+a! zn-g0WlVB`AX_59qKiv7bU48Z-N#dHK{QSbC0UC6Itl+p=;fi#d#?A%11l)JqnY407 z?z3OU9;pidw@>q*pKUYWtxQZ3L6=`#T9tUH{h^dsH^ksL{i9Y2LNm!w6<$YR$Og&n z0J7zMe0@fh?6KZz={;o8OPcRWRb;JXh@piMt+XgH)dWFMJ^>Iq6}~7C!q^}N8`{ud zf?)yDJqFb*%=;Y;HVE6rABSFS#;V^)Fwo^M-;^+Y*!4fdJy3nIll)z1Tw z_8r#Rl#q$KB-Y1w^z@<=mn|p1EXv}+R9^L32YY3f9=T^Qyf}=ngR_30+I3;eZD`v^ zlWi|H$Ck;#dqp1;63QgFVG80tXwL_ok$HMC?I;ZIjgcVYnqm*YrzLnWbEO4MJs{G7 zY+uq?NBM%4E?)o#Ukv(MaX8T>f{Mk31zP!)MtuA{3pPnU7+gIKZ0N3Zf%>pR){Cbp=T^j5KwPB@LD&niP@M7Hz(WnKx1Z}k+QeaYV6al}{50v^CeOK1a!85w z!+-~}<*x5Qm76}?4smJT;(4opYHd@n@?ihy=Uqn%M==!7>i0J*MxIg5JW!a*o4u1o zCP-j+&FmZ#guMXz>uyr4d*E+F5OVP~uToe3I`74v7xnKKUxxftK(u%wlFIsKQIj%; z%?57Ntrwr&cTdE9&!e49UQpI;UkhHPKX;{nfCjscGnp@*f0CFFDIcEW`7uGyrAmyT zih_HtZh>d#29WQ*+Sf8bB-4U0C9`Y#G|4k7X0s3D7KdxKTPyaGK=7Jpjyo+$ZsGFz ztjKCb?_|*9BReG*LuQD**Oa(#@5i3zgOcv2ae=m%V?Iuxdy-uL9f{!dt++NET$MYV*(l8;nq0Wo5hEYHLspo2)aY~aV%vKL^FskD8%2R0lO zm+}1ns9;NvFDVsQ1Z#i6U^!k-svxMFP4lG|fbGbm(Fpfyj z*~$6onhPytZ7@E>qk!TVqeYMSfQdT!)aR?N{FhNX%!gw9S^@l*dw*WG)!S`#apzvN zkj^+wx9uSl*9r0yGc~H$?<<|op3g<%PMc}r*ysZR7?2~N$ zk;tz}zu0#z9&))$huWQvu$Hj>)=Y+V^RtF~6Li>)=D+GIPowO?(`PJwL^wY7wU*8} zOy2ZHv3Ab2*gePKm*oofOWp*JZLil)voD{hd57N;52vb02IqI`8;L=qriO1k>BTmv zj}PeyE1&Qps^$(UZ^~!+{78$97ZNAxFli-u9wbAO59s=~Ew z%Wq0<>U*TrGQc+9)vnqiD+^*jyhIRI-ew^*_{qn6r?slpQo{sSc)@1oXtGgY6tM0y zLx(ptfFs;`Kj*~$d_xKMTK0)Bc5&_A+Ou5_7@6Tf=&MSF|ld-uQ535A$q zcg6{y%};RaKUgI&&%-d}omlm{R&3X|QzE}(7T-OeGUhf$P3rt3RL?OsDfNC~rJ2SK z_Wd9F2`3sHLi1M9U+hGvABt->;Dg7>Rvb3n_+$!-y$X?ENT^sL_Tz3M^Hr*oV+qyT z^LB(T`m7M0l7ochn1)2K-W$7){G5uC)htuAZBLU@X8Y~KZfk1Fl$4<_txV`wL zqzeY%((|LD^R*7)psL?bUp@-7`GBr=7T-Y4cJSD0TnJmKFnYgRUq3)UCF{K=&`dZg z(SsvTiMl3Tn@!Qs4VBKJiSaD>fOgiseRgee!s0=3LYUuZam{v;8Ps>Zf=P~BsW(W7 zVrh-BL{z;%c0k`Xof0uL?UotB)`>Ts)ua#CPszqr0N1IY9=?h$WTL0EIm#cO5Z29( zKa4fMQn+i~* zFOrHaTCIo$)LXUJVvY=!IZ8BOs*m^xsH$har0&Muvenp~tNa~Bu<2W}49F;!2nCx% zwAG7BJuZ8mnzjLgDPjbHk^#H()bk@YJs9(iWgqh1P(0qE(13UOrpH?6n?6N4=!c8U zYrp#YYy{7eO2fi%*>=xvy7=B+@%D{>vKzVoVc((sECP3}8ze=HOXcpB>p_hKRBQS~ z--^FYx(+INu^q{5WyN2+YmLZxvjQyG9H`iq_hw@5_apYgmDmF1~{73mwEdC6!zMg9mvm+!$`KB=Qd?q({Q_7p@O;x`S%# z>Vh=yf(v5eA&UU8Ii3W{-y8$HR4(Gb6(~4FAB=f1)y4P1xo89w@Pi&-C_ALgyNpqYs9O@V9w@L_=Py9i%&$y%lB z$ieq~WZRsMW3;<(TTiyIB1i@;aQ|*AhGlw zi)7brfOFDN==!uw5_kJMD@A$`{Dl#X26fCBbe7X1yVHifW$TebC7f+TgzMr1h?pe* zP*r-n#{SwNHa|BZ+^y{9R)y2hx^eve%|9uP z6njX$LAw1n)i>AdH6b3cNg-6`;6yE#5{1lXm5p0T#rSVJiz{2npRU}{HsB~*)2!*8 zg*=mZ|Ly!|*7YwFMAT6ia!8|i<@kd{oD`)KdlK)L->9a`j~+>hI8D~OAL=N+7go|z zp;Ry3PplarglASbi}6ba|3$o+Q=#qf0MzkIT5+iw>1_53JB@!Pai6R?{Yju}|CQvb0Qhz7C4}oTMy) zrhr~B6V$dvxRd^>>&TzQ9@mP0raS)J9lTM!1Ctk!IF9*sVE}^U*n};7)$(i$4anq* zG>#n41zS*VVGmy#{E^+rmdYiFvA?BF0gRpyTI#qH<;&mxq@in<|C{|JGBlLFYN6%B zbB>lF>nVESXAzb*B`Im#$yT+b^#tODZU2Ax1}*%-FAk~WB{X@v{t;nJ0z@kCm}HZI z#$BTsr2&CdJp)-vpEJELdYb7#z?Npza{^tAK8jz{HX0`qh!hp=_-gG{t=d19n1HD{ zG9JC&-w^P7sw6i0ur4;&!R+M>u}meM?hGfgy4*hxs>dE16Xg@v)2*R4vt!>R+*$8* zsqQW=*5Nr3;T^DaSl&Gt?#`-2*2p6=vDU^LP+x~>&-_)j{>1hy>c|to8ag|>%iF8y z>%X;q`Jzpi9_hcTk=trrA*X6;71Id8)D=ZT^ZojX#84tW#-#%u7ZGcr9mf6^OJ&~O zK;;`l{?-hs$>nB0m|^&1zbqxQc2C>jeeRy~w|cNwk^BfXL7(^ht~MLgOkDlQvar_` zGh}koFSNigA~SD9@ls1|dqL?_B6@umeU^A$7;+a3StZR~W&(?7Bkp{jpfbrn>vWUd zEiDCxRcb@nV#`BdTrkocpaW|*#z7m)k=!+9uDq)pr5eM_jqei74MrW$>cWQ;M)pG7 zSAQ5CpFRTGrI&1_QZuX8!ozi9brV&PxfKP2n48=XdhvmqG+ob5h@!43&HwQ?3@*n; znbH~=L?;4y{>+80wPqXbLHRpj88rSgc`I$zA6Vb<8hvtaT=x!|0}9)|UCS%mY_+VX zuOAbjvt6HA8DQY!ZDMHE_8fInPHc^K09y@bd$_Y3>CQHvNOSW)(k|qOxQk5tqSDWY zSCy3`2_iaqNuS+IRI&dU_Qq$BI)+8?vT$CorI4J`pjhSgbx%3yZIR(>jcpE@5T6_p zX)!@PxdRGH`WsOijpCmmm4)or(rL~am$T9zn*8^Z8|=v^dsjFp!5 zgI!{zvLvMYgylzNCbHDxyUxLLdYun5n+bu14@OJzvb4%bza96T=vqdd8x$;RWl!UN zFTH6$OS;vonIvKGoBZ$)GK!%uk~qwA=Q=a5L1z9Bk^wDfeqqY}B4@xt>>o4(YUEO} z{)lq!cOo?O7<@$k4CG>-c@Q>iWlTN3i~(Z}vSO;zudSB}Zng-wFq&KX?J8LFitAC% zL~6vE_+D*@d6s7d9JWUm3cxN>;epGu2R}{~d~U3~ZP2VMENt`t%{<}bW?5^D`eQJ$ zt_igh|0mlp+;qc9?x2#G>gO|yx;5SU2eD2Cm!0|vK5A#YF|2hy3LCG^_D^kAV4c2S z{KNtX;^cpao&5mVh36SnGm8>+zCdG*jX3=L7Q7pM*MHY|8IQNqV6)8;Ree^wQ;IlR zoGtPzugPV^o|p$NwEsDw8%aN(y81qly!A&WE@}L{Yt}AM*kGainV;S_s#^vU!9|;5 zl_ONn{@CU0v&TzW+x!Q`uQgqK#0Zssq(>?*>}HBr*7$PV9bxIjd)&3G=c1V;19akO zB4Aq|+`|0STAw^lZl9>$`=cM1=}d+QjhDy_ma+C1SlPYlR^F4@)~ zX z@nhJ7XxYf^w-o{k-P3fhJ9u7~1$p#!K+?8f(WUgRRjuincUJg6ciIP!>BX z@ckapync{|D{x_Y;b%f|=@#Ml?QC3d+}99iSKitPx&K_py2r=_5wg)oG-PD#OaIDw z6%`g$y@NcND*rJRX7abd%zX*FXO$=tLy|(H!7*+bI!rlEr>B?6C22G9W_&!(qlWdn zU$WF3^*4v#R5Sk#Fp<)uDkZ#A5qYa*z(TjM+c)Aj<1O`oG;Vv5HEvr_Z6*5s1Z`{vwG0=1~p;wTNV>CBjdU{0j)+=L&6ejqjq<~*sk70&DV^On}$Qx(W zJ-J;_bPj+etX`7`c3tbl!J`Wik!4!=ut8~~f?_Jo-RbFJ1#*PF-_C&`8%lyNt zlgWp>uX!q%S(lG{y^A+KfVg%!FsX;j*sP0A8--zr|EvUy_~8+5Jivms-^&qwH=GIT z&Lyh2tLDJxka_`u2?M}M-@qJ&X9#2k}ejg}T*!*ILRJepLW8J|Roo-^= zX1>H#8=;cvsWMz+O^*K3lK)=z8vLgim#x_ z5KX!~h3LA21O`zB&wz`m~DBZcs~&Mt3e*@ z{-54mYAAeM;b-fy5k8DGx=&;`9S>F}wy9|zP?dBj$g=+=n63A--;3>Jb;QU3ZElL8 z6YoH~2FEY{6ON||aNd4i0jNsUAIn)1GQ^EUfwu5egtaE3;}P21D{6nxN}Pszb&`(G z!0i%p2f43%DShO>Me)|Sn*uNQoaCV(&*OZHsgLVC^V21nfM$j!jn`w?vTy!zZo zzIe-7M(>8~Q%M5qIg#LRGZVIewU|kIYUcaEMG0y?o+}w@=jL@b2*oZ3K6~huqz{N8 zLr-O)a8f40*~2NN)-y+>a8W3YU{g0u>w(YE;K&zCrF|u70I@dc7y9#nZ$~ zC8PzAOr}S!D)fS??RK}SKbyLdk@TMNfASWU3_0~m{#MRB1Ws2>SYpeTyblK@PIxgp@XEE zhd~;am>+`J;TBV)1@-Jo;FTB`UR7ZvKo!PD;b`G&oBqwYG}9_Sj8EHtoaL;L65(0V ztrg=QHyRw!W_ar)bI&jp8{d&j9Syigv^&rWdN=W&KcdX$gJymnAX!Qbq&C`fxTv81YBxE)+q6mcBdk zM%?&N4JMC*Ev7Eto$ah?8LS8YbZ?!58_#wM-$d6<*43LTt@!1zgKDSEJXM(CxI+GiPao!;f}6ynR6p}xrT~;u%6kcr z3vz!fk?%9IH5QY!L%E$AY9bc#9dL%-tQDoxG^ibZzFv#h2RxRA57w(Y1iJ$(qRzcd zGyAQ^q(8e>w%$iK28f`&WG*#)bpC@(_=j9=eDg*V8A6|fEj!;_lT(}M3k6z^5~AAO(-Z`6C4QZGO4T4s*my=OAe1Px{bi$G1~s@!e> z>!TpUl%PkrGJF^$5!3Ecmw=H;4+@O3oW0h=5dnjms@})OXC@0IWDdu6O=|CLFu%5H z%yBL-mTYECaE}cxXl^3&gsZYb1ihf7iMtqToqc&?M5eVXY%U$se(Eq$*|PH{HZ5df zDz+v|l{}3AR~gKPRX?6pGC<+O=J7efkPci3imB)BYtq4-id{tYcx0D~30X|K#WRnq z|BiV44krf0zSN0TNm2IMl&H-wfzslfS&2M*l*{_X(K6zlzSTi^ zy?JV{x#|u23_71%4txD>al&@YIUCul9$6)olh;At+H-K&19ER+L(&?bKfRgWb7YmO z?XnHK;>fY8vVpPxL-6yqvnSu)szrIqJn0kFFcVg?=6K)9`Qa$V$>Y%qQWg?kAb7!9 z=0W2sEU|&5dUirN#6+##^G-D}H=7b|CLH@9<*l=;vgG_QvO2@#=AAm#HQu7w?%(4ahEnAJTCvFHhnajAWb>1cP0l8W)x<5AM&+{C1#*M#fhrT z<^+EOrW>T#r$%z&+J@)cBXaCPxt(9F&~KNSQC%_Vup@D&5ig-S&00srkO}f|6;1bG zIkM$zw6yPsFw6Y15&gw+#9N^xE3qX0Iu#|&wZ$<0>EX*$0q}k6TI-%ey2VJW^6tP| z!pF6&-j?LnY1jv>p#MipVbTcsKV(FGsgtVrU?(}hd@_H`TeAs;tppxENTad7h?DUv zuDAE;%}Cxc4R(69ieA|RH*WM*JB#6n=axILW_LU<{2GLCPcpO5MKb-4-H(@7vyt^q zsF*({W;>DpL$C)V=5M?}fo*NSh9BfkJ_NNY&bO4I8Ob;4v+qz^&Qng^#o_gRB}s7y zifgAv&TduWZ1uM?kmUv)q$*rr2JxO5y&7zt3VG6_#0F6!9n+ARApfZf7ng8RZ?=x~ zj3Gme^ES4)_%aguG5^g1tm?M5dzixsyv$3V$NF5jFQ>IV>9^m>gzl=s=|(Q6=O6xW zC=;5u)-tA~XfHOfXmzcX#oLIQn5LiO$u(8)TSZ~ zkP&_(%Brr%SYmFh)DtdLtjxWWvzQO|tLpK^Qv&cDHvKp2CJBpQR7Av{>``kYzB>4C z)4@(Qd&OnptivP7u-;d1c}rhP`Z6isAg40D4+UE`DD#6wU5L1|YR-Z~3S5Vg`wvpo zr95=+_FC%$CogfZZtNrIN&S67LRGI@WfUtdsW^-enE!AWC?53tkeXc)-nH&*2&^L- z7$~wq3!NE zn3KJPg;UE-)-GZ6$@@zJpTAY;eKs3d+#_r-prfxeif2O?U7H ztDfL4RQzh#x?$bODi-JraS@2Uz6z69^^)^35R0sggRR8R!6OJRn&ls28KGo(R6PW1 ziwY`n+#o|Z*lur(HyI=WP+SLAEmjRm?2x8}*92(c;B*Ga&qG#!g+Pm3H@f~UW$z#X z70UuvF^Vbty=pnQ>n3Pr4R2;JN+GZ1F+gyAX?Alf;=%i6hD;nU#c(6xlgLC1s-A(u z;8pp4W|tDj!{g~9B&G z4KH3I!nG^>_{k@hPoOFD2A1!ng;U~*$4OX%px>Lo!Xhz%6!inQxdoIl!OUoTcf*5M z%_+ChtfUAA3A1JVFqif;s22#`^VC-#FQrv>SS30!kN!sr%aYM?5wyoKJA~qu#ZTK& zvE)AjdpjR6zPbZ9G7YT_qY{Dp+~ULwxIPx1@FFCZ{(248HVB+7Qnk4~-#ew2oA~&Q~%7uOq#8;R(>duEad2`x|V3~>l?rXqy zJ|BSlX#ey;6b=0gT#4?mwgsAaKz4G9V0S^fWy^0CkujalU+&GkHIseg>Hts`bPHSD zTlc#_8zA$Ms%@Fs56lqyAKvbys;a-W&HP@3?Ebz4VrxaDs~W-`4ki!_>G~2rrM=m_wUaP^+Osr{jDc-Dg&#p-#qm*`xjAJ&Dq?^8XzZ?HI0kCH~X`_muP z@mM)cC!LpCaQ~NyL|JTXQo)qZjElnYMBg@>ta)(dV#7{>haTa0RkWAq8U6F(Kr1O< z5hXe8P4q8d0mv=2OKkfuZ0|4Z1AY1gCw9LtcM;pb<8XQm%<=Qo zO^#xplyPyoBjr zbh5?oT`iY*BHbmH6l_=&pg4aQxHuYClM06aLd}Mhr&KFw>IVZE+^-JIYwwa+qI`GR zJOKUJ@1hycB*dp7>$Z?C8{gUTVsnqhLb!Jy@9Ewm)5m+X8%mV1d+h5rwj43d$z3RY zGxsp-s&0X#M%T+YoZ`J5Q?#BzaY{%*l4K||Q~xdL()RUfmz_`Vt*7Xu>A%_u$Ryi!2PdEus=N zhDr1>BPe$7!K%9Z9hJ^K+gjg)%o-wCJpH^V%dF`idH(lV`hQQzk(d5Cmd2Wd=Lh5& zt4w|SVlVz>KXH#bDZB2|D5Y0LdF)12YnQuLSykQlz5Xv7wu{fzj`?9)M=zJkljzqk z)xH8&>J^3cVTEa01_STCeL_X8XBmTeeKtVo91QCExQ_ZkX{=-BrMc_)_>W)5MEMhU ziothX3qgq9g9fv|gnE|47qgLN0(vh9dT-P1r}&r_DFMC{3Ey4Y0wO`VMy)7wQCv?)6pZupNszy{ zc^BC^YOE6DvYYWIuPS&qw_7FZxV^G&YpCELpMq(I*Nn#`TG|{5?~};{ol`yQZd1VH zGa}BWEDRTl!hnYGvzJy=o79+}m%{a4KXvFySu!{I^VpBlk_}H0+8&QlUgUp^v7{dD z@n+iPh>#<`BH-f^vG7i28vymtxDyPt$x0G8%zFLN!38b#%HN$$yoCLS%Q<#)6S8-d z`*`Ma?=le*$x3CQz+vm}PA@7d9Pm@7bvNzLS`ZV}lzw0j`Y5adeEl-?Z_uDj_5T1G zsNJcNdYT^tmbi*+qw_C5=6-qqb=2X6BDpC3{YQ%7qDp0hQiBb&J6tB)w3Jl=6^@eA zJ&df8%PXjer*tk>k)-;uP%9xObAw*y-n3$hhDB)^B2ShFj7h2;UzF36w_bj_oJ#4- zAU$qCTtRuUxW3a>P?_MMP-ZF2-DUdaQfxo;Z^)qYU7t}esg%9Zv!?+}XpXLHRfPVa zd)+)U0yv3J0k*36eFs67RA1hm%hyc{O)Tggs)_8|wrQ$vc?#2Re5=DqBPQ?K4-N-g z!065HvsU6MQuZRO%x9t#lGg+L)tD_34U3k`TGvh-0D}u z$LwnD7D=T$=e!jc()9lL*=LAETrzPk+n0ax1*Jv*#TW3)d5KrhosR89DB{5KCILGK zy${=XlfcX?w`N?g1`=X!0u5fx_$&(m*Q@JZeXu*Mf3FuJZI&SN`End@P>NSHre8VF zA=XucGnyKq=-S)#D7C?df4(h3R7k1owClJ`Va6z4?w;U0z}qf=l7_wuVvmCoW!TQwC=tNhynx?GNe&4qkc21vnM=mxb#Sal zJg_W6PtxJuHm`+o;wkk#uE%7aEmF2*qZ{R_D0FXnic#*Jn6@wFC@5@nX@uGJ9k0Yq z^3GbbtVoz=KqgKecm@QZq|5L3dBWgQIW_sN9z2)&ge-=+@Rzsb9ByfUi6*VeHAFB4 z59w%LXG?06J(N315|_Ikz87-zJUJ!>N_*Q`kq(H0-bFTVu0>iYAygr!KgByL9mrFJ zQnr`!sFh4Jt6zLabWzz>WyRb!(K59jc44Qby4*S-}+DMk-(G9mhJeKi$jc&pwKB4Rx0o zhHBaNb$ouZDQL)C5z}wa|M~I1Qv%Zf4FB*vE^E`iZLW=(H%#-v0;CGNqN~sTp_G zQ4_gx1WVbxwPqWa6(8srTkVeAe~M$r@~(-Zdz|jEK};U!Ebr00q8FkxL`Aahb2NIXZYPICqQ`b@z?1TkG^t5U<4cyRLB46h@iNU6*_A>aczA^NuI@p zZb{^qD&0urOKq+R^1*-1m20g|r(F=e`2^S@NU<&E$C%3CK-T~8LjV{4tlaApe*TL- z{k;b%^_P{N-_usIX%gv1k=QAUTOofmO|p*8Oqt!=Hg6u~x<;>h|K*7Az|=9aYdgM* zSoXbD0yu^uVubZseU_`>+X1-XcDXc+8X(<9iB2;451Vn zxDq%LUb&idFWe8|yF+p2gQXvhadi#oT{0c1V-gaqySX^C*7igq;c5Rlc{r7O#3F7{`z4uVjN7l49iIlvd*a)EFW-@zz*=Tx2D_4)eHAb)I{S#+qy5DK}(@ z71pHSvJF?hV{Pt)uvx&& z%a5B95t6(L40!9?sp@?IYtlH124O&J>3};*hikS6;b4!p)42b$3{28wpQo*_JY6Ih zqSXQt&JXxf$B80-Bn?C-NOr-dGy;3vJ%Uw)BX1BzZfMM%Ke})%WB2CB$p2=c-?6h% zT=%Ow=H(_=b_R{sHBMPK&dED>`sz-y=!C>)fJG$$ig(v*j?ngTnlwWxjP!U3_v-i&9i@BuEw|2e;JXeX1ZzC=`sxK%URr?DOUl78OQyYt$$yoEK{%R2+5ynE3nbbXHSztnt^w~wYG zjuU-mNeYa7?v;XMEOisOYjONm2pVysz7VtrD{uaSGrOVswTyQ2(lUH^s+2Uh*&Lgi zF5Gj%0A7B4`S)F^xTYmKaqgQv{fzX754WV#XM5Ko8z)NB7KP9@zY?BiqH-R&u(xG>iiwh_e>zN1REkIaE!T%yUiy}iN0JNZdVEyzCqJ8?T=XWhV+Kr z_(yHuul9+D2Pc9-9*Vx_fAmbLb|&+d(R&cz#%%fL_Y+^;8)^OK<=kgs@Aba)ApIG# z!1we4>>WAidc>mnGD%gIg}cj=qXExe70nrk5BWG@Unc;ayk@Z8n3Mwv-DeWmN(3Sx z(yy0F&#Q3|+NKy|x2G!ZIbS_4dah=oHw zXkC&*{G44y%>5N_EOY1wa7hZk>o_nwQ z!=@+p!w%&FZuxgV2M28VI(mimO(9NQ#ttC(wy2iQKc$If%ao z40JLOFjFfA4Fj{HkwFcBL#Eg`kU4eQ*xa%c{iEYH+EAKp6Q!P~IpIChW5qauT|H7{ zPL(m(;C}s`D2rKzfv%1(1`S zl&*Ch-uYBz3mwx54?_ zGZB1v%Ho9S&s=pEaFMT5Tz?|G$OV0dqoKb{dq1N)zk0pD7IV%W*R@l>D<2j?~?N4%$G_a&xwMPShr$a^iW)$ z*I7eAZ|lU&j=|-9^k5^PDW`4hxt&e^OHnRw8L>n0=VBfoBjR?n7Sgb!3l;`q{I#s8 z$u}!*f7JqHZ?o_R9dd+;L}qI-nPD9&&rRIO3joups6mTLOj4u_-S-0EmhYbRbWBLW ziU;`(b74k83p9hrIEpv+l7;y#uXwc{Sj4Nwao^3`ny=cOq+2b@C3QC3z*L zEgYHA_HD;`E zs5}Y6cV|4jWufM7LUveHJ8*|VeyScHvC-7U!c-A0`t!>V# z56%re;6Ve_-mQOiZ=c=Zk%GTUaAOT0RE7r~C}F)?WeH(WXU+~YkhlR~B8crAK+icn z%%brh;`fh#0>EAi;7mH!foPe8r=Ixg#L=os))6@@>r!~agD|6cZ1~(;z|i>)pv1|c zmOhm;5gvFx{)TPN&2vjemU zB$DjJqY|@}0VvAuJC3daOKH$Hx$b=WM|wME)M1`Syu=8L?*5z|vIwQeWoWLhjvr3e z_fK?bJxVfx`F8Zd|8~9|m}LKKdv6&P_4oaK(;+3GD2O0PNK4lMf;7mWbO}mH zOLvz@Nry0ibR&&4NXH;CbeGgHFu)K4Tpz!`>lgq3{r#`|zMou=u63TwtXTtV&gY!7 z_t|^DU%N)#>CPU3`McS=mOR`~XV8}*3Ya<#%VsGhL=Ey5ZoJAuhygHV-avuP%mxVD zo3=K*9J^|MZV6H{IxRe`Aa~lyoJUE@r&B^M?%lyIrD?15gf!YZSiYj4*98m$?QNUa zqyL(d`PaMX7gDQ)Dl(haebY;eknkA(7)%`U31+gZHG!NN)PfF_Kc8BmQ-+Ob@0G7l zd0Pr4)ICx!n?mQZQGu*aTNz7%USs~M1w__CM~V_3fBf~^js!|!^nsGccu?w%M43o* zv!SV>&FVmlBYbHTt1QShEgTw|omsm=duKxb^%c|BhGFFr>Y|EZ{5`pEH_bPWz2`AK zzD0UEl9oO!%tW52WQq^LYbr>y$SD!ojLk>!51weM(2t&h$5V zJs;m;vd1>$;}#({B~oYH=fwHBLJ>}9Mgh&uVvBQKlt@=eaW12SKHQp#(YFS)rUv3m z_0ix%UOQg*2rm^B1eKq%-@HIcT@mLVcT%RONP2^DXZe9fOz~nj>Jx)axq~+7XzWHM zCZ*wkX_FU<*$P7#?p3BW97-;7O;m70yGJ(3fP$@?yA_rnm&5n|XIHD{w)B5o4x!{C zBCAU8UtKD_1}R6(D16+lm3T(3FfdvFGBmgLlX?hi#M4VA$y|rW(;S1rwVvk!v81y7 zDOaAWOpd=E*ngUgN96J47uX)1Hxznoq;~arJ?)HcO8LY`VeuL9)3@Ry$-8Ip#8y!3 z5$~&{UuKreHA;TgK`~G%ZY(A6r7?%XV*GHz_0w5G+B;ak#Hdh$0K{!nha5ttvd#@V zv)8^08J9cOAcuf@sl0I`)NXz=Lhp+@=&!w@fV3*i-T6j&LACj-_9#YmSY`j~=es|h zlMu2J-;Gu|7?WI0hk?N4@KD`)$oBj^>T*eoR%gdxgMLj6mhIDS&~}me(WGl4{$u3D|I8Fsx#OJ4 zdvqNu=zH{vi-a<-z6SgkK5Ja7QV*sar65Ylbum8`59Lt2{`8={2zN5K0X4v0GqH{< zTFBBL6Y?dkrdRi@XX%jFleLHz0Lj1vXTJF0pcbZCD{@F`O`RtUcqRfA5WY6kIFT>} z)6wi@EgZz&mEaqKd*DR1xHw`J5UHJ6yU*m=$~iDcG=roZ3*X%% zt)W6TT_?kQz;QHX*~kuYiCvZk6raYpDU1xng?e zWXkeq-j4n~Z{D}Vh5(_G%LM({0r zFOX=93FGzyA+$LGY6oX*?c*w-$bAAeGY8>D$%fhB1X4mqVsWi?y;>^yv#^^-FyYeU zmG9V*&kg6B-6Gt(kfFCksI9+cJ)FgKED?b9-Q|bW7ATA1pYw3Z(Pq^ApKT}mU}qBG za&H+wC8zN>)y$&i{!G90o{AT@WP@!ubjOu~!un>rru$~+s344M_uKzj3s7~rukY~v z@lYk30mx6d2d1*Z+NVPaapLY3ouhllQ7&%k5f@uyp609Tp**A(h64PMNI9#;i084j z2f8ZlxLuTev-KgYKn!BGsS&MZx;jhuuJnpCs}As0;CZ2i85{&d*Lq<@K-j=5rm35f zX){@2&JBL#gW2UAm1H@G+HA&@@&kOBR$WWDDcKZ~7AokJoq|Y&CHfrN_TS+H zR(i)HxfQFLJEbENoq19&*Z7nR9B%)7u1im_5(vSxMjVeL)M$}?>lix|yWiKJ@+kd+ zr7(pOvzljX-r)oFPAk8>C>xv*qioB!HK84UYL(Z|Kq1>NT)?f%;(O6TY)lW&eR;lW z|4uByW!&_;2#NbIK@{Tk+jGJE&wcH5<}($h-y1KvncRKT@9$)6XI%LRq0fUuhMb~R z_{s^^N5LYFAo%qnV=C#-yy0m|76$g~wrY2g0duhMgr70rZI3artbAaWICORJ&QoPy`=^4 z*~Xc8Voir%^K6<~A)&2`w$o1Sg_HOpZ` z;p6cdmf*g5B)o1VzE3lz@>M$b*7m!yr?by{D+gD8=J`*b(~8WAnv`GhUiD0Zo`5R3 z{T1QI$KfAEgRdk3xopSE$=tM9ar?k%r(^#~L+H?Y&p21xs}BJ<8o!58XlJ%`q4p8|_m{sd3b%BvRvV-j;LB zKz!=|tQEug1pD4~2K`k!U752HDdIyK(2~wj*xAdNFV+fq*YneT*tWspP#Z!t=DY8m zSeuISgsNT6u)ZpL)XT5^kCYFkuN)UEtiC^pxE6pmWzeAlrV7dh8jN}y1~OaGOc`ac z)$f+wOJyf$*!jr;>WgLOGJflU%IsGmbN@Zv$V(Em*mW>*sbt#T`qNFTvn4lLiks8w zE2X%YWPq?PZaH5eAY@kp6|H?U9~i1p6Pn*<<2 zoF0F6-QlBVOd4Sl-BIY_C#2f6siuU+ZzQhfohQ3KlzlZ=IAJDAU4Q(`X#&AKpmZFN zSIDHu{EKb9xaGxi_5E#MCXlqtxSfgzcV)ZH!05z>@}9Hb?NqqcLyjW2{*2;EK0zl; zM-ffn(kCIJw@oZ_z>(cD#Je;yPjQuj8em;zyJqO3{8{Ms84ctqx&^y5C^Ff6=D%cC zxo{GIb=8108^oA?b--I(+AZjJ9yaFOm(1Qa&H=R$k}f3Njcz4bI5pTI3dmMGD^~@| z7xd+BZM+l^*Tue(nh#an7_+q6s0!z|kTzWd=AsMUi{E{-W}Grr+UpheDcX4ej`ctF z)P6bsUvi$nf0@V(G|icX5f6e5URw`I%}n>X>MgH}vFqr~n|NAGp4J{cdWKG8WxrxS z))^!N7Kf351l!Eye7B}*374gOt3-DuKm2Z2YO8BJLjC*@W3TktC9F?q)Sp+>X7Akx zbojVUuvRj5lO_e&+-sqVF;Hi6I^OGvy_`-u=M&sbtXR(>iRV-K|4m7KfA23P_0=CG zwKdBsP0*`$n=y-D619b&q)ph7pV;w(GbQVE$*2}A!`hA>|BCV3j(!$jE#R!&;=YDb z>eX1!x&!B}ibQ+g%WY?O<`zb_r`GIx7qq__y+HT8xdya?mEZSEh??WUhn*!Fk0$&@e0qjA1E`Y`S#w`x>pjRP5=FETb7bvSt40Ix`mP@ zN9Id&moe+CFq~;6-rlv$UwZsjKKGuj@eaaJHxG4hbI965z<$tyYvoVBC^fGR&CuS1 zL)ud_&x=vs@+Yx-4b-_HdR?;XU6gFTZ*p#BySvwBsE%kpL7DAwWnFf23DY)WZw^fl0_I2}%DeVt9HlS6R?`%r)F7i8* zaMk!r-CXr~o$BiNB=u5Y;a0PTI$+^A6)e%FxNVrtX@yo8&T1qxX=nWT-G3JAV)_X6<7wb4InnMP^gB!?wVUrX9-PtqZ`%C?N!NE% z*IBcuzF$->Ms{R^Ymt8aYG-xJ@a4GFZZ>>Jx>;|h|6tueGoEy43%^8V$;10xh8=3Z zB%Qic+4l0szPvq`zxW9$nHIjxR;q|nAr*9TB5yc)JnQ5aM&skPL@y3s{$Lq}PE@#R zUX#*=kZ4zRdEC>U&OmZb!@oO{CBG|B@c#*{-0SLe_#6!oxo$05rvK9f;Td_Vsz)S+Y!;RXp{%-D=G7}&=xt(V!_H3x#o5_9IBALpWZIWv`kmTrSu~GxFhclhV1i$; zBF>ePN;=eU!^gE;ePg57wAk`Y1CI&%gG>?zwE#V!-w*(yKWpYYvx*8EpC=8x7wKMI zQM1;rghl>Z|4?8osxsht9c~93sBHEbKRR zv)Poql!QZS-dI@B*cX$}lW?c~(EI(@?}{Fgd+gQyhO$ zAjhFz%e==Dk%zvDtqE$0pt7tIV>1gTFR7!jNV-RGPG^6|q6=GECSQEtShq=-4G${NoAqxrKg;P+EuMl?3>p`Vfs zW-rt4TwH<_$0?9L%KkRa*XtvmV-+6sCPoN+oRmUol=)|3$TZ3|3tJN3hqUET)WkRU z6@##iRL7XBK*+XU;}6?~%}u?=4Bt<1uQP^Wo)xw3sf)jw(hN)b(ED9n6e14h8%A%t zt2%=J$h6(7TVKe^{Zdil#HE{H_cJ!G3x&9ry*Iv?+{ngKXG_=U6nd`PHX;m^Ke;U0 zZ_a8evXblPOPM9l`Omrm2>McHi$|Ke{JCE^*rZ?k8+#eB&?QBfYOy90mrvi@2-b%cwYn9kEhaXP>vn!JFp3~VVwgqzkCom3Tl##6 zSKk}qktVpf)dwGO-&d}i^?kaE>DP&ev4%$EyAJ--*UeVeQRqK{42 zB@7Y*1=9`jyXDW=M2+kI9Fdf9xiHL60(b40VDB3x#HJWm#2f*cRdtdXD^OhBY?ea_ zX)A0?0-9!>H0?TfY6XA*RXJ0L9$W+C^6Ht%)tC>#@^fPdGFDW=%NeyQy{0A z|NkwgY5RY3ngD+N|8P#T;~7vz4DHa@&@*8fQeE1dy_8EM*M=0+Y5Dg7Xg}9Gk$tj? zd}IVPa;oD_31%cp5AAS6orb@fnHUrqPe$gtd)k(pM_cH*GmZ{&tizL$RV`_9DVND* zp9=K24_;!fyVAxof=7+1Sq9jy-`_afb;iSKQ2kq163nX+rkYLlC6a_-AgHIQurMgt zSyhk7qy0T(P>)Ci>M`k4q<`3PfdJhaBCR?mjy}XxT8v6Nv*u$Kgv@fa*u1FC_~-Yg zs*{WbV|XQ^$M6qhN6nkBtAD84epS>e=2coO1m&?LEtw1q{9R{^L+*o10=3MuvJlpL zuXjb{b@yCcHPq+UKD5xRHra^X8aXJ+=@XZqWV#)Ew-#NjRxa=7tFBZZEVvA6fM~vD_$!RJXVrGthF5Gn)h!*bS@Of zbZbYteO_H#OO^?J{&)y>K-l)x|F7W8Yz}o!prwjKQp+(cu!EvcLn8?Y)b%$NQYx24t)-PP)p`X8C_yMCquOjdMK@T}^?zm&T#&zuD-%QFsevZ z1s`8lPSy!i8=vdUXXZk&vy5oPFiI9tC+;WlU z5kebB^@*TL054I@ym4Cr6R1ksJ0*hmT?>#o94Q*y1)>)4M<@k=&G))re}1 zv!M4C;;W*B&1@pxOE=d5=h5dcQ~IQR=pii6Vi{RO0qMKA{f@GR61))A*C>KFu~m+~ z=r|I7;i>TY<+@bj4NErGj>X-!|1Gu+%3!8;|3n8b^!p+s-$2TMICG^*PMg=+VrG51 zat;m~Ci+tgc=e)#5G;+OUVJwR9nT3=Fx+2G>C5*?a5f49lrQa10$+HE0ob2w$hEr% zARPM((Xu}0ozZ`EbRxO}7=RbIv|pCZiBaSkVk3l5)DakMu**!4)El(^1*h9UX2a9m z6`l3qaC(BKyl*gB>V&I>L9QB zgC!M*@dLL%5tuf;oz2#LppVP9gc#3UbJp0d%=fEGSn-lvjvp}DIDc`Ls#(pladlg- z%AS9rZIuKo%ygA#EHwinR%*IxM2o>F*1|E~;Ein$p$+(=th?g*uFgYINmri}!?hYF zF={nrmYHR9TjSerz~8RF4@g=0@)DA#*oJd$>%bh)&j8#@d^MN52|^Cnb@O{G;3&o2 zt#d&417~CUA<7Z|O--e3gM??4T{S!e=z+C*;YbHx{TRjR^S;)$>Ph{Oobzo}J^ZH# zSnol<)Ie84a^?xjc6A`v^@8+QTP>s9(f}1?!M{fw2dACh%3xWgV3-xUCvr)P0Or@k zgB0;q^)h{O-`lNg;-+xg^lyXtG4zU_u90dZ*QyGo5ep($T%jL zZ^n%Y>3JM5dmoh(*B=7rOK4Ly6-$~ZuhysFWx^2P9WU1Dmuag0wyN{a@uKvjyEDyW zf+QXQ!We#K?(*cZnMmASrl;07)d0Xqy7?!bxeoHd|Bp78t~({UlG~62cV??nxzgkg>F( zXGA;&>hIqiH!+JVd1(`Xqi}mI#=S(ONSwQOBqF5rBicN8bPqp2)OiZ3RO^;$N^f!3 zDGcO(Tw1!DbOaJg0pzj2F7^fPjaJXuBdb)8FKz-Wm!&gN>eI?~FyUDLC5fRUw-#U0 zb6SsLQIp4uZxfhXz0aT0qUi&k&Y|}IG~#pd+kf>;?7O9} zMveWgu=W+>3#SB0An^ntS!Lto&*{MHRLXZ}5hs_5MlcmCE^9Js#FZrtdjJ;DSNEwA z^jpt^#2Y42rQv&baEd$ZyT9c3Pq5Pf7tKB1yBWC=ucQI2tJti&k`v6Vh)oW(l;qAM zh+n0>;T4%z_?=7@z+?g8)_Z$lfK&D*b4L$o@h9<>{we3HaU>Tdu+MV|q04Qp1ns`wiwqJ(J?GU7Do>S4%EX@z zSn7?`0zl8^wrAzmEO#OPPL7XnX3r$miq9+bJg7WzRxjp->AR$EFNB)>;eOP9+eo|f z^(+UX_ww-q+Pahw|Km$W^w}Dto|_s2==OXw978xy_EAE(YgBo{MSg6xzikMpdiY?| z>Rh9y6mj*SVb%Y~`NNyb3#0Q#fJXNA;|(u*Hu5XNVU$I`L{Hm*PFO@?BQ=Ude6=YW z_qW?0NI*=(F)-W4@EtV|pn3bd{iUr7AILed<*E)v5ikNE=IL|Dj&<1n&n)ME;ISPj zF)1>~S$8}s2vzJlpK?j2Y_IZ+I&{;&ML%53`s&ZA2v+h4`u#IAvt78I#2>lld~VDm z8S3xuml;!6#|iS^-eN>24aKe=zC~-FbELSh8n;0N6&AWm68b<48Jq%^J-^a!ucrzT zs8N3obmy$^`Qp%!A)fg>Uno?}Ad4#1-wODFtNWcU{tjoR=LS0M_iuJjea~Cx!K=pT zJc2PW@`=)@BE{lL+o<08b*cGzHtY+yo-?KR|16UZFUNStE6Eu3D>>LQ&0D1^C!0i>l2F7zC4{S$HeLqn-$SQJOcutWmgouaeZ_8 zQXzMDstu1IRZEYL6+}|}@(%KvETe<_UKzB3{^^EQdf$H8IpZwfm_CPsb-TK8{rIAzqS3A2 zOHyqupJZ9h>5gx2_WKZ73rpsuP~b-2kMoNV#cI#pz1-Fap2=BSZZArJya_}fj#S)< zN3{RY)x0m^zlV0VU8naye(aB6hTNT|jIB4~w!l=QcO0qHJ8!AcxN7Ov zI0sa?v5_9OTv?v(tg-2Sks*aFVw8mJ5u;y`VTehT`>|(}qJpO>Cu5Va9OhdFkhGir zmEY$HoI<}PO2ApS+x%5OREoqXR00Ep1D;PRcRQH`xqMQEu&vnqbaR&y1pp2kEy;-_&PsQ+S;8zF2%YFwQbIA5tqGR$Da=-5jxU0mV=$z-|s}!d#dy&d5gT zu@yRHqw#>L#nA#ftYrt8wh>S;|uPjlkDYI4Puy(0t<;LuC zDe+RuC=CK=ySMfr_JtqKJGQezOQa0s)+GReZjJoPD0PWwH(Ut4y?jr8GZgt1o9>zUx10)-yjRgAM-ypRGi zRC*ZXvSUAt3n$K;emtHaPKJ7-7@F()p|5>VVKRO=n+K&dip`}$bDw&uo z_kCdi_fRBqWzw;1o)ElTX#4>TsSX2GCVZB}hq#m8llo?Ldsq}5nD*eXT%x%YXwT#7 zsogj<`zNqNa3nA)&+^Y&0L6Ka*zJEOY-fR)`$yHY_t)FgACv!&B9cGHt3qr5i|8iu zS(mf3vw<$^I$T&-s|yJ=?kwStvBI50Y&0FGEFr&QSO2hRtw)z`}vew>$KKDV$%zDWY`7s&5~ zpV+JIKHq6IscgEC?K9Y`p6;GBH!*>;#xxAjdq6e9QBaFT`|axN%Odi;BAtY;x)#Cw zxITKdob8Zpp+7Bc;?Mwh_+u8Tb?>8his|0WAD0cW;QZo-to!3DyaE;fWi!@Y=Pu;$ zTPTVYXw&-NyDT8!cfSCgU1AwQx0yY!&cnCU?xKm1^NJqFqocQ3ttfaxUgNQ!C%Fzm zL32s9t&WcSgdmNenhf4p5Q5;4`k@7a4v(kh5&C%}<~w{mhtLG=QU(3;Ca95;&0*5n zFKhR##a3@)xdkW>J9u)SpHeSvQEN&5=Atnj78w5m*&_(S(RWQ9A{3c=l<5*sO_wied^TmmnxLGV!JK*-kry~ z-;Z67EDZ3dAhaIv47jV}q$6A02@Nkz1DQ>XK`{eYtp3sO8`f=VU$iuE7aC_xIlB0Cu;!Mtp+IY)9$4 z*{afY-?r3Op8C&)qIaED730|Ro%hsi#fhMtdup`K0H^mvRp0%+l=-ZZRWl9ZCx3Ut z?-SHiSIw7UC8r{*J2{$ont0l!#AD4;u`j0wkz;4an9u=8sHJCg#Gv(R)4bK4lb|~M z+P@iY-{}wxtjn>1tWDMVjfbOD6?SB{)5FX1zLBl5rH`L>jylxG@3~WSc$J2sC1#Yg zzn(WP-_t68q(9j3^zAa=MpyDZtWU<(doK$Dx22L%ynU13PQ`%<86O(m>Vd;_FH``P;S9G12#SaU3D1(Dgsl6YwQrqm}C zXs12b!i6-?u(k>5c)$3YVS?JnBo(%!~7+}*@^^wS)}0OKKXIwE|nkIw7#1WxY~B@V`5hLiLs`aI?48ReRb@` zgDn|Xl}S|$s2T?!fv!}nLEhQuG9-SSLjP z<3{|g2?=6G& zx!e}Uh&b9Z@2vQYEd}#t;hUXbhQov-T`ZQz*}|NcjR)U~)$~!>Nr2@D7F6&@*fzYF zXRH)PH}*GU#@wqTJi|vy7~xa7WNbqjaP-L{F$fY1`%3D9X?R^ZLjsr5-Wn+$Ne@j! zchgm<5k_HRyfv)c#)4SFY_`aFHM?nY=oKC#hn$v65PeCbih9bnXpRfJb5on}__YeV8&WF|lzK{I!=Cdd3 zuF+m(9zu*nZ0~$e+{(%1Zq?!GQn6moNiH0Ug%^J$pE%yy=NoS=Yn~~U&CZsjL_f4P zui>&zyJbIx`Jmeeo$;tLD>Vy-{gb@7?Z2yS`qbI#k5nHmzI$({Cgmeu7iQV_V}glD z{quZ4%SgW={nX=HoJsF8*d6v`Um|ds1K|Uph5Mnhb7vi>4;N%yBrxLNw`X}%53(F3 zX^bBs0%e)reYEbEt8a~G{xlEAKxv1{qbrHE<~Z*vU`?&Y-u7-8rRZ-J+X))T#yHiU z;T;sqIMqruRdR;el+}8SUMiHp*{VLY17; z_qib0jxY3ta5#}n!gb|yA>_gO9`JFbK7%N6e`InTj>H`O9DQ>O@fd$sEYUFLNz1BZ zk+BEe9Gx(tOg>IJe`d58_N(|uz({0jcyqxaBCF@ZRyw2e7( zLYck{E1k|LdRXxFB6|6|!Ms%RkF6LleiHG*Jx0v|EJ&u?;u8$Gdb5KAQ~ATgp{n;A z9Z2_lPiNUWGe13e!)@+yZIK8aJ_21h-XdBnX64sYX8KaQ&@*tGw7#Alwl?fE|L6^t z)#c#pjF@{KUfEp2h+0HK=O{cwFZ;#aL=)DvBn*(Hsr#Jd$q8z8t3Ju_Fm+3=O(_3y ziX0YH&G{RdIHu%Zpw?o>Y-(#F$98+h^4iGQ-Lux`FyVUskz6a5m? zygj+uY0LgG(PN^dz#zU3h$tMNI`4ieHYJq(a+c*|TWW*0P;LOEuEb=Oy1DK&(6XGi za#K&w^xN@L0bfK_N?OLugldKK`DYSJo3{6ZHf`3*-bC-#N((l^2P)I!@1cG4u8N>U zz=ziIvL8W`0n?&G_lC|Z=DQRqp*d^l;!q;Xx_bKad=c5r z_#E}pL}Ic;HOJyNe4f~TGaZJZFOcIumyCI7YRUfC?SBt9De8U_(01YO)*-tus<3i; zj&P-^ZC0Q?(rBhjA35MP4^rQ2D(eyZN}nW7`f%;(?TU2|x}NWlli3|6))cUvHdTWC z6{AuYKQR%{nD6f8+d6)}l?$ix_Au5m<;uui=}-cE$V}MUM%`ed!QMTaSY`E(v>nJw zmDaQUqT1p1KJK7f9TP5SO9%2mc|MvAhAZ)u9sjD}6NM6zO5+DfY5P473q3DoSf(N+ zCy0>gGGJm^XJs~vC-pdO%i|H{uxwdJ&9X6O{$xmdSzpfqPOQ?*NAP);?(m zCAWPkxy<-rjeLb2hmGp}v6_%7cQO;zeJf>042*Ksee;)|BX3#ASx|iDQi*4L=4|H| z)n}~03m#Q9j9yZy^V6}LXS?igw{(U#WS73cAN@$y$#3)m0`TjiZ`aw^*?j*VRn7e!biTs% zW{VLbR;#o2?^;Lu(JgbvtjM9=C|rnH^oe>a*$+ROku;7y5@!odLEW#E>WE4eXDZeB zy78ouWP^3emE*X6XU|6;t**=_jZu_)@91<(MOFwo-Xw-1_I6uD&D;h#J6^GHin9^e z^Ve{K2JBex9n@Z#|Mkv};)yAljhYw6c7V2Qlw zJkg{r<apK%z54i28!0+D zqn@FKi9{A;n9FiV1(%@3Z*SN%cEg1(*R)%9tK6l>iYwmklZy&9xLw|p<=J@9P=YtpT4 z&(&6D%hl3Za|;5Qxhr)fd44Fq)50^}jp7&{|r9e}!Y=U6AWktvd1CQs8Y ze^8Zq|BDoPi8$_FB(m{7Y@ zNd$V^Y1-CWh^r%n@5b`=@_R>{N#janZjtGYpquNJNsVc_!t3qGsW!Ra4nxjcdsUMg zgVx4P#vET?+I$Qa-|pCj6FI5Y z9{IzokVKvQbO}jMJB4)LVte&sj(zFsqOI8nJo#llB7$1*k%GCEKWScpA2lablGKJLCcfL6ZU_kR*67jyIKYTzchK~Uy?G<@+hvDpUbS;TAC*;J^u3v$QaX@}66A4+ zwpPJ{pyXY#RWuXvr`vUSO9wYGAY`(xmYWfdEm3ursU64->sbsZ-nXzs zg>*@uO$*=(AHa^-*NbLH42NXh0pUy1yNuG@WaRsn_?7^_uIeH6NA(2%$T6W?mRY$# z%l`6mT!^g%7z2ziQ93-wUw=|dl||))x5C;Hj-v&7xYixl0~b$8+Yod9aP+p|jav8< zMGB0`#(9=H9W~Pmc|CtFH)8Ec&-nfCHXEjlgH|hOFZ1X)nQu|Lz4<q(0ZR9PTT8;> zLNbT{@9q4LS6>2UI*{ku-Dp$ur6BgQp^NuGcY&>~BKwu(`(vMByFasrs?aSJvwZEb zvDct2km*KJ+)hhUEN;@?RGq?z#0R>NZEnj>_dcH0 z?-U1)0YMJhj*Iz#glUB-!@+${BJeY_bA8A{iIZpm>)gxrAe);{dYPn@9&{R9Y3*#G zfvme>xWC`u)Akzuct2CGgA$fGaF+|n#&XhLi=?)~n*7o0U!fgnOQ6R3qXtL{Le@ zPcKM5u+Ya60t!PRbxIoeC$i6;o-EAAe>Hd@j&X;8rXQQ*7kS8?g@YKTymzcC@1TQ% zZECkaTCe|e>pjf+oq^F{V<5`+t9Z;J@=dZo}IA3;#VVK?)UiA z@oMV7NngGnzpRDHR3RM^|0}9a}0UQ3B{8RuKYxe13HY|-C8!~0GGLX+1*Q9FJ-PV z?4V3ex)pyrgj`lOvT^-0}PK`I7LU?Plu>1cY@cB}?pG8jSmL_Ua} zmzah?`Oa1(JEeudJ041{ap@36%yWTsw^gr+1NLMV)NECsh2CI-8PAia-!kwy@<)b|IPM_9H%=I}*zTLF^}0RR~BuECNRL%PsEe*S%rK@Q^qE zn|&-n{frodDL{C0T>`R+sg$SkVI)b;h@JAbx6e@zcY3UR!Lwe+a9dm(>nWTr1l1}e z=9JyZAaQL$^T`S7yzQG8*1m!pJ1+6qT%{Hkh;4Pc^)1Xos#jNw>pk;ldHw0JVQ<@- zd^&0tf~!Tg`=+dj-VA)(9WJu|SPn=%=V@)+;~A~*B4j1~4~FM+=c+Nmwc8JDxuCJ^ z6I&iZ5diRQ46V{;xjkRZ&AZ$mF)?_-72L5GMxp{!cfo zGV*;{;v&2;dCV_7Z^NCRAo5Pd*xafp_q@325r)Fcd_ss*1=CLhfvj6U?;>h_JIY{~ z5(9vanXOap^GnlDVicHgb0h{hs*f87wCDxt;_ueq`^YQ^+_8&0_-iH03QBE@i1+LH zIu=hO=i$`VHrP<V23}36rV$(I8!v za!W>;go0)J{`<1^k5?w<+0PL^1u%E&t6RW?dgq2+yxNDH91dNjz8WcD;9$gpRO)zb zqbmd){It{R#u8Q-U^j--MZ`D|@o#>uF7}Xf<3S^5>B2NZiEw%F3^z zofmYlMIV7}ngq{)ZC@aoVri=tA?a1lXU_HH;#A_XU;;hGes0iiK$6{>Y4B!_3tXAX zBw^eWZK5gs&|ot54CB3|wpHVvf>;^b|E0@wJS$f(&LC_z)cX@3nwHT(oC9f6et;?@c3*cavoE9|~vKyW0e5w@BvBtgLt zpLzUj^g}y^gaXN+yIL$GA7lV~PIp#rNO%^u{@>4JrQ@xhaotbV`m$D%@p$DIHiS z^A>mUzgpUO;(gxf3Tmk@%y)atUWLRWzm^lhBvZW_`0R{kv4XD6%}4cI^m?SrXlEz{ zNBomu`qNeI+|V?s@?jB=Ga!pY?-tL833Q4eoG5`?Vb|YQr?+lB4G+FK~vPC z%x}S3llZe~9S8DZ0z7zqW?}?wc>m#*?>#I?gPb6~O5B60#0p*x?G-&k(Uhqyx!C-B z4jW-bfWqmwo>2UI^?C$QMs-iWKzxyG@1p}Az$Ot?>U-nZ^}{)h3p7wox#!dyxb>*o zB|q!MhxWbZT3mtXp-vyUi@Os(s=OmZAhl@IGFdq~o2DHDn3wC!WtqAC>~Njlholi& z*zcb|GDL&PK=Y}~M7lauajR4}Ob=w5dEcR*Y`)ZwyA-HAOZh9X*ipfOectv#_{=G1 zBK;%xrMQN9cd++zjzc0j7IciiCB{;dos%RcESoieHB`Rb%~&4sx(*|Iq%Qmb;9Rx*r#Gfq(ves=vIQF#8mB zf9p=Y(6%ABzI)Jjr=E2Wq6^gWlOB3*(e`18d}OG_lt49B9qwsw^7g0u z9$rWU`y1WencbQHblvVH1qOCZ=wz7Q>fE25a}r-+E`Pi&9cL_iE%^MF-!0`%z?tqO zA8E|EXdNV!RZrpI!zq`{ZEH2m)&ZL8ET*ybB~6=WSZJ8RQN*p_oqZ;x8Y2;7@sPu) z#?Na|UoA)Vg=X~=Ia@9eHNvO7WK|3C&sqRRY$#D~KU$@j%;S68=9AFZZ&xCmZtxAn z6Xw*88i7j&awzI7B!G4FDnKvz#y`PkgzL4diIfqg78h~ho>ofzx>oOxt7P~x=gLl? zTD2c=Ad2q)6oRYR&nnL2fDYzTH~3(kukgeGlRShC`lW^ioO4O#-8Q>`73cGW`I%qos=S z;*Bf0EK^aRsq~Fqv&W+k;)xB4e{J~S!q-NM>s6HVm@A?a)(`1u5yMy+XkBb|LAWrU zxOd0I*KiqRLP7Yp{lTMyN5IwopCeF<5gTxw59NH_3vr67w$@2b!!)WJ2;TO7+*sUo z>5{p-ef@n>a9VQ@J8;_=b_olWvKrQVF7vUox8`(`CNlssDfAQEAf|!`Q765oc0T=l z$^{O%O6~weKs;C=Z|x*s4yf!^Ut<`n5gCl?dYM=ad1i(Q?iiA)J{7@Ki!Dv&yV}`Q z=HPvM2h>*@#VoS*9v4Dw<38>M@zrU*1DaS#Fk#j6DhUPV+$z0K5ay>ttqu&u!2m31 zt+=6+qd0*F#d)n`ZSVi$>Z_xoe7ClTmQD$Y0i{zya%fQzWl&JMq(qvbdq_nIX^9~u z3_6B}p*y6Tp*x4p@A16fdC%{>Yt~{tYyJW5=iYl?``XvudxSmUsYYCzo1umt*yUph zPH}!=mi6mtB@3~v7~SVT-j35twX#Z$y9RgbeDJCveLcS&Zk>4$H$>;_TSC14w!r)_ zRLgMr$-RV8Kl(-A*k9VbDN}(-Q_aKcOxbVvx*m$4KY2|^w`}{x`LpY6LP1^)C%^xz zw)D5Aq=?=?5$O7qRG^XL!vNc^L;mY+s*MT(#BBfE_7Pz@XyAryZG=}g5m|?@oGhsD zRL!%y(b!N%CF)-vOEMqP1X#Hv?Qg_4_06cbIeOHqO54N@ru}LSUsjcq>Ut=dx;SV- z1F98mv}myq+_%Hd_ek_j06vC#=RCDQ0H}tZ^s5;WjA7v^vodejodt&-BSZ0W`;zUhuqd_5&fGm3q6k*JkAR#^9AeKNfEVIT`{6@PgXR0 z1!N6<%LGI_a13@t+-s4xIv&WZ23Iba6);@G*`mj+VxMWZzG}oM#NZO zu>B@=k!#DWQyKax@bM3A!=8gSU#@DVk!YV+-;2r%Q_El0*$-zw+zYn+ogkFK4ENSZ z{j3Cw%k6sG6s~=leTaC|S_TGO?lVg8ME*S;o1u!jx8I&CNEtf?yYlb|jr~4~ z!dz#eFrhy_+^7}*G9XJtRz;?K|8?%*FypwR3v@T{)-3S-AX+~~OKfy$IVjxPpRaL$Ze!1Y}Z?be29Vf7TDY%Q-D zUK=)*Zw6a?D)MR$KamGpgKfaS0m6Vp1s^y*!C-NOg-7VY+Km0ikoc^8f!Cy%4Wu=L zDj>*&Xz>TlTl_mHC#~q7us5G4p$6JM5t+_P#T*VbBr;gM92ALQlhuOxNPVpJd-o)M z)@Rn4y<8LNM&_J^4zYXQ$$9zcc{_P#-6xk@KP7#s$491ICzHn{GlJOSIW@L=ZDNdm z6bk$o8AhtX8Qdwj`_!@sdCd>;E-*5R6>2Nmr%lEtQ_y6S; zqxJD$qeQXf=+}eWC}=hUXgdJ#bIWsDAc*zLsN*7y#Ifd)!#l^rYdv#6{as)!gp`9; z9`io#_HwsBN?phLCdvz}cavKKC33qDCHJ_WyMy2uR^Dmg_*HQ)|5O14r$d3bwN8Gk z(_$kA-X@cIEK0M4-&0i3rU3*c#&_Pv_uxVPAkrU7G~jX&U_n#eohwqS$++WHgxlAH z4$-c!ULivlPT;kBSTd9|^{M1;*x`bAJ+NI~I~ETY?(l#HXx0t<(1bPzM(a50z1E;q z=70`M2g5#!ecUrc-hG#Zv;!!!B3iXr6uHktyT1$?AwWpd21b0ZNmoApw865Cd&Tso zw%lMx|6ef$F5DSFAhR*s9+n2%Db0K&V_i#HgkNyx+bP$$c>4W=2M_V7U|Zc-aJz0d z|zA!f#3QL<9 zfTX9TbazClQiwR({dA6YV1RQGq?HRasb`-@Q(uD8Xx4pN1AY-f?o#n`zx|g-`X9dp zc%}z`BONH+pYm97*sY|&XPv)bpT2fOrAmdtPNwrC7DVYF&m@hcc4EgD{u$uJdKg=W-qc`x??rr`QXwIQRSw+HS56swKV( zi8#(K<@==j@?@G3r3cFQi{@F}?0LcRW85jZ;H%Qolg~3&ezNxSmAkDCgMvp`W&6v~ zF~~3ii0EqCpilP3A*A3s>pJUyjRwF>;T9+?C;?=`xa-*i05-^_1C^ymM0a zzMTnwi-QcpuwG7UR#EDS90K@X0cHO;-$d!2J_?fd*;2Q;`$%6xf69&k@>f$+i|3A% zC5GBh0_0eI`9Ri>o272E^lsI$EM znRJVQSAHzW`CsLIjSoAMEMBR)UYS{^_qr7osNXAx7h>{O9{xC<#;E7m-ADrbo4#ni z-Zjh`%<674A|~`!&+@57H$>Zd(p6UCNqn!{@cBIqIBbSUw&61DC^6n_9`g>Y>K^G#>S=vP%l7_K^Rsq1V^`R=Yp zIgmSA%M1cLVY^{AGQYg_%a@Nf-8@H{HP;qWF)Kfo-}ErgimG3_N$da|%H`f8YjlH0&$q=o_(!22D>U z-WG65*5#oNHbjlK)|!=By78HelEpK-I}xwG)@6!3iBXrg_bM5g)3}$2CO$Y7?YpwN@*3ag$|s)X;0zSeJi&|CFKVK?&(>B=}6?o&U6F(kIzKMdQ{M+ggik zRHNei6bSyL0~P=9pO3bz4CH-3lN(ax){bWl8|VKc!O+6TWhh2b3&k8!sS4K{P^|~6 zus5koyBXGhE#J;gbP2Dgb4qPA{bjdntv-G6gQ@T+&o1Cau&>qDYX1gLS>`ZJfy^Z; zHmJX|x9?qAKOrMa{y1s#f~e*gN70dzk57d;%g0UeXB|0W-HmKG6U@EcvNcos%38c? z&t>F)>9|)%y=fMNIn6CNF((oYjtZR)Zf4i^@6p+k7gFzfgCjP*Lk}PtL@raGi&ON$0?X2lK7~pFt9o|DUs1jEt$top$vj%WXkvNC`OpOqAzf5d>glU>8lUj{d7I%Ad~8(g*e-i#ml>tU zqW2THl|vWK1yU3JEt*getUIk@VkYST;F{45FmYl^XdxRnPgAqTTuE-M&%fT6-eO88 zUk6sV&iGeCh$=XS>xnER{gTXV9tcIHC)$8ojYX9RSIRT>jFZwutF{;Obe`w9R_R|Z z<*!@$mus0cH&I0m2fn^h>Ng%K*{T1i%mx*zJv-~h0ep>RTYZI03n~_sXSh`+JK?2i zoc-ooWo?(jqETD@)~*d6f(XKJrG>7xCEuF0QyN*MLM`ELlt ze;dAV2zH>ju~V8pnqBOmV#*O){}BlLBKNz(;h#4D_gTc;gnR?1i?`Qo`~jg#4S@`n zd;xY!Bku5L7ZS)ulzbif-L>?us3Hpq5`ch#(g(Aw&kUFUx}(bRq&5?!DbF-i481hZ za)@|&dUz)Q5KpuwkxTBkiUSX1Zttdp0Qf*E^VR(oDprB3?HtZk7_llVF%MK?$rLO> zP-ky7VIC?fjEf?gkX3bms7ck?bgM%b6>H8FX{fu+1X$9DBY7MzP;Y%-4M%6c8mG05DsoE9F{f)r`Msw#N{78kBbDhjEBeh>-=W z0M71%bh-CoKxs$H6i*f20?-=<45(O89+(^-;bJE?Z+i0pkERl!VY%?^tv{WQ=ozen z5aqjEeMKLoj+g*Zz2jYBpe7>l<4Dn}&Y?iwEI{=PZ}#M=m(s4-BC$-$OVz4Bt`uuF3!LC%iZ~<_hq&0J0%E z0pH0vW^=lLF=%ef2^w=dpohf!$g?;e3@Xo}dP zwF7?x_|;>x%;y}jGIct2`p-W{=246BtOf@j&Lq*xQ=!Y>Z)SPX%Ot-efUnpC9K=F`KhuL72B&!FAuU5XGAY z>;2UMzNPyws>+yafd#Uqv13R4mJ6yFo<12S=R-Ri(~WAP)A8MG->Q<8E&t~3*j1a- zeRjG^w`=tVH!BitU(|nl1LXSZN-qR$eYezsPH_zE9FhKi&#JbRLG6PfSG>8dThCB3~ADPWHa2mm- zq-j41g9ZzCEP8fZ6U=2pco0lMDrkR_Zp~QTF|bB6#qDuCj5Zy_S}Tp+Sk1< z)2>FG?5;2!Hm_S=Z04SQ?cNEk=O6bGD_m)Bj8PANZ;7}GqbZUOpe}c{ma)^!rj?3g z$1Eb_iG3P!?ZB^_L+rTGo&i?{ysPeP3cAXtCE2)#aU49KgD7?9KikDmrGG^Z?Hb!f zHGKR_^KPGrP!x@;4#Xg+SmfR6!hW*f$-!*bM*EH(j~|d6Kay4RG+-B! zk8&7(6!E}qFR04$CiSEtZ?Ivo;#0;$Toa;fIv#Bxhf_1afRfnbn>s#}Osg?Z-#-rB z>ULP*IZ=j}#N~4n=aJI?zQ2^*$!9gM-?_qoAtmrszgujJMj<6C;GtkzR<+ zotpBM<9)k>Jnhx~gu~DPu7qidz-!gAH}3Ln%H(%b)t(#)WE^kE#QuY?0f5A20$i4g z=)~>!X<{0IwAB6!lzN?yHyCx4$O1GusH44N@L9W~%z9wqnPlW6+WIlYZ%b2xDA z$^(YO>V$!=7aBA*yg#!_G);?NBklDIc_b@Yle%7yD7DAMX<1Pnn+o9~XPhl!8cE3` zMdK0aCitgX?^64(H`Fypd53cEA0d7k-DV@I4-Rn876vx%&ucYbB!-wKfNaAR#CaUJ z1)TbDP%&DeM}lv}1jJZ8hd+HyjErxYa=5-Dt|f50v|qMShDh!UQ5aWO*6;L*w9O5c8GaFK< zvPqm+fYO9p-PRizj6H_uH5C2ceeqx6&V()+F5BsQzln%Z2+-1Y2La^?x8@q^%k1sb zr6yo@LcPEY_X)oY<*C68_QRu@3E=s(+*J+i|Ld_{FqQS=zAF_xHlc%6WF;#QD6R)a`=ggE!5>^ zbp2|PXV>F0Tb}2&8!BZIzxp)WsS>GNu^-&Vl_=WKXWq}V_~g-^dDX8zo9mwgU*kpH zH+0r@{#M|07+8r_P9SWR<%I4?N5ie!vNk!Gwb~jRQr_Q_#ZF0tOIG{ya(w^OWN$%1 z%J3B)F09)#m|lQarVVwbN#|m|g4b8)oVv{N)<;$-_2t;^I}!R{k055T@m7+qUE^Ga zWpUypd~-?`B>&$iJK1$zE=qihEMSq>f3gT2G&fAvsQjR+({=pP4M|%xg{Ht-h|OGS zO11fbD@i*#7i(e%@uR+H&W!&yNbjKkYmivPkn_)LuLHP@W3h^<;bVtKcW)-Re&;m- zZ1}weB(42xFCa}Kg@OjM8K-4Ob9Mv|odEV?<%M7uxdBq{^HB-ov+q&b;lf}FTqYV= zA`&=@Brb?MasrG{(+@<@0N8`p%?lN43?@KmcmTx&xl?K2xGdDz06see1g)wkRZ^PI zDVXi3K_Hacc;8g@wsp@^_L()E(1J2A-jzGA3jXWb0Ywl#;0lLfKcPm41%&#J(dlqL z1_gyEyakQXz-?d8Y3MB`6QDSLk_3vYeJV4tM3|{;k|pM$hPwk<{pHrPuQRcsWHM4d zOsuh4S488{*a$!0pT12!E||vGs{ZSY0Jrtf0##Gap#Z0UeyV{! zU$>~3O?qfP`icJXj`?htA{PO}tjCV}^AL+?=;kE%G>|-Orc-)oP z96jUxG=7WgVS@b;T*KFMIP4F;fU@!a|G<7)E*t?L@BP6Se^(f(cQwNb z4aM)A0V|@x<)BoeNG@w3}V4^4V(#DT`Lfge0AmJtaMwT@LM90c^N+Wm;={uBm?)H;oLAhjHC*l6s*)>W#y(#J|XC=n-8NR6wML6RzB%dl|@;2R=2eJ!u^Na&; zxFsD(OpQiM=}xak{D%EB|G_Nk*a765rg0(N^}+%gk02d8zZ?ZX#;i-v^;oi?G*J3m z2I{Lj05*ihPKQN+qG_M-?u*G158RM*k-1^}5W#+@h(cB}$Yn~v*b%R*Tb>b*CQA6y z+YO4CSO4+*K?s2p{~?j{7D|(XGo$y??XD9h_Mm0?{F1Dum|EXUukflenspC zQ&Z%67wA56$j0}ie2D3SD$t^M3G^6j11wY;P3-9Md!SKqN4?e2CZ#2(fB<4jxi|we zvs1SO7F$5KW8*n>J!6hJ^JNO&aP?=R0B8qkd{LKP$h&*~ z)`(VVM9|pbUwFAnf-ej3!)}EM?K;Ed18;!T@og-LBwDrmoC5^)Qor9``;zDhsp8kZ zba**4Qk@ZRCZ-4I>l-t>vXVUMb=x654#FO2l_5LUew!Lo!lt`T%cl(lB`m18!{i>1 z-`+~aGRex4#ev;O*J;U4WzgRAk}5z_{>^B*T%Y~ksQwN_!&m~++ojG>3gq^CHSW-R}bQi~-!?nr-x7Boj{P^7;j)LjkS2YiP%Wo$y*3zz&Vn zmw-O#82&)t31MjEEdvtNd5+RK{Auap-bu2@|N3)snvW<>{th??I7`eLz?S?m+giG{@&IN z5_{mTkiHo%0#{m7H~?I>+bRy6p!FQR?EW%Z6Cc5(^lsYSy2tcESegnT3Q2?s*id$} z**MA|_a9$_itR~7@MQ@7YRqiyM1J?)r6IwERL67iOP6r+gmCD4#8`O58Pvw2tvchk zf9w|h^=wZ^1qIwU26%Urca(uc6vCnPaK`ghB!*%mjzlTih#+R%S*YRQ0GC_FAA5_9 z?~}Q$%)&B=ATXQ(kHUlTy;ivm?kh#5BhP$304+XNT+hep9!bwgFIpy zIveSZJnJsfJEYsC+y8m>dIW$NhG%i>Ox|7iy73lkcv>4>z1RVTTiJH~b=Adc`gjP7 zTBE;w2;d@Mv*C?<$GUk&;J<$OZ3zj0D+`WkEB9E5vB<*j0vL>j-(3pVezeCjUopV9 zPBsXcmVdeOY+TWE-A@B;-C08obj$xlY2Hn{u*?1jr4Nw$1|r1-y4URQa(h=3Cpn>JK7NiUd_K? z)zS`+#`yF_@osc-qZ%JWO!ZX8wt7>>^$t0)aHeYRb(k!Vvvc!P`7>MHOnyE#Ty~Y+ zk^WkI7KtP0C;arIX|Ba8h2B{tmf8zL>L$@C4RRFNR)2Fdopv|uDd6># z*%3E5Y0iqlp6P7IN=OjPtF|$*f1eh@U0o4jmW`1nuyZfinkp^ZWVfMVR6ZXp1R4+C zr3@U*SfsN%5OPq&$&|cs*|*(S{!So&kdKyE{J4U@yL2BGse>^!Q`#Ok*(59=qYxUeY&0j+QM|&H|Wc{VXVB6_4H_0p%cBeRs&egqIOLl zo+g=K-X|1w!Z9euOTjsM_c?4l;mrQ4zy`p}Z@A2=eab0`-XzKsAamr}>T_6-`gK6l z(4Kchut?y-~InH7&$n>Q*KDra-C`{w&(Y|$5}BKl#w zVY}RSvC3*_1}IVLVo*S=f3OsK(4L|0F(#_p$z^2sby$8CG>~Ncbdli4UxVZW1~U2D7Zax~Pqg&jg5uw)aL8gq>YD?oDBrLy7~I zaRFU!H@2q>>wy1DV5;i)Mv`rkcMAKG!ia6d-Gfmpkupm?)h@1QbL7j8Dy!E^Y>@n$ z>*jkgm^_SbOy|dQTQo4Dy}hA-$a}9)^{E_mO$!Fq|w_>uW*vt7>|CjP?X9JA) z>CxJWB)$WUYbTK(;E&h0Eci4v?%)bQ>d7w=N*Zu0a-apI9Hb=xiGVnq@GBZcaC(m!xN#ve#rFc$bgR^CpN!QD z=(+*Xx)vxjIXduFm#HN0-B1d$op&(g1M=r#cdOt26lACEF?UaafVS9IyDq+hg~(pd zO7fivGkElsPd~ic)vCK*fFJTrM&CA;PrsF~4Ny(rQxYT|n5f@jO+*G6jD|+Sdem** z(bDu|XY}7E?#G@K5bGED1Kg5JB>PjBUY?-E1Bc69+ixLUV@J#Ob}P;}yC#?#WN4Q6 z7a|`|ITC{)li5$0j!7ecOVt0HJ&*PPQlVA}s#_x>yIL!0Plu0YJdNJF!PS z4>Eys2R557V={7MU$Gftr(~9!NWD(k@Kfk*_!Mfn(ACp{91KOf0&-3H(!C&XLFe4*NQWul{ZNbAySDnbf2P3 zn?firtHAg6dv#i10LZB-CB=qb1uJg3dkF_vWnDY=^o;HEm%bEq^|sqkR1Z+co%xI_ zxzPY{bjmmgjqpXes1=}NAQ0xjC=aIb=w{VQhqidjSsQ;a{%a`c%K#jLsocG!w${xd zq{Ge{D@8qB``*P+{nI@bKYlm^A)4gD%U^tPtA#JG{9Yv@GyP(R!i3$bdpiGmo!9!x z)-LM2EVvYt5&g4%?vQ`vJ}Bp|06c_`ti*4Hj(LA`;nuOhEw}r_ zKcVc{GzZxzDEFF`ey+{`QqHX-!$xE;6Seh4t4-HfSH{5eA=F#$NPSCnofcr! zi^!dy#{z59mT7dftNQJsG|y7SiDz?ytVCno2V-mFpCsFh zBB*?+u6x1Ko5v>X7Yew7_yd2qr{u(GiS zj)I=St%{(5m^C82@^6?X`wNm0Io0|3DXu9lK6QK=5Bxb;j{E$gHIH7j-?e0A^Mwv<(K`ugj;U?qlVGI{>+W80-3Hu>aiEa+uLGXK&A`e zy0m!B+FiM`V?1X`Fr{Kh{Tnr^OiW}0L5fyqL^kQSYmBmy}HvlM>GE?`if3&}whKSY&qJs*N2 zgx_@jJ_Nhfu%Q0;hZ~~KXrm>^Inr`)1z0j(H_G>@+YP07R? z;sF-i9I4QbPkX-`LUN8omAL!#iVj6eWO<39AA~kDoJLnd+z4~#!@ZDOwRPQJ{%LL> zEl}7{V{0;wM+yM?d#y*kjk~^F9Lsk$D-JVLGtmr8lYD|ITkEFXwLNtyv|SjZ-H)Bh z5VC1`)sA=f1aRWF*$;RGugER@)BVw8KnhpsxAq(lA(o!$D>#^(hLwnv1Q`6TcX72P zE7LA@bV~*S>VavFTq=TgSkl!tXqL0>>XIC()C^8Qqw}&O0T+@v!#erVB5=&(#4Ndt zl5hWoUfLGSR&qdi=jqPVc=#JZ9G3lZLD~bv^F4Ncqf#|}FXVz$M_t&L=j|TMJrx32 zG^bzIuHmOo7J|ekcJDvTS1|fn&&MV(LH;5Vf8`Z16o2qeHtEODU+RNkINdZD(w-cF zSxtx~j6Qvw$e2-xdipyyLTeytRn>a#Px+gh89Kxx=~d~~|J)>A93U^jMHKI{ugGO^ z`DOz|VvsubG2xx;cjO+<6C3*eF|J%#&~2Q+p_();`Nb@{ALlD6O7OfHq1uqTXQ)^j z&=Fh8-6CA{H@(_e)WYkrz1C{q{mwNp8E{O$vU=0{uvP$Q8Sb{N(}z@sM6KH0R0i(cZ+UVCBf zt%~1Qd%GgVOsL@?t?$V;XQIy4NRA(i0bB|s2+RS@cr(nTmROymo;sJ|Bo~JkPA1E059)ij3oj%-Z@4IX!#cQ;6AZ8t;A#>>MBjHPeke+8hZahEkB7BH;`t}O)m$^vnYu1FXZQh=Y?_o2W z{e!W9&%VGv$*7R_d|_jCpYyj`E3D7C`F@w4N55G_y`SV(uV!BkorB0)nm5477j$*> ztW2lT8jS5)Pel+idL_KDP`1BE4Gw0&Il69Xv=UGCM@Ze)9k0sF%RLK`+U0x21NDD@ zQF5w%lFsB+Jn4AjRc5_}4?8oR7yTq(q9Q46s^>YZtf3$+AE*6HJ7n!X4FVfCt;Owi z9Qx%jBO?Y~1ya^2{2P>&d0D|JaynituC1o4ftc|WHKB&i)T1D?*R;olHaA`^*2cIjqPbi*lc>8}~cba~%r3iazZUnAm+1}iKe`iF6` zqmfHdvQq|*H=dR)o?CsUVJu9zIi8yg76@14>5f!bzwT<*XYp^bP-#={fk91mxvqR; z|46Cpa?QRYEjw0Z^JD&}@{zy$uTKoE`ejdTVFzt=$+7BJO);1IDf1Kaa%MZe?uVb$1RV^nA0~L= zq9^U+NkiJIO4_7$-o_D`RkNI=F3gMfRJ=q*b^w=$*n_qxF)D@R1y}FuVd{C`If-|3 zW?gQA$I^7}ev4tU7bm2K6?w5qLEEAxPC%xFSqNhh8IZgD zB6XQBTEIa~vy!$NObYrs4>3veTs-LLJy}CM;$m_)SNaMq#^f?eq-Y!YbzPlxq$j0c zEvsQBt7Ua`b96ALBT6gKd>UbQni zJR7at>Eh~>b)UCThb)|F`NetOT);Hf_D}457oFBh!{v%2))f2D(Ae0eJD>i zF83O(5MCcrnuJrJ*s(@azNd3$TMdrG?KF4l*PCCic5ziE+Z0tx6M{ZauPy?Y$!;1U zR(ZRRobwc3ufjx5+j&~0yFNKgJ(KMBUj3FwdJ%mQyVyc5BUT0;r0rHa7}Ykk9;iN@ z^M2jIJ>WWSXoH#Y+7f7j#L)@U+}7P*+jY_mkb5d73q6e^c!(wP*>St%DOZ2}Wuc6w zE8BbvxxBfCU_2Yo1HHaq)oX~_zAYKIiAx6OfXmB@aU;>n86Qn59}x@G*QZRDES_hk zn6VUxWTA$$nNV{1t3l*azNq>h91!Ww`CZz%`86>ug{>ic+ie?erf|<7tDP-g7=ji5 z69ycqhRc4L-i^G}_q0@KQAQ7h&!W@nPdjMx&h)UWrar=ZS2w8Gq6fz^GQf(24vTrO z{!$Rrz9rMUmhNlWaCJzGIR~zVgpq&W)jm?63d5lQ^aSiGS=HDp{v~lhY4Vac^q7h7 zQ4^lqJwgo+@1*-&eYIPvwo2bc<>4SSzZQI+Qr*ct1HKSXDXJaAh6bk1Uyor~P9qBl z&r$V3mp3&wMH@Z%m-OnrDF<~gF%nU1#&5qVcgN^>;(A_Q)OgAmE0d*Nl}K}wf)0)} zp(Q&lOshC5y`)v{g^jyYBf{O@<7w^_5D=l3{aX@>U=iVT%a!kD@?WL{d;!ptXy{ck zc{2mUhjI0N_fTJ$Jc_ucd%c#y1QIG=$P7c`P6wE+H}3gdrhI~k$zQ<28>58htdKkX zc8_>Zl8wE0-dvJ|kSrPbZ{#HQzR@;XIQ-+f_Q|1UxJ@z36R9K=)d7tI|S~b1TVjAvF<8sVr{v#4B=uD+Yp|Mw& zO6Z~Olt)87!C6_jgW9123^IrDNI4g;w^~R`$RnRJ671~Sx;uZpUQN0lXm@gTQuHY? zej*{GmtrXUFPLbp@Gg|Yu;^d7@-y2%cZ_QwPNWjLo}wj?@~mg?_$0|5i>&}OA>EYV z_GVuamf(sjTW2CwHnk>T;kO5{&&7}*u8pn736NB;MEXBfQLHlmI zGuD7bsQq@4*+=0KNO#p>s=hZk%=zybVwRwC;y{dz)QE2^HLdW94!ahviN<+|2W?0R^ip{)yWR+<3>!s3^H}x*nd{GSqmO6jl8xwq<1=PEWpVDTc81;P-HsZTcE=PQZ5!~^mU3tU4W2bQYao7ON< z-~Gn3@8C&{+!-1t=ps`C_o|gC=xheoF9PzNsi8b=hBjOc`CKf4Q!3}ZL@5V%3BXlC zSdan8jydsN;kCN!6MgYI%!&T$Qk0w+;0+6_O);({UY0lmnDKNox4M&Gd;}}LM}NZH zZZ7tNPWz@E>PJ%&fvBSd1$)?gJO4ia6q1@gdA`>Mt~c>NQJ5aoCYL|TND(D;bDR3A z$T~>K@i8QA*cCRiFfS_9coefkZZHfRfY`C^>pSe0+j(8?Nc3I6`ilo+aiCXUOfL5| zGs)c>Oj&%;H@N$dn~Cqe9bkX+>1U;Idd!`6rX_LFSw|5(3;Fg>Yi(BnHm$N`)mc(2 zA#?}{0%jKlW4WYe8W8CkYw#{lC;RT6nqb3Ve+bpcV||VG4zREJSh_b-60C6Z(7~$d zL5()W(oJ&(I*b~@GWCQ}LoV_XLpk-u?=hor$9MlCIhXYB4RdEl2-hUODvNvl$}9%Nh0HLKsV`zjMYj-=iqAvm zb%Y`^Qi&Y{mhQMPSAqWs&cw0>s2m?AA-*?MhAESutM5Gx6lyHCxbW@l zK@IR631aDN;aDQ*rUS~}%NzplTj`zcRoz5hHKRzS@1+~xg8-`$0=D(OHOoz|a5hG{ zRJ{GC;4A~Cj`|3vT(58x4@fUA1l)IJ(_Hqs@U~c9RSszD)}ZnYTBFR!_HSs6TBA0k zTa1Q$A2^d-OrtqP;1+8Tu(Dk+?Wy;9@r;rgfOoYUWk>ej%bO?9bAf%&GS6a@jq!KB z3u)kA5RZolE2eo^sBjt5-^ z;8Vqy3|q;QFjwO5zBrM!(~a%jIBlCTu~AdeCmd?t^Bw26>V;F-$*?LF2gx@6+@T?u z7F7Jkmi>xRTaRg*V2@FpZ+@sq6>jwwT(dW$gV^zV#wkVfrE-Ij3z`Z_smuQ>byl_m z#uzY{3+TF2?Y|gJ#Dee$T>yH)Gm?yRjim#ghZRK?MSlwk|Nh{2p;$D!DZhZC14M|& zfG%oE91p*VP?&qBQk1bY%;ELShL7Ts=(`jUYN*T=h_ zd8g_q>t%o2eH4(+>I4{i_q}=B<$a(+cMq4_$D3%IeLK#mJd+|Qi=bOer{)iyGQ;V` zmP~#YHZ5M9x^Nt~#yhlEChnr*>wBswY70fI=7AhL?qAPdZH_}x)c)m~-X0_>0yK|` z6VMwIq1fa*q0RS*l&@CEY{*_4VJn~xMlh&*!=!?Wlz@eS2j1i!Lt`G=;@|P|}djD-t@_y7}UlI~`K*g$yRoJu~9k zJyzb_`z{w3274&3CEw=wXnh=up;@Ydit;e*1|{6}i@-V1>^-A7o-0a^A>k#izZ3b{ zb8MYQXhcc+Ty2NE*2AwxRkwm$4UqSx|;q0unm&-NrqZX}K%z(({_%c3v!KpgZ#jkN=6# zWci=I6suIXnDalx1Jfdv@~1C|Jmjvm$nP!9)omWC8QwOvovAQNBsqYq9Ed!qaN*ku z;wCw`TThZ}AJRGL2FHta@hpFeYbwUZr>WgTbH; z#d*4IX2hTMF*IM<&xxht0pF9$KVh9MTVcnX3d~a{oh{_w9DL3E-I*xpt2Uo5>k9%2VFV+xxY zu2VPrd^IoW*w`u+@SdK$lh0osbqU(+D9KMJ_qa}4V#64Ou1khZ#T@gqg4=1wIj&Px zRy6ADcT!_@JF)wilhQ$r8_8I?8%(VrL=`8<0--()LPUFl27Fg@H9Z}DZ)R{kgSQvy zcR6^8g=eh-KF;5aNl2#18X~p=?8k6#M{X`9wwaqjBF2lw;|gugmVc(9Mxs6QN+V18pcH{ktq_!R%^U< zDXBh(gk+XLu=3d|keGIAj!Hf&35%TdXtA8OyrKyaU(ydE@Rw7$WF;6e&ICW&M}%BH zDNrXb$8#k@8)lslg`cjyf1YwiexJ*iM_!jIp@s*ZUIru=qZDU5!0s=yc5|?y+%rCj zpB-n_0>-iVbDxEZ+zppjc$^ov2KMo(H4>K(7m#O}Ds5|04@4vyyZwBlo@rd5uR9P@ zKrUNUw3Ui9t`;k=N zx1ehuCcy4&q(>84@Wl=K0V6M~eyLp3dvka5fO(#9gs>k*-&Zdk%(B7hML!QbKi9RI z#XGZ$$35zJxM(?96Q$A!D*Th)3qk~Zd***t^3;24w%E0_IDrd=&P(_E0GG+&!UGL} z{SQA?J7JF9n4x+D!|j+I-0jw6MDafEzRzv_Y41XqUtS}^s?rW{7e>T*#=a{nGbrl8 z;ZP4!sE#$Z#~f^&*=?@$ZJMJ+PxJVAR=UZj^AJz;&1GsEZ^6K)2|a)8RKR)6N7%_! zzvbeW>8hcIwaGX%+N~}1jT@yUiN0dt-!^q6lG5?-|Muz8V=PF4$W1#V)tV{kK((90 zj(US17fn+qxkVXynHPEw=FN}gnY74IIKX;I@1P^W6_ zpO!{c^Y%2yW{`JdKb~}H3cb0aRc>9uMih&6ToX~$x!FsP7EasOkMizd$*kt4>`E5; z@}OcbBHwYNu|$N)gU4*xZC+T*1sY^Ttecg8>+TC@BlehkCZC3eD7<7MUY$qun(+6u27~02QfXkGh}7px!t+0C#aHC0pz7I^T2L;?{Yv}~hWPD=8)0jCVh=#lbO9RhxnghY;UqsT8-v5@``1*zWedKzuax(_+= z5)Tm9b!5$HOmhpp1ABy;liQpRku!2@do_agTfJY*r7L^LoQY#WdlPS9ovWYIrH&9z zt(0NkD(C&CIb{ zKi$(Mf=s%nn1_f5i`^8~#31i_SQbfDQ?-An#73Mj8|XB`cxVwN6(W5R_ln3=G9tf6 ze*b4#;zK-K_T>7a&XwUwAw}kkz|tSX$;DXD-GF5xXu{8e`S6ye)&8_1eY_mQ-}ViF zWZnyYXhI4N2ud`%dZk3@f8)7!1h*0`Ee@DzJu?vi?%p#t|!Nv{U zbH_FzCXKFdUlFqgAB*^+HYzukW7Ug^q!ikz{T)*^w;dW9*7QjHH*l&Z9e@ zcs^}7HZ)GzF_z{_@dtPeh20XZk`~wQgQ`Ro|6_x|_U<3_jxEm1v+na1rSJwe3sBtR zy0XsMJ5m+nuR({V^}$|P%AJA48_SVj`CqQjxIGXl+sTb*u8OF=`1PAgUJ5nE0E`ak z8|NB2cz_$gOnzp%*sBReVhH#p8@$mC*VQ@GA_V-sdXr756;3S|!79>WU%Oo8rY$q4 zojkiZB=Seb`#84pkOnRbPcV~t>3WHk#UyNW^)s%gquK`c3mh~#Pg(qaY?OEB&T>!F zPs933H`G-GXPk#g-5P=~r-DulZD=3nxh*}M771f=379ja|kU_R9#UGy9UszSeOj-o?&8pvorD4oa^mt!70& z#75(rG$rTh+B|OlMQpc>Lafr0L7c!K)^iM{-(0|zS%i*s`}Cf}slwhOuv1FcoEcB@ z>CTGqs$}_2$XaEs6j{fs_J?q;d^#r~t0w-^MH0BY&gg>+lLdgY8It7t-V?lMT}OL8KbooMNzAEln|{^tyO!*rmemA zC^c%OHDVJph!Hck_uJ?HJn#Gb{^vc;A;;lJ;`6!3bzk>&0lQNXVGwmov@7`$IT%Xx z!oIAUlW&_ABBCP@(D$&Fbv=Kg~hWlV@I7{F&nc!a-7~d z9paJ@%?w5wK^evoT%UL;WsE*8rVyoM9HA8sab1AAQTW*q`CEW=caV!9;qWzm28R5; zxVOskirLwk<`*r@n5i?K*_sGXma;cKTL6g>=>4|5{&DY*Vo>Am=95f~#JYGc0-H_z zGAs6v1Sj#EM>4yL2uVQh|D=heCJde4jgn`?=iWq8LLryQ>-YOF?!A<3{-o6$3>!Yodu=60OxUNtC}(VwDj2HS*`#upB$Uu& z7Ux+$*5>aUs=B zxcefMYa}{|@vP@xpYw!J!&5YPd);YPmlV0Uub0X!t#z~KKZ^ojxxjC;ZC<|c9OjN= zFwi|2*0`J6*+y_4$p|m5R3w2wPk;XP9)uVLm?YIm089D27~jpmVQeZWHW>@YY!cC@ zH-O1Z?S(3vBle*XZ3yH_uwR6o#OP6J|D%-%dRWJ6GW9otZT{o#_NZ^buArQtO}%>y zFl#0R2^LDd^vOaX9=>5$)%X$Es9Ry6t%ERi96Wv?`Z4?YM@b3^^k$xi_?Pj}jtM>1 z$R&3`Zt%u+t9Il0J`X@v(s4UGKyVhs{<|>>BzSnEt3I<5ft~RbdDTXs{5M@9hq$(` zKP}=WPu{GKCGhnJbjUI>@*AbIit@s<8%94$a6`#*#TxSFva{aG>F{oc z)i|h9Mf-BI2THA78w711@*44Cu7$j7BSjk3ja)(&!O&6aEMG!~PqM!D10`8}a8Bs* zhec6LI3$k|PkK^ygD04F9KM_#Nt@0L|3LJaNY zw;|o};`w$hX*eKI?d)CjmrCxB#&i6CEQU|wpWfS^axANO$71`&_%#FmSJTa6H=d9F zTl&Jx1R5JM0_)tY0V_WE40etPZ@6MR3seL{c9G#eyfa@4VdAb&FlsSYApB$V<4GbE z%lu$95$gWI0S_bKRI90;G-M&b13{bb>ccR0DlN93pe1rX7v@>vD`>b?O zST>OF9eEx0NG&7)U-J1g5eiq@f;K^Ai>jccv=zp{!I~2km<3?Qttv;ka+eY3$<9p_ zLzIXt=dD5;?>3OQfKh_VhqL7f0kc}&6l000N9g2o;gCwo&v%X5|N1TwA-_e>Y&;B* zP%5XV_{|c}Zrr~A=VP0r?co=cvaCPHxWZ0zXJVuT{Y}0x3f%3~Vh=ew;!j=YLA5_W z@1$3u)Z-tPGwccmVO32z?-?olo3XL8;DZ;r017vbL;;TR?WlNWD%+~VY2m*61Q4bI zCYP^+uyIfbCkc|No~T&+$sJjmFo zHGzq}Kd%Nvj7H*;bZyvh>bdL?;wOaoikG~Wl%RB4yGn#WNukhB=I@ao5dy1jCeL(F ztv*}QBMZxIP(;Xjmvi7%a`?8`$TqzTM8Sf??I+BAQvS z<`^m7tBL|h;V{BaqwFiUK#!zm5mH#k5;+nFBlI=_?4T`f;x*OYyMf!bhe@7PiOaR= zNfxgT9<-;jZiP|7ug(I2o#zuel=*k9u-n@qCHuAK?%8WP(Xs6=ggP=ki2QlM+ z(wXdftOVUiA{jGnPP1Q?YPpzTBD*H=kX5qmpsPCe-^GOb=vT+Lt5{j#a$`5mt>l3iA0j23{w)yi>#fOc5IEyDqNqL8! zA#x&1QPDtMF=Ho4jI)C8w_jw008m`Jo|@Ii_vLR`rlM<)KUc@193EPm0Gx|1ED_(;UmAV3Bm?nPFZm{J>hZfr`Eo+l7{#Ofe%mRuwxypV}>tOmG zLg17Yr7?s0#=Otbea-94(PE@N_%)CfQ~}xLeJ0Uz{|S0PtIA8wF+7wzXTIQJJA*UH zOcy&TWK3jC*Z9<Dcj>KKCo}qxeS5c$10ez z$@ZhQWQTq>H2``qFJ7y1QJtNgQtGw+nqkOKU zYVmMemp>y(AaSnjX#$f|^ztxze?SGKCVXe~6~)t=6-IIYQc$)d=aWW2Ft2N!TaMdz z@FwMa+uMcT=5t4hx#jThOvsQ`ABWb_`!9+9DRTXP9}!TpO;+SFEX?m)QEBsxr537( z6Fwol1Iz(lQBrCvvN*cHEzKXls^9e|ryG(ha$WH4{w|5Jbd< ze4c+7?Da^>f!hBE+6u0Z0g z1ozMP(S?0kjoE)5o`HM?BYSj4AAP-3GD}j9@UWP#=oFsHD*ri^kypIxVoC9y2&R__ za@lR2Yw#$18Kw65TD==R#BK5m+?JYlAUsBS$V%v9-bWgT(zv$UVEH}63vLib4j(8EbrWU`p! zQ`ltFUB@*;I@oQEd^!&5JW8AruS0ZYLDvy7-5g%rmd-|b8tOdmxe+og0D}Pio|uV! zB4B&cjtc#4dEr3+)DhN^ztzZ6pW>V%zSxjhqZ1ZOkBKQBa1h_<0o36GXhVltkwbjq z9|6ZWJ1$u3nx#ON9eHW~>#lZ*XNL$ZIY7`5Z&|)=_f^f&)!nBSlp=%)KcYKcc1E0; z6<@IsD5nkvMxc`?j4rQvMv}kKm0!$wpbBh0BLo1p?4ZuX;v861Wup1ybkx^u$R7~4 z@i2JUfxrTds_hCUTkM_1EHM(Twajc`L>Oo`n;N2o(4KZ*dS4hKY|=QL)h_Md|!;5xLRBu0a>w%`3u5hJQSp zd`0mBYzETd=GeVFgDdLue}@AZ_LN@vC+IlK=`xPdk`Ad0`i%Ghe0NUq-aO_6aXMY{ z1I`5=O%Tmf1uPF4QBTD045J>{GfzeM#VeCni2W4WU>GnaiE>k#qLMS4&KMjk6co6N z4^FdamVJo42gR5{r2Zy>oU=38zm@1w)qnE21L9wQkpJ+F8~j>x;Jwvrw@l>?NMJes z^-@o+a(BMb%oHL5UR-58Ac08CFP;qbSeRt8tys_KCpwGyQp<&7q3i; zn#%pU2+4eN4Tf|(6*}@GvaSlan7j@6Gs|6wi(X)U1_?m?EFbk+&v=&6|7(TooeSz-QIQ*B>ubx#_| zI;+rA3$BAfV#)FA4VIn0t6#&oDnCn%lG>sY49!-vh<=i?QMT`o#z8BuYag6c0GaQm zgS~<%)!(NFvW!^>E`%E*Tqil>_~X({jn35#z$?(nljBpiVCV|b)PrlVz5Q}(dm-Z| z?=Wi4h)48Wq`dNY1bnMOr{j^Dns4QzR+^0blkf91?cVcKLw6~;GrQB9C=d1@{sv>z zd?j2Mvz8yrBVx+fZ;|2iYTJL%N|N_zBdwx1ZMMwIxrCXnQ+IqkEbr@!yw0oQ#VT)hR1N@lv zZY~1Rs;1za!q(FttUb zvnw+r!v*7|!V#40Oukq#Ue4)J+X6s2gD6U%+%W4X+KHZ-r&z!lV_3Rf43fpvO>)TH z-WVQb*L9`rhn?l^`U-J^f0h;hpb$ljE-!}#6S$iJZk7P>=}tPnL!5Jgm(FMR?CoK< zzSLxzzWLZlRTFX3x2v^pGGn$?MNRwP2h=GcDajv;PedVn(4ZD~&9er5yse{J%c*;RyO*_mL#a6Fy1v${sF&^s5YP4cwyMS`&N;ekchKQ^OZ}Uk zw}9o{GlPjBzef^o%vXsMZV=seLy239pZwu!J?uV&S7tK7=(z~3)zk>;hEzF^Q$tcD zk?E|=>q?fx0w)0McOW-=NKCq78hhX$H_F>eqYBt)UR(E}I4S*0sDyI$$=9=rO3uCG zg5%~oE69*4+HPLO+49z0^W>2Jc15H<*JE-c4VKxX6@{n#!6$v$C{ zyT|Vw($Mh7J9C#VZ#2`Kva!fng)P~k&M?~7<@#n*dT+Xqjb7QIro6{&tu2V5Q3_)( zjQXu?!YWwDJ6P}oW>byx)mmPg0fy4c6NZWJr1vH3v1 z@{MH7Zxw#x6e^ql^I%YwEMV<#{*^pJDlIGrMBZ1K&FJ(gq)-J}jaJt) zoQgh5qSlc(RnDb?KcN%m|@r;?jsV-MNJGt zRNHNW##9`bH*&J_Eoy2$kIE5MN>VoF)YJ^*P*)Ib&7VEfH#JY0mVcQ#rJcZp{yN8J zHYMEOn{y^43TdhgcoXKm+ME3mEheke5Nh|s*(FYfFWqT+y~LMrRASubU1RPOS0j6; zf2i5^htW65?Mp(N#XwDw;l}JFK<95jmCmnM;Lp$3p&rK=@HAO9v8mQeHvL(d%MPHK z&+6hgPzCvyJWpzUryAeg`&9L)yvI;ejK6SE5g8`6H3^goOPNzulkvjd7iwP z)pKKb7YtRiC@w}^x^vyj@GsvZxpyWC@oG3wT9=W=d#gulBe0C`+E7EsAI+MauRe_L z6^-!@$1n7C!I7O+V_1;yh7voV-_Y_0CO%^mtH;k^O5gK*aQb&-%v7QWNp5 zuBs=~Uqfk;apGRL&1bdYX9txoQYj?Aq@JYH;g?f{#zG3F4G_>)>fRpgWJe^*4Vc#) z*K-#XHw%0Xv{`aAf-O!WBsvVqi@m>lSR)Ga`coT6BM;Vg?z?;dhyTJVs1Ngytc^Tn zeSU_(HhMX3UNmd4Kx5<((o58mU1vxyMX#w%O5iU&dip!e?J>V2IRC_@zzk%rA_!kO z3+1<1M%v{+v!s3_8#rG9g6>&4YqRw8MKn}(byNx0DZ*l^isu@v(^%x|%iylJ9sQY` zww*{}w|8KWPsK&?hp}b;;&@(~i=O0ODX7JLM%d||$V&Pp`p+4)dag5@zEGOKBN(0s ze+S1kFUg@#HsG1k1%#^{bN2F+?F%NXC%knmpnlH6l^XSqg>~9z9j8+&X@4S~oF{<# z5WF>=(s#Y3Mk3+s%Y1LJ$eAytHnsL-Sqx78pyzO`A*)&5*|kwV`t@1g;)`Kw$bPFE zw*vE3Pu~=;W1J?LBulRicU;i_d4QSj1D3K-nTj>rZ|htp8NsNKeY@$Dk!UW(`+nX# z<(5(=ol<3pOo&T-hSlInBo4jIcu{*n(>1{^!IP z5s8d95}5E0U#iQQ=<=h3LD15L>$*cg8fbr>`RE}6TaqR#wkb*mVHQue3#Db#%QToa zxS?YWhs3|H7w-D3-lrq_i~f4P+b!X33K0vNhz&GJwI zrl?N@8;lLv7X!kpgDNRRX#6`vj~Kog zj(c;T$uX&R#$&VB%42kS;~4V1x7oO9^g&4Rl^uSGwb_8K6Z9>G~jQ!}ld$ z0i{ikUp~oI8b-_8P&o=?KkU@etZg=)_ti+$XA^kyWjS(Y- zS`~*qdkUl4?V8(wW=FS%^WqZU`TuYMQVK`L&-}Ug8r1AKJT``8b)5@;d~o0Jv}t>R zp@8Ko#@yi-<{=y?wrdV+vL!AKC+>jEnoozjhvVgwh#(bYWG~K!J7-%o%T+_+ZU=H3 z+Vgv}-%37sv9}V3FA*c#9ZD<02Y7s{OVWMjEAqtJ8DOX?UdORmvT=KhVUS+cwj(QM zo%pnov+IZyMnv~4@|FRf#`0W)2r1h16W(UlXpb&2x1ElY@ES}_2yfp%J#>sDLXJ`t z*%K5;CMd3TP4%^iUun3kb!*5+ZQm?cO$I}Wojy->?+>2Wl%8Z6ZkxR~S`%>u=BEpi z=NUnTp_xj_YhlUX5q6h>J>%OF7$MYKeZX2=Vk1z*VY9dNqzzT&{d1$dU^a{)oJYzCq?&AXibnsxH+%_iQ^MAc=){y)-w^ zNV)IkFD^z35rDG0PP6B;I=ZQ|d=62O+Xg%3d?Tgb@YB&84iHRn=#LpLZva8LxvoFO zP^)Wf7`R}Bwr`7RCM)){Pqd*{HRK){Altd7{K(yTF4lDC>{+^IZ(ny{%!Cx4rf%M` z8)f11-r@3_cu?6Yq^`pK`B%cbDOhKW#e@mg=W54^*yO@+Nf>okC;6l55Mmyon0iLH|`?s~DapMX$@+q2O zh1C)E7NaKD)hGqn%Sptlu?=$xI0$1^B?Bg)TPoed zwUE?c*BR;6l8Q;h2`R#Ev`G1rBLH)HPm ztA`@{2kQ*D$knm_ByW1#=u(bhFtlXGhd)3q4d^Bsx@GC$g6NHEUor@eCz~04jOH8= zg;2I~m_Jx|?3rnxf`v}=D}EY#S7sThr3eNAW3v!Dbqqy}O}ZLM91Xh`F@$n>Ie^Pk zY=M1!eOITCF4!$!OY8r)#&%_;gBvMI^SY@ySO0G0g7*wKX7O>}{N|ZnYCSYJ(Hoy|Cf`5T zd}_DI^x`&n3i&ca-Wz+w?WB(RJ!K>K;kP4tfJNeu5T>f4oq@U5h)+Yo;mOVRD*c-3 z5oV8*;jVfwfj=W)WNsL>Bnmk;x$8|R-IBmGc9v^V14hu9^|4gpL<+_>pK53$DAAgB{Y2eIDz>U1+h5rJiUl=dd3WRO8jupBAGbIy6fiOe-kN!;6v} zGt3w7Xn}Q^oA}3HDQ>lYpupT&7YM0Owl;XMLYBI)SMnn#QcS^xSdDhYW{0bZS><8; zJP)S9a*n;|z)B3=^@WK^1*Inn3CbsuKq|uDdT-4*l#r8CuURLGnX?1NBWu|Zhq{I; zyC?7HEE_$4=X~%pEHQGyiR~>Cy>&np5FvSF-D9JJc>upRJ9Bk6>t_x96p)GnQhLxH zlUO=eO-B9oCzJATZT!Vhp+wN)W727|cvXwQjB{{dK;)Svzo=n%aJjD0?LbsHG{fDB1B+^BNqZHMsWe$#A`w9VhH9rT&qzY|8G@Ny}r$I+HY31QbUIEsyJ9e(!&v=Q6f&yoEovdp#?}we_)b zc3g(&K5QKCvUp-O13o8~OTPcXNi*d>&krfDtEu+5aOvtBak2=f;v1jGWMV!O7{+f| zz>eUDo~Yg8IHskW?%;FMYZ3+hsae%2D7e=(*lRg;mUv9wafr7B7f!kC!7QzET(( z5f(ykilEIb^6QY!*YJ68S}u9}er}YF1~GDRBV&iTl@ih8pL=6CaP$j-bK4!hw}xbh zrariXXKR0DK8Eh2h)Jz}KH|kEwqrD(tih@IJg2Q;JR`U;NMQF9YMDV)HQ(a7Mc-*n z5O(749m?)U-JQu^g(jVGH4t#Ro_B{>nk-xz^V^6wuD(~{-(3?u8Z_QGyf@m9u&Z}w z1wqCL_Cv$EB@WX@l&IcDDVy*~Dp5!R+jQ@S^gW8lbF{|ELJCsik|k z6uQ57vi}}4Dbz-0H|M-HV?45Hf)vD9Ga-Min>Yl_)eo7l!z*!4V<`gBTq%XXF`)l2 zi2`Z@iLsj{#Trk8CCfylVGRy9XhTG+ zu(SSh-eNrdj<7yWzm1>|jCIbf)re;qnYZf^L8nkANj5Fc}{s> z5?Dc;ayPpKulsXHMcqBCw@EzBhIL(kRBWNcl>08Jo}MTS#;My&tT-d{P*=o_B8U{C z3=t8uZwRw9=9klX)gIZ}Gt1n?;CQWS>_x3i4ad~v*5$>#XfebSud;3S#8F?BeX(}X z**=!2e{7V=z{v}8mqYw@vN8pDRi$cS8_s-n*2XMgxp^_ zX@Z|6u1^;he%EEn0ooEZA>cP8jpmlL)3+x6&P?=81vgUjYo%I(>EXX0{3rvL+)DE` zFly4a7&*IrrL@x2Th>dA+c&6lU6}>NR%d5C|H`%BDSm#;k&ibhNreWL6! zS8$fQwPfTvk)Ue08i&BH>E6llVc3f%<=El3Au$Hum$2dyW@dOkCEp%bi`Nu=*qYYY z5qGqB@$_upUo!lo8pWQdn-a-EUdb%o1KvMzjZy^~?;`}Ni~MMNcrd@EgYqM8wEE3@ z`~ypgH;R5f0dgjp#QMips*+B%lv}baMYX=I#4yxIbT!3Rr_t|ZA(Z^yq6aOYEYM6+ zf7-3ls^#ftX)Ee(XS=(gYAU{$-^z;LIP*U{;J{4EitD`Urpiovl_hP^uaeR3`b~p)P*#J)&pi`ptR0uIc9$YOT9~q zS6=NHmV1WGO{Hw8Um2uI+ghbIKp61{LC@gYeS#=^#`iPh>SnSL+qx(3Tcu8p4ixt% z8;Z^U1GD+BaAEQR2p8^a+>X-09kyqQgG}m2vC{JU3nx`_fYI@T@nSQV_u(Nx63NN3 zsJ4u%!Tawmf34Acq(+-=+UgV@l40aUq|lYY+s=^B!lte|ANoi_>yG#LElaVRI+xix zcf{f!Azm1My}O=m^msC?vO7su{c*TPuY@zN%l3mXoMcd9w&(M-=4yJiVcRW!#w5Yy zAPb`x?h!TCdCT4i0Uh%EgI#MkjF4rV=R0TqMEf+^E2n7|9CSwgwDuAn7*R6b;E1K6 z%*xZ!omrIknTl7FBYY3y%KNrCFu`QK7O6W!{#uMUJ2DV+Sy43W30RO z@oG60kyUhM^>+A^#Pk3jE_0=pHkVmeVt@z|&7Kuc>au&j z0ozuxEhrO|LXi=2{i%b%#&wC<_Hll*ao<1NMAtt-xq6>koNx!VX2K1v@`A9l3Uz~6 zXy(A*&M-|eN2~WLg{^^|r(U%gNc5QT7eXPFGtJSkbYiy>^lnv5GS>r)`JLPtxZ~on zv&}&X)m@%z@$1q4@vZc&^~5dxEUSK@>Kbck3isFuj%W&w@qYiEEwT=^yEhBXgTG2=R z^-ozmQ*5}Be|dB#cl;vtMZV6`S7e3=sG<1d9N(pg`u-`1e;74OM|m%cOx;Z}3aRXa zM#~AuLE?Pt79yxM?^oC+I0`Sb{>e|4X4w&(QljQHt9p|FuT2?6Y~nYEyQ#tY)x_39 zD98@=@M|g%r_&T*O#148VX0(?qn-8V0kvdD>oj^>!ZB)Cw$dQmtcQ|hg@-GH2Ay23 zu;WR+|Bc*N@`#!R!rjMwZD3!2;HId!wc5Csmhg&|JNRAV0ZV@j!!i|&-bA0F-*nD8 zdw19_Wsp~#-}W~N<3?~Ax?0>QzuCxYq_i<|In|5&{4#?XMjv*$;+q#~j#E{;BlPQb zg1nRrU)NGf?jYR#7aSscpuDxE5q8?Jl>e)9P`OSKdS;_e+CCCvfL&4Mz87j<72zcOzVMb{+gyXuunnWMufKk@x?&+tY9%1=!W16qqMqjFwu?tycve;=0)6fPRd6cZ*Hn)C>WqcR-QD7^&R`yyPrs=WqO(7 z&Z%A+)=GrYa#ez;o_s%l9Lc5JjU`o!i9hE{|TWauhyG%7KwK2_D zU3X;s-3sx7Og^I!JPGL#&v49QJ>|FO!BuOMW#qjY;V1O>(gff^YrTx^Z#rZBy zM*nnZ#6quD=hGSBLK#{bHsphw5=tn-N*5XO)rPxj8OCFW12%Kh4@;7638xj^8*Y#D z;!|rfE$n;I9_RLxsCT;tfP{WFxG_5VQu2AY*xl*r%mH(YFu7bbc22%jXGziA8MsZAUN&T+k_{<=WQux%m)WZI`)0e*)ukC%NIp1khK$n$6!^0AP z|E%@59b8ooibyoLb4zM1EdFb;NBTwM_Qjh5=w&9 zFVL)Z4|1AtU0CDFyR`TvX0fg4Fj+!&6lR; zSy?_}5QgX`rpDKsQx%a`#NL%-FX}4NK+t)p3EHh8YG0`KW8Vo;`B-Cnh_ii0^BRQk zHc9EdMV3+OpWIIbboMV;3WWE!DyQdgnB>Sfv&l(sLvO_Im_p^tC}(l&ul3a>C8dBw zF3fgz`n6h09X|fJwY>4Ro!f7?iZ(E2Z}PUcuDf-h35FQ!r)U90liB89Q*kkkpPocS zbXhb-!>u3E!Ez98-RT8_Wo1+@N`H3^{l%MCZU+`pZ&nnV&CD}y#pQpkvHmxwzE93l zzVq_JJngFVyUSJdnmPZ@eeS|Q$Bb)`A`w%z$<1Juz5XUgKB}6JQFqR=>&3SG$snB= z?bB1okbJ~%y}lRfjq6sn^|Ql;fAtV{L$|Be&87f5@WW&5w4J7>m91xbM~D99&0N2| ztFPYd2hdVShb3c!xlKR*|LYCzwNbIbkW(t8U4y;-6aKQ$$lC<==lgJD)!{{+n$_iY zwjsr~K4RK~6O$kKdLk*4jpC3tJ~aKka&qP~7A~D%emLDnGi^=m&o5fG1mVV_)$px# zsnhWh=2+~!kY`U05hlf=zp6H;#>!*qG%5(`B=Kz>fSMi~H|fh%tc~(y>GOZJ$7wUe zu5WHmWe=C@GBb8LvEV&zlquu>QnGN0CfyVwT3b{nA;LB838a!J5sbHx5ldliPu zq^TNU?GIpit~}nKdl16)b(9DXNb#ct4W#CA`BK(?M*0;X*Z=SB+Bs9;!Oa&3{zv1Q z#mI8})2?MQS0jJd+2jV-mWX3P>UE`LkHm~I=ae9G*TY`{&wrb$2epOOXM5vK2=&T} zr}Y!GG3S5mvxLr+y57s7NaK%MYmYfk>*M8*r`nMt@WIvtyVO5(X<*c^0Q-H~km7zE(32)rL}4 zS?%oy#7K2zZWR3TWN6M&OKRxNR`S09A*N3jO1o`Wpnc1lKZ?U4=|b30nTBI@Tr=g~ zlqRQg-{^}v=W6X-vlUHspS3KdH|S9cAhA9at2|fp>Mu<=I;Yvb%1u#p&S8;y{q9R# z2mn~7tjG1F+)yR2uCEL%bMHIuKYn1NlF7dn$Bwt*&@TS6mxgML^Z5F*@KxPN;}2)s zYOg}`CVgX{#bKE$d@+|wv-(zbyM8=9{o9q`xg=aL@G=5a!neap-RN}On?cR^nl8dA zUD(EoBe9?MRZL~sS@lF~i|ij)Wb3trttKT45}0H`LT5)+yCg%u_M{D!0bnQMnD~0( z`_j|IjKSWHD)TghP_Y70&y`7GtG=bzBInIrnMq}0S96u5-5X`*wW4jOJ}@+sv8j#Z zpK3|Vd5Y6Cfh+A^gxyHB$7Y6zV^ZUM;&xy#oEe){2whcOPbAt&b)3-wZjnT10sQrQZyTXC6F z475~g^|zT*4zzp)X$BNk<*jM9=HANt{CInCT<$g~>2b2DyMKK2QXtcGbv40bwRdi- zU_N?Q4@;b7T;my3m+@!|tI+28Q*@*a8vWuVc0R$QXK+cua4@aWueM}vbXJwBAkvL?G|xi*`h#W}VQx7Uc*89Jo87(%ic+kk@`&_un zY`WGh;pDJGX#b$jVsN^!Erk}vl{yaHPCaY8e67tjYsU}0l^~q4&d~GJ7bhRz2%T4( z^t7M0JE|sI37T1}K2Ty1v$wO5^J>0-2C=)n6Fc`Ke_ubEG`43!ae82@A3Ly5F1vNy zf9rhXud~P5hOfsvg270c55W@78~NHQH^^@Mt=ZV>%!J7wQJNxX{@!)_pVd$WG?pkrwpfNV7e)0K=ZTyiq_m)i_h(8MD+HN!LApRF^uf$S*m2 zkRc`3)`iVWV#ltA?2AQ1{(r*9j-hVMp)LNi%Wa~}2Pk^hzqpINMya1Qkg9mArEwjV(LdGX)tFu5Qf{t2A1jk>3!me5ZtuA+> z$1k^*9QRMQq$sIy+vc*&P!1WKp}0fLZU5=+F(w$vzMd^?7oRxU;-&g=Z?f9Efi&1* z&-Y?EO0L?@@vpzUm%VFghO)yY;WEE1;K)hs5ltzQ$m+kk0kk^JbVNFZ69L7RsC4wSMx`ni9V)Em`7gW`;-_Er{mE(6Yrgj z+j1VBM;}Xrq2jB5XqigC3K^tdg!Z8dKmJ*(kXNrP-#A0o zCm`Jf$%x5$;$Cbo=}rBJue1T=ijk!F`#=qTH7{^BG&BW?3(BH$dIbmqUS2rpcKK*d zUhO6{xUGBMwi%gE+1#1ltqOTuQT-XwQPnft3EG>y+&3X65tZgrNiux{kGRPblQ-(A zx*Mb-4{uS7uJd&-eDEA?+eyU8vRAWk!a&|~*tu5; z!0mH>&+T@OwC2v{6#Xoddolfv3+d}_6TH{!=2|IeVqaC@$urZYs>Pj~ zyq)wheN4itOPXFcZ}oo^-f z91YoCVi5BpP27-y*`)efeKnur^r!o-F<^t(mA+D51E6~oSQg7<%72lt!r z%arNu5E2LV#k<$_MurycoD=_H8-p)_aPrj$WOb>iQyF4s>!@#LPf~Aallyfz#`D%=%A_W;8g6qV35>dSN;WM~g}*OnX?kp4-1c?p%&mXy z9cyGX+wUq?i`&NId#;2p#sDHBU`1h&lqWV{AG}hH_r&G(7(RQI)_E%-f#*!=w+&`T zh!_MlY%uSWV1gH)8E6K)i#GZZYo4^Uyx@s`Z=?+OO{+T)A=2|Yt&Bc2{U#3g^QuDo z)7Mq-I5YQAW=+H#z`0`~AZVlmbDe10E67a|KY#QOnD28M9k|AzgsG`xLFr)mkgrZ=KFT`vxaF{M~Z%Tn(`|} zZPEF=c2V!oGVUASWht_$8|aD(8ld(~>>Z(m*ovWyk}aAT{y13K*)EtknHS+^MbQR^ zsi}S5L(td0W{jcoc@0Qf)hD)tLdyK7JHM9_oAoDzovu2Lmrbr>iIKkbw}?ZPvJ%_4#w&g?PZ;%|c2#=W z+r3q&mQs8x(qbwBK&&SEKYzu_$iTsA;`n8w9_L!;ZO3QbWT@lCIESHxB9~VaYbhArGE4bp-Xm+3@mgQTqy(pflq3vb6ejojH4WjQ#Yg5M+WpdHx#*>w68`s6*p7>Z5IDAD|B@yB7Q<3?u6=e(4FvhYn(QIhtq+n2(pi z>quv|meVLsbA{BV@zicHQCk~DRfjtq{D%}eG4ic&Ci|l3vVqu>T`zX#fz-sQgm>RA zmLaA0;Rbb)q{zHzjX#;8v=UFg&3Npbfn7rvxNl%{-UDBY8e#pN^6dL8qvcgs$3Y1rU z2cAd9||w|L%#C}t1c9$9Qm$giOc?C%S)AOxUD4Ln zOu;#0*_av?Rd{HTQFu{jbQx!g^_fpf_Q%uYD1e3QC_%)gx^3?!&D!^IU*$nY>*i7= zVRS+9%><^kpthic3TU57HOOCleIQQ)3*P(r|4?<7aZSGA+aDkxt)xha(kWdd1QC%K zh|-}nj?NJS6af*WJ4Q(SkkMUZC|y%fkZuNyuF*WV|Nry6cwX_24;%M&-sg25$MHQs z(64K@g4icRZ-r9lM9h(LwFSWhKSNpx*`>?(%{Z1u4dz8JfU?8ZsXcB$X(D}|$FL(# zU_j$)*?@C?F=-N#C?&;BBNKGEQsKY<*a$Lnwj_{pee@*f&YrDHXMo9z(0c!PHTnD# zKg=#oQ*BBB!0>vuS;w^vaJR&FI)?@IF9^1{IIPxd*^|Me5llpwk(@H7q0j1GF0-Jn ziIEH850wbzopNQ*EkOx5xalUYI?y=x57W(YQmcJe{B`x|ZyJ;RS+C7KO9|-Itsj|9 z+AnVtJTtFs*_QO!dQJqk6OvD3T!t!)GWcWjm%(`jtdldGYw#%<4I+hE55eTWNs)l8$}B}@H22e^lu@Q5#%98i2U$3(knQz|mq396wp z4c-(`556X`YLTC}zCc~ndfBmSpgLuqj+dC^2Kxb&_3(&fz*JC)bO6?FEqP*Z-TD6? zp)2=MCS_`tD}Ot*go9XSZYZaUgzY5%MAqoPhG=*#1ltxE|uZ)6qZJLLn`tA@L@(_t?U{^svB@;P%$(0K*1oPP*%D*j!tXv?;FMtCyUp zPQES>>b`BfNlrPoO0_)?w8mz>rI;I~Hp$;&-W|JbG_dR4AA-}pw7K;nCS`P=SZjiU z4E!cy*p-?J+qmIm1h|(>Wbc1#Q^(8F654RbeoTH+f!ph4ulIcz)-|@+Kviaq|0qP1 z@jP!V<;vr0B#W(8$)Hl6;nH*2wUT_xJAM}f&Bo@<8mbA)z&$P_aN=rw!mrZeu^^Z{#0x^v z-|38^mn=O_j`;15Kd<_lRR?95R6Cc>7DI9pb4}J8b@v%!ynxxW^kAB>@L#~?WZe_T zLI>Gi>vl}$}uKBMGFOz-_3emMN$tl5Oh^*$?p>sPm)VFO^VeCkAX z|1Sn>2do*Ox94wSjlib)Mz+m zup?b9k~&@N>$9$d!zUzg*UmOM`~3pq>WgR89M*#>ib2x_;fFT(rq2PRI`2A^+5?|$ z%j9*0EUr%0I%LxI#$^Z^iDV6?g@~2t=G4KlIGT~+EQMaA2_1(D_jMw7^biox(8jyg z>xcA9S$zs>J}8ab2!ziA?gi(ZnE+^2t?fQxZO|m`;n*im;vHv);dFaL5v%*t#kvT` z#Z6R~J<^xd9v`X(^-yClm`Jz5Hz7u-%U6{Yku zYdWn#XrRbtWrQ)Usj2ogBcjZ(;;}@ruE6G~@Ave(_S@eW>{my-eYO9HykmB#-piKs zO*X0ZY&L0e50=~+$&nk5Z8qT1xjnK_eB)RtS33rG*U6G^cDxwLmYeNaH2DKRw5fDG zY1?sV--T*1``s%!*`0=pShl^Xuo^kC1!Oxd^Da^8EP!(r7+T~W*S`%B@~upM~54GO|1xLbsq zr~sZLNJfg_rG(?Gq_oS_n_i)vRp!5qZf>3UFqT|Da-S7{pUVFIrs}U@9_v;+X-z0S z+d`Yj&mUkxkD9m3;*t=ZD0o1|)dfDoO2neZ#ryhFPHh%`Hu$$_>}0$3>MsTm__ye)t;V(RWz?e`zJ z^(Y09y{w#_<7=9h=RfY-xU@fuWo0yhIxS4Ldli{9TbC|QKfhLd_sx`fvPl}g*)>zW zJnH*5{=NM?O0n5t|6IyzXUhbLthLOv_;d5E2f6eArv4v^0{%dh2(gjpKtX~)KO=~y zWxVtv;Dl>vFd6$Zkbm&O0FqP(@_(i-<(RV7s;i@xZa_zx;by?i;Vma5I9%YHD2KQz5DEmZmVt~|sOrL0!9 zJJn1#7o=)u`55|bLYzS+KJ@cX_|92HJzLuyM#uG@)zg9Iv{p3ESQ`V zUwmhREx|Vyfv|~{qFvwgN_wx`acOO<3zP24FI|y*aHm|Q7E#9Biv)f)4xCFa&SYiC zfwRBe%U)X?ZQlsy#98DOvM}xaH>mG?b9!x2E&2Qq7`TLFY#${-+D53?-k${^r`Nknt}CAdHuTZWbh0DMR_@axCcb zw9|EWu3f6qvRxd%GbaU@>b}tTn)>4e?_qalTcJuJ*S6QE%Qne#(~TWjX`)u?Rw3=| z2Ddfk@gWz(smu$U*wF~mlU$6Dz%TxV5OL}7n0xZTc*C7*#KX+hYRr2mjy*N8` zus^Tk*Ed!0b#BB?RG2V?eQ0!>uW<=FT>CN;XM8kfu$#Kp8Fq1Utr+MF_?SMIDm1#W zOkE!1Cf4xt^Y^BrQF+7CF6JDA1}b5qK_^G0{#WO(w-CcwGLzB;ZiTr%&vSqfqgL#E>6Iq%x6-zld#b1Qz#Y#9_uKneUk5c2nwb@#& z*sl(F4>*AYYG~g@8dX}F5`Qb~usg)8bw^_xc1-t0LOm}Ugd3EOrboLeC_=G7f)VK) zpIdj_3VbUQm6jO_ey&+xSjHJtI7bU1{yVCxU$;TzFO^hz1e$ybhU0TtWPK6<;N7@5@r_Vb8D>LQ#m?DYd zv3$QmgNt;o@|9B~;L>42_Vc5?CSqMq&dbt7A1(lo1;IZb`WjxQayVI&PWZ@s`pbS| z@GbV{iJ;yi?q$X8Kjl!~UByDptQPTG#$I-PE?SB_iOMwtr%x3+{F7K(Z7*wfb0TT9 z<0_;Kd*G`nUfRYF+HnOG~`^459Wj z0-W*byVudth5^w~lK5Ec?}P^L!KaG%8jmi->uC6R*ftl7e~6vEK+uY>g&(Z3&#BX< z#fv@Qr|Egf#u0k&MXngjLecWzHSn_CGUls6A4Xq}j!ZYW@;8xIbzK-wWHi`PdQ2ZJ z{)n{S%L{1a1*!Mgo||+)`r`T}Un1%_H#{nn%|?ry^YOG!5!nL+so`syqlu=QMlB|Kx@e?<65yX{Q4h+g!y zxI&xL9FnCcT%KknP#-+p=UQQV==9=KOzT-9Pm<}15=sWX&qcK~@y|iy#c`n3@=zu@ z`UJ~-taC5EEoc#NkT}bu8Z26U>-|r*O0Rm#D=r~Vm|-RRNTr}XbPSt>Knu@u`AD?K z^UX(`c7F3`eROv$c8aV{8y;1Rs8!G%R4imHXT8p)*_M!g&dgOPJiGs?#mQgEQx;$D zJebya@Eh$lH)GO}-F9fcFj>@))84akk3!`T$Sx`Xbjc+D{kH4LR6NU;3GE;D-Pe{`ecp&2`S!L1;Wd#2iQN9!eC+%fS)aN ziY2js=g99q#&rI`c45wq09;yTYWcjUUT8?g=>H1ew+S$Jwx*hT+|KAcd+!kza+Ya1 zCB=KPrzO&AL~_FD2!%W=>jTbD1&aTQb`QkY^?YGpv$&}E?X%nR+c1!m-POBjNS<}3 zqmjT{-*U1dTX>rz(}&%ns?*~+iT8DY@+~l2#J8E|4YMc3py?NRm-*||W5M=SU))Op zJjkNf`AL;FC+>TEw1E{o2pfc^^FyMVLVeCvRzmlBiX`TmW|RZZxkUSH+5RXg zkDJkP{H^bv9%-^XNeT1fT=3ujeRo%Jj3-uVLL^&&FECR|*yp;*&gTNLTns|=m5!AC zzLG>I)$n|Y{{6#98E;;SPO2U^0?=E`9d+QSlrqua^%)u?5i5bvoH3p_2_PMkadVB2 z_CKi`$(9Z7+L~po{jfFSg3g~O?~RG&N}WGg<% z7^Q`n+A&N(5VDqf^EtpOQ(10*n?GHcG~D=6|8nozk4XIZX6XVJ35QOv&CtA2a(~ld z(&1V@S?^Wi?|y^QVIqFS7^2j)p}<6lK%4THY-6VzDXYd^8(mH8MrS5#$v3x8#K?I^ z_xOpR-=XXj}RKbJC%_BO4;h=gmO_b{i6JzL~MdCdkkS@p-~0X1zd= z{#{?oIdxq!eZ3ZZ9(awt{BKG_$yHOt>v+XpjNi3Gc3o2h;oXc!J69JS8GsENL-^Sw zGy!cufEdN|8ToMND<#kJ<@zuaAY60!Bpyc|@=?t?h>*buC7WotzfL~`Lyw9^IMjtc zJMQF*nnyD(5rRuaUzk(HaZ(AwVIm_{;WU zd{~-&e`6YG=Q7_3H6NPA#coqRI2yDH$#C%TVT9Ef9st(N;X$V6>a)FkA~C+(=#p~a zt;<>~lHAh7d7x=ll^^e0>80KJxVRO=_eNz$XFAn5oCw`S(=A8GGhS(C^Iu$chtDC9 zc?65fCm#?DaJijZjtVF?D5OPb%Rq+eKQ0cHyEOyG8UZXa6^-!*qXozq16mF@ z@|Y|A^F}wbDxu?=WjmB|^-=0Y=*WTalc_#d^!;eID8Cxr5dAr>1RM zj%u4f{QcUNgUu5_3eD79UEjSgPF#Gq67dhP)qP`U)tIIpxbx1+-Kgke0Uu5pIbKdU zA3leKTLmmKYKl>PiAx4tg*n2 zXcY8!P^w2r=+Ua>)Z@~ib2cG-JUhNmrsR5V?(HGp+3W>>u)~g(_?)1C z7N!^9K8${g;#9wi_clj|&4S5K9&&1_iNm*5>tXRa1Tt`^ zpy9TlGcOT1vwJwx^b1cGTv*OdGkD#3e&p3=IgrHfUlSz4Xpxd3aG~lcIrrY41MBrfkSNY9tqpHFrZkgEc7Ic3h!xqE)Pms0pzFr zY6V+j$c=QdYxmBV@n%tjQXL+dzp*pJ(r+<#<7;`kztrB3vBJgHQ$ zE!;u?T*vxJtFZ52VH^QZavb(4{olHI%(oH2G|@vs$O7&0SRRXvC*ekh`2rCFbO882 zHLeN=mv;bCgk1N_mleyKkmOxHkyY?pu?5ZMu@7Oc7V^*DB>EmG&I5Ze9N!<%hu2Tv zG`X#SUE=C#KMPTT6P$!v)kKngawY*8MT3gNcCIa$0l@x+0iOZ@uxOy^)}y)+=zkQO zTLB0qpMe2}WfJkcL4myCZ5cKok)o%=@qj`tvg_(7$r1?H${m})n*BW}KRpzsKNNTU zBt)dt{H(*(xI;S8MseqP=EJYj!oBkPOQ)(rTb`-ixm2ltX*IB&C>q$yIUoQrB~GX< z0LE!8Txa5$7y9cz6|ph5`k)e(^XoLK;~iq83wGrV>xG*jB_((Q`IRqH*-9K!q?Dsr zC3kFVIXS+@^7Qm2zdZBd8fkW?wKeLTFG*B@$g$PFY)5%N-dR_J=y;tD9GCqd4y!hbeJfE}P$Gls;(#)ShCK&8v;U zh43%Td)h%Ibw?hef+34HZ^qe80wpz=|F;3G_h~oU*fESF`BB7wwWG@{upng=V zFj>tOQBqNLaPQfc8#DcN&+cIm+8b)e<4f>u6|!o$?(?Z3UYeDpTY%lCUlRm$#DUaC zzg*emuCF%S>|H)w7|7)O6f-PSny6hG_q|4zTE=tK$c~>a1WXwDKENlFQJK{|E7{#i zqk~yHW%*i|G@7%P5FTi(#)sObg9Ut;u) zfxoD!5V*`Z)P$FKcKF=%R~)0C_3fI$ zu7mZwMAJb*Mg>kI7v8C zri(EC~VWFaD?=;54e4o2;pfl&>+0J0@_iFxR>OeTe~KeEIIX!hPw8Usn}eNj6Y&s3XV!aSg&qE9dxk>S7g(APIPy*D9-or3A<_|~)oaJu z2tiCs;Dn8ba(jhDZL!X$6fIz}G#lpp{Yq>5$77}}T9^nzM#7NEDH7tgNr@|q7`OAr zrLLWt5nvFr^33xAQNN}71LEZuO%0}=sv~Tccp2PH|LBWJhio!;Kqn*xQZzf9% zfe=um%E!6amp}5dt=imODPc?BeaDBK81q1ihQd~v_hAKp(cGLb*oD&SzCU{Pmuq3N z5+Yjm`&q`y2*M3G+Yd-W)ilGbM|@<82R}1_j-SXy(?&xLO0;V}d)cply)|)ct9%y_ zY}rD|VP|`bVYUmU<_POa;;K$NBWFgarAbHNgzmDL!td9cgC5QAON_nq=;@&}LX7&K z34@O0A)`Bl*0)!)SqfANt@Kzop`#rY5A~NmwdL!jcxmQ0)u|`s&|}&o2(u0dl&c8e z5`y574|D6eimtkIgezj7PCC8keemj7aUTH=wjJvt)K$5=A<4bRdOYS{_NmD2NWw^D zf&a7F#3(laadjmy)knqGv(j;JiP8E!qlO9vGXey< z-%7-?YCOk5H%HQMccx)HtIS9kLJTJUO!QzBgvlI`_N^iE?CzrDmjIEi`i}$%Ud0uF z9SVDmY0Q7dXB}mc!>s@G$m-7PWIh(TFQFbw#x#^`6U(OPT&$B}{2zKG&Lx?2qBS{f z-;5`xu-@Dmh!p%OA8!y_Zt!K}zj|P|Z1JmF?c%?XLbfE^ad_m%*!u7i7LETs`vdpN zEijwn%cxY3oPP0qGSMzzLYrW67snEB8pahY_F2YNJ2Usv5?JB=w)) zk4ebw`ja1odtkP6UUVNu9zW*(#d{P48GS|qUv(2$=>Mz5BF4!*A`l_)P z*d-Fvoy@`fXH|0w+dkZw=SwltMLD8r))b%VcLyOq6P)Z8T6l>PT*&aNp1PCPV4V<% z-(fR|YRm{S9d}s?G0l1{Xk;wtGx5j$<#fXl^a+fI4p;bPisJdfM|L;ieD6Vr*X#U7 zbjFV(Hh-C89MA?Ud2%2KF}vL?gdl!tz)&?;%M8z)?C`6l>bOwYe_ih&X-~P_prgd} z{BLTC@>Pe$xS@%e)W3H)WSpz(cm)9NOxH6SiDbBi%2Xs~FUK=Xr{4`L=gtg-0L})d zW^}C|Mr3XEtE{n0DVk1>;9bjhaU8)jq}is|uGzQj6c$(nXy`meYY1@k*&JUk|5+|L zmiLj}Q9W5K7hLPRW?Ng>In7LR%T;`w)EoEW*!6?}qH>YB`Zle>ufp=vpRnr!4y|n( znd_*q)^?|8@WP9XdQ}HV?%%w&Q1ir8YJg|s@I2Qhx1Sgu;G>gbBqoCtWuL2qO9#1k zyxM4X`5Ff>5K3j>G0wj%(dK?OA0kEK=0u5M){Eu4cJqG9<9V+0?yLcG&r7^YUL0=j zv+cqY8OINF$drH~a0Q!L`AdWpSR;;=l>ozD53s-(b<{}l5|x%HNnrjhq0s2U4=lN= zA*Q8mAvcOu@BDP2Vdcm2DwbHq32*I5)lK~ZHt{eL2arda%GG{-T)O)+!c2_*rDiHg zBEWw@mOS0(ubuKyoCF>@{TR!R;Nfu^S>(jNkns;rNq?kz9;>CM`N?_E0wg1wazSy3WFaHHGwOX-EEX$XBipG^s*%#Y}$$bzQDh8q0} z-(Zm_;1Zbn-LHRU?$_Wc`t~Nc-Nm%276?|bDpkdW|Kv~(dWwKlj71Ktm4 zudAtSt!Y4bFgbm%KC!G3Hw1YUnE^lreUZli99qi^VAe^MIbSg|@j^!6?w?wht(VhX zIRNU^L0dkUM70USIsxLYI4(ghlFfLH9kUSyz$}^FK#}71?-ok&k5;7)Dnof~NEVX! zv-Z;^335^3SueoVlWby6dLcAcExv5AS_>{_lUT?wP`$lA5!$z11_*{EOr1Oa@NANQ z?3$s0+v0SY5Aw&fr$~Quy2XrX?$2lv#TXnZV&q+asNo4E{Kw6Wz7v8ognlS7hV8T_ zIpoR@$V82(nNJ;LKd%0Wo$*ng1GWw@l^s~_{LO!8Ji#?+F>qZT%1f7$UbqtWy+!9( z$>!0nwxUy{lqNHalULg(P^ShZ$Gd5p(Lypq#`s9GWr_*XL^n_ls`X|Tgn7O=KQ)xA zFg>8d4}~4%d_ls`4!T+8y&nT0F=N+h_-^kL_g6-0c%os%;yd6~& zLqD6c-e-QnJACFz1lUJWR}#G^q|>vcLLSZAP`pNCMbD_e`{4^@NR{bH$|Ew^Xsj{B zhHb0WDEG&bS1%?wEL8G}(}O$|3qV7>(1%Vr%;HsPOt6!UKiw_u@SC0T$y%reaHmzj z`{H(Tbir?)^znR-ZYsUXXM zvv~qJy811EZn_hAwOOR&u(1>l?9^d!dfgf_b(AzvGO_2qEVi#Aw11T80`P<|QO5f% z8=E#JKj^r{&d8E~8cK04ME&8X6VZFoTEXGNUIR3gd<6upw7mSBWyze$#n~Myw`bE04%+fNgdG+P?3(uN}}obU_gjFkY@V}R0rAn+^uined#9G zF)?g3RRv4{SGTM|a4bFU%By>3w7zA8< zuyO4zlgGpfiak=cIrYu(4F(0?iW;fE0=_g8?+;goB|iIo`l%Qc`7^d6%Xft=exx=+ z(2k&IO1=tk=P5Hg5O~D22KhM&uGlV|O{yx`f?xT{i6(Wf+sIACSG`*3Z#2mi3$5X5 zuCoId<-+Dmgk|hj*)1HZkJNkiB~|7ZsXj_pUzbOI3&)kFQouI*wO)$Oy$_;z#L^bB z62$+uRK&$3_3iq?b#V>6j1bg&z6}0a1av^(q|fkJrodgGRtxhnQD8bAQQlT})Z4i_Rc{7E zu~3TR`%^MR=O>afA_x(3o^=+`!exd5izIa#3+$!RCPDnIzUu2ohS{7MQ!QdUqXvzO zN1DrRcp`QWH*Ir{x;DTV{_SLcR?DQ)Le}oRfSylxL9?$8WL)X;vXz6qJ@7j3*N%PB zoW;Acp+7)+@qtso zaXb0ma(;GodcR4YX3`CrazKOR=bfHY^j|nb-hqw3Y7qB@P7fUI{u!>A=SLe!%pON9l3sc};#^TEpk>;30zG&ozgS$A9^k>5_?ND?5y-cudhz$TjaO%cV6m=x~6m zc3g^r>KEu zIRFZna_;XkLBg~tQBWQ2F(lx^cII$-Yx8GF%<@bx&v<#^ZrN8Qrdx=STd_ayBfzz4 zBs5iwo-qzt(k`D4R<6`1LEI=QQYVcHgAh<*9n(d=4;z1=r0xp7TOQ%C+!*Nh)%!V( z-~me6SF|ZovM+2u`ndR5c0_6UKi5Ym%(b6rLcNxW>Vo!5S!|NbWOD1vVs=q=Gj&O^ zV<5;5=|_F0&5vz_XZ#MPMh!1X{KxMTf}J>QdG5mITI}B1{(If%XJo77Ad3vi|3y5R zmHCyI+ek+GXy&;qz@S4ug^7EQ)LqNlW}Df{FpVHYa-61zcCzPSWVG*wGFgIhhVvsV zmn|*1jl^yN`|LX#{0lIfc<@`PLHrl(>pa%%<(vU7QbZt10TAa*Ci=h~N^<|(Z&-Z` z=iLrNt~VsWE2>k7VQY#;55D#u%nyT!I%ZoPj0ZYr`A89VExt%eDTZ<#7duznT#kP9jNq7t1bZE&sZgH?_&-Y?h4_op=@NEd*9`|2@Ie z+4TN$fE0BrR7!~Q&(~%I-V7#<+!?Ni+&2|DD>;cczxXu(H#0ENkI=zBTFzm4!HR2X z_);1Z?m;oSIpEvV_}Z{R;#X>;x)Yz!1NG6 zoFGVKRUrfDE_sv$ka&D`^E^>{5g3T%i??DuijaeA)AO}1Hb`NR>QoU92$eSMUcPl)+gB>p_B7kgu8JveQEmeH4x7%y@QfA}Q(^BRTcQ$KT zLV&1a!<7)~sG%+KgW*Y$_h)tiBX))JC~ReJGkhq2Fg&6Tefq6)}lBWmad^)*S;Y*rRq zU`aUI&oy+$szG_Vd|wR+Fqe=x5`?i>xq0W zsy|8)si!@Mf)BQIIFm2%!}HYWwJuI}qJZM`z-5(!z_IYj1s%EfNjF0{%!?3_%v|(s zPH*naTns1wmYdrJ3$49vzV@EiQ?&OFAX%X1t3{_41jZoM?L#O&D$0bkzW z4-`O0qv%rS928@@s8HyaM2`(~G&X^~T(5!rg8cZ~85-xsds>?S!%hVvJ+6CoU{n#? z!ZBGQI#F&xM+Erar|(HqDF6YEzTP-?(}m`M?wZ>$%NE$2>CapMNl5{osI;)VzE~A4 zdqs+VZB$>aciLfvx~BpxY(Y9f6tCYl0&F?wKz-jgJu%E<*4tYRt${kGH3dZoacu zc-i7MiOuM)uXinR1N67mL!Hk~0GIX3U*w+FKMtobUhdgRhEODn&0JUvm4t(CBOR;l zL7J<=$sjR!7PV}Q>UM0cA%LK)1UKK8Y?t77k%K`f8rx;C8IT%jsi{x+67{l9RGj~q z5LsOP!uKLior4r)O9J+auWJ4E-2SM(&RdZ%C$j?t6 zPB~5YNU0w_Cq%TAC!Ne56qXuI$^Ib0*F)t|LEh758vIPh>wgqyx!xY20(PES2QwYB$}(Z>Ek23%2OzWx=0#U#0J(#E11>yp*X! z4BOWXwJTgA+hg}AAhWUH8=1;%sivpn@P(aPr3#ejHi`o#kk(-A`))xFpyA<0PnIw6 zclVGLj&^^aZt#+mvx$FYd(J&z!WKa;h&Cwsq4ef%QG)Mu@faTitibyz!61B!kW`Qq zXj|_1obM>ro~kE&c&Tny#Yl|UEa@XgT*l0v9=G@(p4a<$wA%jqkoXUi_Jc}dhG4{) z>6fqJzM>~==-n8p3Xtq7U?q9MD(A^J6`JxRlJfI$?X>;*J-=kaXnqb6tz(~ds}`;4 z5Ot>%VE3@N&2aOZ&bALaY155yIIVKZBMqJy$sd5jG@%3NP|s zh;m+f;s5LVnSH*%@;^vhL&5>jJqWPAhZMX@JN*c>8*mDcb-VoRGo?E~&gn|8MLEdP zj%k(Kg$=l)t~ICDu_KZ#-jt9ae*c+%+0RF z#c>Q>&F^p%VE}-5UxJ$O-YsfEHH1>R#G(E0ZBqb2?0@uJ@j3p9OKHfsG;p{_la4{o`H4iP1j(`#;vU$>%9XW23v2-F-1Ryie;-Va?L9NgQJyhKefd0k{}i?Ae5)DvOV1}b>yh^z!caW zaFVwT8&PM^cmsG5&~HQ8@?H%JU${<_?-iQw)W3|?@^ZSEjOB0|&|s#0j~&`*u&CbK z8m~9ll;5M=gKJ(f<4%1U$}TD_M2F4CMpqy#jFEeTIuD;S;G*fS2J3CHiAp{Hm>`vqOQ)KzNS80D{Hu4X)!NepK+iPTh_3b;i9%@1gJbSVN1F|A(f3I_VEnYJ{@7o6) z$JX#gEv*qL(uK3VafUFQ0lxtst5Q=gQ>ulWU)#c5_n||8@PtTiIX;zf;444?UXNiJ z)jQYmK^euFdciQ#fFQV*kG8#K#q2&t@ta=GQ*He2@$5vr7hP|xWYY_(X6fts$g~J0 zA?|HJWD8xJ#W7JCw#GziE4erBfBnH&58TnquwTm3y3HTkbVu9C>?CE}&b#=qOh@XM zWi`SoEGz0UY6@#{(F(i?SWM2}<`!l{m9|0w&VW!Ur0**Twljm0YK*|v%1ikE)+5yvl2eU+n;BmKo6JEedM2va1hI39@JF01_43TIL6gjY9>jpzLeW`|j`^~xJ3`u?Y#4b=N=5LNZoa>g<3LI2`S@^wGl?{8V~9&KgbEjS_Xi zv*O0}0X5i`zXjo^GhG|Vg!`5%tF+MkXt$@aqT-)9aONKaK6bImoHz=f&-?$p0J`oR zo@_-p0%O2U^LNcM3t6#j4TCIckK`VoY8#&q5EtT744FERS-swa7Kh+> z180ulz2Fcq1}3&=;fJ|9U)%vV`*x~w`#c(7m6ggWF&7o6Cx?vyWZlGA<9UhHD&Mc! zG~v9utc|P1sC-%E*Jz&>lhoTs)_*@k9Myv49vP*(U*n42kJpibyRgB4~KEZr1@ z5TX4yKlcTE{t-(I8S-x6=5Niwj+1M2`ZKdbogcEDErX~i>Q&%|>gQ6YY$Wt5G6K`gE2lqAYh8LwH!$6uvm@ortoM_m?=TboLRXVhLO z7VH55I{&KyrnyFf3^! zh3{}KELW*nNQ!}$6aeH=!;%Lug==@_d=&iWC#XFu^3imSEnhsY_|MYrTkoH(pZrPR z;*2h8i6kCx5f|!hrJXTKGqsOW_Uo}d+<(1zo}9?>Mt`Y@?0@Lb7LtC?G*^GwQ3HZb z9r2QZQK`%#Rt8co#5U93y@P}H{VkRn472f2dtZ{AM#e3#+-^0H&bPq;!u%;qoj!KA z1laGX!Y1p)2ny^-gU4L^)vS0cQ+Qa?+m zV=#!xvt0{r+ySZv(&*Mx_|;~LT;N*WKOE`nXEltDl3FN$U5OuIBl-vq-ulD@6Zc~0 zwl^Tc+^!(YK12#@gy63Cw<%)i2T841M+lxeIV?pkeTp`x_mz)bSv2i`&YHkN|IJf` zKU>BxR#>Z){AVnifY7HW{gKvI<8kVfrhCrMv%Udy2g{3Dsrt`qm}h`Zwlcj+>q`IK z*beXS`>~$eP!Q(ZXKBOgSn+$t+S6jvj#W{#Y~5lnX6}Ghe^K62i@oLB06nAul3L#j z&<3qlKC^$VC;6w{{C161q6DWLFLs#}GFCdy_7<+&qtISmdz>VHO{Pmnk;c_SghNai zM8?-hnkmWLam8wAIIu*@ui@iY4eI)B5ZW$BcBAB_DuBNarav)u^<;B@q6}j6nF7(- zati}~DAnqbzqhtNjSdh&kW$rmcyu`SY=c%zJ0k*@+M=yTh}a6e6_@pap5)-o0Yy!e zI@7lLwdMmMBE<17Y2KY}^>v&m58-1*&cILz@a-`WA=Dx%Yv@W_~6qP67R8{LFlff1QN@A&EeCDyOoM<>zMT@zXQ9LctWcH)h9^6`z{pcNr3se^1g-$n4B>{Vba`tT`9uzp+*&#))s5e z=KKBQdjm6z2w;|Kn2^k17Y`5d1*b&hQ)1fscM zMW%=br|G`#!7imrNwoTv?$0f2MMhDKBIH+^ZE_&6+_aFHoVIeTM}ojG9H@eEHLnPI1J~7>N+ZsRVR-?B_@- z4=G;PyB3069txkjtIR}%uJxWhBE4VGynpns&>82wBt6KHacHR5F1+#GonnR>Oc^HU z$SrKV&(h@}`xFeA;Lr9r-4^*hz?iSUwS>U>o`Z6#Gtn=VlK-GJ;6UMk989+drlr9B zdHCa|jrxGQTwWZ5EL|QU*O@=!y7?Z02 zx(`WA>tb=*zF<2*mP7{MOTGnd-eOnD6PMG zfJ^XA$14iRRG4r6cAZaiR)tcrZkxtT_3PeW7hR1TC3SnZSRb09JvolvekUBC_1)SU z6MW~D!+SBh+xI2#iw$x@GfeDbJ;SVQAJN2y29tP;hg^@3&@S~T(P^s(Km@;I!m_Mt zWtApP)r=wjILgzOTlHWZ9}&vy(Pe6gcHu|UL7#1Y*c$NK8F;)%bCJc6=3vw`(oAnC=lp424&C@eSD>)+}pcLF9H;_ghe=ho3DG{aCqjmnB zxEMN75j!*G$tFsD9z2=m29i4oCpyPhhh}Ixr+mkm{gx=@kUlH{{mubo>&31EEEs`FXC_v1JYT6 z)1e+2xcq*%d|zlkcJ=HN&rp9y6zG8*NlYq;y}+AIrb*LXY_>jo=(N*vv0jfk2&?9Q zu_WCs7ZM!43aPNUw{0Kt>$Po8$9TKr7u?m>=_8m1!6RV-WPA)G68e`(zeCN> zr?NeIbYwPUZ*9bG3A=1-&YwP0=32Gbn!0h@)ymr9i><#BoOAE$Qt(S>&dErSbbND1 z;Wk%%7wR@=?QOC{rC}KwH_zo)^ZgZUim^}*Kh&VEAVl+Xkzk^s`AB=in1p8M{3-??wx%)c@+ z#?IPn%{kX^cHyv?3zu#w??lq0)XAZBa!u^5T`c5wrOy&ow4!)yhHqIW4V_fnh0}EE zB*{+nqOqNr9l!MHETRh(wE7%=C69(*h@b&5w3x7P!@TFzn&0|gz=^x2^vuWGe19p9 zUL2jz5q#JF^g$ia3|750QZhY14p3%W2><|&OWjL5@*xOw;WfCo)1SHsc$b5Qh0Opj z_~rViJpueAl=pSY?F-d&`Uc~XY9LIL-)YVH0W%9{np!$n*W|dAt%2CH@4O+5pjl<$Gz0qs z8ZKL5uvk8WpxIwFbF+C5!^^BIFC+D07286o;hpJuAVk@Tf0%C`aGHX!TnO^wXc-9>(2H*A0pp3SyCe9n_V=~bK`dD z?^mEf_G;-8Ihfr~_yQ2>SpZS)9untlkQ~Q1Sy~(%0dyEx`BAL!an5j08FPejCB>f& z;A4uq?RnX^I|D)6HyCF^gUC$CVxxFcS-m^`R$4-^8nqSO1bG~UU)4<=6agVu+E+4P zNCm4m6xjfdQb+GMPz<+2y1GdTcpv@%;UYG?e_?7M8wtHwU6?%G|EZy7xYgm7E^jG- z(6NuD^p=)7bKgX=@>74$0zGi^uF)B!63^_;ADm0>;x$}Zw!OJC2w8u)l@&KMkz$CA z=3*fpM6z$?imEB14Ucxsa(21U+V=@TfqOR9U;ikpjk|_LGNN)9V&j_jw6gk^+U~lo zu;u=;NZQann&^>gmPyDz;M}K0)9pAdN3ufDGHZNjqonnpe@BLcm|bgUIAt0PY1d

}^AOT_j0gFy)UPpX$+t4xC=2WMghwa?Rm zt{kHe)Hv|uh~)13A;nb0Zm=X&o`+9WN3E?KX#qH9{{s03PaeQJefg!PlBFNy=bY5&P+PUD@I*T1g=u z=;Fjx`vP}xSk26#(=|(=w38?Ob$o2A{+~s;#~b-GZ~Q#)%3IqnM>%w63g=n76n^RJ zv@w&^?10XEVm$+qzIHYeq|Fs(EFQ4JglG)PM+s)e6DayAlN zC|nKubYx#R_`!>gQ0Lx~1Y#VZKUiy@NAfvdv_jTsYF^{oEZNfo$Qf50dGtwxwJo8dz79S99d`PtONgW2KQ9Uh?egEHOOb`_${$4IXB%}$28?!dGwRr16km3R;SdK{VLhVkdb^RIWu0X$+{!ht)ej- zkX#w-JqgJj7=51NdYTE~6EpnOU5>8pt&9aYIK8zInEcx&M}>Li`q4op9*Q~M2_1iW zReUbT4TRaxQq9%4ocq?T`f#&QcgTydW5l}7r0Gk(Jp6d)92$m$@0s~&qPsQiS=0as z1ay5Wk}vRrSS@*~(#tLsgrJLkX>=)UeMs%)z2J#p@X_-OKvjLf`eID0+=|7mKPwz$ zmPmnf@8NBet1nnqn@2=&*MV2+C`e3oN#o(ol!I&zb4Kph0Eo#x9c*e8 zUuhX&d?C|RdX)`&MX9qeRogTHoOPvBa(AnXPl`7jy&t}qA=Pz>N*9eG+6>Ut$4K(; zM~q7Ll*}@d@6_Fh>n>&K1z!%+Zo*|y^Z2MZ%!uJ*BVe7ETCM5#J5- z-dTpIUYO8$ot}cDQOfiLTVGK{B;6B;`2iqy>7{MchY%GBRv#{VY6$laWnYn?MVo-( zgJQkLA47fJgE;+@!eTi?-lBndwEpPRz=ICnU58X&;b-=rw?1z=(Hmu|yqf??d8holSKt!2rpo-3 zRrSp!+EOOZ5Z7MefPr@>nJNs;%r0ezwgCnk;7h2>2c=rii)gCIGyaDId4{UDmLdyFP#g|XdK22%Rf`X`gEARb$L%RXqHOB>h(=9 z#8(XYyHIO&D1OXIv+HyZ*t{(Z4col6af^c$`V_s$XE{_-bFdS7mq8s#*V=S4o8+Li zGq*SWc+3A}12S{k=KW_k3=nhow!E3tC8Y~ruQ@C;^VNpw>6|~XGLfP&DXw$$-Y2eo zHsl!6F!emstMn8!hP8!K!QI7S>*l&gPzl+Fz3mo1Xn4@sNvirpZLaEFMwFPS7>llF zS(A-wU9NGj|9hs)aE~+3GF7hJ$lKSu#C9kny=E=+`@+P5Ny-XJ$nySOfjeCxwI&}Z zPlis{iXR_guezxlNXlrR9LL9fo!dS&-NDgQF#9Ntr2&Ql8E&9a!_!W)c!ocNBazE% zif%`momCRzsktrX6m@tqX_>za3hQ^-k1I68nb#?@*qEwVWS@M(Q_2bI6iM|bs?u?X zKS-7gc$Fg$bg8#HvVhS`V8Qv@a^P|Y`xmQA-eV6lO*#@8KUmYv@xS|qh9*ZIC-hWe@tFRnEj37H$>%J^p?F4)K&02it+BK`XN)#L> z|7mgdm2^Dw-#A#LX*r##gKC0qP{%Isf8g~Dpz~8xvG;%6cg}^@{`d+MpiL?ar*FP_ za78+N^aAz!3&kW+P<_#+RqfF1txlct+RH}U7h7)wA|i>>^;^544<*jc@JZ`lhVmWL zsPXi|FInZ!YLth$3?8f0?>ZJny0oNM-h-3|yAMH1#wM8)@zg z9hyEq_nZ3e@kL6HD!H>iJW;QhuKMp6YkVt|Qweu4$7v4%ncTpo>XADox{(r#AG71m zYxLae`=T_L%DD|`1j+1A8m1>`?=57 z!nAVzE!k+#s0u%ilgn_Z$g&oS^QDmE)$jEL*?=Yo>)U}*1Gc@4{)q#L(&@X=d@lfz zXML@BQQ$#^M|4~IXeJEz>vH1Zz89d|UYpX`7N_;yEqD`vy@$d-P*vKea_fltZ)j>Z z$GbE)G6l3>woa?a;7>9p5ENWlW2>C_DQa0l+By8Xr-!%XIp%UbwcWio=edb02`qD+ z54=?R;}85Z-a{nHBz+r+&IP1?qJS?~8AY{!rj`F*z%}7Xi|M@j(8b`HO*9Rv)nmr2 z45no=1;WyggC3bYr-@NcnjP7^!n7dn&OU!P=+t0;J!;NYfu70U^LG%Q=Wjzs;odLB zlE}T-#!Je+M{#OWW8XbUO-~T?U>6Qbk$Rc5o)T`257tBn1ZM^?SiM`*I~h~-wsn*q zn$==NeP&$Jm~e%+tuFNQu(P1(Cz>VJQWt{re%O5U^J0r>Q2$14^OdtjYX9_&uNDX z2OftzI28rGZre9r8=0kO&}R*KN6cZ)Unr$JzvGt+Gc;7=;s}1%()@Pc>h1=FR*5!m zwQf~@-DCZ-ijQmHdI=NMU2Sxls*BE`zfQb4Y0f4_19x|WaRU#k>AVsEjNFCw+U*aq zz)iOgQmnWib_Kyb*bGjZl~F%o-rN!XcU5V<5Vb1*%2vU1Yu~1;as^s9*vmvn4#&=>7O@yYL>*9Srn~- z8lLh{R0bK-ojyI~z>0SI3mPEzk&yWwug`1jF2aFJ$+RSn+&H;krwirV+UNQr=@H3n z)=9EI|GryJK$xzk27QOL(=|i+1 zXI!Iq9e$J(Hq^H{T>BTUW1$kzlUuEv%(=odJU~2&s!F#c?%<|BMh^SDUX)Y$1eyI7We7#h}$r_^ufS=o(jr=?Pkm^Q;j7{H+7l(rm9*>s!B3j<`^qVG217)eEVa2sv3@h_vUXG%^`G9j|x5rvlkqj0p)feXuSy*IOpuaH|`YQn_JC>$rEt$n()@( zA`))`+WXZg8I**EO)v~FuUIGht$8EzkDs!V{dZ_i?gAqjjyJ|=;A(X+-hfP)h5Cuj zUO+-j557{YLj7;TLT+p4@|)fn4lyts9HiG2HLKkeK(&{qNJb(!KqsV~0Rir*~N zbEVfnh~r@8bZ;&@n1%-r+8|}?>UZs?Rr6wA?n>0aXFQmFvJITPoov`C)EW@Ileg4h zu`;;t{M6kkrIXU8Vj$D=$5~HJ43_}a)Mlj%e7*)0B+2YbL{Uqcrb61;{Rjmw9#jH$?Ouek56xc%D}zm@KuGI{cZ3 zk`z@gNMv<#&ODc|{}zqwz(}}1ikISZJ?n+-m2;Ugt9cGAiBxx&y1RDtwS9EaNpfI4 zddj!ATW!bx!1wk&Jh*@g#pVN>&na6}E4*=%U=5BpA<)vuE%Z3_>C*O%yYwtp4ejV~ z2{$R_{+tNkbv$u#Nn-dqSNouYAi-logDt!zsPjb;KTsI8NE+3(*OnzP6xFm>m}Ig3 z*0rB$@aR>nd)Cjkz2oWnoghnal8cjvo{xe20PvEk>WyI45f`5NS9`GlqfT;(<7H0k zF^igVCm#E@@WphF%q-&y=j8RH68$h!xBB8o6!-w4IHgvvMKawHRUU7=X}uEIg=^UK zk)goDv+0$RygBNZia*67v~ow!j@B(|7Ib#CBjOtTCRI_#a2^X*Tx7>+OY{YSw zDZ(w?nID1K)=A7N9z+4p#_zWVT4|b*KJEfw1$y5{-}Rf3*MLD((Bh8(NBL4_bz4oc z;%m7g<}b0shYuN0v(49-Q~<2b7Kgc=;x^ z;E!F3_l4axX{!~4Kt8t`(mn8ULUzn;!k4!5?#6kTug{M=Si~)8v18#-x(XAsTxQjE7osqot#q`SzUzzy)yq+kTS1UBpON!f7o>z;MZD}!B;Q^S($!P)FA0v0U%bCpGFT-z;AlY zfs5?#Oh*SQvx$nf#>Vgfijsjn<}_KbNTuZV^2wSZHPO4@I+`5dz42vdp2rj`HIHir zEbTaa+Yx_uycYS>vQWOWBFJ__UhsP~!EsZOLtU8Ry#Ul~>~UHrFqSmZ7o=&H7W3Ub`t2 zxxNqJgVC$a)2w6`;66`d)q)Gpzz^C+>C)26|8<&PK~ZZJ!-kMUoaAFN9)xFgq4b%o zXdRa~9wh5-5m(O}LCDvw=rdFWK>Z_&euv+$E##jcOD@M$c6z(K=8uaDjiYo%PlW)e z*7IKlme$$!es+-}>!71j$@H}vU7CoE6o;RrqPnJ4^aC+mup|+h zrM*+Gl5opu&(cL--g=`&&=g;CC3cl#0WO321|&%(vV&3gdcdbv=0KTrIqtGzuFw{g z@XeCOyO}*@{PEhlHhM8-!NRy9G_cBg;S7>=M8j{I*@Yn7d2n&h_Zi%;h)V!*w%66f z)=BMY2udvS6(>|E)$h&@yVnob?3eJJa+20hwlXXjj)J~n7b{hcs*Cjw3!hybcZAJ~ zHk-~3t4|>aVUd9~RHNm*=g93)eq9aAx;FNe%Y@;ob(Me}n%{+DTZ3Kc*}%yy=+LdM zfEvKU9lLmgeN1+vPl2dN9B;EVWM)w$E^`^lf1|xP`tKSEwRbb zum5c>VYt2fWo8*|_hsyxKw-{w1nrul@4K0UeHpi7*9kv8xzlMb7u6*a0Y{pW@~3N| zctTKeyZwXYA*r}*s;HwB5p3xADua zjT;kW;(LuNqgzYhi!8N=n>r9fd~y#~i?~6cU#tCn%NUz6X6b1>!mGgtJSGH?7fSbP zg%8);^kmJLPq)6PEOzn&eCSSvwWBqSrs!r72f*r_$(w;cxF5mGL+7Rc4lt>1E0#1} zVq3_4-iQs_D%j;I%XV3u{cFENXMP+ z^x1v0Of>g>c*Vs8pNA=_d1hC=R~+iz5BDJa-slPq@GJgX7a);(*sX9o}eyul%C@K{$@nkmntC2-`N zS;HAdkt&c)-la!9%f)8?DTz{BJbV12KU;MD!8!dFL)Tr+84*bYbC-$RIe|zEIikbnYi%hATrWi?oG_-YIOJKA zxLBbYDKiWytmw8tK9Pp!d(seO;N=y))NpO_EP2C7SdmYG1OJ3Or{Ghie#bV!xs{zF zg-p9dQxOfCGqX0Sk{RtlEFLL#;>@`6d8YfAEW?Ob_etNX8d=R=$lcCKz>d&r%GFdE zYZ9N3LTm1E&ZCv7dkIv#iy26*gx$`S zlJi(s%*sR@u8|VzOJ9o9vCO>Kce{>qNL%Kkx&MD?BOWS(cY&`zNJ2e z9((B2>*dl2Cm_)H^kF>(qjR~(^>4q85Ag>u^>xTV->c26>+3Jlu1XhOv#J=14H5kP zci_)O0O3bp{7O=AN5ES2`XIy_tLn#epOm6*cki;cau1Ifbyjn& z9S68Se-tU;xe)%zFsfuYLIC?@(N>@tjlM@W_)$e;o(J=4ZL)TR!J~Tda&8m-<5qkQ z#k2Z8(dNbJ0xR(&dht^4{A}z%N4*A*v_sU9CJ%X4IZ@i8YW8s6slZIMkx(0v95gkd zsB3~6|GoH>l~cRLS$yWECn}{S`iYUk54SwJDqEQPUy9=fZuivNOJF0asQVofc@VG( z-yPu@t5};&E!nV6Ki1PP*wLf00Y>OD<7Z3)nBngxErmGaM4H}ah&$O33~!Jev%gIg zbg{SmP-tF|7>@nm<$3rXyn5qTQd-HmMI)bny)6fy@~zeph6nd4sY1W*q?xQg=E|hL zC#2ecP-A${+;$?N85Z2nSTyiC)g`sONJh59ckw`LJHR6)k-;P#N+C$vf0I@>n1e_U z3aoD`2cy)>4II7If32hKQstjK(B%C(^zv2Sgq$MByqK<56PZMamA$@bjCfFQ8 z?ghX{FgOGrsfhXOU*60Kfj=2A%E?j}&J|u2kN5cyL_))sZc8>BfUn0R4}K_&9;hYr zW4DXsvp+#I*n3Z3j*DV|}cx zrhkyeUHG_^nLiJVx%qN2KFDU%$%=Ybn$y^!0wsDT*O`wT1|dGFbh`VmR2t8D3KzSM zJNQyKMY(S>d(qv=E#7|7tpG<$h->5U6YR>@fg7M#hG;4X+{gz0@gzebL!?v- zwBfjOZ6=b{s)Wuyf9=uVyS1NQ8R8T#8eyX!=2raU0|x`hF_-Pc;839g&tuX1R56?N zMd8U}J2ob#c`b7E9+J*|SvWH|^J-xM<+fU^RVo=V@&4pV*pju+_%k=R_3OW1G4tYo zyFfI5i=h9Y z;K5B*TGWEBt{!ZG`wE#fMOgMmaT58U+W8q&7>S39s_~W8b@Ba|#8{bLIbVaK$Q;;% z<=^T4Ud;wHoRKxJ9VmQ(Qz*ij)F%XS&mGdhLD$)O$Gs@Q>#`hqQ=dpX5VszQtlK+r zzgeoTDt^IPHY>J$)n#!Ugh_7g;JcVgDNrkT}_HWJ?8KzJ+&T+7NrAV3Yi1o8# zQNgh960Y?WvCgB@I*O6@o^F=mydhTCgmje@@!~GbB2Vk@|0z)ju;X1G>n8lcl_89O zQ8}?Re={U-lcSHZ;8bB%m(u{x%o3)j@~?3mO@jWnmb^VDQo-;FGxhP*i#&#=>{x%_$jN)j(;3>Wp4zaMX@C|!JHM-@S_b_)KVD7zR{H$nrdbt@MfH>mo)Ed5dkPqXOdj&)Yw*;iU5ZWNTP+zdnKRwtS)> zr)p@ItK_Fm$ByY3|E8%6myLgVp#9O#@w*m}Wu$KkSrY)RC(J^~0SGb8zDSpn(_&H@VRL7wncnDKq|W3w@+8 zcl4ht!k}wNs;dyV6Mdl^?|Ph9*03s5yNorrH0bS5F{<=!9bpTqd3(+{AvgLce1wTgloO<(|}g-p~)<#jVU0&dsgPt^UV?OQ(JKsW3gM zxsq%BdGi!o&4EKxFE>0t?|_;Sk^lS6OP)0qJvoKf)eoW1ZZsP(Z~>@I@sT@qub!e| zKXN*43r$0cwYie|H&>!J^151AxK6IR_KgcfhYP5Fo6yXRS00seG;lOY7qaX{Jn zShXg&<|EJSKF??u>F3YnJ9t;hsM|dY7+9Z@Q@oh&gxc-j`(G?DJ^M4avm{(u`ctKz zYvPSNV__4o%ZHpc^w#%kolf2>T6(KG5fIy+9JML*}%EHH?Dl3ugy;HSbYx0dGB5B^Vb ziicb!Y8zB;U+Kk?EvPX0@}`t~M0c_?6bdyPzjBZJb-NRC-MOkLtm6K~hj~Ky|6>(_ZT#ebu?ll@`N@{q^heQ_t|<#I z7E0HO3V>I^mVYIhYwKQ<{;2@=#`hYk@73C-PA)g266*&=%?$hVrahhJ1gFQA3o0$+ z+|wqX_+yH4N|L{5nlU_0P;#>QzFkv!0}Tt-JG?}^{yjOVLOY=4n+w_BuOF7+vA;~~*H_~x_WNklcyjL*>3+~$L_Ux>8RxZ|>+H=+ zm?hlwNyX$2$YS(v6EVZ}Qo(tgPA{_>K@Of{LSw6uRP~PYOjnEbxeoOdU+<0zX*iY8 z>wX~o@W-glnRWWF4}MFd3?j#mz8*e|lEchwoj$hL^PXDOwRdpUDBvL+&|e!0bi9gN zdIA5@%Kh~gM9F23lsx?1;m?04<$pH{z`LJJt#~mZ#EW543e>)OhkuDa$Q+E>9MH6S z(COLALcYg`#!?(3tYb9f_9W0MMWtM#%&bGQNOU(orjh9xk|)-PK`V0kD-eODJuaa) zDLHk&j6r0xRs>%?#q(39cF*L_pVZoUB6%A|GR|E_?9Z(Uq z!uE5T<>5hy)M5s}DOOF}BxXV5%?jGzgi9EV`J>WDVqJQnT%_Cn6OgUInFL)-geV+r zxlwshO=ZUu?I7Qy=U#x)uj-}CFFEv#-ND8Ucl|d){$J(*`X5YwgYIXcnvu8;wY)*h zq97x$=5o;`7;|lt7yET2lRR-8^njvXSGIzlA~W+n%8yn!F?u}ZWnMoo7AJn1Bc&Xr z%PtmDZc^IPbIAC`OAz?A3&xpoBgHG%oP%Gqz2-CIW0+SUCWA{Tm-G7GkG)IE|A$`d z2R}h&3KQuWzdUY>-|MQ0u!HPVf`Xvem;QVV6xGw$;d(qs{v)To)=%kzcyL#RTF@pX z^$B5z{^b*ETf}g^CY~jGw;SqJvm*@`HK=?TYLFBkelTv|={2moJ$J+_4WCa>bCIg~ z4MOxgjgg&sgN%%k&K91G_?z2X(gi(xG%YCl2gK(Uwa!JW`d#GsZD-uaE|5ijR>0z8sGW+^zc{qo*T#-fH-!K|xTaJ5OdjkTJ@nCnec= z(W+$Dz@XfS@b&pePRz(G4yO=4YHQni`zIw$vzCdlQ|s#2=(v(S+`ari8Mai}hk`KO zy>hn@D-~GH=bM=H?x>%BF6&OXni|u6#KKEN{$oyi8*v|Qx|w>c_F2WKe{i8 zsN56VL;vESYx~cgq%5gk!)umiq|${OOiouuJ9G351~)KzhZkAQox_Vfs_UeLG?c|% zUBj0$Z>h+#vdw6OdSo?BUwWZ;l5>!(>XP`4gDZ4;IxvHz_b2$gbf)SDr`KEVU;2D* zzfbI}&`V&2o@T=Wn8}X|-+%Z2-Re+NEzBZz)QH5#95Ffd_Eo@}${Q~pccVGfs`}%i zz*)xK=J7%g5-LQEjVe&<^P8tH`rGYI8vRFqaNkKQ)QHfF>3T~{714=+3@+Ta0X*jX z?+4I`;1{eS6MO5I$K^!p#uhpKVav%8PbOZjv-l6#3y|cR2B6t6H|CL#jhhD8o#)#B zU{(O%+W(;yiSP&i@U_Urw5O5rsDbwoS;~b@btmA1VQRKMEL@)nHG1h#0V)K4T(+y& zFbZvu%(@Yt$b>qaDC-}kg}}Rz4Lze`Au`l29tAxx`6h$L7P@rTe(hKc)<5lCKx4HE zg4-#2lgjWFWnB<>03RGfpy89{ll>2C6toz88~Or`9nlI&xF`dcTGO}psg1Cs)O6Fa zio|HQvrEgz%Pq)M$jgW#G~0#?vBeQsYUJFN0Sa1ZvHx}V3pKe{TCvU^<(ifuSs|G} zuAPyRz75Hld9(SbNMBi_jyaY}Y_TO`gQx)39KCtw9+-1#vR1O!Gxq)?B!W^QVL7Q+ zV9=OIkFQG`WB|A3?A|Ioo!PyU$>7yc>|jafoGe^Rn^uZ1M!yM?@?U*Z^cXwGFdVkU=i zm@W@_ZPvVe9TTYrfeTr^YLY`3h6|*~oA%zN)1cs3S!GF`R7HV$Rs$Th!ZPzxFX-b? zn#&vQ$$3#8WTk{tY7(yRQwvsSdwz1^4aJ)C<}n^ zpEjiWa9+nslHG6@*K5#`Xu}F1&@gHN?tgL}EkMcqyxxEPmhQsYZ$AJ4nQGrrdz>Oq zOorsOD^U7jxr;jh^=$8qWu~dteoPFF)txV0L1TceM;6@}ip|5&cq7hKx`4T4=$)s{ z390v*w$$di;UPP?s(!>wmtFf4!6^6n7N5;KF5ZpZoMk8dX0-xr6j*S`4<$}Hp%n7XWKb`h*Dk7^I00@fT ziF89)@biX&%aqV z$NP68uljdtTQ(wwzk9z5< Registering ImageLoad Callbacks... -00000063 50.43740082 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000064 50.43749619 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000065 50.43751907 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000066 50.43753815 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000067 50.58502197 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53178 -00000068 50.58507919 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000069 50.58508682 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000070 51.10113525 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000071 51.10131836 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000072 51.10273743 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000073 51.10350800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000074 51.10353851 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000075 51.10358047 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000076 51.10610580 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000077 51.10625458 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000078 51.10628510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000079 51.10639191 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000080 51.10641861 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000081 51.10651016 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000082 51.10654068 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000083 51.10680389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000084 51.10683060 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000085 51.10694504 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000086 51.10697556 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000087 51.10707092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000088 51.10709763 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000089 51.10721970 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000090 51.10724640 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000091 51.10738373 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000092 51.10741043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000093 51.10754395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000094 51.10756683 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000095 51.10775757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000096 51.10778427 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000097 51.10791397 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000098 51.10794067 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000099 51.10807037 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000100 51.10810089 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000101 51.10824966 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000102 51.10828018 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000103 51.10843277 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000104 51.10845947 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000105 51.10859680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000106 51.10862350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000107 51.10871506 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000108 51.17190552 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000109 51.17191696 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000110 51.17193604 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000111 51.17218399 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000112 51.17337799 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000113 51.17341232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000114 51.17345047 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000115 51.17357254 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000116 51.17361450 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53120 -00000117 51.17368698 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000118 51.17370987 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000119 51.17377472 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000120 51.17518616 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000121 51.17524338 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000122 51.17525482 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000123 51.24715805 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000124 51.24720001 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000125 51.25698090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000126 51.25698853 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000127 51.25704193 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000128 51.25704575 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000129 51.25706100 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000130 51.25708008 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000131 51.25739670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000132 51.25755692 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000133 51.25756836 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000134 51.25761795 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000135 51.25763702 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000136 51.25765228 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000137 51.25767517 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000138 51.25781631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000139 51.27926254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000140 51.27931976 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000141 51.28040314 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00000142 51.28140640 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000143 51.30122375 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x531a8 -00000144 51.31207657 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000145 51.31214905 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000146 51.54455185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000147 51.54465103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000148 51.74643707 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a8 -00000149 51.74644852 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530b0 -00000150 51.74704361 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530b8 -00000151 51.74705124 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530c0 -00000152 51.74723816 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000153 51.74776840 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000154 51.74779129 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000155 51.74813080 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000156 51.74815369 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000157 51.74845505 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000158 51.74847794 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000159 51.74950027 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000160 51.74952698 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000161 51.74993896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000162 51.74996185 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000163 51.75026321 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000164 51.75028610 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000165 51.75072479 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000166 51.75074768 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000167 51.75127792 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000168 51.75130081 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000169 51.75179672 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000170 51.75181961 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000171 51.75223541 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000172 51.75226212 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000173 51.75271225 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000174 51.75273514 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000175 51.75318527 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000176 51.75320816 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000177 51.75373459 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000178 51.75375748 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000179 51.75431824 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000180 51.75434113 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000181 51.75482941 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000182 51.75485611 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000183 51.75516510 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000184 51.75517273 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be80 -00000185 51.75518799 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be88 -00000186 51.75596237 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000187 51.75600815 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000188 51.77112198 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000189 51.77124023 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000190 51.77130127 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00000191 51.77806473 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000192 51.77807236 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000193 51.77815628 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000194 51.77816010 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000195 51.77817154 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000196 51.77819061 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000197 51.77840805 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7AD1CC0 -00000198 51.77958298 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7AD1CC0 -00000199 51.78794479 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000200 51.78805923 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000201 51.78806686 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000202 51.78812027 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000203 51.78812790 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000204 51.78813934 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000205 51.78815842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000206 51.78832245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000207 51.79832458 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000208 51.79836655 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7AD1BE0 -00000209 51.79956055 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7AD1BE0 -00000210 51.80028915 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000211 51.80029297 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000212 51.80065536 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000213 51.80066299 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000214 51.80093384 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000215 51.80094147 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000216 51.80128860 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000217 51.80129623 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000218 51.80161667 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000219 51.80162430 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000220 51.80192184 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000221 51.80192947 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000222 51.80224991 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000223 51.80225372 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000224 51.80251694 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000225 51.80252457 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000226 51.80286026 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000227 51.80286789 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000228 51.80321503 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000229 51.80322266 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000230 51.80356979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000231 51.80357742 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000232 51.80546951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000233 51.80547333 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000234 51.80587006 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000235 51.80587387 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000236 51.80627823 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000237 51.80628586 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000238 51.80668259 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000239 51.80668640 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000240 51.80853271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000241 51.80854034 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000242 51.80892944 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000243 51.80893326 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000244 51.80926895 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000245 51.80927658 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000246 51.80968857 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00000247 51.81015015 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000248 51.92556381 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000249 51.93336487 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000250 51.93350220 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000251 51.93368530 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00000252 51.93368912 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000253 51.93380356 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000254 51.93381500 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000255 51.93388748 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000256 51.93391037 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000257 51.93392181 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000258 51.93394089 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000259 51.93421936 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7B25CC0 -00000260 51.93539047 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7B25CC0 -00000261 51.94372940 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000262 51.94416809 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000263 51.94422913 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53120 -00000264 51.94435120 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000265 51.94438171 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000266 51.94446564 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000267 51.94450760 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53120 -00000268 51.94459534 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000269 51.94462585 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000270 51.94470596 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000271 51.94474030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000272 51.94532013 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53180 -00000273 51.94593811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00000274 51.94601822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00000275 52.23550034 [vmhook-eac [core number = 2]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7468800 -00000276 52.23677444 [vmhook-eac [core number = 2]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7468800 -00000277 52.74588394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000278 52.74604034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000279 52.74981689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000280 52.74998856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000281 52.75015259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c248 -00000282 52.75018311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c240 -00000283 52.75019455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c244 -00000284 52.75027847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000285 52.75034332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000286 52.75038910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000287 52.75049591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c248 -00000288 52.75053024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c248 -00000289 52.75094604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c254 -00000290 52.75097656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c24c -00000291 52.75098801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c250 -00000292 52.75106430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000293 52.75110245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000294 52.75114059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000295 52.75123978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c254 -00000296 52.75127792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c254 -00000297 52.75156021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c260 -00000298 52.75159073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c258 -00000299 52.75160217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c25c -00000300 52.75167847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000301 52.75170135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000302 52.75173950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000303 52.75184250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c260 -00000304 52.75187683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c260 -00000305 52.75201416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c26c -00000306 52.75204086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c264 -00000307 52.75205612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c268 -00000308 52.75212860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000309 52.75215530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000310 52.75219345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000311 52.75230789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c26c -00000312 52.75234604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c26c -00000313 52.75261307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c278 -00000314 52.75263977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c270 -00000315 52.75265503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c274 -00000316 52.75273132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000317 52.75275803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000318 52.75279617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000319 52.75290298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c278 -00000320 52.75293350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c278 -00000321 52.75315475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000322 52.75320053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c27c -00000323 52.75321198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c280 -00000324 52.75328827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000325 52.75334930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000326 52.75716019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000327 52.75721359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000328 52.75724411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000329 52.75745773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000330 52.75750732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c288 -00000331 52.75751877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28c -00000332 52.75759506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000333 52.75765610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000334 52.75986862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d8 -00000335 52.75999451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000336 52.76024628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53328 -00000337 52.76110077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00000338 52.76110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00000339 52.76126862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000340 52.76130676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000341 52.76149750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c29c -00000342 52.76152420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c294 -00000343 52.76153946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c298 -00000344 52.76161575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000345 52.76164627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000346 52.76168442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000347 52.76178741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c29c -00000348 52.76182175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c29c -00000349 52.76232147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2a8 -00000350 52.76249313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000351 52.76252365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000352 52.76256180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000353 52.76265717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2a8 -00000354 52.76268768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2a8 -00000355 52.76293945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b4 -00000356 52.76297379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2ac -00000357 52.76298904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b0 -00000358 52.76306534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000359 52.76309204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000360 52.76313400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000361 52.76320267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b8 -00000362 52.76324844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b4 -00000363 52.76327515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b4 -00000364 52.76340866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c0 -00000365 52.76343536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b8 -00000366 52.76345062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2bc -00000367 52.76352692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000368 52.76355362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000369 52.76359177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000370 52.76369095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c0 -00000371 52.76372528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c0 -00000372 52.76400757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2cc -00000373 52.76403046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c4 -00000374 52.76404572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c8 -00000375 52.76412201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000376 52.76415634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000377 52.76419449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000378 52.76430511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2cc -00000379 52.76434326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2cc -00000380 52.76474380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d8 -00000381 52.76477432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d0 -00000382 52.76478577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d4 -00000383 52.76486588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000384 52.76490402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000385 52.76494217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000386 52.76504517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d8 -00000387 52.76507950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d8 -00000388 52.76561737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2e4 -00000389 52.77502823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2e4 -00000390 52.77506256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2e4 -00000391 52.77525711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2f0 -00000392 52.77533340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2f0 -00000393 52.77536774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2f0 -00000394 52.77547455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2fc -00000395 52.77570343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53188 -00000396 52.77579498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64260 -00000397 52.77579880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d1c0 -00000398 52.77580261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64388 -00000399 52.77580261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d2e8 -00000400 52.77580643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x646e0 -00000401 52.77580643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d640 -00000402 52.77581406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64260 -00000403 52.77581406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d1c0 -00000404 52.77582169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a20 -00000405 52.77582169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d980 -00000406 52.77582550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x642d8 -00000407 52.77582550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d238 -00000408 52.77609634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2fc -00000409 52.77613068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2fc -00000410 52.77635193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c308 -00000411 52.77640152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c308 -00000412 52.77643204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c308 -00000413 52.77687073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c314 -00000414 52.77715683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c314 -00000415 52.77719116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c314 -00000416 52.77740097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c320 -00000417 52.77783585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c32c -00000418 52.77806854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000419 52.77859497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000420 52.77862167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000421 52.77895737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000422 52.77898026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000423 52.77928162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000424 52.77930450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000425 52.78033066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000426 52.78035355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000427 52.78076935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000428 52.78079224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000429 52.78108978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000430 52.78111267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000431 52.78155518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000432 52.78157806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000433 52.78210068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000434 52.78212738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000435 52.78262711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000436 52.78264999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000437 52.78306198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000438 52.78308487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000439 52.78353500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000440 52.78355789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000441 52.78400803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000442 52.78403091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000443 52.78455734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000444 52.78458023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000445 52.78514099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000446 52.78516388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000447 52.78565598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000448 52.78567505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000449 52.78598785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000450 52.78601456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000451 52.78635025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000452 52.78637314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000453 52.78690338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000454 52.78692627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000455 52.78742599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000456 52.78744888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000457 52.78809738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000458 52.78812027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000459 52.78896332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000460 52.78899002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000461 52.78944016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000462 52.78946304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000463 52.78998566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000464 52.79001236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000465 52.79058456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000466 52.79061127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000467 52.79100800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000468 52.79103088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000469 52.79153061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000470 52.79155350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000471 52.79207993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000472 52.79210281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000473 52.79294968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000474 52.79297638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000475 52.79347992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000476 52.79349899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000477 52.79454041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000478 52.79456711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000479 52.79490662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000480 52.79492950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000481 52.79545593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000482 52.79547882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000483 52.79581833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000484 52.79584122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000485 52.79636383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000486 52.79638672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000487 52.79672623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000488 52.79674911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000489 52.79710388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000490 52.79712677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000491 52.79761505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000492 52.79763794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000493 52.79808807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000494 52.79811478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000495 52.79865646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000496 52.79868317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000497 52.79926682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000498 52.79929352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000499 52.79975128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000500 52.79977417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000501 52.80031204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000502 52.80033875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000503 52.80081940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000504 52.80085754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000505 52.80144882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000506 52.80148697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000507 52.80232620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000508 52.80236435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000509 52.80300140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000510 52.80303955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000511 52.80383301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000512 52.80387497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000513 52.80470657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000514 52.80474472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000515 52.80527496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000516 52.80530930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000517 52.80618286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000518 52.80622101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000519 52.80683136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000520 52.80686951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000521 52.80757904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000522 52.80761719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000523 52.80819702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000524 52.80823517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000525 52.80896378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000526 52.80900192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000527 52.80977631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000528 52.80980682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000529 52.81044006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000530 52.81047821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000531 52.81131744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000532 52.81136322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000533 52.81204224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000534 52.81206894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000535 52.81256485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000536 52.81259918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000537 52.81317139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000538 52.81319809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000539 52.81368256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000540 52.81370926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000541 52.81423187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000542 52.81425476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000543 52.81459427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000544 52.81462097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000545 52.81507111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000546 52.81509399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000547 52.81546783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000548 52.81549454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000549 52.81608582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000550 52.81610870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000551 52.81663513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000552 52.81665802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000553 52.81707382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000554 52.81709671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000555 52.81766129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000556 52.81768799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000557 52.81802750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000558 52.81803894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d58 -00000559 52.81804657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d60 -00000560 52.81811142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000561 52.81874466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d80 -00000562 52.81918335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d80 -00000563 52.82000732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d80 -00000564 52.82001877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d88 -00000565 52.82003021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d90 -00000566 52.82007599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000567 52.82068634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000568 52.82112503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000569 52.82193756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000570 52.82291412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000571 52.82369995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000572 52.82448578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000573 52.82521057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000574 52.82644653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000575 52.82741928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000576 52.82831192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000577 52.82913208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000578 52.82914734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db8 -00000579 52.82915497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61dc0 -00000580 52.82920456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000581 52.82981491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000582 52.83024597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000583 52.83106613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000584 52.83204269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000585 52.83282471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000586 52.83283997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61da0 -00000587 52.83284760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61da8 -00000588 52.83289719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000589 52.83350754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000590 52.83393860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000591 52.83475876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000592 52.83574677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000593 52.83653259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000594 52.83732224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000595 52.83804321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000596 52.83927917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000597 52.84025192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000598 52.84117889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000599 52.84199524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000600 52.84285355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000601 52.84286499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d70 -00000602 52.84287643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d78 -00000603 52.84499359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00000604 52.84499741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00000605 52.84502411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00000606 52.84502792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00000607 52.84505463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00000608 52.84505463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00000609 52.84508133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00000610 52.84508514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00000611 52.84511185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00000612 52.84511185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00000613 52.84513855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00000614 52.84514236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00000615 52.84516907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00000616 52.84517288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00000617 52.84519577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00000618 52.84519577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00000619 52.84522629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00000620 52.84522629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00000621 52.84525299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00000622 52.84525299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00000623 52.84527969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00000624 52.84528351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00000625 52.84531021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00000626 52.84531021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00000627 52.84533691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00000628 52.84534073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00000629 52.84536743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00000630 52.84537125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00000631 52.84539413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00000632 52.84539795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00000633 52.84542465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00000634 52.84542847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00000635 52.84545135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00000636 52.84545517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00000637 52.84548187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00000638 52.84548569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00000639 52.84550858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00000640 52.84550858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00000641 52.84553909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00000642 52.84553909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00000643 52.84556580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00000644 52.84556961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00000645 52.84559250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00000646 52.84559631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00000647 52.84562302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00000648 52.84562683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00000649 52.84564972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00000650 52.84565353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00000651 52.84568024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00000652 52.84568405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00000653 52.84570694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00000654 52.84571075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00000655 52.84573746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00000656 52.84574127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00000657 52.84576797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00000658 52.84576797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00000659 52.84579468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00000660 52.84579849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00000661 52.84582520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00000662 52.84582901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00000663 52.84585190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00000664 52.84585190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00000665 52.84588242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00000666 52.84588242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00000667 52.84590530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00000668 52.84590912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00000669 52.84593582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00000670 52.84593964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00000671 52.84596634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00000672 52.84596634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00000673 52.84599304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00000674 52.84599686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00000675 52.84602356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00000676 52.84602737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00000677 52.84605026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00000678 52.84605408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00000679 52.84608078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00000680 52.84608459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00000681 52.84610748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00000682 52.84611130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00000683 52.84613800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00000684 52.84613800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00000685 52.84616470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00000686 52.84616470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00000687 52.84619141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00000688 52.84619522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00000689 52.84622192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00000690 52.84622574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00000691 52.84624863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00000692 52.84625244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00000693 52.84627914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00000694 52.84628296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00000695 52.84630585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00000696 52.84630966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00000697 52.84633636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00000698 52.84634018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00000699 52.84636307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00000700 52.84636688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00000701 52.84639359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00000702 52.84639740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00000703 52.84642410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00000704 52.84642410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00000705 52.84645081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00000706 52.84645462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00000707 52.84648132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00000708 52.84648132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00000709 52.84650803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00000710 52.84650803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00000711 52.84653473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00000712 52.84653854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00000713 52.84656143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00000714 52.84656525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00000715 52.84659195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00000716 52.84659576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00000717 52.84662247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00000718 52.84662247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00000719 52.84664917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00000720 52.84665298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00000721 52.84667969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00000722 52.84668350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00000723 52.84670639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00000724 52.84671021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00000725 52.84673691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00000726 52.84674072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00000727 52.84678268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00000728 52.84678268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00000729 52.84680939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00000730 52.84681320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00000731 52.84683990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00000732 52.84683990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00000733 52.84686661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00000734 52.84687042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00000735 52.84689713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00000736 52.84690094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00000737 52.84692383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00000738 52.84692764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00000739 52.84695435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00000740 52.84695816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00000741 52.84698105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00000742 52.84698486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00000743 52.84701157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00000744 52.84701538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00000745 52.84703827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00000746 52.84703827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00000747 52.84706497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00000748 52.84706879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00000749 52.84709549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00000750 52.84709930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00000751 52.84712219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00000752 52.84712601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00000753 52.84715271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00000754 52.84715652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00000755 52.84717941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00000756 52.84718323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00000757 52.84720993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00000758 52.84721375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00000759 52.84724045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00000760 52.84724045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00000761 52.84727097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00000762 52.84727097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00000763 52.84729767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00000764 52.84729767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00000765 52.84732437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00000766 52.84732819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00000767 52.84735489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00000768 52.84735870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00000769 52.84738159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00000770 52.84738541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00000771 52.84741211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00000772 52.84741592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00000773 52.84743881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00000774 52.84744263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00000775 52.84746933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00000776 52.84747314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00000777 52.84749603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00000778 52.84749985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00000779 52.84752655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00000780 52.84752655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00000781 52.84755325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00000782 52.84755707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00000783 52.84757996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00000784 52.84758377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00000785 52.84761047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00000786 52.84761429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00000787 52.84763718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00000788 52.84764099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00000789 52.84766769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00000790 52.84767151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00000791 52.84769440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00000792 52.84769821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00000793 52.84772491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00000794 52.84772491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00000795 52.84775543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00000796 52.84775543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00000797 52.84777832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00000798 52.84778214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00000799 52.84780884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00000800 52.84781265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00000801 52.84783554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00000802 52.84783936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00000803 52.84786606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00000804 52.84786987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00000805 52.84789276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00000806 52.84789658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00000807 52.84792328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00000808 52.84792709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00000809 52.84795380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00000810 52.84795380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00000811 52.84798050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00000812 52.84798431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00000813 52.84801102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00000814 52.84801102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00000815 52.84803772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00000816 52.84803772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00000817 52.84806442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00000818 52.84806824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00000819 52.84809113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00000820 52.84809494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00000821 52.84812164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00000822 52.84812546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00000823 52.84815216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00000824 52.84815216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00000825 52.84817886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00000826 52.84818268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00000827 52.84820938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00000828 52.84820938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00000829 52.84823608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00000830 52.84823608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00000831 52.84826660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00000832 52.84826660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00000833 52.84828949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00000834 52.84829330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00000835 52.84832001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00000836 52.84832382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00000837 52.84835052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00000838 52.84835052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00000839 52.84837723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00000840 52.84838104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00000841 52.84840775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00000842 52.84840775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00000843 52.84843445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00000844 52.84843826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00000845 52.84846497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00000846 52.84846878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00000847 52.84849167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00000848 52.84849167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00000849 52.84852219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00000850 52.84852219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00000851 52.84854889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00000852 52.84854889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00000853 52.84857559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00000854 52.84857941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00000855 52.84860611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00000856 52.84860611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00000857 52.84863281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00000858 52.84863663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00000859 52.84866333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00000860 52.84866714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00000861 52.84869003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00000862 52.84869385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00000863 52.84872055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00000864 52.84872437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00000865 52.84874725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00000866 52.84874725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00000867 52.84877777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00000868 52.84877777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00000869 52.84880447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00000870 52.84880829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00000871 52.84883118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00000872 52.84883499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00000873 52.84886169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00000874 52.84886551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00000875 52.84888840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00000876 52.84889221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00000877 52.84891891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00000878 52.84892273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00000879 52.84894562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00000880 52.84894943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00000881 52.84897614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00000882 52.84897614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00000883 52.84900665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00000884 52.84900665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00000885 52.84902954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00000886 52.84903336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00000887 52.84906006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00000888 52.84906387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00000889 52.84908676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00000890 52.84909058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00000891 52.84911728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00000892 52.84912109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00000893 52.84914398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00000894 52.84914780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00000895 52.84917450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00000896 52.84917831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00000897 52.84920502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00000898 52.84920502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00000899 52.84923172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00000900 52.84923553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00000901 52.84926224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00000902 52.84926224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00000903 52.84928894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00000904 52.84928894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00000905 52.84931564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00000906 52.84931946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00000907 52.84934235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00000908 52.84934616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00000909 52.84937286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00000910 52.84937668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00000911 52.84940338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00000912 52.84940338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00000913 52.84943008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00000914 52.84943390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00000915 52.84946060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00000916 52.84946060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00000917 52.84948730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00000918 52.84949112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00000919 52.84951782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00000920 52.84951782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00000921 52.84954453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00000922 52.84954453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00000923 52.84957123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00000924 52.84957504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00000925 52.84960175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00000926 52.84960175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00000927 52.84962845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00000928 52.84963226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00000929 52.84965897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00000930 52.84965897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00000931 52.84968567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00000932 52.84968948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00000933 52.84971619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00000934 52.84972000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00000935 52.84974289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00000936 52.84974670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00000937 52.84977341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00000938 52.84977341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00000939 52.84980011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00000940 52.84980011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00000941 52.84983063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00000942 52.84983063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00000943 52.84985733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00000944 52.84985733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00000945 52.84988403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00000946 52.84988785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00000947 52.84991455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00000948 52.84991837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00000949 52.84994125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00000950 52.84994507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00000951 52.84997177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00000952 52.84997559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00000953 52.84999847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00000954 52.85000229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00000955 52.85002899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00000956 52.85003281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00000957 52.85005569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00000958 52.85005569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00000959 52.85008240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00000960 52.85008621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00000961 52.85011292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00000962 52.85011673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00000963 52.85013962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00000964 52.85014343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00000965 52.85017014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00000966 52.85017395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00000967 52.85019684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00000968 52.85020065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00000969 52.85022736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00000970 52.85023117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00000971 52.85025787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00000972 52.85025787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00000973 52.85028458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00000974 52.85028458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00000975 52.85031128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00000976 52.85031509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00000977 52.85033798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00000978 52.85034180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00000979 52.85036850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00000980 52.85037231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00000981 52.85039520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00000982 52.85039902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00000983 52.85042572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00000984 52.85042953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00000985 52.85045624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00000986 52.85045624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00000987 52.85048294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00000988 52.85048676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00000989 52.85051346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00000990 52.85051346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00000991 52.85054016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00000992 52.85054016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00000993 52.85056686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00000994 52.85057068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00000995 52.85059357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00000996 52.85059738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00000997 52.85062408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00000998 52.85062790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00000999 52.85065460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00001000 52.85065460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00001001 52.85068130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00001002 52.85068512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00001003 52.85071182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00001004 52.85071182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00001005 52.85073853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00001006 52.85074234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00001007 52.85076904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00001008 52.85077286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00001009 52.85079575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00001010 52.85079575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00001011 52.85082245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00001012 52.85082626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00001013 52.85085297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00001014 52.85085297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00001015 52.85087967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00001016 52.85088348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00001017 52.85091019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00001018 52.85091019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00001019 52.85093689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00001020 52.85094070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00001021 52.85096741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00001022 52.85097122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00001023 52.85099411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00001024 52.85099792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00001025 52.85102463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00001026 52.85102844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00001027 52.85105133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00001028 52.85105133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00001029 52.85107803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00001030 52.85108185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00001031 52.85110855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00001032 52.85110855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00001033 52.85113525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00001034 52.85113907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00001035 52.85116577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00001036 52.85116959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00001037 52.85119247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00001038 52.85119629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00001039 52.85122299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00001040 52.85122681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00001041 52.85124969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00001042 52.85125351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00001043 52.85128021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00001044 52.85128021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00001045 52.85130692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00001046 52.85130692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00001047 52.85133362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00001048 52.85133743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00001049 52.85136414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00001050 52.85136795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00001051 52.85139084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00001052 52.85139465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00001053 52.85142136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00001054 52.85142517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00001055 52.85144806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00001056 52.85145187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00001057 52.85147858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00001058 52.85148239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00001059 52.85150909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00001060 52.85150909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00001061 52.85153580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00001062 52.85153580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00001063 52.85156250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00001064 52.85156631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00001065 52.85158920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00001066 52.85159302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00001067 52.85161972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00001068 52.85162354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00001069 52.85164642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00001070 52.85165024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00001071 52.85167694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00001072 52.85168076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00001073 52.85170746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00001074 52.85170746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00001075 52.85173416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00001076 52.85173798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00001077 52.85176468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00001078 52.85176468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00001079 52.85179138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00001080 52.85179520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00001081 52.85182190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00001082 52.85182190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00001083 52.85184479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00001084 52.85184860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00001085 52.85187531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00001086 52.85187912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00001087 52.85190582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00001088 52.85190582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00001089 52.85193253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00001090 52.85193634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00001091 52.85196304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00001092 52.85196304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00001093 52.85198975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00001094 52.85199356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00001095 52.85202026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00001096 52.85202408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00001097 52.85204697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00001098 52.85205078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00001099 52.85207748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00001100 52.85207748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00001101 52.85210419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00001102 52.85210419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00001103 52.85213089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00001104 52.85213470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00001105 52.85216141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00001106 52.85216141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00001107 52.85218811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00001108 52.85219193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00001109 52.85221863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00001110 52.85222244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00001111 52.85224533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00001112 52.85224915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00001113 52.85227585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00001114 52.85227966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00001115 52.85230255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00001116 52.85230637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00001117 52.85233307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00001118 52.85233307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00001119 52.85235977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00001120 52.85235977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00001121 52.85238647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00001122 52.85239029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00001123 52.85241699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00001124 52.85242081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00001125 52.85244370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00001126 52.85244751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00001127 52.85247421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00001128 52.85247803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00001129 52.85250092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00001130 52.85250473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00001131 52.85253143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00001132 52.85253525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00001133 52.85255814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00001134 52.85256195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00001135 52.85258865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00001136 52.85259247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00001137 52.85261917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00001138 52.85261917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00001139 52.85264206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00001140 52.85264587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00001141 52.85267258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00001142 52.85267639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00001143 52.85269928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00001144 52.85270309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00001145 52.85272980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00001146 52.85273361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00001147 52.85275650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00001148 52.85276031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00001149 52.85278702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00001150 52.85279083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00001151 52.85281754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00001152 52.85281754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00001153 52.85284424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00001154 52.85284805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00001155 52.85287476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00001156 52.85287476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00001157 52.85290146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00001158 52.85290146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00001159 52.85292816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00001160 52.85293198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00001161 52.85295868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00001162 52.85295868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00001163 52.85298538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00001164 52.85298920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00001165 52.85301590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00001166 52.85301590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00001167 52.85304260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00001168 52.85304642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00001169 52.85307312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00001170 52.85307693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00001171 52.85309982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00001172 52.85309982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00001173 52.85313034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00001174 52.85313034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00001175 52.85315704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00001176 52.85315704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00001177 52.85318375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00001178 52.85318756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00001179 52.85321426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00001180 52.85321426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00001181 52.85324097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00001182 52.85324478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00001183 52.85327148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00001184 52.85327530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00001185 52.85329819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00001186 52.85330200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00001187 52.85332870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00001188 52.85333252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00001189 52.85335541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00001190 52.85335541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00001191 52.85338211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00001192 52.85338593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00001193 52.85341263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00001194 52.85341263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00001195 52.85343933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00001196 52.85344315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00001197 52.85346985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00001198 52.85347366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00001199 52.85349655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00001200 52.85350037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00001201 52.85352707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00001202 52.85353088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00001203 52.85355377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00001204 52.85355759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00001205 52.85358429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00001206 52.85358810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00001207 52.85361099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00001208 52.85361099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00001209 52.85364151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00001210 52.85364151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00001211 52.85366821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00001212 52.85367203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00001213 52.85369492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00001214 52.85369873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00001215 52.85372543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00001216 52.85372925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00001217 52.85375214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00001218 52.85375595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00001219 52.85378265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00001220 52.85378647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00001221 52.85380936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00001222 52.85381317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00001223 52.85383987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00001224 52.85384369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00001225 52.85387039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00001226 52.85387039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00001227 52.85389709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00001228 52.85390091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00001229 52.85392761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00001230 52.85392761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00001231 52.85395050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00001232 52.85395432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00001233 52.85398102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00001234 52.85398483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00001235 52.85400772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00001236 52.85401154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00001237 52.85403824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00001238 52.85404205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00001239 52.85406876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00001240 52.85406876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00001241 52.85409546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00001242 52.85409927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00001243 52.85412598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00001244 52.85412979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00001245 52.85415268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00001246 52.85415649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00001247 52.85418320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00001248 52.85418320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00001249 52.85420990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00001250 52.85420990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00001251 52.85423660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00001252 52.85424042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00001253 52.85427094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00001254 52.85427856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00001255 52.85430908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00001256 52.85430908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00001257 52.85433197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00001258 52.85433578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00001259 52.85436249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00001260 52.85436630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00001261 52.85438919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00001262 52.85439301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00001263 52.85441971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00001264 52.85442352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00001265 52.85444641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00001266 52.85445023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00001267 52.85447693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00001268 52.85448074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00001269 52.85450745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00001270 52.85450745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00001271 52.85453415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00001272 52.85453796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00001273 52.85456467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00001274 52.85456467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00001275 52.85459137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00001276 52.85459137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00001277 52.85461807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00001278 52.85462189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00001279 52.85464478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00001280 52.85464859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00001281 52.85467529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00001282 52.85467911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00001283 52.85470581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00001284 52.85470581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00001285 52.85473633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00001286 52.85474014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00001287 52.85476303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00001288 52.85476685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00001289 52.85479355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00001290 52.85479736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00001291 52.85482407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00001292 52.85482407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00001293 52.85484695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00001294 52.85485077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00001295 52.85487747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00001296 52.85488129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00001297 52.85490417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00001298 52.85490799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00001299 52.85493469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00001300 52.85493851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00001301 52.85496140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00001302 52.85496521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00001303 52.85499191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00001304 52.85499573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00001305 52.85502243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00001306 52.85502243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00001307 52.85504913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00001308 52.85505295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00001309 52.85507965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00001310 52.85508347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00001311 52.85510635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00001312 52.85511017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00001313 52.85513687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00001314 52.85514069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00001315 52.85516357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00001316 52.85516357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00001317 52.85519409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00001318 52.85519409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00001319 52.85522079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00001320 52.85522079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00001321 52.85524750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00001322 52.85525131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00001323 52.85527802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00001324 52.85528183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00001325 52.85530472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00001326 52.85530853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00001327 52.85533524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00001328 52.85533905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00001329 52.85536194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00001330 52.85536575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00001331 52.85539246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00001332 52.85539627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00001333 52.85541916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00001334 52.85542297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00001335 52.85544968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00001336 52.85544968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00001337 52.85547638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00001338 52.85548019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00001339 52.85550308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00001340 52.85550690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00001341 52.85553360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00001342 52.85553741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00001343 52.85556030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00001344 52.85556412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00001345 52.85559082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00001346 52.85559464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00001347 52.85561752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00001348 52.85562134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00001349 52.85564804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00001350 52.85565186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00001351 52.85567856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00001352 52.85567856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00001353 52.85570526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00001354 52.85570526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00001355 52.85573578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00001356 52.85573578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00001357 52.85576248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00001358 52.85576248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00001359 52.85578918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00001360 52.85579300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00001361 52.85581589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00001362 52.85581970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00001363 52.85584641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00001364 52.85585022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00001365 52.85587692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00001366 52.85587692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00001367 52.85590363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00001368 52.85590744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00001369 52.85593414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00001370 52.85593414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00001371 52.85596085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00001372 52.85596466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00001373 52.85599136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00001374 52.85599136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00001375 52.85601425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00001376 52.85601807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00001377 52.85604477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00001378 52.85604858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00001379 52.85607529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00001380 52.85607529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00001381 52.85610199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00001382 52.85610580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00001383 52.85613251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00001384 52.85613251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00001385 52.85615921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00001386 52.85616302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00001387 52.85618973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00001388 52.85618973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00001389 52.85621262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00001390 52.85621643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00001391 52.85624313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00001392 52.85624695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00001393 52.85627365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00001394 52.85627365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00001395 52.85630035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00001396 52.85630417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00001397 52.85633087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00001398 52.85633469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00001399 52.85635757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00001400 52.85636139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00001401 52.85638809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00001402 52.85639191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00001403 52.85641479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00001404 52.85641861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00001405 52.85644531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00001406 52.85644531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00001407 52.85647202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00001408 52.85647202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00001409 52.85649872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00001410 52.85650253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00001411 52.85652924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00001412 52.85653305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00001413 52.85655594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00001414 52.85655975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00001415 52.85658646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00001416 52.85659027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00001417 52.85661316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00001418 52.85661697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00001419 52.85664368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00001420 52.85664749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00001421 52.85667038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00001422 52.85667038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00001423 52.85670090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00001424 52.85670090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00001425 52.85672760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00001426 52.85673141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00001427 52.85675430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00001428 52.85675812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00001429 52.85678482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00001430 52.85678864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00001431 52.85681152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00001432 52.85681534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00001433 52.85684586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00001434 52.85684967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00001435 52.85687256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00001436 52.85687637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00001437 52.85690308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00001438 52.85690689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00001439 52.85692978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00001440 52.85693359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00001441 52.85696030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00001442 52.85696411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00001443 52.85698700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00001444 52.85699081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00001445 52.85701752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00001446 52.85701752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00001447 52.85704422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00001448 52.85704803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00001449 52.85707092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00001450 52.85707474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00001451 52.85710144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00001452 52.85710526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00001453 52.85712814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00001454 52.85713196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00001455 52.85715866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00001456 52.85716248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00001457 52.85718536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00001458 52.85718918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00001459 52.85721588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00001460 52.85721970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00001461 52.85724640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00001462 52.85724640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00001463 52.85727310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00001464 52.85727310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00001465 52.85729980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00001466 52.85730362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00001467 52.85732651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00001468 52.85733032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00001469 52.85735703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00001470 52.85736084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00001471 52.85738373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -00001472 52.85738754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -00001473 52.85741425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -00001474 52.85741806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -00001475 52.85744476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -00001476 52.85744476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -00001477 52.85747147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -00001478 52.85747147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -00001479 52.85749817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -00001480 52.85750198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -00001481 52.85752487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -00001482 52.85752869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -00001483 52.85755539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -00001484 52.85755920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -00001485 52.85758591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -00001486 52.85758591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -00001487 52.85761261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -00001488 52.85761642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -00001489 52.85764313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -00001490 52.85764313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -00001491 52.85766983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -00001492 52.85767365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -00001493 52.85770035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -00001494 52.85770416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -00001495 52.85772705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -00001496 52.85773087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -00001497 52.85775757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -00001498 52.85775757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -00001499 52.85778427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -00001500 52.85778427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -00001501 52.85781097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -00001502 52.85781479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -00001503 52.85784149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -00001504 52.85784149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -00001505 52.85786819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -00001506 52.85787201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -00001507 52.85789871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -00001508 52.85790253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -00001509 52.85792542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -00001510 52.85792923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -00001511 52.85795593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -00001512 52.85795975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -00001513 52.85798264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -00001514 52.85798645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -00001515 52.85801315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -00001516 52.85801315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -00001517 52.85803986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -00001518 52.85803986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -00001519 52.85806656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -00001520 52.85807037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -00001521 52.85809708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -00001522 52.85810089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -00001523 52.85812378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -00001524 52.85812759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -00001525 52.85815430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -00001526 52.85815811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -00001527 52.85818100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -00001528 52.85818481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -00001529 52.85821152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -00001530 52.85821533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -00001531 52.85823822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -00001532 52.85824203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -00001533 52.85826874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -00001534 52.85827255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -00001535 52.85829926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -00001536 52.85829926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -00001537 52.85832596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -00001538 52.85832977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -00001539 52.85835648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -00001540 52.85835648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -00001541 52.85837936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -00001542 52.85838318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -00001543 52.85840988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -00001544 52.85841370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -00001545 52.85843658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -00001546 52.85844040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -00001547 52.85846710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -00001548 52.85847092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -00001549 52.85849762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -00001550 52.85849762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -00001551 52.85852432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -00001552 52.85852814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -00001553 52.85855484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -00001554 52.85855865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -00001555 52.85858154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -00001556 52.85858536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -00001557 52.85861206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -00001558 52.85861206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -00001559 52.85863495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -00001560 52.85863876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -00001561 52.85866547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -00001562 52.85866928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -00001563 52.85869598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -00001564 52.85869598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -00001565 52.85872269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -00001566 52.85872650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -00001567 52.85875320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -00001568 52.85875702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -00001569 52.85877991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -00001570 52.85878372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -00001571 52.85881042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -00001572 52.85881424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -00001573 52.85883713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -00001574 52.85884094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -00001575 52.85886765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -00001576 52.85887146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -00001577 52.85889435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -00001578 52.85889435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -00001579 52.85892105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -00001580 52.85892487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -00001581 52.85895157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -00001582 52.85895538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -00001583 52.85897827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -00001584 52.85898209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -00001585 52.85900879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -00001586 52.85901260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -00001587 52.85903549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -00001588 52.85903931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -00001589 52.85906601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -00001590 52.85906982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -00001591 52.85909271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -00001592 52.85909653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -00001593 52.85912323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -00001594 52.85912704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -00001595 52.85915375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -00001596 52.85915375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -00001597 52.85918045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -00001598 52.85918045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -00001599 52.85920715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -00001600 52.85921097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -00001601 52.85923386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -00001602 52.85923767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -00001603 52.85926437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -00001604 52.85926819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -00001605 52.85929108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -00001606 52.85929489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -00001607 52.85932159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -00001608 52.85932541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -00001609 52.85935211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -00001610 52.85935211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -00001611 52.85937881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -00001612 52.85937881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -00001613 52.85940933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -00001614 52.85940933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -00001615 52.85943604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -00001616 52.85943604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -00001617 52.85946274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -00001618 52.85946655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -00001619 52.85948944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -00001620 52.85949326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -00001621 52.85951996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -00001622 52.85952377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -00001623 52.85955048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -00001624 52.85955048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -00001625 52.85957718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -00001626 52.85958099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -00001627 52.85960770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -00001628 52.85960770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -00001629 52.85963440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -00001630 52.85963821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -00001631 52.85966492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -00001632 52.85966492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -00001633 52.85968781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -00001634 52.85969162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -00001635 52.85971832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -00001636 52.85972214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -00001637 52.85974884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -00001638 52.85974884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -00001639 52.85977554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -00001640 52.85977936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -00001641 52.85980606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -00001642 52.85980988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -00001643 52.85983276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -00001644 52.85983658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -00001645 52.85986328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -00001646 52.85986710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -00001647 52.85988998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -00001648 52.85989380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -00001649 52.85992050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -00001650 52.85992050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -00001651 52.85994720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -00001652 52.85994720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -00001653 52.85997391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -00001654 52.85997772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -00001655 52.86000443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -00001656 52.86000824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -00001657 52.86003113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -00001658 52.86003494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -00001659 52.86006165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -00001660 52.86006546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -00001661 52.86008835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -00001662 52.86009216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -00001663 52.86011887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -00001664 52.86012268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -00001665 52.86014557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -00001666 52.86014557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -00001667 52.86017227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -00001668 52.86017609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -00001669 52.86020279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -00001670 52.86020660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -00001671 52.86022949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -00001672 52.86023331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -00001673 52.86026001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -00001674 52.86026382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -00001675 52.86028671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -00001676 52.86029053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -00001677 52.86031723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -00001678 52.86032104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -00001679 52.86034393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -00001680 52.86034775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -00001681 52.86037445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -00001682 52.86037827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -00001683 52.86040497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -00001684 52.86040497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -00001685 52.86043167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -00001686 52.86043549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -00001687 52.86046219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -00001688 52.86046219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -00001689 52.86048889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -00001690 52.86048889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -00001691 52.86051559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -00001692 52.86051941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -00001693 52.86054230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -00001694 52.86054611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -00001695 52.86057281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -00001696 52.86057663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -00001697 52.86060333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -00001698 52.86060333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -00001699 52.86063004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -00001700 52.86063385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -00001701 52.86066055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -00001702 52.86066055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -00001703 52.86068726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -00001704 52.86069107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -00001705 52.86071777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -00001706 52.86071777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -00001707 52.86074066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -00001708 52.86074448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -00001709 52.86077118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -00001710 52.86077499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -00001711 52.86080170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -00001712 52.86080170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -00001713 52.86082840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -00001714 52.86083221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -00001715 52.86085892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -00001716 52.86085892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -00001717 52.86088562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -00001718 52.86088943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -00001719 52.86091614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -00001720 52.86091614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -00001721 52.86093903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -00001722 52.86094284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -00001723 52.86097336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -00001724 52.86097336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -00001725 52.86100006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -00001726 52.86100006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -00001727 52.86102676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -00001728 52.86103058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -00001729 52.86105728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -00001730 52.86106110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -00001731 52.86108398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -00001732 52.86108780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -00001733 52.86111450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -00001734 52.86111832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -00001735 52.86114120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -00001736 52.86114502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -00001737 52.86117172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -00001738 52.86117554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -00001739 52.86119843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -00001740 52.86119843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -00001741 52.86122513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -00001742 52.86122894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -00001743 52.86125565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -00001744 52.86125946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -00001745 52.86128235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -00001746 52.86128616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -00001747 52.86131287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -00001748 52.86131668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -00001749 52.86133957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -00001750 52.86134338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -00001751 52.86137009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -00001752 52.86137390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -00001753 52.86139679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -00001754 52.86140060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -00001755 52.86142731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -00001756 52.86142731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -00001757 52.86145401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -00001758 52.86145782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -00001759 52.86148071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -00001760 52.86148453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -00001761 52.86151123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -00001762 52.86151505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -00001763 52.86153793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -00001764 52.86154175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -00001765 52.86156845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -00001766 52.86157227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -00001767 52.86159515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -00001768 52.86159897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -00001769 52.86162567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -00001770 52.86162949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -00001771 52.86165619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -00001772 52.86165619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -00001773 52.86168289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -00001774 52.86168671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -00001775 52.86171341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -00001776 52.86171341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -00001777 52.86174011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -00001778 52.86174393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -00001779 52.86177063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -00001780 52.86177444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -00001781 52.86179733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -00001782 52.86180115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -00001783 52.86182785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -00001784 52.86183167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -00001785 52.86185455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -00001786 52.86185837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -00001787 52.86188507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -00001788 52.86188507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -00001789 52.86191177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -00001790 52.86191177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -00001791 52.86193848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -00001792 52.86194229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -00001793 52.86196899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -00001794 52.86197281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -00001795 52.86199570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -00001796 52.86199951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -00001797 52.86202621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -00001798 52.86203003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -00001799 52.86205292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -00001800 52.86205673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -00001801 52.86208344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -00001802 52.86208725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -00001803 52.86211014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -00001804 52.86211014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -00001805 52.86214066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -00001806 52.86214066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -00001807 52.86216736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -00001808 52.86217117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -00001809 52.86219406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -00001810 52.86219788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -00001811 52.86222458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -00001812 52.86222839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -00001813 52.86225128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -00001814 52.86225510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -00001815 52.86228180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -00001816 52.86228561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -00001817 52.86230850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -00001818 52.86231232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -00001819 52.86233902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -00001820 52.86234283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -00001821 52.86236954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -00001822 52.86236954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -00001823 52.86239624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -00001824 52.86239624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -00001825 52.86242676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -00001826 52.86242676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -00001827 52.86244965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -00001828 52.86245346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -00001829 52.86248016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -00001830 52.86248398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -00001831 52.86251068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -00001832 52.86251068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -00001833 52.86253738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -00001834 52.86254120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -00001835 52.86256790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -00001836 52.86256790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -00001837 52.86259460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -00001838 52.86259842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -00001839 52.86262512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -00001840 52.86262512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -00001841 52.86265182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -00001842 52.86265182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -00001843 52.86267853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -00001844 52.86268234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -00001845 52.86270905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -00001846 52.86270905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -00001847 52.86273575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -00001848 52.86273956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -00001849 52.86276627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -00001850 52.86276627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -00001851 52.86279297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -00001852 52.86279678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -00001853 52.86282349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -00001854 52.86282730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -00001855 52.86285019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -00001856 52.86285400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -00001857 52.86288071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -00001858 52.86288071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -00001859 52.86290741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -00001860 52.86290741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -00001861 52.86293411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -00001862 52.86293793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -00001863 52.86296463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -00001864 52.86296463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -00001865 52.86299133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -00001866 52.86299515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -00001867 52.86302185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -00001868 52.86302567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -00001869 52.86304855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -00001870 52.86305237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -00001871 52.86307907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -00001872 52.86307907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -00001873 52.86310577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -00001874 52.86310577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -00001875 52.86313248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -00001876 52.86313629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -00001877 52.86316299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -00001878 52.86316299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -00001879 52.86318970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -00001880 52.86319351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -00001881 52.86322021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -00001882 52.86322403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -00001883 52.86324692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -00001884 52.86325073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -00001885 52.86327744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -00001886 52.86328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -00001887 52.86330414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -00001888 52.86330795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -00001889 52.86333466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -00001890 52.86333847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -00001891 52.86336136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -00001892 52.86336517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -00001893 52.86339188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -00001894 52.86339188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -00001895 52.86342239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -00001896 52.86342239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -00001897 52.86344910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -00001898 52.86345291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -00001899 52.86347961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -00001900 52.86347961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -00001901 52.86350250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -00001902 52.86350632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -00001903 52.86353302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -00001904 52.86353683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -00001905 52.86355972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -00001906 52.86356354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -00001907 52.86359024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -00001908 52.86359406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -00001909 52.86362076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -00001910 52.86362076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -00001911 52.86364746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -00001912 52.86365128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -00001913 52.86367798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -00001914 52.86368179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -00001915 52.86370468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -00001916 52.86370850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -00001917 52.86373520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -00001918 52.86373901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -00001919 52.86376190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -00001920 52.86376572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -00001921 52.86379242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -00001922 52.86379623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -00001923 52.86381912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -00001924 52.86381912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -00001925 52.86384964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -00001926 52.86384964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -00001927 52.86388016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -00001928 52.86388016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -00001929 52.86390686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -00001930 52.86391068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -00001931 52.86393738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -00001932 52.86393738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -00001933 52.86396408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -00001934 52.86396408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -00001935 52.86399078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -00001936 52.86399460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -00001937 52.86401749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -00001938 52.86402130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -00001939 52.86404800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -00001940 52.86405182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -00001941 52.86407852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -00001942 52.86407852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -00001943 52.86410522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -00001944 52.86410904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -00001945 52.86413574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -00001946 52.86413574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -00001947 52.86416245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -00001948 52.86416626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -00001949 52.86419296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -00001950 52.86419678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -00001951 52.86421967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -00001952 52.86422348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -00001953 52.86425018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -00001954 52.86425400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -00001955 52.86427689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -00001956 52.86428070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -00001957 52.86430740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -00001958 52.86431122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -00001959 52.86433411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -00001960 52.86433411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -00001961 52.86436462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -00001962 52.86436462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -00001963 52.86439133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -00001964 52.86439514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -00001965 52.86441803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -00001966 52.86442184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -00001967 52.86444855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -00001968 52.86445236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -00001969 52.86447525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -00001970 52.86447906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -00001971 52.86450577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -00001972 52.86450958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -00001973 52.86453629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -00001974 52.86453629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -00001975 52.86456299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -00001976 52.86456299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -00001977 52.86458969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -00001978 52.86459351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -00001979 52.86461639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -00001980 52.86462021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -00001981 52.86464691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -00001982 52.86465073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -00001983 52.86467361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -00001984 52.86467743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -00001985 52.86470413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -00001986 52.86470795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -00001987 52.86473465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -00001988 52.86473465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -00001989 52.86476135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -00001990 52.86476517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -00001991 52.86479187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -00001992 52.86479187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -00001993 52.86481857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -00001994 52.86482239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -00001995 52.86484909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -00001996 52.86484909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -00001997 52.86487579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -00001998 52.86487579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -00001999 52.86490250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -00002000 52.86490631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -00002001 52.86493301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -00002002 52.86493301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -00002003 52.86495972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -00002004 52.86496353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -00002005 52.86499023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -00002006 52.86499023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -00002007 52.86501694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -00002008 52.86502075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -00002009 52.86504745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -00002010 52.86505127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -00002011 52.86507416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -00002012 52.86507416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -00002013 52.86510086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -00002014 52.86510468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -00002015 52.86513138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -00002016 52.86513138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -00002017 52.86515808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -00002018 52.86516190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -00002019 52.86518860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -00002020 52.86518860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -00002021 52.86521530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -00002022 52.86521912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -00002023 52.86524582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -00002024 52.86524963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -00002025 52.86527252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -00002026 52.86527634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -00002027 52.86530304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -00002028 52.86530304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -00002029 52.86532974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -00002030 52.86532974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -00002031 52.86536026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -00002032 52.86536026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -00002033 52.86538696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -00002034 52.86538696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -00002035 52.86541367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -00002036 52.86541748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -00002037 52.86544418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -00002038 52.86544800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -00002039 52.86547089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -00002040 52.86547470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -00002041 52.86550140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -00002042 52.86550522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -00002043 52.86552811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -00002044 52.86553192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -00002045 52.86555862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -00002046 52.86555862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -00002047 52.86558533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -00002048 52.86558533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -00002049 52.86561203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -00002050 52.86561584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -00002051 52.86564255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -00002052 52.86564636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -00002053 52.86566925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -00002054 52.86567307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -00002055 52.86569977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -00002056 52.86570358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -00002057 52.86572647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -00002058 52.86573029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -00002059 52.86575699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -00002060 52.86576080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -00002061 52.86578751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -00002062 52.86578751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -00002063 52.86581421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -00002064 52.86581421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -00002065 52.86584091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -00002066 52.86584473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -00002067 52.86586761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -00002068 52.86587143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -00002069 52.86589813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -00002070 52.86590195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -00002071 52.86592484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -00002072 52.86592865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -00002073 52.86595535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -00002074 52.86595917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -00002075 52.86598587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -00002076 52.86598587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -00002077 52.86601257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -00002078 52.86601639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -00002079 52.86604309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -00002080 52.86604309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -00002081 52.86606979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -00002082 52.86606979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -00002083 52.86609650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -00002084 52.86610031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -00002085 52.86612320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -00002086 52.86612701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -00002087 52.86615372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -00002088 52.86615753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -00002089 52.86618423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -00002090 52.86618423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -00002091 52.86621094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -00002092 52.86621475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -00002093 52.86624146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -00002094 52.86624146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -00002095 52.86626816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -00002096 52.86627197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -00002097 52.86629868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -00002098 52.86629868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -00002099 52.86632156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -00002100 52.86632538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -00002101 52.86635208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -00002102 52.86635590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -00002103 52.86638260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -00002104 52.86638260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -00002105 52.86640930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -00002106 52.86641312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -00002107 52.86643982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -00002108 52.86643982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -00002109 52.86646652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -00002110 52.86647034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -00002111 52.86649704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -00002112 52.86649704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -00002113 52.86652374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -00002114 52.86652374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -00002115 52.86655045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -00002116 52.86655426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -00002117 52.86658096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -00002118 52.86658096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -00002119 52.86660767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -00002120 52.86661148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -00002121 52.86663818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -00002122 52.86663818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -00002123 52.86666489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -00002124 52.86666870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -00002125 52.86669540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -00002126 52.86669922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -00002127 52.86672211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -00002128 52.86672592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -00002129 52.86675262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -00002130 52.86675644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -00002131 52.86677933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -00002132 52.86677933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -00002133 52.86680984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -00002134 52.86680984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -00002135 52.86683655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -00002136 52.86683655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -00002137 52.86686325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -00002138 52.86686707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -00002139 52.86689377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -00002140 52.86689758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -00002141 52.86692047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -00002142 52.86692429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -00002143 52.86695099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -00002144 52.86695480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -00002145 52.86697769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -00002146 52.86698151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -00002147 52.86700821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -00002148 52.86700821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -00002149 52.86703491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -00002150 52.86703491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -00002151 52.86706543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -00002152 52.86706543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -00002153 52.86709213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -00002154 52.86709595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -00002155 52.86711884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -00002156 52.86712265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -00002157 52.86714935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -00002158 52.86715317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -00002159 52.86717606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -00002160 52.86717987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -00002161 52.86720657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -00002162 52.86721039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -00002163 52.86723709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -00002164 52.86723709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -00002165 52.86726379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -00002166 52.86726761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -00002167 52.86729431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -00002168 52.86729431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -00002169 52.86732101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -00002170 52.86732483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -00002171 52.86735153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -00002172 52.86735153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -00002173 52.86737823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -00002174 52.86737823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -00002175 52.86740494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -00002176 52.86740875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -00002177 52.86743546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -00002178 52.86743546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -00002179 52.86746216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -00002180 52.86746597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -00002181 52.86749268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -00002182 52.86749268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -00002183 52.86751938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -00002184 52.86752319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -00002185 52.86754990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -00002186 52.86755371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -00002187 52.86757660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -00002188 52.86758041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -00002189 52.86760712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -00002190 52.86761093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -00002191 52.86763382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -00002192 52.86763382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -00002193 52.86766052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -00002194 52.86766434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -00002195 52.86769104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -00002196 52.86769104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -00002197 52.86771774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -00002198 52.86772156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -00002199 52.86774826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -00002200 52.86775208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -00002201 52.86777496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -00002202 52.86777878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -00002203 52.86780548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -00002204 52.86780930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -00002205 52.86783218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -00002206 52.86783600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -00002207 52.86786270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -00002208 52.86786652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -00002209 52.86788940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -00002210 52.86788940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -00002211 52.86791992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -00002212 52.86791992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -00002213 52.86794662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -00002214 52.86795044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -00002215 52.86797333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -00002216 52.86797714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -00002217 52.86800385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -00002218 52.86800766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -00002219 52.86803055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -00002220 52.86803436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -00002221 52.86806107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -00002222 52.86806488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -00002223 52.86808777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -00002224 52.86809158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -00002225 52.86812973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -00002226 52.86812973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -00002227 52.86816788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -00002228 52.86816788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -00002229 52.86820221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -00002230 52.86820602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -00002231 52.86822891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -00002232 52.86823273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -00002233 52.86825943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -00002234 52.86826324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -00002235 52.86828613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -00002236 52.86828995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -00002237 52.86831665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -00002238 52.86832047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -00002239 52.86834717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -00002240 52.86834717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -00002241 52.86837387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -00002242 52.86837769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -00002243 52.86840439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -00002244 52.86840820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -00002245 52.86843109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -00002246 52.86843491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -00002247 52.86846161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -00002248 52.86846542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -00002249 52.86848831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -00002250 52.86849213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -00002251 52.86851883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -00002252 52.86852264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -00002253 52.86854553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -00002254 52.86854553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -00002255 52.86857224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -00002256 52.86857605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -00002257 52.86860275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -00002258 52.86860657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -00002259 52.86862946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -00002260 52.86863327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -00002261 52.86865997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -00002262 52.86866379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -00002263 52.86868668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -00002264 52.86869049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -00002265 52.86871719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -00002266 52.86872101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -00002267 52.86874390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -00002268 52.86874771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -00002269 52.86877441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -00002270 52.86877823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -00002271 52.86880493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -00002272 52.86880493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -00002273 52.86883163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -00002274 52.86883163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -00002275 52.86886215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -00002276 52.86886215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -00002277 52.86888885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -00002278 52.86888885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -00002279 52.86891937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -00002280 52.86891937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -00002281 52.86894608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -00002282 52.86894989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -00002283 52.86897659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -00002284 52.86897659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -00002285 52.86900330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -00002286 52.86900330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -00002287 52.86903000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -00002288 52.86903381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -00002289 52.86906052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -00002290 52.86906052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -00002291 52.86909103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -00002292 52.86909485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -00002293 52.86912155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -00002294 52.86912537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -00002295 52.86915207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -00002296 52.86915588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -00002297 52.86918259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -00002298 52.86918259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -00002299 52.86920929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -00002300 52.86921310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -00002301 52.86923981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -00002302 52.86923981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -00002303 52.86926651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -00002304 52.86927032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -00002305 52.86929703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -00002306 52.86930084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -00002307 52.86932373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -00002308 52.86932755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -00002309 52.86935425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -00002310 52.86935806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -00002311 52.86938095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -00002312 52.86938477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -00002313 52.86941147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -00002314 52.86941147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -00002315 52.86943817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -00002316 52.86943817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -00002317 52.86946869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -00002318 52.86946869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -00002319 52.86949921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -00002320 52.86949921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -00002321 52.86952209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -00002322 52.86952591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -00002323 52.86955261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -00002324 52.86955643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -00002325 52.86957932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -00002326 52.86958313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -00002327 52.86960983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -00002328 52.86961365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -00002329 52.86963654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -00002330 52.86964035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -00002331 52.86966705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -00002332 52.86967087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -00002333 52.86969757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -00002334 52.86969757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -00002335 52.86972427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -00002336 52.86972809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -00002337 52.86975861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -00002338 52.86975861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -00002339 52.86978531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -00002340 52.86978912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -00002341 52.86981583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -00002342 52.86981583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -00002343 52.86984253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -00002344 52.86984634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -00002345 52.86987305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -00002346 52.86987686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -00002347 52.86989975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -00002348 52.86989975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -00002349 52.86993027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -00002350 52.86993027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -00002351 52.86995697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -00002352 52.86995697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -00002353 52.86998367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -00002354 52.86998749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -00002355 52.87001419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -00002356 52.87001419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -00002357 52.87004471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -00002358 52.87004471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -00002359 52.87007523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -00002360 52.87007523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -00002361 52.87010193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -00002362 52.87010574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -00002363 52.87013245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -00002364 52.87013245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -00002365 52.87015533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -00002366 52.87015915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -00002367 52.87018585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -00002368 52.87018967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -00002369 52.87021255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -00002370 52.87021637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -00002371 52.87024307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -00002372 52.87024689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -00002373 52.87027359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -00002374 52.87027359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -00002375 52.87030029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -00002376 52.87030411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -00002377 52.87033081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -00002378 52.87033463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -00002379 52.87035751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -00002380 52.87036133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -00002381 52.87038803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -00002382 52.87039185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -00002383 52.87041473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -00002384 52.87041855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -00002385 52.87044525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -00002386 52.87044907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -00002387 52.87047195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -00002388 52.87047577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -00002389 52.87050247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -00002390 52.87050629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -00002391 52.87053299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -00002392 52.87053299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -00002393 52.87055969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -00002394 52.87055969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -00002395 52.87058640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -00002396 52.87059021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -00002397 52.87061310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -00002398 52.87061691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -00002399 52.87064362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -00002400 52.87064743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -00002401 52.87067032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -00002402 52.87067413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -00002403 52.87070084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -00002404 52.87070465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -00002405 52.87073135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -00002406 52.87073135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -00002407 52.87075806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -00002408 52.87076187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -00002409 52.87078857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -00002410 52.87078857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -00002411 52.87081528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -00002412 52.87081909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -00002413 52.87084579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -00002414 52.87084961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -00002415 52.87087250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -00002416 52.87087631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -00002417 52.87090302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -00002418 52.87090683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -00002419 52.87092972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -00002420 52.87092972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -00002421 52.87096024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -00002422 52.87096405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -00002423 52.87098694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -00002424 52.87098694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -00002425 52.87101364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -00002426 52.87101746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -00002427 52.87104416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -00002428 52.87104797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -00002429 52.87107086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -00002430 52.87107468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -00002431 52.87110138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -00002432 52.87110519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -00002433 52.87112808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -00002434 52.87113190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -00002435 52.87115860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -00002436 52.87116241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -00002437 52.87118530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -00002438 52.87118912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -00002439 52.87121582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -00002440 52.87121964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -00002441 52.87124634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -00002442 52.87124634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -00002443 52.87127304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -00002444 52.87127686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -00002445 52.87130356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -00002446 52.87130737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -00002447 52.87133026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -00002448 52.87133408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -00002449 52.87136078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -00002450 52.87136459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -00002451 52.87138748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -00002452 52.87139130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -00002453 52.87141800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -00002454 52.87142181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -00002455 52.87144470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -00002456 52.87144852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -00002457 52.87147522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -00002458 52.87147522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -00002459 52.87150192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -00002460 52.87150574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -00002461 52.87152863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -00002462 52.87153244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -00002463 52.87155914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -00002464 52.87156296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -00002465 52.87158585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -00002466 52.87158966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -00002467 52.87161636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -00002468 52.87162018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -00002469 52.87164307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -00002470 52.87164688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -00002471 52.87167358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -00002472 52.87167740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -00002473 52.87170410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -00002474 52.87170410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -00002475 52.87173080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -00002476 52.87173462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -00002477 52.87176132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -00002478 52.87176132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -00002479 52.87178802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -00002480 52.87179184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -00002481 52.87181854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -00002482 52.87182236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -00002483 52.87184525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -00002484 52.87184525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -00002485 52.87187195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -00002486 52.87187576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -00002487 52.87190247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -00002488 52.87190247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -00002489 52.87192917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -00002490 52.87193298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -00002491 52.87195969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -00002492 52.87196350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -00002493 52.87198639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -00002494 52.87199020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -00002495 52.87201691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -00002496 52.87202072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -00002497 52.87204361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -00002498 52.87204742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -00002499 52.87207413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -00002500 52.87207794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -00002501 52.87210083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -00002502 52.87210464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -00002503 52.87213135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -00002504 52.87213135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -00002505 52.87215805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -00002506 52.87216187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -00002507 52.87218475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -00002508 52.87218857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -00002509 52.87221527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -00002510 52.87221909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -00002511 52.87224197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -00002512 52.87224579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -00002513 52.87227249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -00002514 52.87227631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -00002515 52.87229919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -00002516 52.87230301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -00002517 52.87232971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -00002518 52.87233353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -00002519 52.87236023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -00002520 52.87236023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -00002521 52.87238693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -00002522 52.87239075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -00002523 52.87241745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -00002524 52.87241745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -00002525 52.87244034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -00002526 52.87244415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -00002527 52.87247086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -00002528 52.87247467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -00002529 52.87249756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -00002530 52.87250137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -00002531 52.87252808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -00002532 52.87253189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -00002533 52.87255859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -00002534 52.87255859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -00002535 52.87258530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -00002536 52.87258911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -00002537 52.87261581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -00002538 52.87261581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -00002539 52.87264252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -00002540 52.87264252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -00002541 52.87267303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -00002542 52.87267303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -00002543 52.87269974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -00002544 52.87269974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -00002545 52.87272644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -00002546 52.87273026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -00002547 52.87275696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -00002548 52.87275696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -00002549 52.87278366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -00002550 52.87278748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -00002551 52.87281418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -00002552 52.87281418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -00002553 52.87284088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -00002554 52.87284470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -00002555 52.87287140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -00002556 52.87287521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -00002557 52.87289810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -00002558 52.87290192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -00002559 52.87292862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -00002560 52.87292862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -00002561 52.87295532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -00002562 52.87295532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -00002563 52.87298203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -00002564 52.87298584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -00002565 52.87301254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -00002566 52.87301254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -00002567 52.87303925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -00002568 52.87304306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -00002569 52.87306976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -00002570 52.87307358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -00002571 52.87309647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -00002572 52.87310028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -00002573 52.87312698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -00002574 52.87313080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -00002575 52.87315369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -00002576 52.87315750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -00002577 52.87318420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -00002578 52.87318420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -00002579 52.87321091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -00002580 52.87321091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -00002581 52.87323761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -00002582 52.87324142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -00002583 52.87326813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -00002584 52.87327194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -00002585 52.87329483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -00002586 52.87329865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -00002587 52.87332535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -00002588 52.87332916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -00002589 52.87335205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -00002590 52.87335587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -00002591 52.87338257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -00002592 52.87338257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -00002593 52.87340927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -00002594 52.87341309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -00002595 52.87343597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -00002596 52.87343979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -00002597 52.87346649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -00002598 52.87347031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -00002599 52.87349319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -00002600 52.87349701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -00002601 52.87352371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -00002602 52.87352753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -00002603 52.87355042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -00002604 52.87355423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -00002605 52.87358093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -00002606 52.87358475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -00002607 52.87361145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -00002608 52.87361145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -00002609 52.87363815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -00002610 52.87363815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -00002611 52.87366486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -00002612 52.87366867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -00002613 52.87369156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -00002614 52.87369537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -00002615 52.87372208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -00002616 52.87372589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -00002617 52.87374878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -00002618 52.87375259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -00002619 52.87377930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -00002620 52.87378311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -00002621 52.87380981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -00002622 52.87380981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -00002623 52.87383652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -00002624 52.87384033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -00002625 52.87386703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -00002626 52.87386703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -00002627 52.87389374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -00002628 52.87389374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -00002629 52.87392044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -00002630 52.87392426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -00002631 52.87394714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -00002632 52.87395096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -00002633 52.87397766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -00002634 52.87398148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -00002635 52.87400818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -00002636 52.87400818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -00002637 52.87403488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -00002638 52.87403870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -00002639 52.87406540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -00002640 52.87406540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -00002641 52.87409210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -00002642 52.87409592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -00002643 52.87412262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -00002644 52.87412643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -00002645 52.87414932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -00002646 52.87415314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -00002647 52.87417984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -00002648 52.87418365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -00002649 52.87420654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -00002650 52.87421036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -00002651 52.87423706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -00002652 52.87423706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -00002653 52.87426376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -00002654 52.87426376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -00002655 52.87429047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -00002656 52.87429428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -00002657 52.87432098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -00002658 52.87432480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -00002659 52.87434769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -00002660 52.87435150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -00002661 52.87437820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -00002662 52.87438202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -00002663 52.87440491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -00002664 52.87440872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -00002665 52.87443542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -00002666 52.87443924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -00002667 52.87446213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -00002668 52.87446594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -00002669 52.87449265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -00002670 52.87449646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -00002671 52.87452316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -00002672 52.87452316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -00002673 52.87454987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -00002674 52.87454987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -00002675 52.87458038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -00002676 52.87458038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -00002677 52.87460327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -00002678 52.87460709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -00002679 52.87463379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -00002680 52.87463760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -00002681 52.87466431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -00002682 52.87466431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -00002683 52.87469101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -00002684 52.87469482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -00002685 52.87472153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -00002686 52.87472153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -00002687 52.87474823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -00002688 52.87475204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -00002689 52.87477875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -00002690 52.87478256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -00002691 52.87480545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -00002692 52.87480927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -00002693 52.87483597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -00002694 52.87483978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -00002695 52.87486267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -00002696 52.87486267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -00002697 52.87488937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -00002698 52.87489319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -00002699 52.87491989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -00002700 52.87491989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -00002701 52.87494659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -00002702 52.87495041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -00002703 52.87497711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -00002704 52.87498093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -00002705 52.87500381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -00002706 52.87500763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -00002707 52.87503433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -00002708 52.87503815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -00002709 52.87506104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -00002710 52.87506485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -00002711 52.87509155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -00002712 52.87509537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -00002713 52.87511826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -00002714 52.87512207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -00002715 52.87514877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -00002716 52.87515259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -00002717 52.87517929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -00002718 52.87517929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -00002719 52.87520599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -00002720 52.87520981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -00002721 52.87523651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -00002722 52.87524033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -00002723 52.87526703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -00002724 52.87527084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -00002725 52.87531662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -00002726 52.87531662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -00002727 52.87534332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -00002728 52.87534714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -00002729 52.87539291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -00002730 52.87539673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -00002731 52.87541962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -00002732 52.87542343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -00002733 52.87545013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -00002734 52.87545395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -00002735 52.87547684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -00002736 52.87548065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -00002737 52.87550735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -00002738 52.87551117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -00002739 52.87553787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -00002740 52.87553787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -00002741 52.87556458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -00002742 52.87556839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -00002743 52.87559509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -00002744 52.87559509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -00002745 52.87562180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -00002746 52.87562561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -00002747 52.87565231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -00002748 52.87565613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -00002749 52.87568283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -00002750 52.87568283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -00002751 52.87571335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -00002752 52.87571335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -00002753 52.87574005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -00002754 52.87574387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -00002755 52.87577057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -00002756 52.87577438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -00002757 52.87579727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -00002758 52.87580109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -00002759 52.87582779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -00002760 52.87583160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -00002761 52.87585831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -00002762 52.87586212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -00002763 52.87588882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -00002764 52.87588882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -00002765 52.87591553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -00002766 52.87591934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -00002767 52.87594604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -00002768 52.87594986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -00002769 52.87597275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -00002770 52.87597656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -00002771 52.87600327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -00002772 52.87600708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -00002773 52.87603378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -00002774 52.87603378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -00002775 52.87606049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -00002776 52.87606430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -00002777 52.87609100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -00002778 52.87609100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -00002779 52.87611771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -00002780 52.87612152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -00002781 52.87614822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -00002782 52.87615204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -00002783 52.87617493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -00002784 52.87617874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -00002785 52.87620544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -00002786 52.87620544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -00002787 52.87623215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -00002788 52.87623215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -00002789 52.87625885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -00002790 52.87626266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -00002791 52.87628937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -00002792 52.87628937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -00002793 52.87631607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -00002794 52.87631989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -00002795 52.87634659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -00002796 52.87635040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -00002797 52.87637329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -00002798 52.87637711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -00002799 52.87640381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -00002800 52.87640762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -00002801 52.87643051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -00002802 52.87643433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -00002803 52.87646103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -00002804 52.87646484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -00002805 52.87648773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -00002806 52.87649155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -00002807 52.87651825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -00002808 52.87652206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -00002809 52.87654877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -00002810 52.87654877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -00002811 52.87657547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -00002812 52.87657928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -00002813 52.87660599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -00002814 52.87660980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -00002815 52.87663269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -00002816 52.87663651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -00002817 52.87666321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -00002818 52.87666702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -00002819 52.87668991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -00002820 52.87669373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -00002821 52.87672043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -00002822 52.87672043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -00002823 52.87674713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -00002824 52.87674713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -00002825 52.87677383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -00002826 52.87677765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -00002827 52.87680435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -00002828 52.87680817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -00002829 52.87683105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -00002830 52.87683487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -00002831 52.87686157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -00002832 52.87686539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -00002833 52.87688828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -00002834 52.87689209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -00002835 52.87691879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -00002836 52.87692261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -00002837 52.87694550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -00002838 52.87694550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -00002839 52.87697601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -00002840 52.87697601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -00002841 52.87700653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -00002842 52.87700653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -00002843 52.87703323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -00002844 52.87703323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -00002845 52.87706375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -00002846 52.87706375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -00002847 52.87709045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -00002848 52.87709045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -00002849 52.87711716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -00002850 52.87712097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -00002851 52.87714386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -00002852 52.87714767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -00002853 52.87717438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -00002854 52.87717819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -00002855 52.87720490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -00002856 52.87720490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -00002857 52.87723160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -00002858 52.87723541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -00002859 52.87726212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -00002860 52.87726212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -00002861 52.87728882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -00002862 52.87729263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -00002863 52.87731934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -00002864 52.87731934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -00002865 52.87734604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -00002866 52.87734604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -00002867 52.87737274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -00002868 52.87737656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -00002869 52.87740326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -00002870 52.87740326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -00002871 52.87742996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -00002872 52.87743378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -00002873 52.87746048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -00002874 52.87746429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -00002875 52.87748718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -00002876 52.87749100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -00002877 52.87751770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -00002878 52.87752151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -00002879 52.87754440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -00002880 52.87754440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -00002881 52.87757111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -00002882 52.87757492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -00002883 52.87760162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -00002884 52.87760162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -00002885 52.87762833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -00002886 52.87763214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -00002887 52.87765884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -00002888 52.87766266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -00002889 52.87768555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -00002890 52.87768936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -00002891 52.87771606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -00002892 52.87771988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -00002893 52.87774277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -00002894 52.87774658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -00002895 52.87777328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -00002896 52.87777710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -00002897 52.87779999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -00002898 52.87779999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -00002899 52.87783051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -00002900 52.87783051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -00002901 52.87785721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -00002902 52.87786102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -00002903 52.87788391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -00002904 52.87788773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -00002905 52.87791443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -00002906 52.87791824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -00002907 52.87794113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -00002908 52.87794495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -00002909 52.87797165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -00002910 52.87797546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -00002911 52.87799835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -00002912 52.87800217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -00002913 52.87802887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -00002914 52.87803268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -00002915 52.87805939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -00002916 52.87805939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -00002917 52.87808609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -00002918 52.87808609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -00002919 52.87811279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -00002920 52.87811661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -00002921 52.87813950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -00002922 52.87814331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -00002923 52.87817001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -00002924 52.87817383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -00002925 52.87819672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -00002926 52.87820053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -00002927 52.87822723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -00002928 52.87823105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -00002929 52.87825775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -00002930 52.87825775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -00002931 52.87828445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -00002932 52.87828445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -00002933 52.87831497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -00002934 52.87831497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -00002935 52.87833786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -00002936 52.87834167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -00002937 52.87836838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -00002938 52.87837219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -00002939 52.87839508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -00002940 52.87839890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -00002941 52.87842560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -00002942 52.87842941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -00002943 52.87845612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -00002944 52.87845612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -00002945 52.87848282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -00002946 52.87848663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -00002947 52.87851334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -00002948 52.87851334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -00002949 52.87854004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -00002950 52.87854004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -00002951 52.87856674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -00002952 52.87857056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -00002953 52.87859344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -00002954 52.87859726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -00002955 52.87862396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -00002956 52.87862778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -00002957 52.87865448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -00002958 52.87865448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -00002959 52.87868118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -00002960 52.87868500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -00002961 52.87871170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -00002962 52.87871170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -00002963 52.87873840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -00002964 52.87873840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -00002965 52.87876511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -00002966 52.87876892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -00002967 52.87879181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -00002968 52.87879562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -00002969 52.87882233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -00002970 52.87882614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -00002971 52.87885284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -00002972 52.87885284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -00002973 52.87887955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -00002974 52.87888336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -00002975 52.87891006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -00002976 52.87891388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -00002977 52.87893677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -00002978 52.87894058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -00002979 52.87896729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -00002980 52.87897110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -00002981 52.87899399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -00002982 52.87899399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -00002983 52.87902069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -00002984 52.87902451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -00002985 52.87905121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -00002986 52.87905121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -00002987 52.87907791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -00002988 52.87908173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -00002989 52.87910843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -00002990 52.87911224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -00002991 52.87913513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -00002992 52.87913895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -00002993 52.87916565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -00002994 52.87916946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -00002995 52.87919235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -00002996 52.87919617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -00002997 52.87922287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -00002998 52.87922668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -00002999 52.87924957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -00003000 52.87925339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -00003001 52.87928009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -00003002 52.87928391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -00003003 52.87931061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -00003004 52.87931061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -00003005 52.87933731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -00003006 52.87933731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -00003007 52.87936783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -00003008 52.87936783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -00003009 52.87939072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -00003010 52.87939453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -00003011 52.87942123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -00003012 52.87942505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -00003013 52.87944794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -00003014 52.87945175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -00003015 52.87947845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -00003016 52.87948227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -00003017 52.87950897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -00003018 52.87950897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -00003019 52.87953568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -00003020 52.87953949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -00003021 52.87956619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -00003022 52.87956619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -00003023 52.87959290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -00003024 52.87959671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -00003025 52.87962341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -00003026 52.87962341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -00003027 52.87965012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -00003028 52.87965012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -00003029 52.87967682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -00003030 52.87968063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -00003031 52.87970734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -00003032 52.87970734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -00003033 52.87973404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -00003034 52.87973785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -00003035 52.87976456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -00003036 52.87976456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -00003037 52.87979126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -00003038 52.87979507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -00003039 52.87982178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -00003040 52.87982559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -00003041 52.87984848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -00003042 52.87985229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -00003043 52.87987900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -00003044 52.87988281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -00003045 52.87990570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -00003046 52.87990570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -00003047 52.87993622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -00003048 52.87993622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -00003049 52.87996292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -00003050 52.87996292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -00003051 52.87998962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -00003052 52.87999344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -00003053 52.88002014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -00003054 52.88002396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -00003055 52.88004684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -00003056 52.88005066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -00003057 52.88007736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -00003058 52.88008118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -00003059 52.88010406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -00003060 52.88010788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -00003061 52.88013458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -00003062 52.88013840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -00003063 52.88016510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -00003064 52.88016510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -00003065 52.88019180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -00003066 52.88019180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -00003067 52.88021851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -00003068 52.88022232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -00003069 52.88024521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -00003070 52.88024902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -00003071 52.88027573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -00003072 52.88027954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -00003073 52.88030243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -00003074 52.88030624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -00003075 52.88033295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -00003076 52.88033676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -00003077 52.88036346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -00003078 52.88036346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -00003079 52.88039017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -00003080 52.88039398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -00003081 52.88042068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -00003082 52.88042068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -00003083 52.88044739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -00003084 52.88044739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -00003085 52.88047409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -00003086 52.88047791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -00003087 52.88050079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -00003088 52.88050461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -00003089 52.88053131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -00003090 52.88053513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -00003091 52.88056183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -00003092 52.88056183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -00003093 52.88058853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -00003094 52.88059235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -00003095 52.88061905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -00003096 52.88061905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -00003097 52.88064575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -00003098 52.88064575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -00003099 52.88067245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -00003100 52.88067627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -00003101 52.88069916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -00003102 52.88070297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -00003103 52.88072968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -00003104 52.88073349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -00003105 52.88076019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -00003106 52.88076019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -00003107 52.88078690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -00003108 52.88079071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -00003109 52.88081741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -00003110 52.88081741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -00003111 52.88084412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -00003112 52.88084793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -00003113 52.88087463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -00003114 52.88087463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -00003115 52.88090134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -00003116 52.88090134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -00003117 52.88092804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -00003118 52.88093185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -00003119 52.88095856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -00003120 52.88095856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -00003121 52.88098526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -00003122 52.88098907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -00003123 52.88101578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -00003124 52.88101578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -00003125 52.88104248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -00003126 52.88104630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -00003127 52.88107300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -00003128 52.88107681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -00003129 52.88109970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -00003130 52.88110352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -00003131 52.88113022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -00003132 52.88113022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -00003133 52.88115692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -00003134 52.88115692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -00003135 52.88118362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -00003136 52.88118744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -00003137 52.88121414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -00003138 52.88121414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -00003139 52.88124084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -00003140 52.88124466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -00003141 52.88127136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -00003142 52.88127518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -00003143 52.88129807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -00003144 52.88130188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -00003145 52.88132858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -00003146 52.88133240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -00003147 52.88135529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -00003148 52.88135529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -00003149 52.88138199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -00003150 52.88138580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -00003151 52.88141251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -00003152 52.88141251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -00003153 52.88143921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -00003154 52.88144302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -00003155 52.88146973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -00003156 52.88147354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -00003157 52.88149643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -00003158 52.88150024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -00003159 52.88152695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -00003160 52.88153076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -00003161 52.88155365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -00003162 52.88155365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -00003163 52.88158417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -00003164 52.88158798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -00003165 52.88161469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -00003166 52.88161469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -00003167 52.88163757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -00003168 52.88164139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -00003169 52.88166809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -00003170 52.88167191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -00003171 52.88169479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -00003172 52.88169861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -00003173 52.88172531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -00003174 52.88172913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -00003175 52.88175201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -00003176 52.88175583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -00003177 52.88178253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -00003178 52.88178635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -00003179 52.88181305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -00003180 52.88181305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -00003181 52.88183594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -00003182 52.88183975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -00003183 52.88186646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -00003184 52.88187027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -00003185 52.88189316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -00003186 52.88189697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -00003187 52.88192368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -00003188 52.88192749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -00003189 52.88195038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -00003190 52.88195419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -00003191 52.88198090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -00003192 52.88198471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -00003193 52.88201141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -00003194 52.88201141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -00003195 52.88203812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -00003196 52.88204193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -00003197 52.88206863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -00003198 52.88206863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -00003199 52.88209534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -00003200 52.88209915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -00003201 52.88212585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -00003202 52.88212585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -00003203 52.88215256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -00003204 52.88215256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -00003205 52.88217926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -00003206 52.88218307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -00003207 52.88220978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -00003208 52.88220978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -00003209 52.88223648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -00003210 52.88224030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -00003211 52.88226700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -00003212 52.88226700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -00003213 52.88229370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -00003214 52.88229752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -00003215 52.88232422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -00003216 52.88232803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -00003217 52.88235092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -00003218 52.88235474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -00003219 52.88238144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -00003220 52.88238144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -00003221 52.88240814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -00003222 52.88240814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -00003223 52.88243484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -00003224 52.88243866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -00003225 52.88246536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -00003226 52.88246536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -00003227 52.88249207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -00003228 52.88249588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -00003229 52.88252258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -00003230 52.88252640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -00003231 52.88254929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -00003232 52.88255310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -00003233 52.88257980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -00003234 52.88258362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -00003235 52.88260651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -00003236 52.88260651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -00003237 52.88263702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -00003238 52.88263702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -00003239 52.88266373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -00003240 52.88266373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -00003241 52.88269043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -00003242 52.88269424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -00003243 52.88272095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -00003244 52.88272476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -00003245 52.88274765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -00003246 52.88275146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -00003247 52.88277817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -00003248 52.88278198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -00003249 52.88280487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -00003250 52.88280487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -00003251 52.88283539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -00003252 52.88283920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -00003253 52.88286591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -00003254 52.88286591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -00003255 52.88289261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -00003256 52.88289261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -00003257 52.88291931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -00003258 52.88292313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -00003259 52.88294601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -00003260 52.88294983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -00003261 52.88297653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -00003262 52.88298035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -00003263 52.88300323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -00003264 52.88300705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -00003265 52.88303375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -00003266 52.88303757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -00003267 52.88306427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -00003268 52.88306427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -00003269 52.88309097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -00003270 52.88309097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -00003271 52.88311768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -00003272 52.88312149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -00003273 52.88314438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -00003274 52.88314819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -00003275 52.88317490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -00003276 52.88317871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -00003277 52.88320160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -00003278 52.88320541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -00003279 52.88323212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -00003280 52.88323593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -00003281 52.88326263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -00003282 52.88326263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -00003283 52.88328934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -00003284 52.88328934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -00003285 52.88331604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -00003286 52.88331985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -00003287 52.88334274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -00003288 52.88334656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -00003289 52.88337326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -00003290 52.88337708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -00003291 52.88339996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -00003292 52.88340378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -00003293 52.88343048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -00003294 52.88343430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -00003295 52.88346100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -00003296 52.88346100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -00003297 52.88348770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -00003298 52.88349152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -00003299 52.88351822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -00003300 52.88351822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -00003301 52.88354492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -00003302 52.88354492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -00003303 52.88357162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -00003304 52.88357544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -00003305 52.88359833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -00003306 52.88360214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -00003307 52.88362885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -00003308 52.88363266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -00003309 52.88365936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -00003310 52.88365936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -00003311 52.88368607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -00003312 52.88368988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -00003313 52.88371658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -00003314 52.88371658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -00003315 52.88374329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -00003316 52.88374329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -00003317 52.88376999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -00003318 52.88377380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -00003319 52.88379669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -00003320 52.88380051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -00003321 52.88382721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -00003322 52.88383102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -00003323 52.88385773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -00003324 52.88385773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -00003325 52.88388443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -00003326 52.88388824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -00003327 52.88391495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -00003328 52.88391495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -00003329 52.88394165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -00003330 52.88394165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -00003331 52.88396835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -00003332 52.88397217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -00003333 52.88399506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -00003334 52.88399887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -00003335 52.88402557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -00003336 52.88402939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -00003337 52.88405609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -00003338 52.88405609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -00003339 52.88408279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -00003340 52.88408661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -00003341 52.88411331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -00003342 52.88411331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -00003343 52.88414001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -00003344 52.88414383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -00003345 52.88417053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -00003346 52.88417435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -00003347 52.88419724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -00003348 52.88419724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -00003349 52.88422394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -00003350 52.88422775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -00003351 52.88425446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -00003352 52.88425446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -00003353 52.88428116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -00003354 52.88428497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -00003355 52.88431168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -00003356 52.88431549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -00003357 52.88433838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -00003358 52.88434219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -00003359 52.88436890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -00003360 52.88437271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -00003361 52.88439560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -00003362 52.88439560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -00003363 52.88442612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -00003364 52.88442612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -00003365 52.88445282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -00003366 52.88445282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -00003367 52.88447952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -00003368 52.88448334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -00003369 52.88451004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -00003370 52.88451385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -00003371 52.88453674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -00003372 52.88454056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -00003373 52.88456726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -00003374 52.88457108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -00003375 52.88459396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -00003376 52.88459778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -00003377 52.88462448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -00003378 52.88462448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -00003379 52.88465118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -00003380 52.88465118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -00003381 52.88467789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -00003382 52.88468170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -00003383 52.88470840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -00003384 52.88471222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -00003385 52.88473892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -00003386 52.88474274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -00003387 52.88476944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -00003388 52.88476944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -00003389 52.88479614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -00003390 52.88479996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -00003391 52.88482666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -00003392 52.88482666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -00003393 52.88484955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -00003394 52.88485336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -00003395 52.88488007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -00003396 52.88488388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -00003397 52.88491058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -00003398 52.88491058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -00003399 52.88493729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -00003400 52.88494110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -00003401 52.88496780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -00003402 52.88496780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -00003403 52.88499451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -00003404 52.88499832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -00003405 52.88502502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -00003406 52.88502502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -00003407 52.88504791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -00003408 52.88505173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -00003409 52.88507843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -00003410 52.88508224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -00003411 52.88510895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -00003412 52.88510895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -00003413 52.88513565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -00003414 52.88513947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -00003415 52.88516617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -00003416 52.88516617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -00003417 52.88519287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -00003418 52.88519669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -00003419 52.88522339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -00003420 52.88522720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -00003421 52.88525009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -00003422 52.88525391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -00003423 52.88528061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -00003424 52.88528061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -00003425 52.88530731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -00003426 52.88530731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -00003427 52.88533783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -00003428 52.88533783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -00003429 52.88536453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -00003430 52.88536453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -00003431 52.88539124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -00003432 52.88539505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -00003433 52.88542175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -00003434 52.88542557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -00003435 52.88544846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -00003436 52.88545227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -00003437 52.88547897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -00003438 52.88548279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -00003439 52.88550568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -00003440 52.88550949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -00003441 52.88553619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -00003442 52.88553619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -00003443 52.88556290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -00003444 52.88556671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -00003445 52.88559341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -00003446 52.88559341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -00003447 52.88562012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -00003448 52.88562393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -00003449 52.88564682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -00003450 52.88565063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -00003451 52.88567734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -00003452 52.88568115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -00003453 52.88570404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -00003454 52.88570786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -00003455 52.88573456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -00003456 52.88573837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -00003457 52.88576508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -00003458 52.88576508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -00003459 52.88579178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -00003460 52.88579559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -00003461 52.88582230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -00003462 52.88582230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -00003463 52.88584900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -00003464 52.88585281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -00003465 52.88587952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -00003466 52.88588333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -00003467 52.88590622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -00003468 52.88591003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -00003469 52.88593674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -00003470 52.88593674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -00003471 52.88596344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -00003472 52.88596725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -00003473 52.88599396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -00003474 52.88599396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -00003475 52.88602066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -00003476 52.88602066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -00003477 52.88604736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -00003478 52.88605118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -00003479 52.88607788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -00003480 52.88608170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -00003481 52.88610458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -00003482 52.88610840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -00003483 52.88613510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -00003484 52.88613892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -00003485 52.88616180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -00003486 52.88616562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -00003487 52.88619232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -00003488 52.88619614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -00003489 52.88621902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -00003490 52.88622284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -00003491 52.88624954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -00003492 52.88625336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -00003493 52.88628006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -00003494 52.88628006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -00003495 52.88630295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -00003496 52.88630676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -00003497 52.88633347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -00003498 52.88633728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -00003499 52.88636017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -00003500 52.88636398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -00003501 52.88639069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -00003502 52.88639450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -00003503 52.88641739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -00003504 52.88642120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -00003505 52.88644791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -00003506 52.88645172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -00003507 52.88647842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -00003508 52.88647842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -00003509 52.88650513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -00003510 52.88650894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -00003511 52.88653564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -00003512 52.88653564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -00003513 52.88655853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -00003514 52.88656235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -00003515 52.88658905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -00003516 52.88659286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -00003517 52.88661575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -00003518 52.88661957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -00003519 52.88664627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -00003520 52.88665009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -00003521 52.88667679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -00003522 52.88667679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -00003523 52.88670349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -00003524 52.88670731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -00003525 52.88673401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -00003526 52.88673782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -00003527 52.88676071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -00003528 52.88676453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -00003529 52.88679123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -00003530 52.88679123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -00003531 52.88681412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -00003532 52.88681793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -00003533 52.88684464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -00003534 52.88684845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -00003535 52.88687515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -00003536 52.88687515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -00003537 52.88690186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -00003538 52.88690567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -00003539 52.88693237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -00003540 52.88693619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -00003541 52.88695908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -00003542 52.88696289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -00003543 52.88698959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -00003544 52.88698959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -00003545 52.88701630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -00003546 52.88701630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -00003547 52.88704300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -00003548 52.88704681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -00003549 52.88707352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -00003550 52.88707352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -00003551 52.88710022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -00003552 52.88710403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -00003553 52.88713074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -00003554 52.88713455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -00003555 52.88715744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -00003556 52.88716125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -00003557 52.88718796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -00003558 52.88718796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -00003559 52.88721466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -00003560 52.88721848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -00003561 52.88724518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -00003562 52.88724518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -00003563 52.88727188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -00003564 52.88727188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -00003565 52.88729858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -00003566 52.88730240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -00003567 52.88732910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -00003568 52.88733292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -00003569 52.88735580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -00003570 52.88735962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -00003571 52.88738632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -00003572 52.88739014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -00003573 52.88741302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -00003574 52.88741684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -00003575 52.88744354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -00003576 52.88744354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -00003577 52.88747025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -00003578 52.88747025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -00003579 52.88749695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -00003580 52.88750076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -00003581 52.88752747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -00003582 52.88753128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -00003583 52.88755417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -00003584 52.88755798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -00003585 52.88758469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -00003586 52.88758850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -00003587 52.88761139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -00003588 52.88761520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -00003589 52.88764191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -00003590 52.88764191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -00003591 52.88766861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -00003592 52.88766861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -00003593 52.88769531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -00003594 52.88769913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -00003595 52.88772583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -00003596 52.88772964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -00003597 52.88775253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -00003598 52.88775635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -00003599 52.88778305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -00003600 52.88778687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -00003601 52.88780975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -00003602 52.88781357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -00003603 52.88784027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -00003604 52.88784409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -00003605 52.88786697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -00003606 52.88787079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -00003607 52.88789749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -00003608 52.88790131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -00003609 52.88792801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -00003610 52.88792801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -00003611 52.88795471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -00003612 52.88795471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -00003613 52.88798141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -00003614 52.88798523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -00003615 52.88800812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -00003616 52.88801193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -00003617 52.88803864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -00003618 52.88804245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -00003619 52.88806534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -00003620 52.88806915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -00003621 52.88809586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -00003622 52.88809967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -00003623 52.88812637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -00003624 52.88812637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -00003625 52.88815308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -00003626 52.88815308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -00003627 52.88817978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -00003628 52.88818359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -00003629 52.88820648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -00003630 52.88821030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -00003631 52.88823700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -00003632 52.88824081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -00003633 52.88826370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -00003634 52.88826752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -00003635 52.88829422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -00003636 52.88829803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -00003637 52.88832474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -00003638 52.88832474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -00003639 52.88835144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -00003640 52.88835526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -00003641 52.88838196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -00003642 52.88838577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -00003643 52.88840866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -00003644 52.88840866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -00003645 52.88843536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -00003646 52.88843918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -00003647 52.88846588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -00003648 52.88846588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -00003649 52.88849258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -00003650 52.88849640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -00003651 52.88852310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -00003652 52.88852310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -00003653 52.88854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -00003654 52.88855362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -00003655 52.88858032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -00003656 52.88858414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -00003657 52.88860703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -00003658 52.88861084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -00003659 52.88863754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -00003660 52.88864136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -00003661 52.88866425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -00003662 52.88866425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -00003663 52.88869095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -00003664 52.88869476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -00003665 52.88872147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -00003666 52.88872147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -00003667 52.88874817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -00003668 52.88875198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -00003669 52.88877869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -00003670 52.88878250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -00003671 52.88880539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -00003672 52.88880920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -00003673 52.88883591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -00003674 52.88883972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -00003675 52.88886261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -00003676 52.88886642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -00003677 52.88889313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -00003678 52.88889313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -00003679 52.88891983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -00003680 52.88891983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -00003681 52.88894653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -00003682 52.88895035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -00003683 52.88897705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -00003684 52.88898087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -00003685 52.88900375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -00003686 52.88900757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -00003687 52.88903427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -00003688 52.88903809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -00003689 52.88906097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -00003690 52.88906479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -00003691 52.88909149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -00003692 52.88909531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -00003693 52.88911819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -00003694 52.88912201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -00003695 52.88914871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -00003696 52.88914871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -00003697 52.88917923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -00003698 52.88917923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -00003699 52.88920212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -00003700 52.88920593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -00003701 52.88923264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -00003702 52.88923645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -00003703 52.88925934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -00003704 52.88926315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -00003705 52.88928986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -00003706 52.88929367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -00003707 52.88933945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -00003708 52.88933945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -00003709 52.88936615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -00003710 52.88936615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -00003711 52.88939667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -00003712 52.88939667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -00003713 52.88941956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -00003714 52.88942337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -00003715 52.88945007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -00003716 52.88945389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -00003717 52.88947678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -00003718 52.88948059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -00003719 52.88950729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -00003720 52.88951111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -00003721 52.88953781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -00003722 52.88953781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -00003723 52.88956451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -00003724 52.88956833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -00003725 52.88959503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -00003726 52.88959503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -00003727 52.88962173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -00003728 52.88962173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -00003729 52.88965225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -00003730 52.88965225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -00003731 52.88967514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -00003732 52.88967896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -00003733 52.88970566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -00003734 52.88970947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -00003735 52.88973618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -00003736 52.88973618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -00003737 52.88976288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -00003738 52.88976669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -00003739 52.88979340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -00003740 52.88979340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -00003741 52.88982010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -00003742 52.88982391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -00003743 52.88985062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -00003744 52.88985443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -00003745 52.88987732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -00003746 52.88988113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -00003747 52.88990784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -00003748 52.88990784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -00003749 52.88993454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -00003750 52.88993454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -00003751 52.88996124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -00003752 52.88996506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -00003753 52.88999176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -00003754 52.88999176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -00003755 52.89001846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -00003756 52.89002228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -00003757 52.89004898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -00003758 52.89005280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -00003759 52.89007568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -00003760 52.89007950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -00003761 52.89010620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -00003762 52.89010620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -00003763 52.89013290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -00003764 52.89013290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -00003765 52.89015961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -00003766 52.89016342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -00003767 52.89019012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -00003768 52.89019012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -00003769 52.89021683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -00003770 52.89022064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -00003771 52.89024734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -00003772 52.89025116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -00003773 52.89027405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -00003774 52.89027786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -00003775 52.89030457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -00003776 52.89030838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -00003777 52.89033127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -00003778 52.89033508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -00003779 52.89036179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -00003780 52.89036179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -00003781 52.89038849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -00003782 52.89039230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -00003783 52.89041519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -00003784 52.89041901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -00003785 52.89044571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -00003786 52.89044952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -00003787 52.89047241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -00003788 52.89047623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -00003789 52.89050293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -00003790 52.89050674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -00003791 52.89052963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -00003792 52.89053345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -00003793 52.89056015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -00003794 52.89056396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -00003795 52.89059067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -00003796 52.89059067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -00003797 52.89061356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -00003798 52.89061737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -00003799 52.89064407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -00003800 52.89064789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -00003801 52.89067078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -00003802 52.89067459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -00003803 52.89070129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -00003804 52.89070511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -00003805 52.89072800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -00003806 52.89073181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -00003807 52.89075851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -00003808 52.89076233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -00003809 52.89078903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -00003810 52.89078903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -00003811 52.89081573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -00003812 52.89081573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -00003813 52.89084625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -00003814 52.89084625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -00003815 52.89086914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -00003816 52.89087296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -00003817 52.89089966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -00003818 52.89090347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -00003819 52.89092636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -00003820 52.89093018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -00003821 52.89095688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -00003822 52.89096069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -00003823 52.89098740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -00003824 52.89098740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -00003825 52.89101410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -00003826 52.89101791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -00003827 52.89104462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -00003828 52.89104462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -00003829 52.89107132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -00003830 52.89107513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -00003831 52.89110184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -00003832 52.89110184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -00003833 52.89112854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -00003834 52.89112854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -00003835 52.89115524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -00003836 52.89115906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -00003837 52.89118576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -00003838 52.89118576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -00003839 52.89121246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -00003840 52.89121628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -00003841 52.89124298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -00003842 52.89124298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -00003843 52.89126968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -00003844 52.89127350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -00003845 52.89130020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -00003846 52.89130402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -00003847 52.89132690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -00003848 52.89132690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -00003849 52.89135361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -00003850 52.89135742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -00003851 52.89138412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -00003852 52.89138412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -00003853 52.89141083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -00003854 52.89141464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -00003855 52.89144135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -00003856 52.89144135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -00003857 52.89146805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -00003858 52.89147186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -00003859 52.89149857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -00003860 52.89150238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -00003861 52.89152527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -00003862 52.89152527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -00003863 52.89155197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -00003864 52.89155579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -00003865 52.89158249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -00003866 52.89158249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -00003867 52.89160919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -00003868 52.89161301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -00003869 52.89163971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -00003870 52.89163971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -00003871 52.89166641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -00003872 52.89167023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -00003873 52.89169693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -00003874 52.89170074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -00003875 52.89172363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -00003876 52.89172745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -00003877 52.89175415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -00003878 52.89175797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -00003879 52.89178085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -00003880 52.89178085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -00003881 52.89180756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -00003882 52.89181137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -00003883 52.89183807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -00003884 52.89184189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -00003885 52.89186478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -00003886 52.89186859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -00003887 52.89189529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -00003888 52.89189911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -00003889 52.89192200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -00003890 52.89192581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -00003891 52.89195251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -00003892 52.89195633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -00003893 52.89197922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -00003894 52.89197922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -00003895 52.89200974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -00003896 52.89200974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -00003897 52.89203644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -00003898 52.89204025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -00003899 52.89206314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -00003900 52.89206696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -00003901 52.89209366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -00003902 52.89209747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -00003903 52.89212036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -00003904 52.89212418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -00003905 52.89215088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -00003906 52.89215469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -00003907 52.89217758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -00003908 52.89218140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -00003909 52.89220810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -00003910 52.89221191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -00003911 52.89223862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -00003912 52.89223862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -00003913 52.89226532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -00003914 52.89226532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -00003915 52.89229584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -00003916 52.89229584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -00003917 52.89231873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -00003918 52.89232254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -00003919 52.89234924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -00003920 52.89235306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -00003921 52.89237595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -00003922 52.89237976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -00003923 52.89240646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -00003924 52.89241028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -00003925 52.89243698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -00003926 52.89243698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -00003927 52.89246368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -00003928 52.89246750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -00003929 52.89249420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -00003930 52.89249420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -00003931 52.89252090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -00003932 52.89252090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -00003933 52.89254761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -00003934 52.89255142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -00003935 52.89257431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -00003936 52.89257813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -00003937 52.89260483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -00003938 52.89260864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -00003939 52.89263535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -00003940 52.89263535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -00003941 52.89266205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -00003942 52.89266586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -00003943 52.89269257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -00003944 52.89269257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -00003945 52.89271927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -00003946 52.89271927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -00003947 52.89274979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -00003948 52.89274979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -00003949 52.89277267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -00003950 52.89277649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -00003951 52.89280319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -00003952 52.89280701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -00003953 52.89283371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -00003954 52.89283371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -00003955 52.89286041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -00003956 52.89286423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -00003957 52.89289093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -00003958 52.89289093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -00003959 52.89291763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -00003960 52.89292145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -00003961 52.89294815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -00003962 52.89295197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -00003963 52.89297485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -00003964 52.89297485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -00003965 52.89300537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -00003966 52.89300537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -00003967 52.89303207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -00003968 52.89303207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -00003969 52.89305878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -00003970 52.89306259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -00003971 52.89308929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -00003972 52.89308929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -00003973 52.89311600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -00003974 52.89311981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -00003975 52.89314651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -00003976 52.89315033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -00003977 52.89317322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -00003978 52.89317703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -00003979 52.89320374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -00003980 52.89320374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -00003981 52.89323044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -00003982 52.89323044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -00003983 52.89325714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -00003984 52.89326096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -00003985 52.89328766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -00003986 52.89329147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -00003987 52.89331436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -00003988 52.89331818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -00003989 52.89334488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -00003990 52.89334869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -00003991 52.89337158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -00003992 52.89337540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -00003993 52.89340210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -00003994 52.89340591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -00003995 52.89342880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -00003996 52.89342880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -00003997 52.89345932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -00003998 52.89345932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -00003999 52.89348602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -00004000 52.89348984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -00004001 52.89351273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -00004002 52.89351654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -00004003 52.89354324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -00004004 52.89354706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -00004005 52.89356995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -00004006 52.89357376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -00004007 52.89360046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -00004008 52.89360428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -00004009 52.89362717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -00004010 52.89363098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -00004011 52.89365768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -00004012 52.89365768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -00004013 52.89368820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -00004014 52.89368820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -00004015 52.89371109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -00004016 52.89371490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -00004017 52.89374161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -00004018 52.89374542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -00004019 52.89376831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -00004020 52.89377213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -00004021 52.89379883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -00004022 52.89380264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -00004023 52.89382553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -00004024 52.89382935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -00004025 52.89385605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -00004026 52.89385986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -00004027 52.89388657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -00004028 52.89388657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -00004029 52.89391327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -00004030 52.89391708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -00004031 52.89394379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -00004032 52.89394379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -00004033 52.89397049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -00004034 52.89397430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -00004035 52.89400101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -00004036 52.89400482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -00004037 52.89402771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -00004038 52.89402771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -00004039 52.89405441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -00004040 52.89405823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -00004041 52.89408493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -00004042 52.89408493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -00004043 52.89411163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -00004044 52.89411545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -00004045 52.89414215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -00004046 52.89414215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -00004047 52.89416885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -00004048 52.89417267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -00004049 52.89419937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -00004050 52.89420319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -00004051 52.89422607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -00004052 52.89422989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -00004053 52.89425659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -00004054 52.89426041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -00004055 52.89428329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -00004056 52.89428329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -00004057 52.89431381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -00004058 52.89431381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -00004059 52.89434052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -00004060 52.89434052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -00004061 52.89436722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -00004062 52.89437103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -00004063 52.89439774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -00004064 52.89440155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -00004065 52.89442444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -00004066 52.89442825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -00004067 52.89445496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -00004068 52.89445877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -00004069 52.89448166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -00004070 52.89448547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -00004071 52.89451218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -00004072 52.89451599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -00004073 52.89454269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -00004074 52.89454269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -00004075 52.89456940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -00004076 52.89457321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -00004077 52.89459991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -00004078 52.89459991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -00004079 52.89462662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -00004080 52.89462662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -00004081 52.89465714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -00004082 52.89465714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -00004083 52.89468002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -00004084 52.89468384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -00004085 52.89471436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -00004086 52.89471436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -00004087 52.89474106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -00004088 52.89474106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -00004089 52.89476776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -00004090 52.89477158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -00004091 52.89479828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -00004092 52.89479828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -00004093 52.89482498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -00004094 52.89482880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -00004095 52.89485550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -00004096 52.89485931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -00004097 52.89488220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -00004098 52.89488602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -00004099 52.89491272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -00004100 52.89491653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -00004101 52.89493942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -00004102 52.89493942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -00004103 52.89496613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -00004104 52.89496994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -00004105 52.89499664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -00004106 52.89499664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -00004107 52.89502335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -00004108 52.89502716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -00004109 52.89505386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -00004110 52.89505768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -00004111 52.89508057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -00004112 52.89508438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -00004113 52.89511108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -00004114 52.89511490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -00004115 52.89513779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -00004116 52.89514160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -00004117 52.89516830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -00004118 52.89516830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -00004119 52.89519501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -00004120 52.89519501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -00004121 52.89522171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -00004122 52.89522552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -00004123 52.89525223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -00004124 52.89525604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -00004125 52.89527893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -00004126 52.89528275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -00004127 52.89530945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -00004128 52.89531326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -00004129 52.89533615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -00004130 52.89533997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -00004131 52.89536667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -00004132 52.89537048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -00004133 52.89539337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -00004134 52.89539719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -00004135 52.89542389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -00004136 52.89542389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -00004137 52.89545059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -00004138 52.89545441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -00004139 52.89547729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -00004140 52.89548111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -00004141 52.89550781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -00004142 52.89551163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -00004143 52.89553452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -00004144 52.89553833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -00004145 52.89556503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -00004146 52.89556885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -00004147 52.89559174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -00004148 52.89559555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -00004149 52.89562225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -00004150 52.89562607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -00004151 52.89565277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -00004152 52.89565277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -00004153 52.89567947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -00004154 52.89567947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -00004155 52.89570618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -00004156 52.89570999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -00004157 52.89573288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -00004158 52.89573669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -00004159 52.89576340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -00004160 52.89576721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -00004161 52.89579010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -00004162 52.89579391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -00004163 52.89582062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -00004164 52.89582443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -00004165 52.89585114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -00004166 52.89585114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -00004167 52.89587784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -00004168 52.89587784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -00004169 52.89590836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -00004170 52.89590836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -00004171 52.89593506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -00004172 52.89593506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -00004173 52.89596558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -00004174 52.89596558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -00004175 52.89599228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -00004176 52.89599228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -00004177 52.89602280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -00004178 52.89602280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -00004179 52.89604950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -00004180 52.89605331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -00004181 52.89608002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -00004182 52.89608383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -00004183 52.89611053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -00004184 52.89611053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -00004185 52.89613724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -00004186 52.89613724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -00004187 52.89616776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -00004188 52.89616776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -00004189 52.89619064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -00004190 52.89619446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -00004191 52.89622116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -00004192 52.89622498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -00004193 52.89624786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -00004194 52.89625168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -00004195 52.89627838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -00004196 52.89628220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -00004197 52.89630890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -00004198 52.89630890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -00004199 52.89633560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -00004200 52.89633942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -00004201 52.89636612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -00004202 52.89636612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -00004203 52.89639282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -00004204 52.89639664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -00004205 52.89643478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -00004206 52.89643860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -00004207 52.89646530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -00004208 52.89646530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -00004209 52.89649200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -00004210 52.89649582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -00004211 52.89652252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -00004212 52.89652634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -00004213 52.89655304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -00004214 52.89655304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -00004215 52.89658737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -00004216 52.89658737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -00004217 52.89662170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -00004218 52.89662552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -00004219 52.89664841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -00004220 52.89665222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -00004221 52.89667892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -00004222 52.89668274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -00004223 52.89670563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -00004224 52.89670944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -00004225 52.89673615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -00004226 52.89673996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -00004227 52.89676666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -00004228 52.89676666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -00004229 52.89679337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -00004230 52.89679718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -00004231 52.89682388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -00004232 52.89682388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -00004233 52.89685059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -00004234 52.89685059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -00004235 52.89687729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -00004236 52.89688110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -00004237 52.89690399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -00004238 52.89690781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -00004239 52.89693451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -00004240 52.89693832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -00004241 52.89696503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -00004242 52.89696503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -00004243 52.89699173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -00004244 52.89699554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -00004245 52.89702225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -00004246 52.89702225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -00004247 52.89704895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -00004248 52.89705276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -00004249 52.89707947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -00004250 52.89708328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -00004251 52.89710617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -00004252 52.89710999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -00004253 52.89713669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -00004254 52.89714050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -00004255 52.89716339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -00004256 52.89716339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -00004257 52.89719391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -00004258 52.89719772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -00004259 52.89722061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -00004260 52.89722443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -00004261 52.89725113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -00004262 52.89725113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -00004263 52.89728165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -00004264 52.89728165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -00004265 52.89730453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -00004266 52.89730835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -00004267 52.89733505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -00004268 52.89733887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -00004269 52.89736176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -00004270 52.89736557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -00004271 52.89739227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -00004272 52.89739609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -00004273 52.89741898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -00004274 52.89742279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -00004275 52.89744949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -00004276 52.89745331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -00004277 52.89748001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -00004278 52.89748001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -00004279 52.89750671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -00004280 52.89751053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -00004281 52.89753723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -00004282 52.89753723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -00004283 52.89756012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -00004284 52.89756393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -00004285 52.89759064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -00004286 52.89759445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -00004287 52.89761734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -00004288 52.89762115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -00004289 52.89764786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -00004290 52.89765167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -00004291 52.89767838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -00004292 52.89767838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -00004293 52.89770508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -00004294 52.89770889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -00004295 52.89773560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -00004296 52.89773941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -00004297 52.89776230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -00004298 52.89776611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -00004299 52.89779282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -00004300 52.89779663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -00004301 52.89781952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -00004302 52.89782333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -00004303 52.89785004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -00004304 52.89785385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -00004305 52.89787674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -00004306 52.89788055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -00004307 52.89790726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -00004308 52.89791107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -00004309 52.89793777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -00004310 52.89793777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -00004311 52.89796448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -00004312 52.89796829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -00004313 52.89799500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8430 -00004314 52.89799500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8430 -00004315 52.89802170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8440 -00004316 52.89802551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8440 -00004317 52.89805222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8450 -00004318 52.89805603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8450 -00004319 52.89807892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8460 -00004320 52.89807892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8460 -00004321 52.89810944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8470 -00004322 52.89810944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8470 -00004323 52.89813614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8480 -00004324 52.89813614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8480 -00004325 52.89816284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8490 -00004326 52.89816666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8490 -00004327 52.89819336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a0 -00004328 52.89819336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a0 -00004329 52.89822006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b0 -00004330 52.89822388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b0 -00004331 52.89825058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c0 -00004332 52.89825439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c0 -00004333 52.89827728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d0 -00004334 52.89828110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d0 -00004335 52.89830780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e0 -00004336 52.89831161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e0 -00004337 52.89833450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f0 -00004338 52.89833832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f0 -00004339 52.89836502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8500 -00004340 52.89836884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8500 -00004341 52.89839172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8510 -00004342 52.89839554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8510 -00004343 52.89842224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8520 -00004344 52.89842606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8520 -00004345 52.89845276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8530 -00004346 52.89845276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8530 -00004347 52.89847946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8540 -00004348 52.89848328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8540 -00004349 52.89850998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8550 -00004350 52.89851379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8550 -00004351 52.89853668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8560 -00004352 52.89854050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8560 -00004353 52.89856720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8570 -00004354 52.89857101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8570 -00004355 52.89859390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8580 -00004356 52.89859772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8580 -00004357 52.89862442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8590 -00004358 52.89862823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8590 -00004359 52.89865112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -00004360 52.89865494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -00004361 52.89868164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -00004362 52.89868546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -00004363 52.89871216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -00004364 52.89871216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -00004365 52.89873886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -00004366 52.89873886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -00004367 52.89876556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -00004368 52.89876938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -00004369 52.89879227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -00004370 52.89879608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -00004371 52.89882278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -00004372 52.89882660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -00004373 52.89884949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -00004374 52.89885330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -00004375 52.89888000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -00004376 52.89888382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -00004377 52.89891052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -00004378 52.89891052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -00004379 52.89893723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -00004380 52.89894104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -00004381 52.89896774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -00004382 52.89896774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -00004383 52.89899445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -00004384 52.89899826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -00004385 52.89902496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -00004386 52.89902496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -00004387 52.89905167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -00004388 52.89905167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -00004389 52.89908218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -00004390 52.89908218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -00004391 52.89910889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -00004392 52.89910889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -00004393 52.89913559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -00004394 52.89913940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -00004395 52.89916611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -00004396 52.89916611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -00004397 52.89919281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -00004398 52.89919662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -00004399 52.89922714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -00004400 52.89922714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -00004401 52.89925385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f0 -00004402 52.89925385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f0 -00004403 52.89928436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8700 -00004404 52.89928436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8700 -00004405 52.89930725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8710 -00004406 52.89931107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8710 -00004407 52.89933777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8720 -00004408 52.89934158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8720 -00004409 52.89936829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8730 -00004410 52.89936829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8730 -00004411 52.89939499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8740 -00004412 52.89939880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8740 -00004413 52.89942551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8750 -00004414 52.89942551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8750 -00004415 52.89945221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8760 -00004416 52.89945602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8760 -00004417 52.89948273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8770 -00004418 52.89948273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8770 -00004419 52.89950562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8780 -00004420 52.89950943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8780 -00004421 52.89953613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8790 -00004422 52.89953995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8790 -00004423 52.89956665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a0 -00004424 52.89956665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a0 -00004425 52.89959335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b0 -00004426 52.89959717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b0 -00004427 52.89962387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c0 -00004428 52.89962387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c0 -00004429 52.89965057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d0 -00004430 52.89965439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d0 -00004431 52.89968109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e0 -00004432 52.89968491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e0 -00004433 52.89970779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f0 -00004434 52.89971161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f0 -00004435 52.89973831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8800 -00004436 52.89974213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8800 -00004437 52.89976883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8810 -00004438 52.89976883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8810 -00004439 52.89979935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8820 -00004440 52.89979935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8820 -00004441 52.89982224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8830 -00004442 52.89982605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8830 -00004443 52.89985275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8840 -00004444 52.89985657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8840 -00004445 52.89988327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8850 -00004446 52.89988327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8850 -00004447 52.89990997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8860 -00004448 52.89991379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8860 -00004449 52.89994049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8870 -00004450 52.89994431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8870 -00004451 52.89996719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8880 -00004452 52.89997101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8880 -00004453 52.89999771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8890 -00004454 52.90000153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8890 -00004455 52.90002441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a0 -00004456 52.90002441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a0 -00004457 52.90005112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b0 -00004458 52.90005493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b0 -00004459 52.90008163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c0 -00004460 52.90008163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c0 -00004461 52.90010834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d0 -00004462 52.90011215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d0 -00004463 52.90013885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e0 -00004464 52.90014267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e0 -00004465 52.90016556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f0 -00004466 52.90016937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f0 -00004467 52.90019608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8900 -00004468 52.90019989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8900 -00004469 52.90022278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8910 -00004470 52.90022659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8910 -00004471 52.90025330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8920 -00004472 52.90025711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8920 -00004473 52.90028000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8930 -00004474 52.90028000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8930 -00004475 52.90031052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8940 -00004476 52.90031052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8940 -00004477 52.90034103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8950 -00004478 52.90034103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8950 -00004479 52.90036392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8960 -00004480 52.90036774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8960 -00004481 52.90039444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8970 -00004482 52.90039825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8970 -00004483 52.90042114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8980 -00004484 52.90042496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8980 -00004485 52.90045166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8990 -00004486 52.90045547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8990 -00004487 52.90047836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a0 -00004488 52.90048218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a0 -00004489 52.90050888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b0 -00004490 52.90051270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b0 -00004491 52.90053940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c0 -00004492 52.90053940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c0 -00004493 52.90056610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d0 -00004494 52.90056610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d0 -00004495 52.90059280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e0 -00004496 52.90059662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e0 -00004497 52.90061951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f0 -00004498 52.90062332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f0 -00004499 52.90065002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a00 -00004500 52.90065384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a00 -00004501 52.90067673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a10 -00004502 52.90068054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a10 -00004503 52.90070724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a20 -00004504 52.90071106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a20 -00004505 52.90073776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a30 -00004506 52.90073776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a30 -00004507 52.90076447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a40 -00004508 52.90076828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a40 -00004509 52.90079498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a50 -00004510 52.90079498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a50 -00004511 52.90082169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a60 -00004512 52.90082169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a60 -00004513 52.90085220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a70 -00004514 52.90085220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a70 -00004515 52.90087509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a80 -00004516 52.90087891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a80 -00004517 52.90090561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a90 -00004518 52.90090942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a90 -00004519 52.90093613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa0 -00004520 52.90093613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa0 -00004521 52.90096283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab0 -00004522 52.90096664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab0 -00004523 52.90099335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac0 -00004524 52.90099335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac0 -00004525 52.90102005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad0 -00004526 52.90102386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad0 -00004527 52.90105057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae0 -00004528 52.90105438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae0 -00004529 52.90107727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af0 -00004530 52.90108109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af0 -00004531 52.90110779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b00 -00004532 52.90111160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b00 -00004533 52.90113449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b10 -00004534 52.90113449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b10 -00004535 52.90116119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b20 -00004536 52.90116501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b20 -00004537 52.90119171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b30 -00004538 52.90119171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b30 -00004539 52.90121841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b40 -00004540 52.90122223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b40 -00004541 52.90124893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b50 -00004542 52.90125275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b50 -00004543 52.90127563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b60 -00004544 52.90127945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b60 -00004545 52.90130615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b70 -00004546 52.90130997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b70 -00004547 52.90133286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b80 -00004548 52.90133286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b80 -00004549 52.90135956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b90 -00004550 52.90136337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b90 -00004551 52.90139008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba0 -00004552 52.90139389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba0 -00004553 52.90141678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb0 -00004554 52.90142059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb0 -00004555 52.90144730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc0 -00004556 52.90145111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc0 -00004557 52.90147400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd0 -00004558 52.90147781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd0 -00004559 52.90150452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be0 -00004560 52.90150833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be0 -00004561 52.90153122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf0 -00004562 52.90153503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf0 -00004563 52.90156174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c00 -00004564 52.90156555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c00 -00004565 52.90159225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c10 -00004566 52.90159225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c10 -00004567 52.90161896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c20 -00004568 52.90162277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c20 -00004569 52.90164948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c30 -00004570 52.90164948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c30 -00004571 52.90167618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c40 -00004572 52.90167999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c40 -00004573 52.90170670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c50 -00004574 52.90171051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c50 -00004575 52.90173340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c60 -00004576 52.90173340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c60 -00004577 52.90176010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c70 -00004578 52.90176392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c70 -00004579 52.90179062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c80 -00004580 52.90179062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c80 -00004581 52.90181732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c90 -00004582 52.90182114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c90 -00004583 52.90184784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca0 -00004584 52.90184784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca0 -00004585 52.90187454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb0 -00004586 52.90187836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb0 -00004587 52.90190506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc0 -00004588 52.90190887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc0 -00004589 52.90193176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd0 -00004590 52.90193176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd0 -00004591 52.90195847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce0 -00004592 52.90196228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce0 -00004593 52.90198898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf0 -00004594 52.90198898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf0 -00004595 52.90201569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d00 -00004596 52.90201950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d00 -00004597 52.90204620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d10 -00004598 52.90204620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d10 -00004599 52.90207291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d20 -00004600 52.90207672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d20 -00004601 52.90210342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d30 -00004602 52.90210724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d30 -00004603 52.90213013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d40 -00004604 52.90213013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d40 -00004605 52.90216064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d50 -00004606 52.90216064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d50 -00004607 52.90218735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d60 -00004608 52.90218735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d60 -00004609 52.90221405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d70 -00004610 52.90221786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d70 -00004611 52.90224457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d80 -00004612 52.90224457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d80 -00004613 52.90227127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d90 -00004614 52.90227509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d90 -00004615 52.90230179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da0 -00004616 52.90230560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da0 -00004617 52.90232849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db0 -00004618 52.90233231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db0 -00004619 52.90235901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc0 -00004620 52.90236282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc0 -00004621 52.90238571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd0 -00004622 52.90238571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd0 -00004623 52.90241241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de0 -00004624 52.90241623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de0 -00004625 52.90244293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df0 -00004626 52.90244293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df0 -00004627 52.90246964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e00 -00004628 52.90247345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e00 -00004629 52.90250015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e10 -00004630 52.90250397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e10 -00004631 52.90252686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e20 -00004632 52.90253067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e20 -00004633 52.90255737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e30 -00004634 52.90256119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e30 -00004635 52.90258408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e40 -00004636 52.90258789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e40 -00004637 52.90261459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e50 -00004638 52.90261841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e50 -00004639 52.90264130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e60 -00004640 52.90264130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e60 -00004641 52.90267181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e70 -00004642 52.90267181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e70 -00004643 52.90270233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e80 -00004644 52.90270233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e80 -00004645 52.90272903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e90 -00004646 52.90272903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e90 -00004647 52.90275955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea0 -00004648 52.90275955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea0 -00004649 52.90278244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb0 -00004650 52.90278625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb0 -00004651 52.90281296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec0 -00004652 52.90281677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec0 -00004653 52.90284348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed0 -00004654 52.90284348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed0 -00004655 52.90287399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee0 -00004656 52.90287399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee0 -00004657 52.90290070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef0 -00004658 52.90290070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef0 -00004659 52.90292740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f00 -00004660 52.90293121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f00 -00004661 52.90295792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f10 -00004662 52.90296173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f10 -00004663 52.90298843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f20 -00004664 52.90299225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f20 -00004665 52.90301895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f30 -00004666 52.90301895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f30 -00004667 52.90304565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f40 -00004668 52.90304947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f40 -00004669 52.90307617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f50 -00004670 52.90307999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f50 -00004671 52.90310287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f60 -00004672 52.90310669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f60 -00004673 52.90313339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f70 -00004674 52.90313721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f70 -00004675 52.90316010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f80 -00004676 52.90316391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f80 -00004677 52.90319061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f90 -00004678 52.90319443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f90 -00004679 52.90321732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa0 -00004680 52.90322113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa0 -00004681 52.90324783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb0 -00004682 52.90325165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb0 -00004683 52.90327835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc0 -00004684 52.90327835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc0 -00004685 52.90330505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd0 -00004686 52.90330887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd0 -00004687 52.90333557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe0 -00004688 52.90333939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe0 -00004689 52.90336227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff0 -00004690 52.90336609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff0 -00004691 52.90339279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9000 -00004692 52.90339661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9000 -00004693 52.90341949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9010 -00004694 52.90342331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9010 -00004695 52.90345001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9020 -00004696 52.90345383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9020 -00004697 52.90347672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9030 -00004698 52.90348053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9030 -00004699 52.90350723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9040 -00004700 52.90351105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9040 -00004701 52.90353775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9050 -00004702 52.90353775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9050 -00004703 52.90356445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9060 -00004704 52.90356827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9060 -00004705 52.90359497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9070 -00004706 52.90359497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9070 -00004707 52.90362167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9080 -00004708 52.90362549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9080 -00004709 52.90365982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9090 -00004710 52.90366364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9090 -00004711 52.90369797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a0 -00004712 52.90370178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a0 -00004713 52.90373230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b0 -00004714 52.90373611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b0 -00004715 52.90375900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c0 -00004716 52.90376282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c0 -00004717 52.90378952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d0 -00004718 52.90379333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d0 -00004719 52.90382004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e0 -00004720 52.90382385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e0 -00004721 52.90385437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f0 -00004722 52.90386200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f0 -00004723 52.90389252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9100 -00004724 52.90389252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9100 -00004725 52.90392685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9110 -00004726 52.90393066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9110 -00004727 52.90395355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9120 -00004728 52.90395737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9120 -00004729 52.90398407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9130 -00004730 52.90398788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9130 -00004731 52.90401459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9140 -00004732 52.90401459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9140 -00004733 52.90404129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9150 -00004734 52.90404510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9150 -00004735 52.90407181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9160 -00004736 52.90407181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9160 -00004737 52.90409851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9170 -00004738 52.90410233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9170 -00004739 52.90412903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9180 -00004740 52.90413284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9180 -00004741 52.90415573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9190 -00004742 52.90415955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9190 -00004743 52.90418625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a0 -00004744 52.90419006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a0 -00004745 52.90421295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b0 -00004746 52.90421677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b0 -00004747 52.90424347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c0 -00004748 52.90424728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c0 -00004749 52.90427017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d0 -00004750 52.90427399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d0 -00004751 52.90430069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e0 -00004752 52.90430069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e0 -00004753 52.90432739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f0 -00004754 52.90433121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f0 -00004755 52.90435410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9200 -00004756 52.90435791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9200 -00004757 52.90438461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9210 -00004758 52.90438843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9210 -00004759 52.90441132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9220 -00004760 52.90441513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9220 -00004761 52.90444183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9230 -00004762 52.90444565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9230 -00004763 52.90446854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9240 -00004764 52.90447235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9240 -00004765 52.90449905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9250 -00004766 52.90449905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9250 -00004767 52.90452957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9260 -00004768 52.90452957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9260 -00004769 52.90455246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9270 -00004770 52.90455627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9270 -00004771 52.90458298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9280 -00004772 52.90458679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9280 -00004773 52.90460968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9290 -00004774 52.90461349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9290 -00004775 52.90464020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a0 -00004776 52.90464401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a0 -00004777 52.90466690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b0 -00004778 52.90467072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b0 -00004779 52.90469742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c0 -00004780 52.90470123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c0 -00004781 52.90472794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d0 -00004782 52.90472794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d0 -00004783 52.90475464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e0 -00004784 52.90475845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e0 -00004785 52.90478516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f0 -00004786 52.90478897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f0 -00004787 52.90481186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9300 -00004788 52.90481567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9300 -00004789 52.90484238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9310 -00004790 52.90484619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9310 -00004791 52.90486908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9320 -00004792 52.90486908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9320 -00004793 52.90489960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9330 -00004794 52.90489960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9330 -00004795 52.90492630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9340 -00004796 52.90492630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9340 -00004797 52.90495300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9350 -00004798 52.90495682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9350 -00004799 52.90498352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9360 -00004800 52.90498734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9360 -00004801 52.90501022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9370 -00004802 52.90501404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9370 -00004803 52.90504074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9380 -00004804 52.90504456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9380 -00004805 52.90506744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9390 -00004806 52.90507126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9390 -00004807 52.90509796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a0 -00004808 52.90509796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a0 -00004809 52.90512466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b0 -00004810 52.90512466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b0 -00004811 52.90515137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c0 -00004812 52.90515518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c0 -00004813 52.90518188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d0 -00004814 52.90518570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d0 -00004815 52.90520859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e0 -00004816 52.90521240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e0 -00004817 52.90523911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f0 -00004818 52.90524292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f0 -00004819 52.90526581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9400 -00004820 52.90526962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9400 -00004821 52.90529633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9410 -00004822 52.90530014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9410 -00004823 52.90532303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9420 -00004824 52.90532684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9420 -00004825 52.90535355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9430 -00004826 52.90535736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9430 -00004827 52.90538406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9440 -00004828 52.90538406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9440 -00004829 52.90541077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9450 -00004830 52.90541077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9450 -00004831 52.90543747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9460 -00004832 52.90544128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9460 -00004833 52.90546417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9470 -00004834 52.90546799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9470 -00004835 52.90549469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9480 -00004836 52.90549850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9480 -00004837 52.90552139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9490 -00004838 52.90552521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9490 -00004839 52.90555191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a0 -00004840 52.90555573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a0 -00004841 52.90558243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b0 -00004842 52.90558243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b0 -00004843 52.90560913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c0 -00004844 52.90560913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c0 -00004845 52.90563965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d0 -00004846 52.90563965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d0 -00004847 52.90566254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e0 -00004848 52.90566635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e0 -00004849 52.90569305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f0 -00004850 52.90569687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f0 -00004851 52.90571976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9500 -00004852 52.90572357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9500 -00004853 52.90575027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9510 -00004854 52.90575409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9510 -00004855 52.90578079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9520 -00004856 52.90578079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9520 -00004857 52.90580750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9530 -00004858 52.90580750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9530 -00004859 52.90583801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9540 -00004860 52.90583801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9540 -00004861 52.90586090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9550 -00004862 52.90586472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9550 -00004863 52.90589142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9560 -00004864 52.90589523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9560 -00004865 52.90591812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9570 -00004866 52.90592194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9570 -00004867 52.90594864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9580 -00004868 52.90595245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9580 -00004869 52.90597916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9590 -00004870 52.90597916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9590 -00004871 52.90600586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a0 -00004872 52.90600967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a0 -00004873 52.90603638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b0 -00004874 52.90604019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b0 -00004875 52.90606308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c0 -00004876 52.90606689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c0 -00004877 52.90609360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d0 -00004878 52.90609741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d0 -00004879 52.90612030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e0 -00004880 52.90612411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e0 -00004881 52.90615082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f0 -00004882 52.90615082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f0 -00004883 52.90617752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9600 -00004884 52.90617752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9600 -00004885 52.90620422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9610 -00004886 52.90620804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9610 -00004887 52.90623474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9620 -00004888 52.90623856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9620 -00004889 52.90626144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9630 -00004890 52.90626526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9630 -00004891 52.90629196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9640 -00004892 52.90629578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9640 -00004893 52.90631866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9650 -00004894 52.90632248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9650 -00004895 52.90634918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9660 -00004896 52.90634918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9660 -00004897 52.90637589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9670 -00004898 52.90637589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9670 -00004899 52.90640259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9680 -00004900 52.90640640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9680 -00004901 52.90643311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9690 -00004902 52.90643692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9690 -00004903 52.90645981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a0 -00004904 52.90646362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a0 -00004905 52.90649033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b0 -00004906 52.90649414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b0 -00004907 52.90651703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c0 -00004908 52.90652084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c0 -00004909 52.90654755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d0 -00004910 52.90655136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d0 -00004911 52.90657425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e0 -00004912 52.90657806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e0 -00004913 52.90660477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f0 -00004914 52.90660858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f0 -00004915 52.90663528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9700 -00004916 52.90663528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9700 -00004917 52.90666199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9710 -00004918 52.90666199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9710 -00004919 52.90668869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9720 -00004920 52.90669250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9720 -00004921 52.90671539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9730 -00004922 52.90671921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9730 -00004923 52.90674591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9740 -00004924 52.90674973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9740 -00004925 52.90677261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9750 -00004926 52.90677643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9750 -00004927 52.90680313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9760 -00004928 52.90680695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9760 -00004929 52.90683365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9770 -00004930 52.90683365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9770 -00004931 52.90685654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9780 -00004932 52.90686035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9780 -00004933 52.90688705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9790 -00004934 52.90689087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9790 -00004935 52.90691376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a0 -00004936 52.90691757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a0 -00004937 52.90694427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b0 -00004938 52.90694809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b0 -00004939 52.90697098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c0 -00004940 52.90697479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c0 -00004941 52.90700150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d0 -00004942 52.90700531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d0 -00004943 52.90703201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e0 -00004944 52.90703201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e0 -00004945 52.90705490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f0 -00004946 52.90705872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f0 -00004947 52.90708542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9800 -00004948 52.90708923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9800 -00004949 52.90711212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9810 -00004950 52.90711594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9810 -00004951 52.90714264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9820 -00004952 52.90714645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9820 -00004953 52.90716934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9830 -00004954 52.90717316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9830 -00004955 52.90719986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9840 -00004956 52.90720367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9840 -00004957 52.90723038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9850 -00004958 52.90723038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9850 -00004959 52.90725708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9860 -00004960 52.90726089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9860 -00004961 52.90728760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9870 -00004962 52.90729141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9870 -00004963 52.90731430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9880 -00004964 52.90731812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9880 -00004965 52.90734482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9890 -00004966 52.90734482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9890 -00004967 52.90736771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a0 -00004968 52.90737152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a0 -00004969 52.90739822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b0 -00004970 52.90740204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b0 -00004971 52.90742874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c0 -00004972 52.90742874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c0 -00004973 52.90745544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d0 -00004974 52.90745926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d0 -00004975 52.90748596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e0 -00004976 52.90748978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e0 -00004977 52.90751266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f0 -00004978 52.90751648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f0 -00004979 52.90754318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9900 -00004980 52.90754318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9900 -00004981 52.90756989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9910 -00004982 52.90756989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9910 -00004983 52.90759659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9920 -00004984 52.90760040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9920 -00004985 52.90762711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9930 -00004986 52.90762711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9930 -00004987 52.90765381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9940 -00004988 52.90765762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9940 -00004989 52.90768433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9950 -00004990 52.90768814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9950 -00004991 52.90771103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9960 -00004992 52.90771484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9960 -00004993 52.90774155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -00004994 52.90774155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -00004995 52.90776825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -00004996 52.90776825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -00004997 52.90779495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -00004998 52.90779877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -00004999 52.90782547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -00005000 52.90782547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -00005001 52.90785217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -00005002 52.90785599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -00005003 52.90788269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -00005004 52.90788651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -00005005 52.90790939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -00005006 52.90791321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -00005007 52.90793991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -00005008 52.90794373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -00005009 52.90796661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -00005010 52.90797043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -00005011 52.90799713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a00 -00005012 52.90799713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a00 -00005013 52.90802383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a10 -00005014 52.90802383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a10 -00005015 52.90805054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a20 -00005016 52.90805435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a20 -00005017 52.90808105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a30 -00005018 52.90808487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a30 -00005019 52.90810776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a40 -00005020 52.90811157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a40 -00005021 52.90813828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a50 -00005022 52.90814209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a50 -00005023 52.90816498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a60 -00005024 52.90816879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a60 -00005025 52.90819550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a70 -00005026 52.90819550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a70 -00005027 52.90822220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a80 -00005028 52.90822220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a80 -00005029 52.90824890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a90 -00005030 52.90825272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a90 -00005031 52.90827942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa0 -00005032 52.90828323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa0 -00005033 52.90830612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab0 -00005034 52.90830994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab0 -00005035 52.90833664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac0 -00005036 52.90834045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac0 -00005037 52.90836334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad0 -00005038 52.90836716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad0 -00005039 52.90839386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae0 -00005040 52.90839767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae0 -00005041 52.90842056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af0 -00005042 52.90842056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af0 -00005043 52.90845108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b00 -00005044 52.90845108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b00 -00005045 52.90848160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b10 -00005046 52.90848160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b10 -00005047 52.90850449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b20 -00005048 52.90850830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b20 -00005049 52.90853500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b30 -00005050 52.90853882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b30 -00005051 52.90856171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b40 -00005052 52.90856552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b40 -00005053 52.90859222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b50 -00005054 52.90859604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b50 -00005055 52.90861893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b60 -00005056 52.90862274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b60 -00005057 52.90864944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b70 -00005058 52.90865326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b70 -00005059 52.90867996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b80 -00005060 52.90867996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b80 -00005061 52.90870285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b90 -00005062 52.90870667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b90 -00005063 52.90873337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba0 -00005064 52.90873718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba0 -00005065 52.90876007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb0 -00005066 52.90876389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb0 -00005067 52.90879059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc0 -00005068 52.90879440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc0 -00005069 52.90882111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd0 -00005070 52.90882111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd0 -00005071 52.90884781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be0 -00005072 52.90885162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be0 -00005073 52.90887833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf0 -00005074 52.90887833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf0 -00005075 52.90890121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c00 -00005076 52.90890503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c00 -00005077 52.90893173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c10 -00005078 52.90893555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c10 -00005079 52.90895844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c20 -00005080 52.90896225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c20 -00005081 52.90898895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c30 -00005082 52.90899277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c30 -00005083 52.90901947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c40 -00005084 52.90901947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c40 -00005085 52.90904617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -00005086 52.90904999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -00005087 52.90907669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -00005088 52.90907669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -00005089 52.90910339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -00005090 52.90910721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -00005091 52.90913391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -00005092 52.90913391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -00005093 52.90915680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -00005094 52.90916061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -00005095 52.90918732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -00005096 52.90919113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -00005097 52.90921783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -00005098 52.90921783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -00005099 52.90924454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -00005100 52.90924835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -00005101 52.90927505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -00005102 52.90927505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -00005103 52.90930176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce0 -00005104 52.90930557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce0 -00005105 52.90933228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf0 -00005106 52.90933228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf0 -00005107 52.90935898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d00 -00005108 52.90935898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d00 -00005109 52.90938568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d10 -00005110 52.90938950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d10 -00005111 52.90941620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d20 -00005112 52.90941620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d20 -00005113 52.90944290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d30 -00005114 52.90944672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d30 -00005115 52.90947342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d40 -00005116 52.90947342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d40 -00005117 52.90950012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d50 -00005118 52.90950394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d50 -00005119 52.90953064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d60 -00005120 52.90953064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d60 -00005121 52.90955734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d70 -00005122 52.90955734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d70 -00005123 52.90958405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d80 -00005124 52.90958786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d80 -00005125 52.90961456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d90 -00005126 52.90961456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d90 -00005127 52.90964127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da0 -00005128 52.90964508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da0 -00005129 52.90967178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db0 -00005130 52.90967178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db0 -00005131 52.90969849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc0 -00005132 52.90970230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc0 -00005133 52.90972900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd0 -00005134 52.90973282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd0 -00005135 52.90975952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de0 -00005136 52.90975952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de0 -00005137 52.90978622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df0 -00005138 52.90979004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df0 -00005139 52.90981293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e00 -00005140 52.90981674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e00 -00005141 52.90984344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e10 -00005142 52.90984726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e10 -00005143 52.90987015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e20 -00005144 52.90987396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e20 -00005145 52.90990067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e30 -00005146 52.90990448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e30 -00005147 52.90993118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e40 -00005148 52.90993118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e40 -00005149 52.90995789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e50 -00005150 52.90995789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e50 -00005151 52.90998459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e60 -00005152 52.90998840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e60 -00005153 52.91001129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e70 -00005154 52.91001511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e70 -00005155 52.91004181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e80 -00005156 52.91004562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e80 -00005157 52.91006851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e90 -00005158 52.91007233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e90 -00005159 52.91009903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea0 -00005160 52.91010284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea0 -00005161 52.91012955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb0 -00005162 52.91012955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb0 -00005163 52.91015625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec0 -00005164 52.91015625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec0 -00005165 52.91018295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed0 -00005166 52.91018677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed0 -00005167 52.91020966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee0 -00005168 52.91021347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee0 -00005169 52.91024017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef0 -00005170 52.91024399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef0 -00005171 52.91027069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f00 -00005172 52.91027069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f00 -00005173 52.91029739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f10 -00005174 52.91030121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f10 -00005175 52.91032791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f20 -00005176 52.91032791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f20 -00005177 52.91035461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f30 -00005178 52.91035843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f30 -00005179 52.91038513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f40 -00005180 52.91038895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f40 -00005181 52.91041183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f50 -00005182 52.91041183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f50 -00005183 52.91044235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f60 -00005184 52.91044235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f60 -00005185 52.91046906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f70 -00005186 52.91046906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f70 -00005187 52.91049576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f80 -00005188 52.91049957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f80 -00005189 52.91052628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f90 -00005190 52.91052628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f90 -00005191 52.91055298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa0 -00005192 52.91055679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa0 -00005193 52.91058350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb0 -00005194 52.91058731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb0 -00005195 52.91061020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc0 -00005196 52.91061020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc0 -00005197 52.91063690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd0 -00005198 52.91064072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd0 -00005199 52.91066742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe0 -00005200 52.91066742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe0 -00005201 52.91069412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff0 -00005202 52.91069794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff0 -00005203 52.91072464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa000 -00005204 52.91072464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa000 -00005205 52.91075134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa010 -00005206 52.91075516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa010 -00005207 52.91078186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa020 -00005208 52.91078568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa020 -00005209 52.91080856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa030 -00005210 52.91080856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa030 -00005211 52.91083527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa040 -00005212 52.91083908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa040 -00005213 52.91086578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa050 -00005214 52.91086578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa050 -00005215 52.91089249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa060 -00005216 52.91089630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa060 -00005217 52.91092300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa070 -00005218 52.91092300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa070 -00005219 52.91094971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa080 -00005220 52.91095352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa080 -00005221 52.91098022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa090 -00005222 52.91098404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa090 -00005223 52.91100693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a0 -00005224 52.91101074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a0 -00005225 52.91103745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b0 -00005226 52.91104126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b0 -00005227 52.91106415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c0 -00005228 52.91106796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c0 -00005229 52.91109467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d0 -00005230 52.91109467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d0 -00005231 52.91112137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e0 -00005232 52.91112137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e0 -00005233 52.91114807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f0 -00005234 52.91115189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f0 -00005235 52.91117859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa100 -00005236 52.91118240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa100 -00005237 52.91120529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa110 -00005238 52.91120911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa110 -00005239 52.91123581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa120 -00005240 52.91123962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa120 -00005241 52.91126251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa130 -00005242 52.91126633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa130 -00005243 52.91129303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa140 -00005244 52.91129303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa140 -00005245 52.91131973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa150 -00005246 52.91131973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa150 -00005247 52.91134644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa160 -00005248 52.91135025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa160 -00005249 52.91137695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa170 -00005250 52.91138077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa170 -00005251 52.91140366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa180 -00005252 52.91140747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa180 -00005253 52.91143417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa190 -00005254 52.91143799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa190 -00005255 52.91146088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a0 -00005256 52.91146469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a0 -00005257 52.91149139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b0 -00005258 52.91149139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b0 -00005259 52.91151810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c0 -00005260 52.91151810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c0 -00005261 52.91154480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d0 -00005262 52.91154861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d0 -00005263 52.91157532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e0 -00005264 52.91157913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e0 -00005265 52.91160202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f0 -00005266 52.91160583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f0 -00005267 52.91163254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa200 -00005268 52.91163635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa200 -00005269 52.91165924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa210 -00005270 52.91166306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa210 -00005271 52.91168976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa220 -00005272 52.91169357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa220 -00005273 52.91172028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa230 -00005274 52.91172028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa230 -00005275 52.91174698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa240 -00005276 52.91174698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa240 -00005277 52.91177750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa250 -00005278 52.91177750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa250 -00005279 52.91180038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa260 -00005280 52.91180420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa260 -00005281 52.91183090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa270 -00005282 52.91183472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa270 -00005283 52.91185760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa280 -00005284 52.91186142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa280 -00005285 52.91188812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa290 -00005286 52.91189194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa290 -00005287 52.91191864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a0 -00005288 52.91191864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a0 -00005289 52.91194534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b0 -00005290 52.91194916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b0 -00005291 52.91197586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c0 -00005292 52.91197586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c0 -00005293 52.91199875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d0 -00005294 52.91200256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d0 -00005295 52.91202927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e0 -00005296 52.91203308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e0 -00005297 52.91205597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f0 -00005298 52.91205978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f0 -00005299 52.91208649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa300 -00005300 52.91209030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa300 -00005301 52.91211700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa310 -00005302 52.91211700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa310 -00005303 52.91214371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa320 -00005304 52.91214752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa320 -00005305 52.91217422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa330 -00005306 52.91217422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa330 -00005307 52.91220474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa340 -00005308 52.91220856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa340 -00005309 52.91223526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa350 -00005310 52.91223526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa350 -00005311 52.91226196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa360 -00005312 52.91226578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa360 -00005313 52.91229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa370 -00005314 52.91229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa370 -00005315 52.91231537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa380 -00005316 52.91231918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa380 -00005317 52.91234589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa390 -00005318 52.91234970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa390 -00005319 52.91237259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a0 -00005320 52.91237640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a0 -00005321 52.91240311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b0 -00005322 52.91240692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b0 -00005323 52.91243362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c0 -00005324 52.91243362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c0 -00005325 52.91246033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d0 -00005326 52.91246414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d0 -00005327 52.91249084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e0 -00005328 52.91249466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e0 -00005329 52.91251755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f0 -00005330 52.91252136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f0 -00005331 52.91254807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa400 -00005332 52.91254807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa400 -00005333 52.91257095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa410 -00005334 52.91257477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa410 -00005335 52.91260147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa420 -00005336 52.91260529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa420 -00005337 52.91263199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa430 -00005338 52.91263199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa430 -00005339 52.91265869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa440 -00005340 52.91266251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa440 -00005341 52.91268921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa450 -00005342 52.91269302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa450 -00005343 52.91271591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa460 -00005344 52.91271973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa460 -00005345 52.91274643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa470 -00005346 52.91274643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa470 -00005347 52.91277313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa480 -00005348 52.91277313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa480 -00005349 52.91279984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa490 -00005350 52.91280365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa490 -00005351 52.91283035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a0 -00005352 52.91283035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a0 -00005353 52.91285706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b0 -00005354 52.91286087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b0 -00005355 52.91289139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c0 -00005356 52.91289139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c0 -00005357 52.91291428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -00005358 52.91291809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -00005359 52.91294479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -00005360 52.91294861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -00005361 52.91297150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -00005362 52.91297531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -00005363 52.91300201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -00005364 52.91300583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -00005365 52.91302872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -00005366 52.91303253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -00005367 52.91305923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -00005368 52.91306305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -00005369 52.91308975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -00005370 52.91308975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -00005371 52.91311264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -00005372 52.91311646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -00005373 52.91314316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa550 -00005374 52.91314697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa550 -00005375 52.91316986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa560 -00005376 52.91317368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa560 -00005377 52.91320038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa570 -00005378 52.91320419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa570 -00005379 52.91322708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa580 -00005380 52.91323090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa580 -00005381 52.91325760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa590 -00005382 52.91326141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa590 -00005383 52.91328812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a0 -00005384 52.91328812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a0 -00005385 52.91331100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b0 -00005386 52.91331482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b0 -00005387 52.91334152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c0 -00005388 52.91334534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c0 -00005389 52.91336823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d0 -00005390 52.91337204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d0 -00005391 52.91339874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e0 -00005392 52.91340256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e0 -00005393 52.91342545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f0 -00005394 52.91342926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f0 -00005395 52.91345596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa600 -00005396 52.91345978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa600 -00005397 52.91348648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa610 -00005398 52.91348648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa610 -00005399 52.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa620 -00005400 52.91351700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa620 -00005401 52.91354370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa630 -00005402 52.91354370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa630 -00005403 52.91357040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa640 -00005404 52.91357422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa640 -00005405 52.91360092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa650 -00005406 52.91360092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa650 -00005407 52.91362381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa660 -00005408 52.91362762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa660 -00005409 52.91365433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa670 -00005410 52.91365814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa670 -00005411 52.91368484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa680 -00005412 52.91368484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa680 -00005413 52.91371155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa690 -00005414 52.91371536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa690 -00005415 52.91374207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a0 -00005416 52.91374588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a0 -00005417 52.91376877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b0 -00005418 52.91377258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b0 -00005419 52.91379929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c0 -00005420 52.91379929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c0 -00005421 52.91382217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d0 -00005422 52.91382599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d0 -00005423 52.91385269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e0 -00005424 52.91385651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e0 -00005425 52.91388321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f0 -00005426 52.91388321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f0 -00005427 52.91390991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa700 -00005428 52.91391373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa700 -00005429 52.91394043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa710 -00005430 52.91394424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa710 -00005431 52.91396713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa720 -00005432 52.91397095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa720 -00005433 52.91399765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa730 -00005434 52.91399765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa730 -00005435 52.91402435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa740 -00005436 52.91402435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa740 -00005437 52.91405106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa750 -00005438 52.91405487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa750 -00005439 52.91408157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa760 -00005440 52.91408157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa760 -00005441 52.91410828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa770 -00005442 52.91411209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa770 -00005443 52.91413879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa780 -00005444 52.91414261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa780 -00005445 52.91416550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa790 -00005446 52.91416931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa790 -00005447 52.91419601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a0 -00005448 52.91419983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a0 -00005449 52.91422272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b0 -00005450 52.91422653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b0 -00005451 52.91425323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c0 -00005452 52.91425323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c0 -00005453 52.91427994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d0 -00005454 52.91427994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d0 -00005455 52.91430664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e0 -00005456 52.91431046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e0 -00005457 52.91433716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f0 -00005458 52.91434097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f0 -00005459 52.91436386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa800 -00005460 52.91436768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa800 -00005461 52.91439438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa810 -00005462 52.91439819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa810 -00005463 52.91442108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa820 -00005464 52.91442490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa820 -00005465 52.91445160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa830 -00005466 52.91445160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa830 -00005467 52.91447830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa840 -00005468 52.91447830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa840 -00005469 52.91450500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa850 -00005470 52.91450882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa850 -00005471 52.91453552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa860 -00005472 52.91453934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa860 -00005473 52.91456223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa870 -00005474 52.91456604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa870 -00005475 52.91459274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa880 -00005476 52.91459656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa880 -00005477 52.91461945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa890 -00005478 52.91462326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa890 -00005479 52.91464996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a0 -00005480 52.91465378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a0 -00005481 52.91467667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b0 -00005482 52.91467667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b0 -00005483 52.91470718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c0 -00005484 52.91470718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c0 -00005485 52.91473389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d0 -00005486 52.91473770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d0 -00005487 52.91476440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e0 -00005488 52.91476822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e0 -00005489 52.91479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f0 -00005490 52.91479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f0 -00005491 52.91482162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa900 -00005492 52.91482162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa900 -00005493 52.91485214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa910 -00005494 52.91485214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa910 -00005495 52.91487885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa920 -00005496 52.91487885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa920 -00005497 52.91490555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa930 -00005498 52.91490936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa930 -00005499 52.91493607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa940 -00005500 52.91493607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa940 -00005501 52.91496277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa950 -00005502 52.91496658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa950 -00005503 52.91499329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa960 -00005504 52.91499710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa960 -00005505 52.91501999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa970 -00005506 52.91502380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa970 -00005507 52.91505051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa980 -00005508 52.91505432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa980 -00005509 52.91507721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa990 -00005510 52.91507721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa990 -00005511 52.91510391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a0 -00005512 52.91510773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a0 -00005513 52.91513443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b0 -00005514 52.91513443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b0 -00005515 52.91516113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c0 -00005516 52.91516495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c0 -00005517 52.91519165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d0 -00005518 52.91519547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d0 -00005519 52.91521835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e0 -00005520 52.91522217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e0 -00005521 52.91524887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f0 -00005522 52.91525269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f0 -00005523 52.91527557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa00 -00005524 52.91527557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa00 -00005525 52.91530609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa10 -00005526 52.91530609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa10 -00005527 52.91533279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa20 -00005528 52.91533279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa20 -00005529 52.91535950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa30 -00005530 52.91536331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa30 -00005531 52.91539001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa40 -00005532 52.91539383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa40 -00005533 52.91541672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa50 -00005534 52.91542053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa50 -00005535 52.91544724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa60 -00005536 52.91545105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa60 -00005537 52.91547394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa70 -00005538 52.91547775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa70 -00005539 52.91550446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa80 -00005540 52.91550827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa80 -00005541 52.91553116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa90 -00005542 52.91553497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa90 -00005543 52.91556168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa0 -00005544 52.91556549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa0 -00005545 52.91559219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab0 -00005546 52.91559219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab0 -00005547 52.91561508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac0 -00005548 52.91561890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac0 -00005549 52.91564941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad0 -00005550 52.91564941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad0 -00005551 52.91567230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae0 -00005552 52.91567612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae0 -00005553 52.91570282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf0 -00005554 52.91570663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf0 -00005555 52.91572952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab00 -00005556 52.91573334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab00 -00005557 52.91576004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab10 -00005558 52.91576385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab10 -00005559 52.91579056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab20 -00005560 52.91579056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab20 -00005561 52.91581726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab30 -00005562 52.91582108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab30 -00005563 52.91584778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab40 -00005564 52.91584778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab40 -00005565 52.91587448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab50 -00005566 52.91587448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab50 -00005567 52.91590118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab60 -00005568 52.91590500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab60 -00005569 52.91592789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab70 -00005570 52.91593170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab70 -00005571 52.91596222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab80 -00005572 52.91596222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab80 -00005573 52.91598892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab90 -00005574 52.91598892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xab90 -00005575 52.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba0 -00005576 52.91601944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba0 -00005577 52.91604614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -00005578 52.91604614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -00005579 52.91607285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -00005580 52.91607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -00005581 52.91610336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -00005582 52.91610718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -00005583 52.91613007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -00005584 52.91613388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -00005585 52.91616058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf0 -00005586 52.91616440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf0 -00005587 52.91618729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac00 -00005588 52.91618729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac00 -00005589 52.91621399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac10 -00005590 52.91621780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac10 -00005591 52.91624451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac20 -00005592 52.91624451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac20 -00005593 52.91627121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac30 -00005594 52.91627502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac30 -00005595 52.91630173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac40 -00005596 52.91630554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac40 -00005597 52.91632843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac50 -00005598 52.91633224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac50 -00005599 52.91635895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac60 -00005600 52.91636276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac60 -00005601 52.91638565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac70 -00005602 52.91638565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac70 -00005603 52.91641235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac80 -00005604 52.91641617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac80 -00005605 52.91644287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac90 -00005606 52.91644669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xac90 -00005607 52.91646957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca0 -00005608 52.91647339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca0 -00005609 52.91650009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb0 -00005610 52.91650391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb0 -00005611 52.91652679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc0 -00005612 52.91653061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc0 -00005613 52.91655731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd0 -00005614 52.91656113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd0 -00005615 52.91658401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xace0 -00005616 52.91658783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xace0 -00005617 52.91661453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf0 -00005618 52.91661835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf0 -00005619 52.91664505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad00 -00005620 52.91664505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad00 -00005621 52.91667557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad10 -00005622 52.91667557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad10 -00005623 52.91670227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad20 -00005624 52.91670227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad20 -00005625 52.91672897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad30 -00005626 52.91673279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad30 -00005627 52.91675949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad40 -00005628 52.91676331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad40 -00005629 52.91678619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad50 -00005630 52.91679001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad50 -00005631 52.91681671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad60 -00005632 52.91682053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad60 -00005633 52.91684341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad70 -00005634 52.91684723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad70 -00005635 52.91687393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad80 -00005636 52.91687775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad80 -00005637 52.91690063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad90 -00005638 52.91690063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad90 -00005639 52.91692734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xada0 -00005640 52.91693115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xada0 -00005641 52.91695786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb0 -00005642 52.91696167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb0 -00005643 52.91698456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc0 -00005644 52.91698837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc0 -00005645 52.91701508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd0 -00005646 52.91701889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd0 -00005647 52.91704178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xade0 -00005648 52.91704559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xade0 -00005649 52.91707230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf0 -00005650 52.91707611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf0 -00005651 52.91709900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae00 -00005652 52.91709900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae00 -00005653 52.91712952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae10 -00005654 52.91712952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae10 -00005655 52.91716003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae20 -00005656 52.91716003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae20 -00005657 52.91718292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae30 -00005658 52.91718674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae30 -00005659 52.91721725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae40 -00005660 52.91721725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae40 -00005661 52.91724014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae50 -00005662 52.91724396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae50 -00005663 52.91727066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae60 -00005664 52.91727448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae60 -00005665 52.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae70 -00005666 52.91730118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae70 -00005667 52.91732788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae80 -00005668 52.91733170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae80 -00005669 52.91735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae90 -00005670 52.91735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae90 -00005671 52.91738510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea0 -00005672 52.91738892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea0 -00005673 52.91741562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb0 -00005674 52.91741943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb0 -00005675 52.91744232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec0 -00005676 52.91744614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec0 -00005677 52.91747284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed0 -00005678 52.91747665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed0 -00005679 52.91749954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee0 -00005680 52.91749954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee0 -00005681 52.91752625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef0 -00005682 52.91753006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef0 -00005683 52.91755676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf00 -00005684 52.91755676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf00 -00005685 52.91758347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf10 -00005686 52.91758728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf10 -00005687 52.91761398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf20 -00005688 52.91761780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf20 -00005689 52.91764069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf30 -00005690 52.91764450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf30 -00005691 52.91767120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf40 -00005692 52.91767502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf40 -00005693 52.91769791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf50 -00005694 52.91769791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf50 -00005695 52.91772842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf60 -00005696 52.91772842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf60 -00005697 52.91775513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -00005698 52.91775513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -00005699 52.91778183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -00005700 52.91778564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -00005701 52.91781235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -00005702 52.91781616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -00005703 52.91783905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -00005704 52.91784286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -00005705 52.91786957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -00005706 52.91787338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -00005707 52.91789627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -00005708 52.91790009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -00005709 52.91792679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -00005710 52.91793060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -00005711 52.91795349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -00005712 52.91795731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -00005713 52.91798401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -00005714 52.91798401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -00005715 52.91801453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -00005716 52.91801453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -00005717 52.91803741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -00005718 52.91804123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -00005719 52.91806793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb020 -00005720 52.91807175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb020 -00005721 52.91809464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb030 -00005722 52.91809845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb030 -00005723 52.91812515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb040 -00005724 52.91812897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb040 -00005725 52.91815186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb050 -00005726 52.91815567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb050 -00005727 52.91818237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb060 -00005728 52.91818619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb060 -00005729 52.91821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb070 -00005730 52.91821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb070 -00005731 52.91823578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb080 -00005732 52.91823959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb080 -00005733 52.91826630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb090 -00005734 52.91827011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb090 -00005735 52.91829300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a0 -00005736 52.91829681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a0 -00005737 52.91832352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b0 -00005738 52.91832733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b0 -00005739 52.91835022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c0 -00005740 52.91835403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c0 -00005741 52.91838074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d0 -00005742 52.91838455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d0 -00005743 52.91841125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e0 -00005744 52.91841125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e0 -00005745 52.91843796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f0 -00005746 52.91843796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f0 -00005747 52.91846848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb100 -00005748 52.91846848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb100 -00005749 52.91849136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb110 -00005750 52.91849518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb110 -00005751 52.91852188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb120 -00005752 52.91852570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb120 -00005753 52.91854858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb130 -00005754 52.91855240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb130 -00005755 52.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb140 -00005756 52.91858292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb140 -00005757 52.91860962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb150 -00005758 52.91860962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb150 -00005759 52.91863632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb160 -00005760 52.91864014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb160 -00005761 52.91866684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb170 -00005762 52.91866684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb170 -00005763 52.91868973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb180 -00005764 52.91869354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb180 -00005765 52.91872025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb190 -00005766 52.91872406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb190 -00005767 52.91874695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a0 -00005768 52.91875076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a0 -00005769 52.91877747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b0 -00005770 52.91878128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b0 -00005771 52.91880798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -00005772 52.91880798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -00005773 52.91883469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -00005774 52.91883850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -00005775 52.91886520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -00005776 52.91886902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -00005777 52.91889191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -00005778 52.91889191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -00005779 52.91891861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -00005780 52.91892242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -00005781 52.91894531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -00005782 52.91894913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -00005783 52.91897583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -00005784 52.91897964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -00005785 52.91900635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -00005786 52.91900635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -00005787 52.91903305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -00005788 52.91903687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -00005789 52.91906357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -00005790 52.91906738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -00005791 52.91909027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -00005792 52.91909409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -00005793 52.91912079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -00005794 52.91912460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -00005795 52.91914749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -00005796 52.91914749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -00005797 52.91917801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -00005798 52.91917801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -00005799 52.91920471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -00005800 52.91920471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -00005801 52.91923141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -00005802 52.91923523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -00005803 52.91926193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -00005804 52.91926575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -00005805 52.91928864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -00005806 52.91929245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -00005807 52.91931915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -00005808 52.91932297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -00005809 52.91934586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -00005810 52.91934586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -00005811 52.91937256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb300 -00005812 52.91937637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb300 -00005813 52.91940308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb310 -00005814 52.91940308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb310 -00005815 52.91942978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb320 -00005816 52.91943359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb320 -00005817 52.91946030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb330 -00005818 52.91946411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb330 -00005819 52.91948700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb340 -00005820 52.91949081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb340 -00005821 52.91951752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb350 -00005822 52.91952133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb350 -00005823 52.91954422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb360 -00005824 52.91954803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb360 -00005825 52.91957474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb370 -00005826 52.91957474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb370 -00005827 52.91960144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb380 -00005828 52.91960144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb380 -00005829 52.91962814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb390 -00005830 52.91963196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb390 -00005831 52.91965866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a0 -00005832 52.91966248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a0 -00005833 52.91968536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b0 -00005834 52.91968918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b0 -00005835 52.91971588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c0 -00005836 52.91971970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c0 -00005837 52.91974258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d0 -00005838 52.91974640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d0 -00005839 52.91977310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e0 -00005840 52.91977692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e0 -00005841 52.91979980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f0 -00005842 52.91980362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f0 -00005843 52.91983032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb400 -00005844 52.91983414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb400 -00005845 52.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb410 -00005846 52.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb410 -00005847 52.91988373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb420 -00005848 52.91988754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb420 -00005849 52.91991425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb430 -00005850 52.91991806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb430 -00005851 52.91994095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb440 -00005852 52.91994476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb440 -00005853 52.91997147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb450 -00005854 52.91997528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb450 -00005855 52.91999817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb460 -00005856 52.92000198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb460 -00005857 52.92002869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb470 -00005858 52.92003250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb470 -00005859 52.92005920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb480 -00005860 52.92005920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb480 -00005861 52.92008209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb490 -00005862 52.92008591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb490 -00005863 52.92011261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a0 -00005864 52.92011642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a0 -00005865 52.92013931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b0 -00005866 52.92014313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b0 -00005867 52.92016983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c0 -00005868 52.92017365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c0 -00005869 52.92019653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d0 -00005870 52.92020035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d0 -00005871 52.92022705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e0 -00005872 52.92023087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e0 -00005873 52.92025757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f0 -00005874 52.92025757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f0 -00005875 52.92028427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb500 -00005876 52.92028427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb500 -00005877 52.92031479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb510 -00005878 52.92031860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb510 -00005879 52.92034149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb520 -00005880 52.92034531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb520 -00005881 52.92037201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb530 -00005882 52.92037582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb530 -00005883 52.92039871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb540 -00005884 52.92040253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb540 -00005885 52.92042923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb550 -00005886 52.92043304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb550 -00005887 52.92045593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb560 -00005888 52.92045593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb560 -00005889 52.92048264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb570 -00005890 52.92048645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb570 -00005891 52.92051315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb580 -00005892 52.92051697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb580 -00005893 52.92053986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb590 -00005894 52.92054367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb590 -00005895 52.92057037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a0 -00005896 52.92057419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a0 -00005897 52.92059708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b0 -00005898 52.92060089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b0 -00005899 52.92062759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c0 -00005900 52.92063141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c0 -00005901 52.92065430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d0 -00005902 52.92065430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d0 -00005903 52.92068481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e0 -00005904 52.92068481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e0 -00005905 52.92071152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -00005906 52.92071533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -00005907 52.92073822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -00005908 52.92074203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -00005909 52.92076874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -00005910 52.92077255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -00005911 52.92079544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -00005912 52.92079926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -00005913 52.92082596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -00005914 52.92082977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -00005915 52.92085266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -00005916 52.92085648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -00005917 52.92088318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -00005918 52.92088699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -00005919 52.92091370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -00005920 52.92091370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -00005921 52.92094040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -00005922 52.92094040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -00005923 52.92097092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -00005924 52.92097092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -00005925 52.92099380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -00005926 52.92099762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -00005927 52.92102432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a0 -00005928 52.92102814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a0 -00005929 52.92105103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b0 -00005930 52.92105484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b0 -00005931 52.92108154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c0 -00005932 52.92108536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c0 -00005933 52.92111206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d0 -00005934 52.92111206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d0 -00005935 52.92113876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e0 -00005936 52.92113876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e0 -00005937 52.92116928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f0 -00005938 52.92116928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f0 -00005939 52.92119217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb700 -00005940 52.92119598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb700 -00005941 52.92122269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb710 -00005942 52.92122650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb710 -00005943 52.92124939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb720 -00005944 52.92125320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb720 -00005945 52.92127991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb730 -00005946 52.92128372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb730 -00005947 52.92131042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb740 -00005948 52.92131042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb740 -00005949 52.92133713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb750 -00005950 52.92133713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb750 -00005951 52.92136383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb760 -00005952 52.92136765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb760 -00005953 52.92139053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb770 -00005954 52.92139435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb770 -00005955 52.92142105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb780 -00005956 52.92142487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb780 -00005957 52.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb790 -00005958 52.92145157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb790 -00005959 52.92147827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a0 -00005960 52.92148209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a0 -00005961 52.92150879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b0 -00005962 52.92150879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b0 -00005963 52.92153549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c0 -00005964 52.92153549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c0 -00005965 52.92156601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d0 -00005966 52.92156982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d0 -00005967 52.92159271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e0 -00005968 52.92159271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e0 -00005969 52.92161942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f0 -00005970 52.92162323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f0 -00005971 52.92164612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb800 -00005972 52.92164993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb800 -00005973 52.92167664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb810 -00005974 52.92168045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb810 -00005975 52.92170715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb820 -00005976 52.92170715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb820 -00005977 52.92173386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb830 -00005978 52.92173767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb830 -00005979 52.92176437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb840 -00005980 52.92176819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb840 -00005981 52.92179108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb850 -00005982 52.92179108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb850 -00005983 52.92181778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb860 -00005984 52.92182159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb860 -00005985 52.92184830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb870 -00005986 52.92184830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb870 -00005987 52.92187500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb880 -00005988 52.92187881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb880 -00005989 52.92190552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb890 -00005990 52.92190552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb890 -00005991 52.92193222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a0 -00005992 52.92193604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a0 -00005993 52.92196274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b0 -00005994 52.92196655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b0 -00005995 52.92198944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c0 -00005996 52.92198944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c0 -00005997 52.92201614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d0 -00005998 52.92201996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d0 -00005999 52.92204666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e0 -00006000 52.92204666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e0 -00006001 52.92207336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f0 -00006002 52.92207718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f0 -00006003 52.92210388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb900 -00006004 52.92210388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb900 -00006005 52.92213058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb910 -00006006 52.92213440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb910 -00006007 52.92216110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb920 -00006008 52.92216492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb920 -00006009 52.92218781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb930 -00006010 52.92219162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb930 -00006011 52.92221832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb940 -00006012 52.92222214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb940 -00006013 52.92224503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb950 -00006014 52.92224503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb950 -00006015 52.92227173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb960 -00006016 52.92227554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb960 -00006017 52.92230225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb970 -00006018 52.92230225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb970 -00006019 52.92232895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb980 -00006020 52.92233276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb980 -00006021 52.92235947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb990 -00006022 52.92236328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb990 -00006023 52.92238617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a0 -00006024 52.92238998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a0 -00006025 52.92241669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b0 -00006026 52.92242050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b0 -00006027 52.92244339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c0 -00006028 52.92244339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c0 -00006029 52.92247009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d0 -00006030 52.92247391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d0 -00006031 52.92250061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e0 -00006032 52.92250061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e0 -00006033 52.92252731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f0 -00006034 52.92253113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f0 -00006035 52.92255783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba00 -00006036 52.92256165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba00 -00006037 52.92258453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba10 -00006038 52.92258835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba10 -00006039 52.92261505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba20 -00006040 52.92261887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba20 -00006041 52.92264175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba30 -00006042 52.92264175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba30 -00006043 52.92266846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba40 -00006044 52.92267227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba40 -00006045 52.92269897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba50 -00006046 52.92269897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba50 -00006047 52.92272568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba60 -00006048 52.92272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba60 -00006049 52.92275620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba70 -00006050 52.92276001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba70 -00006051 52.92278290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba80 -00006052 52.92278671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba80 -00006053 52.92281342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba90 -00006054 52.92281723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xba90 -00006055 52.92284012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa0 -00006056 52.92284393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa0 -00006057 52.92287064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab0 -00006058 52.92287064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab0 -00006059 52.92289734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac0 -00006060 52.92289734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac0 -00006061 52.92292404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad0 -00006062 52.92292786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad0 -00006063 52.92295456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae0 -00006064 52.92295837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae0 -00006065 52.92298126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf0 -00006066 52.92298508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf0 -00006067 52.92301178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb00 -00006068 52.92301559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb00 -00006069 52.92303848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb10 -00006070 52.92304230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb10 -00006071 52.92306900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb20 -00006072 52.92307281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb20 -00006073 52.92309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb30 -00006074 52.92309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb30 -00006075 52.92312241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb40 -00006076 52.92312622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb40 -00006077 52.92315292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb50 -00006078 52.92315674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb50 -00006079 52.92317963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb60 -00006080 52.92318344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb60 -00006081 52.92321014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb70 -00006082 52.92321396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb70 -00006083 52.92323685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb80 -00006084 52.92324066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb80 -00006085 52.92326736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb90 -00006086 52.92327118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb90 -00006087 52.92329788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba0 -00006088 52.92329788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba0 -00006089 52.92332458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb0 -00006090 52.92332840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb0 -00006091 52.92335510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc0 -00006092 52.92335510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc0 -00006093 52.92337799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd0 -00006094 52.92338181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd0 -00006095 52.92340851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe0 -00006096 52.92341232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe0 -00006097 52.92343521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf0 -00006098 52.92343903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf0 -00006099 52.92346573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc00 -00006100 52.92346954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc00 -00006101 52.92349625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc10 -00006102 52.92349625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc10 -00006103 52.92352295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc20 -00006104 52.92352676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc20 -00006105 52.92355347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc30 -00006106 52.92355347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc30 -00006107 52.92358017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc40 -00006108 52.92358398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc40 -00006109 52.92361069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc50 -00006110 52.92361069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc50 -00006111 52.92363358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc60 -00006112 52.92363739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc60 -00006113 52.92366409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc70 -00006114 52.92366791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc70 -00006115 52.92369461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc80 -00006116 52.92369461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc80 -00006117 52.92372131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc90 -00006118 52.92372513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc90 -00006119 52.92375183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca0 -00006120 52.92375183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca0 -00006121 52.92377853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb0 -00006122 52.92378235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb0 -00006123 52.92380905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc0 -00006124 52.92381287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc0 -00006125 52.92383575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd0 -00006126 52.92383957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd0 -00006127 52.92386627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce0 -00006128 52.92386627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce0 -00006129 52.92389297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf0 -00006130 52.92389297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf0 -00006131 52.92391968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd00 -00006132 52.92392349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd00 -00006133 52.92395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd10 -00006134 52.92395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd10 -00006135 52.92397690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd20 -00006136 52.92398071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd20 -00006137 52.92400742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd30 -00006138 52.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd30 -00006139 52.92403412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd40 -00006140 52.92403793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd40 -00006141 52.92406464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd50 -00006142 52.92406845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd50 -00006143 52.92409134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd60 -00006144 52.92409515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd60 -00006145 52.92412186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd70 -00006146 52.92412567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd70 -00006147 52.92414856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd80 -00006148 52.92414856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd80 -00006149 52.92417526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd90 -00006150 52.92417908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd90 -00006151 52.92420578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda0 -00006152 52.92420959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda0 -00006153 52.92423248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb0 -00006154 52.92423630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb0 -00006155 52.92426300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc0 -00006156 52.92426682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc0 -00006157 52.92428970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd0 -00006158 52.92429352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd0 -00006159 52.92432022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde0 -00006160 52.92432404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde0 -00006161 52.92434692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf0 -00006162 52.92435074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf0 -00006163 52.92437744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe00 -00006164 52.92437744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe00 -00006165 52.92440414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe10 -00006166 52.92440796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe10 -00006167 52.92443085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe20 -00006168 52.92443466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe20 -00006169 52.92446136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe30 -00006170 52.92446518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe30 -00006171 52.92448807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe40 -00006172 52.92449188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe40 -00006173 52.92451859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe50 -00006174 52.92452240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe50 -00006175 52.92454910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe60 -00006176 52.92454910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe60 -00006177 52.92457581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe70 -00006178 52.92457581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe70 -00006179 52.92460251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe80 -00006180 52.92460632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe80 -00006181 52.92462921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe90 -00006182 52.92463303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe90 -00006183 52.92465973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea0 -00006184 52.92466354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea0 -00006185 52.92469025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb0 -00006186 52.92469025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb0 -00006187 52.92472076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec0 -00006188 52.92472458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec0 -00006189 52.92474747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed0 -00006190 52.92474747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed0 -00006191 52.92477417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee0 -00006192 52.92477798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee0 -00006193 52.92480469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef0 -00006194 52.92480469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef0 -00006195 52.92483139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf00 -00006196 52.92483521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf00 -00006197 52.92486191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf10 -00006198 52.92486572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf10 -00006199 52.92488861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf20 -00006200 52.92489243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf20 -00006201 52.92491913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf30 -00006202 52.92492294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf30 -00006203 52.92494583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf40 -00006204 52.92494583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf40 -00006205 52.92497635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf50 -00006206 52.92497635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf50 -00006207 52.92500305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf60 -00006208 52.92500305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf60 -00006209 52.92502975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf70 -00006210 52.92503357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf70 -00006211 52.92506027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf80 -00006212 52.92506409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf80 -00006213 52.92508698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf90 -00006214 52.92509079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf90 -00006215 52.92511749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa0 -00006216 52.92512131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa0 -00006217 52.92514420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb0 -00006218 52.92514801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb0 -00006219 52.92517471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc0 -00006220 52.92517471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc0 -00006221 52.92520142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd0 -00006222 52.92520142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd0 -00006223 52.92522812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe0 -00006224 52.92523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe0 -00006225 52.92525864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff0 -00006226 52.92526245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff0 -00006227 52.92528534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc000 -00006228 52.92528915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc000 -00006229 52.92531586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc010 -00006230 52.92531967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc010 -00006231 52.92534256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc020 -00006232 52.92534637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc020 -00006233 52.92537308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc030 -00006234 52.92537689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc030 -00006235 52.92539978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc040 -00006236 52.92539978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc040 -00006237 52.92543030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc050 -00006238 52.92543411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc050 -00006239 52.92546082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc060 -00006240 52.92546082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc060 -00006241 52.92548370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc070 -00006242 52.92548752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc070 -00006243 52.92551422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc080 -00006244 52.92551804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc080 -00006245 52.92554092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc090 -00006246 52.92554474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc090 -00006247 52.92557144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a0 -00006248 52.92557526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a0 -00006249 52.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b0 -00006250 52.92560196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b0 -00006251 52.92562866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c0 -00006252 52.92563248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c0 -00006253 52.92565918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d0 -00006254 52.92565918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d0 -00006255 52.92568588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e0 -00006256 52.92568970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e0 -00006257 52.92571640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f0 -00006258 52.92571640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f0 -00006259 52.92574310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc100 -00006260 52.92574692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc100 -00006261 52.92577362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc110 -00006262 52.92577362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc110 -00006263 52.92579651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc120 -00006264 52.92580032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc120 -00006265 52.92582703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc130 -00006266 52.92583084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc130 -00006267 52.92585754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc140 -00006268 52.92585754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc140 -00006269 52.92588425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc150 -00006270 52.92588806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc150 -00006271 52.92591476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc160 -00006272 52.92591858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc160 -00006273 52.92594147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc170 -00006274 52.92594528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc170 -00006275 52.92597198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc180 -00006276 52.92597580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc180 -00006277 52.92599869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc190 -00006278 52.92600250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc190 -00006279 52.92602921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a0 -00006280 52.92602921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a0 -00006281 52.92605591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b0 -00006282 52.92605591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b0 -00006283 52.92608261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c0 -00006284 52.92608643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c0 -00006285 52.92611313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d0 -00006286 52.92611694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d0 -00006287 52.92613983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e0 -00006288 52.92614365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e0 -00006289 52.92617035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f0 -00006290 52.92617416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f0 -00006291 52.92619705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc200 -00006292 52.92620087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc200 -00006293 52.92622757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc210 -00006294 52.92623138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc210 -00006295 52.92625427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc220 -00006296 52.92625427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc220 -00006297 52.92628479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc230 -00006298 52.92628479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc230 -00006299 52.92631149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc240 -00006300 52.92631531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc240 -00006301 52.92633820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc250 -00006302 52.92634201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc250 -00006303 52.92636871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc260 -00006304 52.92637253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc260 -00006305 52.92639542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc270 -00006306 52.92639923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc270 -00006307 52.92642593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc280 -00006308 52.92642975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc280 -00006309 52.92645264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc290 -00006310 52.92645645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc290 -00006311 52.92648315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a0 -00006312 52.92648697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a0 -00006313 52.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b0 -00006314 52.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b0 -00006315 52.92654037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c0 -00006316 52.92654037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c0 -00006317 52.92657089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d0 -00006318 52.92657089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d0 -00006319 52.92659760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e0 -00006320 52.92659760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e0 -00006321 52.92662430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f0 -00006322 52.92662811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f0 -00006323 52.92665100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc300 -00006324 52.92665482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc300 -00006325 52.92668152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc310 -00006326 52.92668533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc310 -00006327 52.92671204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc320 -00006328 52.92671204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc320 -00006329 52.92673874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc330 -00006330 52.92674255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc330 -00006331 52.92676926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc340 -00006332 52.92676926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc340 -00006333 52.92679214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc350 -00006334 52.92679596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc350 -00006335 52.92682266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc360 -00006336 52.92682648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc360 -00006337 52.92684937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc370 -00006338 52.92685318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc370 -00006339 52.92687988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc380 -00006340 52.92688370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc380 -00006341 52.92691040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc390 -00006342 52.92691040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc390 -00006343 52.92693710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a0 -00006344 52.92694092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a0 -00006345 52.92696762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b0 -00006346 52.92696762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b0 -00006347 52.92699432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c0 -00006348 52.92699432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c0 -00006349 52.92702103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d0 -00006350 52.92702484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d0 -00006351 52.92704773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e0 -00006352 52.92705154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e0 -00006353 52.92707825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f0 -00006354 52.92708206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f0 -00006355 52.92710876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc400 -00006356 52.92710876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc400 -00006357 52.92713547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc410 -00006358 52.92713928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc410 -00006359 52.92716599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc420 -00006360 52.92716980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc420 -00006361 52.92719269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc430 -00006362 52.92719650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc430 -00006363 52.92722321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc440 -00006364 52.92722321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc440 -00006365 52.92724991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc450 -00006366 52.92724991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc450 -00006367 52.92727661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc460 -00006368 52.92728043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc460 -00006369 52.92730713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc470 -00006370 52.92730713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc470 -00006371 52.92733383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc480 -00006372 52.92733765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc480 -00006373 52.92736435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc490 -00006374 52.92736816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc490 -00006375 52.92739105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a0 -00006376 52.92739487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a0 -00006377 52.92742157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b0 -00006378 52.92742538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b0 -00006379 52.92744827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c0 -00006380 52.92744827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c0 -00006381 52.92747498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d0 -00006382 52.92747879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d0 -00006383 52.92750549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e0 -00006384 52.92750549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e0 -00006385 52.92753220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f0 -00006386 52.92753601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f0 -00006387 52.92756271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc500 -00006388 52.92756653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc500 -00006389 52.92758942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc510 -00006390 52.92759323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc510 -00006391 52.92761993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc520 -00006392 52.92762375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc520 -00006393 52.92764664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc530 -00006394 52.92764664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc530 -00006395 52.92767334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc540 -00006396 52.92767715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc540 -00006397 52.92770386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc550 -00006398 52.92770386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc550 -00006399 52.92773056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc560 -00006400 52.92773438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc560 -00006401 52.92776108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc570 -00006402 52.92776489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc570 -00006403 52.92778778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc580 -00006404 52.92779160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc580 -00006405 52.92781830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc590 -00006406 52.92782211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc590 -00006407 52.92784500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a0 -00006408 52.92784882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a0 -00006409 52.92787552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b0 -00006410 52.92787933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b0 -00006411 52.92790222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c0 -00006412 52.92790604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c0 -00006413 52.92793274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d0 -00006414 52.92793655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d0 -00006415 52.92796326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e0 -00006416 52.92796326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e0 -00006417 52.92798996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f0 -00006418 52.92798996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f0 -00006419 52.92801666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc600 -00006420 52.92802048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc600 -00006421 52.92804337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc610 -00006422 52.92804718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc610 -00006423 52.92807388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc620 -00006424 52.92807770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc620 -00006425 52.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc630 -00006426 52.92810440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc630 -00006427 52.92813110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc640 -00006428 52.92813492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc640 -00006429 52.92816162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc650 -00006430 52.92816162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc650 -00006431 52.92818832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc660 -00006432 52.92818832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc660 -00006433 52.92821503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc670 -00006434 52.92821884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc670 -00006435 52.92824173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc680 -00006436 52.92824554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc680 -00006437 52.92827225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc690 -00006438 52.92827606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc690 -00006439 52.92829895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a0 -00006440 52.92830276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a0 -00006441 52.92832947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b0 -00006442 52.92833328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b0 -00006443 52.92835999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c0 -00006444 52.92835999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c0 -00006445 52.92838669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d0 -00006446 52.92838669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d0 -00006447 52.92841721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e0 -00006448 52.92841721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e0 -00006449 52.92844391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f0 -00006450 52.92844391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f0 -00006451 52.92847061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc700 -00006452 52.92847443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc700 -00006453 52.92849731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc710 -00006454 52.92850113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc710 -00006455 52.92852783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc720 -00006456 52.92853165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc720 -00006457 52.92855835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc730 -00006458 52.92855835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc730 -00006459 52.92858505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc740 -00006460 52.92858887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc740 -00006461 52.92861557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc750 -00006462 52.92861938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc750 -00006463 52.92864227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc760 -00006464 52.92864227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc760 -00006465 52.92866898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc770 -00006466 52.92867279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc770 -00006467 52.92869949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc780 -00006468 52.92869949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc780 -00006469 52.92872620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc790 -00006470 52.92873001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc790 -00006471 52.92875671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a0 -00006472 52.92875671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a0 -00006473 52.92878342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b0 -00006474 52.92878723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b0 -00006475 52.92881393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c0 -00006476 52.92881775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c0 -00006477 52.92884064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d0 -00006478 52.92884064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d0 -00006479 52.92887115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e0 -00006480 52.92887115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e0 -00006481 52.92889786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f0 -00006482 52.92889786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f0 -00006483 52.92892456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc800 -00006484 52.92892838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc800 -00006485 52.92895508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc810 -00006486 52.92895508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc810 -00006487 52.92898178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc820 -00006488 52.92898560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc820 -00006489 52.92901230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc830 -00006490 52.92901611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc830 -00006491 52.92903900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc840 -00006492 52.92904282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc840 -00006493 52.92906952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc850 -00006494 52.92906952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc850 -00006495 52.92909622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc860 -00006496 52.92909622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc860 -00006497 52.92912292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc870 -00006498 52.92912674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc870 -00006499 52.92915344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc880 -00006500 52.92915344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc880 -00006501 52.92918015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc890 -00006502 52.92918396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc890 -00006503 52.92921066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a0 -00006504 52.92921448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a0 -00006505 52.92923737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b0 -00006506 52.92924118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b0 -00006507 52.92926788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c0 -00006508 52.92926788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c0 -00006509 52.92929459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d0 -00006510 52.92929459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d0 -00006511 52.92932129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e0 -00006512 52.92932510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e0 -00006513 52.92935181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f0 -00006514 52.92935181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f0 -00006515 52.92937851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc900 -00006516 52.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc900 -00006517 52.92940903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc910 -00006518 52.92941284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc910 -00006519 52.92943573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc920 -00006520 52.92943954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc920 -00006521 52.92946625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc930 -00006522 52.92946625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc930 -00006523 52.92949295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc940 -00006524 52.92949295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc940 -00006525 52.92951965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc950 -00006526 52.92952347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc950 -00006527 52.92955017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc960 -00006528 52.92955017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc960 -00006529 52.92957687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc970 -00006530 52.92958069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc970 -00006531 52.92960739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc980 -00006532 52.92961121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc980 -00006533 52.92963409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc990 -00006534 52.92963791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc990 -00006535 52.92966461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a0 -00006536 52.92966843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a0 -00006537 52.92969131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b0 -00006538 52.92969513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b0 -00006539 52.92972183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c0 -00006540 52.92972946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c0 -00006541 52.92975235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d0 -00006542 52.92975235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d0 -00006543 52.92977905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e0 -00006544 52.92978287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e0 -00006545 52.92980957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f0 -00006546 52.92980957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f0 -00006547 52.92983627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca00 -00006548 52.92984009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca00 -00006549 52.92986679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca10 -00006550 52.92987061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca10 -00006551 52.92989349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca20 -00006552 52.92989731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca20 -00006553 52.92992401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca30 -00006554 52.92992783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca30 -00006555 52.92995071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca40 -00006556 52.92995453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca40 -00006557 52.92998123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca50 -00006558 52.92998505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca50 -00006559 52.93000793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca60 -00006560 52.93000793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca60 -00006561 52.93003464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca70 -00006562 52.93003845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca70 -00006563 52.93006516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca80 -00006564 52.93006897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca80 -00006565 52.93009186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca90 -00006566 52.93009567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xca90 -00006567 52.93012238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa0 -00006568 52.93012619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa0 -00006569 52.93014908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab0 -00006570 52.93015289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab0 -00006571 52.93017960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac0 -00006572 52.93018341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac0 -00006573 52.93020630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad0 -00006574 52.93020630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad0 -00006575 52.93023300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae0 -00006576 52.93023682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae0 -00006577 52.93026352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf0 -00006578 52.93026733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf0 -00006579 52.93029022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb00 -00006580 52.93029404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb00 -00006581 52.93032074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb10 -00006582 52.93032455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb10 -00006583 52.93034744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb20 -00006584 52.93035126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb20 -00006585 52.93037796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb30 -00006586 52.93038177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb30 -00006587 52.93040466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb40 -00006588 52.93040848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb40 -00006589 52.93043518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb50 -00006590 52.93043900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb50 -00006591 52.93046570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb60 -00006592 52.93046570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb60 -00006593 52.93049240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb70 -00006594 52.93049622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb70 -00006595 52.93052292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb80 -00006596 52.93052292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb80 -00006597 52.93055344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb90 -00006598 52.93055344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb90 -00006599 52.93058014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba0 -00006600 52.93058395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba0 -00006601 52.93060684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb0 -00006602 52.93061066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb0 -00006603 52.93063736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc0 -00006604 52.93064117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc0 -00006605 52.93066406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd0 -00006606 52.93066788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd0 -00006607 52.93069458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe0 -00006608 52.93069839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe0 -00006609 52.93072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf0 -00006610 52.93072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf0 -00006611 52.93075180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc00 -00006612 52.93075562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc00 -00006613 52.93078232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc10 -00006614 52.93078232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc10 -00006615 52.93080902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc20 -00006616 52.93081284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc20 -00006617 52.93083954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc30 -00006618 52.93084335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc30 -00006619 52.93086624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc40 -00006620 52.93087006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc40 -00006621 52.93089676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc50 -00006622 52.93090057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc50 -00006623 52.93092346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc60 -00006624 52.93092728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc60 -00006625 52.93095398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc70 -00006626 52.93095779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc70 -00006627 52.93098068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc80 -00006628 52.93098450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc80 -00006629 52.93101120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc90 -00006630 52.93101501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc90 -00006631 52.93104172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca0 -00006632 52.93104172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca0 -00006633 52.93107605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb0 -00006634 52.93107986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb0 -00006635 52.93110275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc0 -00006636 52.93110657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc0 -00006637 52.93113327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd0 -00006638 52.93113708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd0 -00006639 52.93115997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce0 -00006640 52.93116379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce0 -00006641 52.93119049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf0 -00006642 52.93119431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf0 -00006643 52.93122101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd00 -00006644 52.93122101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd00 -00006645 52.93124771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd10 -00006646 52.93125153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd10 -00006647 52.93127823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd20 -00006648 52.93127823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd20 -00006649 52.93130493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd30 -00006650 52.93130493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd30 -00006651 52.93133545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd40 -00006652 52.93133926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd40 -00006653 52.93137741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd50 -00006654 52.93138123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd50 -00006655 52.93141937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd60 -00006656 52.93142319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd60 -00006657 52.93146133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd70 -00006658 52.93146896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd70 -00006659 52.93150711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd80 -00006660 52.93151093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd80 -00006661 52.93155289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd90 -00006662 52.93155670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd90 -00006663 52.93159866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda0 -00006664 52.93159866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda0 -00006665 52.93163681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb0 -00006666 52.93164444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb0 -00006667 52.93168259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc0 -00006668 52.93168640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc0 -00006669 52.93172836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd0 -00006670 52.93173218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd0 -00006671 52.93177032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde0 -00006672 52.93177414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde0 -00006673 52.93181229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf0 -00006674 52.93181610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf0 -00006675 52.93185425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce00 -00006676 52.93185806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce00 -00006677 52.93189621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce10 -00006678 52.93190384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce10 -00006679 52.93194199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce20 -00006680 52.93194962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce20 -00006681 52.93198776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce30 -00006682 52.93199158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce30 -00006683 52.93202972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce40 -00006684 52.93203354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce40 -00006685 52.93207550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce50 -00006686 52.93207550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce50 -00006687 52.93211365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce60 -00006688 52.93212128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce60 -00006689 52.93215942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce70 -00006690 52.93216324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce70 -00006691 52.93220520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce80 -00006692 52.93220901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce80 -00006693 52.93224716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce90 -00006694 52.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xce90 -00006695 52.93229294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea0 -00006696 52.93229675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea0 -00006697 52.93233490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb0 -00006698 52.93233871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb0 -00006699 52.93238068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec0 -00006700 52.93238449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec0 -00006701 52.93242264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xced0 -00006702 52.93243027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xced0 -00006703 52.93246841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee0 -00006704 52.93247223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee0 -00006705 52.93251419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef0 -00006706 52.93251801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef0 -00006707 52.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf00 -00006708 52.93256378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf00 -00006709 52.93260574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf10 -00006710 52.93260956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf10 -00006711 52.93264771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf20 -00006712 52.93265152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf20 -00006713 52.93268967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf30 -00006714 52.93269730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf30 -00006715 52.93273544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf40 -00006716 52.93273926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf40 -00006717 52.93277740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf50 -00006718 52.93278503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf50 -00006719 52.93282318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf60 -00006720 52.93282700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf60 -00006721 52.93286896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf70 -00006722 52.93287277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf70 -00006723 52.93289948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf80 -00006724 52.93290329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf80 -00006725 52.93292618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf90 -00006726 52.93292999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf90 -00006727 52.93295670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa0 -00006728 52.93296051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa0 -00006729 52.93298721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb0 -00006730 52.93298721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb0 -00006731 52.93301392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc0 -00006732 52.93301773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc0 -00006733 52.93304443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd0 -00006734 52.93304825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd0 -00006735 52.93307114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe0 -00006736 52.93307114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe0 -00006737 52.93310165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff0 -00006738 52.93310165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff0 -00006739 52.93312454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd000 -00006740 52.93312836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd000 -00006741 52.93315506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd010 -00006742 52.93315887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd010 -00006743 52.93318558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd020 -00006744 52.93318558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd020 -00006745 52.93321228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd030 -00006746 52.93321609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd030 -00006747 52.93324280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd040 -00006748 52.93324661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd040 -00006749 52.93326950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd050 -00006750 52.93326950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd050 -00006751 52.93330002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd060 -00006752 52.93330002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd060 -00006753 52.93332291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd070 -00006754 52.93332672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd070 -00006755 52.93335342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd080 -00006756 52.93335724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd080 -00006757 52.93338394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd090 -00006758 52.93338394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd090 -00006759 52.93341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a0 -00006760 52.93341446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a0 -00006761 52.93344116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b0 -00006762 52.93344498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b0 -00006763 52.93346786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c0 -00006764 52.93347168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c0 -00006765 52.93349838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d0 -00006766 52.93350220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d0 -00006767 52.93352509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e0 -00006768 52.93352890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e0 -00006769 52.93355560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f0 -00006770 52.93355942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f0 -00006771 52.93358231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd100 -00006772 52.93358612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd100 -00006773 52.93361282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd110 -00006774 52.93361664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd110 -00006775 52.93364334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd120 -00006776 52.93364334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd120 -00006777 52.93366623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd130 -00006778 52.93367004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd130 -00006779 52.93369675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd140 -00006780 52.93370056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd140 -00006781 52.93372345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd150 -00006782 52.93372726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd150 -00006783 52.93375397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd160 -00006784 52.93375778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd160 -00006785 52.93378067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd170 -00006786 52.93378448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd170 -00006787 52.93381119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -00006788 52.93381119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -00006789 52.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -00006790 52.93384171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -00006791 52.93386459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -00006792 52.93386841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -00006793 52.93389511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -00006794 52.93389893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -00006795 52.93392181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -00006796 52.93392563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -00006797 52.93395233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -00006798 52.93395615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -00006799 52.93397903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -00006800 52.93398285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -00006801 52.93400955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -00006802 52.93400955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -00006803 52.93403625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -00006804 52.93404007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -00006805 52.93406677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -00006806 52.93406677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -00006807 52.93409348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -00006808 52.93409729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -00006809 52.93412018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -00006810 52.93412399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -00006811 52.93415070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -00006812 52.93415451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -00006813 52.93417740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -00006814 52.93418121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -00006815 52.93420792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -00006816 52.93421173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -00006817 52.93423843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -00006818 52.93423843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -00006819 52.93426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -00006820 52.93426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -00006821 52.93429184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -00006822 52.93429565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -00006823 52.93431854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -00006824 52.93432236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -00006825 52.93434906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -00006826 52.93435287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -00006827 52.93437576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -00006828 52.93437958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -00006829 52.93440628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d0 -00006830 52.93441010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d0 -00006831 52.93443680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e0 -00006832 52.93443680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e0 -00006833 52.93445969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f0 -00006834 52.93446350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f0 -00006835 52.93449020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd300 -00006836 52.93449402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd300 -00006837 52.93451691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd310 -00006838 52.93452072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd310 -00006839 52.93454742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd320 -00006840 52.93455124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd320 -00006841 52.93457413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd330 -00006842 52.93457794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd330 -00006843 52.93460464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd340 -00006844 52.93460846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd340 -00006845 52.93463516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd350 -00006846 52.93463516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd350 -00006847 52.93466187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd360 -00006848 52.93466187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd360 -00006849 52.93469238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd370 -00006850 52.93469238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd370 -00006851 52.93471909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd380 -00006852 52.93471909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd380 -00006853 52.93474579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd390 -00006854 52.93474960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd390 -00006855 52.93477631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a0 -00006856 52.93477631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a0 -00006857 52.93480301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b0 -00006858 52.93480682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b0 -00006859 52.93483353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c0 -00006860 52.93483353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c0 -00006861 52.93486023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d0 -00006862 52.93486404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d0 -00006863 52.93489075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e0 -00006864 52.93489456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e0 -00006865 52.93491745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f0 -00006866 52.93491745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f0 -00006867 52.93494415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd400 -00006868 52.93494797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd400 -00006869 52.93497467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd410 -00006870 52.93497467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd410 -00006871 52.93500137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd420 -00006872 52.93500519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd420 -00006873 52.93503189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd430 -00006874 52.93503189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd430 -00006875 52.93505859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd440 -00006876 52.93506241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd440 -00006877 52.93508911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd450 -00006878 52.93509293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd450 -00006879 52.93511581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd460 -00006880 52.93511581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd460 -00006881 52.93514252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd470 -00006882 52.93514633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd470 -00006883 52.93517303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd480 -00006884 52.93517303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd480 -00006885 52.93519974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd490 -00006886 52.93520355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd490 -00006887 52.93523026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a0 -00006888 52.93523026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a0 -00006889 52.93525696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b0 -00006890 52.93526077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b0 -00006891 52.93528748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c0 -00006892 52.93529129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c0 -00006893 52.93531418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d0 -00006894 52.93531799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d0 -00006895 52.93534470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e0 -00006896 52.93534851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e0 -00006897 52.93537140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f0 -00006898 52.93537521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f0 -00006899 52.93540192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd500 -00006900 52.93540573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd500 -00006901 52.93542862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd510 -00006902 52.93542862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd510 -00006903 52.93545532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd520 -00006904 52.93545914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd520 -00006905 52.93548584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd530 -00006906 52.93548965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd530 -00006907 52.93551254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd540 -00006908 52.93551636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd540 -00006909 52.93554306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd550 -00006910 52.93554688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd550 -00006911 52.93556976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd560 -00006912 52.93557358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd560 -00006913 52.93560028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd570 -00006914 52.93560410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd570 -00006915 52.93562698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd580 -00006916 52.93563080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd580 -00006917 52.93565750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd590 -00006918 52.93566132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd590 -00006919 52.93568802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a0 -00006920 52.93568802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a0 -00006921 52.93571472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b0 -00006922 52.93571472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b0 -00006923 52.93574142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c0 -00006924 52.93574524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c0 -00006925 52.93576813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d0 -00006926 52.93577194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d0 -00006927 52.93579865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e0 -00006928 52.93580246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e0 -00006929 52.93582535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f0 -00006930 52.93582916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f0 -00006931 52.93585587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd600 -00006932 52.93585968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd600 -00006933 52.93588638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd610 -00006934 52.93588638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd610 -00006935 52.93591309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd620 -00006936 52.93591309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd620 -00006937 52.93594360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd630 -00006938 52.93594360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd630 -00006939 52.93596649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd640 -00006940 52.93597031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd640 -00006941 52.93599701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd650 -00006942 52.93600082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd650 -00006943 52.93602371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd660 -00006944 52.93602753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd660 -00006945 52.93605423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd670 -00006946 52.93605804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd670 -00006947 52.93608475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd680 -00006948 52.93608475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd680 -00006949 52.93611145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd690 -00006950 52.93611526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd690 -00006951 52.93614197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a0 -00006952 52.93614578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a0 -00006953 52.93616867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b0 -00006954 52.93616867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b0 -00006955 52.93619919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c0 -00006956 52.93619919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c0 -00006957 52.93622589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d0 -00006958 52.93622589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d0 -00006959 52.93625259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e0 -00006960 52.93625641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e0 -00006961 52.93628311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f0 -00006962 52.93628311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f0 -00006963 52.93630981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd700 -00006964 52.93631363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd700 -00006965 52.93634033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd710 -00006966 52.93634415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd710 -00006967 52.93636703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd720 -00006968 52.93636703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd720 -00006969 52.93639755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd730 -00006970 52.93639755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd730 -00006971 52.93642426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd740 -00006972 52.93642426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd740 -00006973 52.93645096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd750 -00006974 52.93645477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd750 -00006975 52.93648148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd760 -00006976 52.93648148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd760 -00006977 52.93650818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd770 -00006978 52.93651199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd770 -00006979 52.93653870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd780 -00006980 52.93654251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd780 -00006981 52.93656540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd790 -00006982 52.93656921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd790 -00006983 52.93659592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a0 -00006984 52.93659973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a0 -00006985 52.93662262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b0 -00006986 52.93662262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b0 -00006987 52.93664932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c0 -00006988 52.93665314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c0 -00006989 52.93667984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d0 -00006990 52.93667984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d0 -00006991 52.93670654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e0 -00006992 52.93671036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e0 -00006993 52.93673706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f0 -00006994 52.93674088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f0 -00006995 52.93676376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd800 -00006996 52.93676758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd800 -00006997 52.93679428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd810 -00006998 52.93679810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd810 -00006999 52.93682098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd820 -00007000 52.93682098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd820 -00007001 52.93684769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd830 -00007002 52.93685150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd830 -00007003 52.93687820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd840 -00007004 52.93687820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd840 -00007005 52.93690491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd850 -00007006 52.93690872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd850 -00007007 52.93693542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd860 -00007008 52.93693924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd860 -00007009 52.93696213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd870 -00007010 52.93696594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd870 -00007011 52.93699265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd880 -00007012 52.93699646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd880 -00007013 52.93701935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd890 -00007014 52.93701935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd890 -00007015 52.93704605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a0 -00007016 52.93704987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a0 -00007017 52.93707657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b0 -00007018 52.93707657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b0 -00007019 52.93710709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c0 -00007020 52.93711090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c0 -00007021 52.93713760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d0 -00007022 52.93713760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d0 -00007023 52.93716431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e0 -00007024 52.93716812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e0 -00007025 52.93719482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f0 -00007026 52.93719864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f0 -00007027 52.93722153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd900 -00007028 52.93722534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd900 -00007029 52.93725204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd910 -00007030 52.93725586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd910 -00007031 52.93727875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd920 -00007032 52.93728256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd920 -00007033 52.93730927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd930 -00007034 52.93731308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd930 -00007035 52.93733597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd940 -00007036 52.93733978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd940 -00007037 52.93736649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd950 -00007038 52.93736649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd950 -00007039 52.93739319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd960 -00007040 52.93739700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd960 -00007041 52.93741989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd970 -00007042 52.93742371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd970 -00007043 52.93745041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd980 -00007044 52.93745422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd980 -00007045 52.93748093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd990 -00007046 52.93748093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd990 -00007047 52.93751144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a0 -00007048 52.93751144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a0 -00007049 52.93753433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b0 -00007050 52.93753815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b0 -00007051 52.93756485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c0 -00007052 52.93756866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c0 -00007053 52.93759537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d0 -00007054 52.93759537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d0 -00007055 52.93762207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e0 -00007056 52.93762589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e0 -00007057 52.93765259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f0 -00007058 52.93765259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f0 -00007059 52.93767929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda00 -00007060 52.93768311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda00 -00007061 52.93770981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda10 -00007062 52.93771362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda10 -00007063 52.93773651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda20 -00007064 52.93774033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda20 -00007065 52.93776703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda30 -00007066 52.93777084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda30 -00007067 52.93779373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda40 -00007068 52.93779755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda40 -00007069 52.93782806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda50 -00007070 52.93783188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda50 -00007071 52.93785477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda60 -00007072 52.93785858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda60 -00007073 52.93788528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda70 -00007074 52.93788910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda70 -00007075 52.93791199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda80 -00007076 52.93791580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda80 -00007077 52.93794250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda90 -00007078 52.93794250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xda90 -00007079 52.93796921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa0 -00007080 52.93797302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa0 -00007081 52.93799591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab0 -00007082 52.93799973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab0 -00007083 52.93802643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac0 -00007084 52.93803024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac0 -00007085 52.93805313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad0 -00007086 52.93805695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad0 -00007087 52.93808365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae0 -00007088 52.93808746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae0 -00007089 52.93811035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf0 -00007090 52.93811417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf0 -00007091 52.93814087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb00 -00007092 52.93814468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb00 -00007093 52.93817139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb10 -00007094 52.93817139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb10 -00007095 52.93819809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb20 -00007096 52.93820190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb20 -00007097 52.93822861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb30 -00007098 52.93822861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb30 -00007099 52.93825531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb40 -00007100 52.93825912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb40 -00007101 52.93828583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb50 -00007102 52.93828964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb50 -00007103 52.93831635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb60 -00007104 52.93831635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb60 -00007105 52.93834305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb70 -00007106 52.93834686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb70 -00007107 52.93836975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb80 -00007108 52.93837357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb80 -00007109 52.93840027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb90 -00007110 52.93840408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb90 -00007111 52.93842697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba0 -00007112 52.93843079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba0 -00007113 52.93846130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb0 -00007114 52.93846130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb0 -00007115 52.93848801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc0 -00007116 52.93848801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc0 -00007117 52.93851471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd0 -00007118 52.93851852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd0 -00007119 52.93854523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe0 -00007120 52.93854904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe0 -00007121 52.93857193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf0 -00007122 52.93857574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf0 -00007123 52.93860245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc00 -00007124 52.93860626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc00 -00007125 52.93862915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc10 -00007126 52.93863297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc10 -00007127 52.93865967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc20 -00007128 52.93866348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc20 -00007129 52.93868637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc30 -00007130 52.93869019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc30 -00007131 52.93871689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc40 -00007132 52.93872070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc40 -00007133 52.93874741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc50 -00007134 52.93874741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc50 -00007135 52.93877411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc60 -00007136 52.93877792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc60 -00007137 52.93880463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc70 -00007138 52.93880463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc70 -00007139 52.93883133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc80 -00007140 52.93883514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc80 -00007141 52.93886185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc90 -00007142 52.93886566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc90 -00007143 52.93888855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca0 -00007144 52.93889236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca0 -00007145 52.93891907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb0 -00007146 52.93892288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb0 -00007147 52.93894577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc0 -00007148 52.93894958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc0 -00007149 52.93897629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd0 -00007150 52.93897629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd0 -00007151 52.93900299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce0 -00007152 52.93900299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce0 -00007153 52.93903351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf0 -00007154 52.93903351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf0 -00007155 52.93906021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd00 -00007156 52.93906403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd00 -00007157 52.93909073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd10 -00007158 52.93909454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd10 -00007159 52.93912125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd20 -00007160 52.93912506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd20 -00007161 52.93914795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd30 -00007162 52.93915176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd30 -00007163 52.93917847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd40 -00007164 52.93918228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd40 -00007165 52.93920517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd50 -00007166 52.93920517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd50 -00007167 52.93923569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd60 -00007168 52.93923569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd60 -00007169 52.93926239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd70 -00007170 52.93926239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd70 -00007171 52.93928909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd80 -00007172 52.93929291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd80 -00007173 52.93931961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd90 -00007174 52.93932343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd90 -00007175 52.93934631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda0 -00007176 52.93935013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda0 -00007177 52.93937683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb0 -00007178 52.93938065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb0 -00007179 52.93940353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc0 -00007180 52.93940735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc0 -00007181 52.93943405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd0 -00007182 52.93943405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd0 -00007183 52.93946075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde0 -00007184 52.93946075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde0 -00007185 52.93948746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf0 -00007186 52.93949127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf0 -00007187 52.93951797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde00 -00007188 52.93952179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde00 -00007189 52.93954468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde10 -00007190 52.93954849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde10 -00007191 52.93957520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde20 -00007192 52.93957901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde20 -00007193 52.93960190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde30 -00007194 52.93960571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde30 -00007195 52.93963242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde40 -00007196 52.93963623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde40 -00007197 52.93965912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde50 -00007198 52.93965912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde50 -00007199 52.93968964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde60 -00007200 52.93969345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde60 -00007201 52.93972015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde70 -00007202 52.93972015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde70 -00007203 52.93974686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde80 -00007204 52.93974686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde80 -00007205 52.93977356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde90 -00007206 52.93977737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xde90 -00007207 52.93980026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea0 -00007208 52.93980408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea0 -00007209 52.93983078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb0 -00007210 52.93983459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb0 -00007211 52.93985748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec0 -00007212 52.93986130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec0 -00007213 52.93988800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xded0 -00007214 52.93989182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xded0 -00007215 52.93991852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee0 -00007216 52.93991852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee0 -00007217 52.93994522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef0 -00007218 52.93994904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef0 -00007219 52.93997574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf00 -00007220 52.93997574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf00 -00007221 52.94000244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf10 -00007222 52.94000626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf10 -00007223 52.94003296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf20 -00007224 52.94003296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf20 -00007225 52.94005585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf30 -00007226 52.94005966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf30 -00007227 52.94008636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf40 -00007228 52.94009018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf40 -00007229 52.94011688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf50 -00007230 52.94011688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf50 -00007231 52.94014359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf60 -00007232 52.94014740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf60 -00007233 52.94017410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf70 -00007234 52.94017410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf70 -00007235 52.94020081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf80 -00007236 52.94020462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf80 -00007237 52.94023132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf90 -00007238 52.94023514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf90 -00007239 52.94025803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa0 -00007240 52.94026184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa0 -00007241 52.94028854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb0 -00007242 52.94029236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb0 -00007243 52.94031525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc0 -00007244 52.94031906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc0 -00007245 52.94034576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd0 -00007246 52.94034958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd0 -00007247 52.94037628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe0 -00007248 52.94037628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe0 -00007249 52.94040298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff0 -00007250 52.94040298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff0 -00007251 52.94043350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe000 -00007252 52.94043350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe000 -00007253 52.94045639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe010 -00007254 52.94046021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe010 -00007255 52.94048691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe020 -00007256 52.94049072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe020 -00007257 52.94051361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe030 -00007258 52.94051743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe030 -00007259 52.94054413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe040 -00007260 52.94054794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe040 -00007261 52.94057465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe050 -00007262 52.94057465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe050 -00007263 52.94060135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe060 -00007264 52.94060516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe060 -00007265 52.94063187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe070 -00007266 52.94063187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe070 -00007267 52.94065857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe080 -00007268 52.94065857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe080 -00007269 52.94068527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe090 -00007270 52.94068909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe090 -00007271 52.94071198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a0 -00007272 52.94071579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a0 -00007273 52.94074249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b0 -00007274 52.94074631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b0 -00007275 52.94077301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c0 -00007276 52.94077301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c0 -00007277 52.94079971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d0 -00007278 52.94080353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d0 -00007279 52.94083023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e0 -00007280 52.94083023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e0 -00007281 52.94085693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f0 -00007282 52.94085693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f0 -00007283 52.94088364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe100 -00007284 52.94088745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe100 -00007285 52.94091034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe110 -00007286 52.94091415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe110 -00007287 52.94094086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe120 -00007288 52.94094467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe120 -00007289 52.94097137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe130 -00007290 52.94097137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe130 -00007291 52.94099808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe140 -00007292 52.94100189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe140 -00007293 52.94102859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe150 -00007294 52.94102859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe150 -00007295 52.94105530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe160 -00007296 52.94105911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe160 -00007297 52.94108582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe170 -00007298 52.94108963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe170 -00007299 52.94111252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe180 -00007300 52.94111252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe180 -00007301 52.94113922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe190 -00007302 52.94114304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe190 -00007303 52.94116974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a0 -00007304 52.94116974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a0 -00007305 52.94119644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b0 -00007306 52.94120026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b0 -00007307 52.94122696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c0 -00007308 52.94122696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c0 -00007309 52.94125366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d0 -00007310 52.94125748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d0 -00007311 52.94128418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e0 -00007312 52.94128799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e0 -00007313 52.94131088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f0 -00007314 52.94131470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f0 -00007315 52.94134140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe200 -00007316 52.94134521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe200 -00007317 52.94136810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe210 -00007318 52.94137192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe210 -00007319 52.94139862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe220 -00007320 52.94139862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe220 -00007321 52.94142532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe230 -00007322 52.94142532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe230 -00007323 52.94145203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe240 -00007324 52.94145584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe240 -00007325 52.94148254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe250 -00007326 52.94148636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe250 -00007327 52.94150925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe260 -00007328 52.94151306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe260 -00007329 52.94153976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe270 -00007330 52.94154358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe270 -00007331 52.94156647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe280 -00007332 52.94157028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe280 -00007333 52.94159698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe290 -00007334 52.94160080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe290 -00007335 52.94162750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a0 -00007336 52.94162750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a0 -00007337 52.94165421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b0 -00007338 52.94165802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b0 -00007339 52.94168472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c0 -00007340 52.94168472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c0 -00007341 52.94171143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d0 -00007342 52.94171524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d0 -00007343 52.94174194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e0 -00007344 52.94174194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e0 -00007345 52.94176483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f0 -00007346 52.94176865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f0 -00007347 52.94179535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe300 -00007348 52.94179916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe300 -00007349 52.94182587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe310 -00007350 52.94182587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe310 -00007351 52.94185257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe320 -00007352 52.94185638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe320 -00007353 52.94188309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe330 -00007354 52.94188309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe330 -00007355 52.94190979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe340 -00007356 52.94191360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe340 -00007357 52.94194031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe350 -00007358 52.94194031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe350 -00007359 52.94196701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe360 -00007360 52.94196701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe360 -00007361 52.94199371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe370 -00007362 52.94199753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe370 -00007363 52.94202423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe380 -00007364 52.94202423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe380 -00007365 52.94205093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe390 -00007366 52.94205475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe390 -00007367 52.94208145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a0 -00007368 52.94208145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a0 -00007369 52.94210815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b0 -00007370 52.94211197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b0 -00007371 52.94213867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c0 -00007372 52.94214249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c0 -00007373 52.94216537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d0 -00007374 52.94216919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d0 -00007375 52.94219589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e0 -00007376 52.94219971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e0 -00007377 52.94222260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f0 -00007378 52.94222641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f0 -00007379 52.94225311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe400 -00007380 52.94225693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe400 -00007381 52.94227982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe410 -00007382 52.94227982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe410 -00007383 52.94230652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe420 -00007384 52.94231033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe420 -00007385 52.94233704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe430 -00007386 52.94234085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe430 -00007387 52.94236374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe440 -00007388 52.94236755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe440 -00007389 52.94239426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe450 -00007390 52.94239807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe450 -00007391 52.94242096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe460 -00007392 52.94242477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe460 -00007393 52.94245148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe470 -00007394 52.94245529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe470 -00007395 52.94247818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe480 -00007396 52.94247818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe480 -00007397 52.94250488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe490 -00007398 52.94250870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe490 -00007399 52.94253540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a0 -00007400 52.94253922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a0 -00007401 52.94256210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b0 -00007402 52.94256592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b0 -00007403 52.94259262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c0 -00007404 52.94259644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c0 -00007405 52.94261932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d0 -00007406 52.94262314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d0 -00007407 52.94264984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e0 -00007408 52.94265366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e0 -00007409 52.94267654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f0 -00007410 52.94267654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f0 -00007411 52.94270325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe500 -00007412 52.94270706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe500 -00007413 52.94273376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe510 -00007414 52.94273758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe510 -00007415 52.94276047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe520 -00007416 52.94276428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe520 -00007417 52.94279099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe530 -00007418 52.94279480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe530 -00007419 52.94281769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe540 -00007420 52.94282150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe540 -00007421 52.94284821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe550 -00007422 52.94285202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe550 -00007423 52.94287491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe560 -00007424 52.94287872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe560 -00007425 52.94290543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe570 -00007426 52.94290924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe570 -00007427 52.94293594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe580 -00007428 52.94293594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe580 -00007429 52.94296265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe590 -00007430 52.94296265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe590 -00007431 52.94298935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a0 -00007432 52.94299316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a0 -00007433 52.94301605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b0 -00007434 52.94301987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b0 -00007435 52.94304657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c0 -00007436 52.94305038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c0 -00007437 52.94307709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d0 -00007438 52.94307709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d0 -00007439 52.94310379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e0 -00007440 52.94310760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e0 -00007441 52.94313431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -00007442 52.94313431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -00007443 52.94316101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -00007444 52.94316101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -00007445 52.94318771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -00007446 52.94319153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -00007447 52.94321442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe620 -00007448 52.94321823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe620 -00007449 52.94324493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe630 -00007450 52.94324875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe630 -00007451 52.94327545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe640 -00007452 52.94327545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe640 -00007453 52.94330215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe650 -00007454 52.94330597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe650 -00007455 52.94333267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe660 -00007456 52.94333267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe660 -00007457 52.94335938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe670 -00007458 52.94336319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe670 -00007459 52.94338989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe680 -00007460 52.94339371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe680 -00007461 52.94341660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe690 -00007462 52.94341660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe690 -00007463 52.94344711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a0 -00007464 52.94344711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a0 -00007465 52.94347382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b0 -00007466 52.94347382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b0 -00007467 52.94350052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c0 -00007468 52.94350433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c0 -00007469 52.94353104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d0 -00007470 52.94353104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d0 -00007471 52.94355774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e0 -00007472 52.94356155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e0 -00007473 52.94358826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f0 -00007474 52.94359207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f0 -00007475 52.94361496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe700 -00007476 52.94361877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe700 -00007477 52.94364548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe710 -00007478 52.94364929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe710 -00007479 52.94367218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe720 -00007480 52.94367218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe720 -00007481 52.94370270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe730 -00007482 52.94370651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe730 -00007483 52.94372940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe740 -00007484 52.94372940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe740 -00007485 52.94375992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe750 -00007486 52.94375992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe750 -00007487 52.94379044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe760 -00007488 52.94379044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe760 -00007489 52.94381332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe770 -00007490 52.94381714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe770 -00007491 52.94384384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe780 -00007492 52.94384766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe780 -00007493 52.94387054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe790 -00007494 52.94387436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe790 -00007495 52.94390106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a0 -00007496 52.94390488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a0 -00007497 52.94392776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b0 -00007498 52.94393158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b0 -00007499 52.94395828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c0 -00007500 52.94396210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c0 -00007501 52.94398880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d0 -00007502 52.94398880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d0 -00007503 52.94401550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e0 -00007504 52.94401932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e0 -00007505 52.94404602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7f0 -00007506 52.94404602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7f0 -00007507 52.94407272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe800 -00007508 52.94407654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe800 -00007509 52.94410324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe810 -00007510 52.94410706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe810 -00007511 52.94412994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe820 -00007512 52.94412994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe820 -00007513 52.94416046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe830 -00007514 52.94416046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe830 -00007515 52.94418716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe840 -00007516 52.94418716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe840 -00007517 52.94421387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe850 -00007518 52.94421768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe850 -00007519 52.94424438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe860 -00007520 52.94424820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe860 -00007521 52.94427109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe870 -00007522 52.94427490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe870 -00007523 52.94430161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe880 -00007524 52.94430542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe880 -00007525 52.94432831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe890 -00007526 52.94433212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe890 -00007527 52.94435883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a0 -00007528 52.94435883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a0 -00007529 52.94438553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b0 -00007530 52.94438553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b0 -00007531 52.94441223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c0 -00007532 52.94441605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c0 -00007533 52.94444275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d0 -00007534 52.94444656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d0 -00007535 52.94446945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e0 -00007536 52.94447327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e0 -00007537 52.94449997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f0 -00007538 52.94450378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f0 -00007539 52.94452667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe900 -00007540 52.94453049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe900 -00007541 52.94455719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe910 -00007542 52.94456100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe910 -00007543 52.94458389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe920 -00007544 52.94458771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe920 -00007545 52.94461441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe930 -00007546 52.94461441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe930 -00007547 52.94464493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe940 -00007548 52.94464493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe940 -00007549 52.94466782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe950 -00007550 52.94467163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe950 -00007551 52.94469833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe960 -00007552 52.94470215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe960 -00007553 52.94472885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe970 -00007554 52.94473267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe970 -00007555 52.94475937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe980 -00007556 52.94476318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe980 -00007557 52.94478607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe990 -00007558 52.94478989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe990 -00007559 52.94481659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a0 -00007560 52.94482040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a0 -00007561 52.94484329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b0 -00007562 52.94484711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b0 -00007563 52.94487381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c0 -00007564 52.94487381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c0 -00007565 52.94490051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d0 -00007566 52.94490051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d0 -00007567 52.94493103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e0 -00007568 52.94493103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e0 -00007569 52.94495773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f0 -00007570 52.94496155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f0 -00007571 52.94498444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea00 -00007572 52.94498825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea00 -00007573 52.94501495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea10 -00007574 52.94501877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea10 -00007575 52.94504166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea20 -00007576 52.94504547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea20 -00007577 52.94507217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea30 -00007578 52.94507599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea30 -00007579 52.94510269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea40 -00007580 52.94510269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea40 -00007581 52.94512939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea50 -00007582 52.94513321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea50 -00007583 52.94515991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea60 -00007584 52.94515991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea60 -00007585 52.94518280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea70 -00007586 52.94518661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea70 -00007587 52.94521332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea80 -00007588 52.94521713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea80 -00007589 52.94524002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea90 -00007590 52.94524384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xea90 -00007591 52.94527054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa0 -00007592 52.94527435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa0 -00007593 52.94530106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab0 -00007594 52.94530106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab0 -00007595 52.94532776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac0 -00007596 52.94533157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac0 -00007597 52.94535828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xead0 -00007598 52.94535828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xead0 -00007599 52.94538498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae0 -00007600 52.94538879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae0 -00007601 52.94541550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf0 -00007602 52.94541931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf0 -00007603 52.94544220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb00 -00007604 52.94544601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb00 -00007605 52.94547272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb10 -00007606 52.94547272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb10 -00007607 52.94549942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb20 -00007608 52.94549942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb20 -00007609 52.94552612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb30 -00007610 52.94552994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb30 -00007611 52.94555664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb40 -00007612 52.94555664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb40 -00007613 52.94558334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb50 -00007614 52.94558716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb50 -00007615 52.94561386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb60 -00007616 52.94561768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb60 -00007617 52.94564056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb70 -00007618 52.94564438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb70 -00007619 52.94567108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb80 -00007620 52.94567490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb80 -00007621 52.94569778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb90 -00007622 52.94569778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb90 -00007623 52.94572449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba0 -00007624 52.94572830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba0 -00007625 52.94575500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb0 -00007626 52.94575500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb0 -00007627 52.94578171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc0 -00007628 52.94578552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc0 -00007629 52.94581223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd0 -00007630 52.94581604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd0 -00007631 52.94583893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe0 -00007632 52.94584274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe0 -00007633 52.94586945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf0 -00007634 52.94587326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf0 -00007635 52.94589615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec00 -00007636 52.94589996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec00 -00007637 52.94592667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec10 -00007638 52.94593048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec10 -00007639 52.94595337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec20 -00007640 52.94595718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec20 -00007641 52.94598389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec30 -00007642 52.94598770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec30 -00007643 52.94601440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec40 -00007644 52.94601440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec40 -00007645 52.94604111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec50 -00007646 52.94604111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec50 -00007647 52.94606781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec60 -00007648 52.94607162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec60 -00007649 52.94609451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec70 -00007650 52.94609833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec70 -00007651 52.94612503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec80 -00007652 52.94612885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec80 -00007653 52.94615173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec90 -00007654 52.94615555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xec90 -00007655 52.94618225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca0 -00007656 52.94618607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca0 -00007657 52.94621277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb0 -00007658 52.94621277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb0 -00007659 52.94623947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc0 -00007660 52.94623947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc0 -00007661 52.94626617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd0 -00007662 52.94626999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd0 -00007663 52.94629288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xece0 -00007664 52.94629669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xece0 -00007665 52.94632339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf0 -00007666 52.94632721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf0 -00007667 52.94635010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed00 -00007668 52.94635391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed00 -00007669 52.94638062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed10 -00007670 52.94638443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed10 -00007671 52.94641113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed20 -00007672 52.94641113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed20 -00007673 52.94643784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed30 -00007674 52.94643784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed30 -00007675 52.94646835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed40 -00007676 52.94646835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed40 -00007677 52.94649124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed50 -00007678 52.94649506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed50 -00007679 52.94652176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed60 -00007680 52.94652557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed60 -00007681 52.94655228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed70 -00007682 52.94655228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed70 -00007683 52.94657898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed80 -00007684 52.94658279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed80 -00007685 52.94660950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed90 -00007686 52.94660950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xed90 -00007687 52.94663620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda0 -00007688 52.94664001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda0 -00007689 52.94666672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb0 -00007690 52.94667053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb0 -00007691 52.94669342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc0 -00007692 52.94669724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc0 -00007693 52.94672394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd0 -00007694 52.94672775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd0 -00007695 52.94675064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xede0 -00007696 52.94675446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xede0 -00007697 52.94678116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf0 -00007698 52.94678497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf0 -00007699 52.94680786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee00 -00007700 52.94681168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee00 -00007701 52.94683838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee10 -00007702 52.94683838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee10 -00007703 52.94686508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee20 -00007704 52.94686890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee20 -00007705 52.94689178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee30 -00007706 52.94689560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee30 -00007707 52.94692230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee40 -00007708 52.94692612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee40 -00007709 52.94694901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee50 -00007710 52.94695282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee50 -00007711 52.94697952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee60 -00007712 52.94698334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee60 -00007713 52.94700623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee70 -00007714 52.94701004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee70 -00007715 52.94703674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee80 -00007716 52.94703674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee80 -00007717 52.94706345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee90 -00007718 52.94706726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xee90 -00007719 52.94709015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea0 -00007720 52.94709396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea0 -00007721 52.94712067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb0 -00007722 52.94712448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb0 -00007723 52.94714737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec0 -00007724 52.94715118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec0 -00007725 52.94717789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed0 -00007726 52.94718170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed0 -00007727 52.94720459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee0 -00007728 52.94720840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee0 -00007729 52.94723511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef0 -00007730 52.94723892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef0 -00007731 52.94726563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef00 -00007732 52.94726563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef00 -00007733 52.94729233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef10 -00007734 52.94729614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef10 -00007735 52.94732285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef20 -00007736 52.94732285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef20 -00007737 52.94734573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef30 -00007738 52.94734955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef30 -00007739 52.94737625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef40 -00007740 52.94738007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef40 -00007741 52.94740295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef50 -00007742 52.94740677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef50 -00007743 52.94743347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef60 -00007744 52.94743729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef60 -00007745 52.94746399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef70 -00007746 52.94746399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef70 -00007747 52.94749069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef80 -00007748 52.94749451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef80 -00007749 52.94752121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef90 -00007750 52.94752121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xef90 -00007751 52.94754410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa0 -00007752 52.94754791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa0 -00007753 52.94757462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb0 -00007754 52.94757843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb0 -00007755 52.94760132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc0 -00007756 52.94760513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc0 -00007757 52.94763184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd0 -00007758 52.94763565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd0 -00007759 52.94766235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe0 -00007760 52.94766235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe0 -00007761 52.94768906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff0 -00007762 52.94769287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff0 -00007763 52.94771957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf000 -00007764 52.94772339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf000 -00007765 52.94774628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf010 -00007766 52.94774628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf010 -00007767 52.94777679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf020 -00007768 52.94777679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf020 -00007769 52.94780350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf030 -00007770 52.94780350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf030 -00007771 52.94783401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf040 -00007772 52.94783401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf040 -00007773 52.94786072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf050 -00007774 52.94786072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf050 -00007775 52.94788742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf060 -00007776 52.94789124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf060 -00007777 52.94791794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf070 -00007778 52.94792175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf070 -00007779 52.94794464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf080 -00007780 52.94794846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf080 -00007781 52.94797516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf090 -00007782 52.94797897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf090 -00007783 52.94800186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a0 -00007784 52.94800568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a0 -00007785 52.94803238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b0 -00007786 52.94803238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b0 -00007787 52.94805908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c0 -00007788 52.94805908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c0 -00007789 52.94808578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d0 -00007790 52.94808960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d0 -00007791 52.94811630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e0 -00007792 52.94812012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e0 -00007793 52.94814301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f0 -00007794 52.94814682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f0 -00007795 52.94817352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf100 -00007796 52.94817734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf100 -00007797 52.94820023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf110 -00007798 52.94820404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf110 -00007799 52.94823074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf120 -00007800 52.94823456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf120 -00007801 52.94825745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf130 -00007802 52.94826126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf130 -00007803 52.94828796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf140 -00007804 52.94828796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf140 -00007805 52.94831467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf150 -00007806 52.94831848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf150 -00007807 52.94834137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf160 -00007808 52.94834518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf160 -00007809 52.94837189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf170 -00007810 52.94837570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf170 -00007811 52.94839859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf180 -00007812 52.94840240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf180 -00007813 52.94842911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf190 -00007814 52.94843292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf190 -00007815 52.94845581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a0 -00007816 52.94845963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a0 -00007817 52.94848633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b0 -00007818 52.94849014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b0 -00007819 52.94851685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c0 -00007820 52.94851685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c0 -00007821 52.94854355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1d0 -00007822 52.94854355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1d0 -00007823 52.94857025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1e0 -00007824 52.94857407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1e0 -00007825 52.94859695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1f0 -00007826 52.94860077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1f0 -00007827 52.94862747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf200 -00007828 52.94863129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf200 -00007829 52.94865417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf210 -00007830 52.94865799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf210 -00007831 52.94868469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf220 -00007832 52.94868851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf220 -00007833 52.94871521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf230 -00007834 52.94871521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf230 -00007835 52.94874191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf240 -00007836 52.94874191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf240 -00007837 52.94876862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf250 -00007838 52.94877243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf250 -00007839 52.94879532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf260 -00007840 52.94879913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf260 -00007841 52.94882584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf270 -00007842 52.94882965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf270 -00007843 52.94885254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf280 -00007844 52.94885635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf280 -00007845 52.94888306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf290 -00007846 52.94888687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf290 -00007847 52.94891357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2a0 -00007848 52.94891357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2a0 -00007849 52.94894028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2b0 -00007850 52.94894028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2b0 -00007851 52.94896698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2c0 -00007852 52.94897079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2c0 -00007853 52.94899368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d0 -00007854 52.94899750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d0 -00007855 52.94902420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e0 -00007856 52.94902802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e0 -00007857 52.94905090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2f0 -00007858 52.94905472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2f0 -00007859 52.94908142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf300 -00007860 52.94908524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf300 -00007861 52.94911194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf310 -00007862 52.94911194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf310 -00007863 52.94913864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf320 -00007864 52.94914246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf320 -00007865 52.94916916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf330 -00007866 52.94917297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf330 -00007867 52.94919586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf340 -00007868 52.94919586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf340 -00007869 52.94922256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf350 -00007870 52.94922638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf350 -00007871 52.94925308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf360 -00007872 52.94925308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf360 -00007873 52.94927979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf370 -00007874 52.94928360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf370 -00007875 52.94931030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf380 -00007876 52.94931030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf380 -00007877 52.94933701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf390 -00007878 52.94934082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf390 -00007879 52.94936752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3a0 -00007880 52.94937134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3a0 -00007881 52.94939423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3b0 -00007882 52.94939423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3b0 -00007883 52.94942093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3c0 -00007884 52.94942474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3c0 -00007885 52.94945145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3d0 -00007886 52.94945145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3d0 -00007887 52.94947815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3e0 -00007888 52.94948196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3e0 -00007889 52.94950867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3f0 -00007890 52.94950867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3f0 -00007891 52.94953537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf400 -00007892 52.94953918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf400 -00007893 52.94956589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf410 -00007894 52.94956970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf410 -00007895 52.94959259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf420 -00007896 52.94959259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf420 -00007897 52.94961929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf430 -00007898 52.94962311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf430 -00007899 52.94964981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf440 -00007900 52.94964981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf440 -00007901 52.94967651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf450 -00007902 52.94968033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf450 -00007903 52.94970703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf460 -00007904 52.94970703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf460 -00007905 52.94973373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf470 -00007906 52.94973755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf470 -00007907 52.94976425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf480 -00007908 52.94976807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf480 -00007909 52.94979095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf490 -00007910 52.94979477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf490 -00007911 52.94982147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4a0 -00007912 52.94982147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4a0 -00007913 52.94984818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4b0 -00007914 52.94984818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4b0 -00007915 52.94987488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4c0 -00007916 52.94987869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4c0 -00007917 52.94990540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4d0 -00007918 52.94990540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4d0 -00007919 52.94993210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4e0 -00007920 52.94993591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4e0 -00007921 52.94996262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4f0 -00007922 52.94996643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4f0 -00007923 52.94998932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf500 -00007924 52.94999313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf500 -00007925 52.95001984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf510 -00007926 52.95001984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf510 -00007927 52.95004654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf520 -00007928 52.95004654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf520 -00007929 52.95007324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf530 -00007930 52.95007706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf530 -00007931 52.95010376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf540 -00007932 52.95010376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf540 -00007933 52.95013046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf550 -00007934 52.95013428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf550 -00007935 52.95016098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf560 -00007936 52.95016479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf560 -00007937 52.95018768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf570 -00007938 52.95019150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf570 -00007939 52.95021820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf580 -00007940 52.95021820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf580 -00007941 52.95024490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf590 -00007942 52.95024490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf590 -00007943 52.95027161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5a0 -00007944 52.95027542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5a0 -00007945 52.95030212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5b0 -00007946 52.95030212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5b0 -00007947 52.95032883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c0 -00007948 52.95033264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c0 -00007949 52.95035934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d0 -00007950 52.95036316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d0 -00007951 52.95038605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e0 -00007952 52.95038986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e0 -00007953 52.95041656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f0 -00007954 52.95042038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f0 -00007955 52.95044327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf600 -00007956 52.95044708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf600 -00007957 52.95047379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf610 -00007958 52.95047379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf610 -00007959 52.95050049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf620 -00007960 52.95050430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf620 -00007961 52.95052719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf630 -00007962 52.95053101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf630 -00007963 52.95055771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf640 -00007964 52.95056152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf640 -00007965 52.95058441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf650 -00007966 52.95058823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf650 -00007967 52.95061493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf660 -00007968 52.95061874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf660 -00007969 52.95064163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf670 -00007970 52.95064545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf670 -00007971 52.95067215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf680 -00007972 52.95067215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf680 -00007973 52.95070267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf690 -00007974 52.95070267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf690 -00007975 52.95072556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a0 -00007976 52.95072937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a0 -00007977 52.95075607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b0 -00007978 52.95075989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b0 -00007979 52.95078278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c0 -00007980 52.95078659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c0 -00007981 52.95081329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d0 -00007982 52.95081711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d0 -00007983 52.95084000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e0 -00007984 52.95084381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e0 -00007985 52.95087051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f0 -00007986 52.95087051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f0 -00007987 52.95090103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf700 -00007988 52.95090103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf700 -00007989 52.95092392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf710 -00007990 52.95092773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf710 -00007991 52.95095825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf720 -00007992 52.95095825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf720 -00007993 52.95098114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf730 -00007994 52.95098495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf730 -00007995 52.95101166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf740 -00007996 52.95101547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf740 -00007997 52.95103836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf750 -00007998 52.95104218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf750 -00007999 52.95106888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf760 -00008000 52.95107269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf760 -00008001 52.95109940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf770 -00008002 52.95109940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf770 -00008003 52.95112610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf780 -00008004 52.95112991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf780 -00008005 52.95115662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf790 -00008006 52.95115662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf790 -00008007 52.95117950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7a0 -00008008 52.95118332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7a0 -00008009 52.95121002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b0 -00008010 52.95121384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b0 -00008011 52.95123672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c0 -00008012 52.95124054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c0 -00008013 52.95126724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d0 -00008014 52.95127106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d0 -00008015 52.95129776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7e0 -00008016 52.95129776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7e0 -00008017 52.95132446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7f0 -00008018 52.95132828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7f0 -00008019 52.95135498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf800 -00008020 52.95135498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf800 -00008021 52.95137787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf810 -00008022 52.95138168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf810 -00008023 52.95140839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf820 -00008024 52.95141220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf820 -00008025 52.95143509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf830 -00008026 52.95143890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf830 -00008027 52.95146561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf840 -00008028 52.95146942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf840 -00008029 52.95149612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf850 -00008030 52.95149612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf850 -00008031 52.95152283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf860 -00008032 52.95152664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf860 -00008033 52.95155334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf870 -00008034 52.95155334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf870 -00008035 52.95158005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf880 -00008036 52.95158386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf880 -00008037 52.95161057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf890 -00008038 52.95161438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf890 -00008039 52.95163727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a0 -00008040 52.95164108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a0 -00008041 52.95166779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -00008042 52.95166779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -00008043 52.95169449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -00008044 52.95169449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -00008045 52.95172119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -00008046 52.95172501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -00008047 52.95175171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -00008048 52.95175171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -00008049 52.95177841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -00008050 52.95178223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -00008051 52.95180893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -00008052 52.95181274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -00008053 52.95183563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -00008054 52.95183945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -00008055 52.95186615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -00008056 52.95186996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -00008057 52.95189285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -00008058 52.95189285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -00008059 52.95192337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -00008060 52.95192337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -00008061 52.95195007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -00008062 52.95195389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -00008063 52.95197678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf960 -00008064 52.95198059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf960 -00008065 52.95200729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf970 -00008066 52.95201111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf970 -00008067 52.95203400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf980 -00008068 52.95203781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf980 -00008069 52.95206451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf990 -00008070 52.95206833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf990 -00008071 52.95209122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a0 -00008072 52.95209122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a0 -00008073 52.95212173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b0 -00008074 52.95212173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b0 -00008075 52.95214844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c0 -00008076 52.95215225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c0 -00008077 52.95217514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d0 -00008078 52.95217896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d0 -00008079 52.95220566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e0 -00008080 52.95220947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e0 -00008081 52.95223236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f0 -00008082 52.95223618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f0 -00008083 52.95226288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa00 -00008084 52.95226669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa00 -00008085 52.95228958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa10 -00008086 52.95229340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa10 -00008087 52.95232010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa20 -00008088 52.95232391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa20 -00008089 52.95235062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa30 -00008090 52.95235062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa30 -00008091 52.95237732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa40 -00008092 52.95237732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa40 -00008093 52.95240402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa50 -00008094 52.95240784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa50 -00008095 52.95243073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa60 -00008096 52.95243454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa60 -00008097 52.95246124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa70 -00008098 52.95246506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa70 -00008099 52.95248795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa80 -00008100 52.95249176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa80 -00008101 52.95251846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa90 -00008102 52.95252228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa90 -00008103 52.95254898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa0 -00008104 52.95254898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa0 -00008105 52.95257568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab0 -00008106 52.95257568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab0 -00008107 52.95260620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac0 -00008108 52.95260620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac0 -00008109 52.95262909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad0 -00008110 52.95263290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad0 -00008111 52.95265961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae0 -00008112 52.95266342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae0 -00008113 52.95268631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf0 -00008114 52.95269012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf0 -00008115 52.95271683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb00 -00008116 52.95272064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb00 -00008117 52.95274734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb10 -00008118 52.95274734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb10 -00008119 52.95277405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb20 -00008120 52.95277786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb20 -00008121 52.95280457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb30 -00008122 52.95280457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb30 -00008123 52.95283127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb40 -00008124 52.95283127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb40 -00008125 52.95285797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb50 -00008126 52.95286179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb50 -00008127 52.95288467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb60 -00008128 52.95288849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb60 -00008129 52.95291519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb70 -00008130 52.95291901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb70 -00008131 52.95294571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb80 -00008132 52.95294571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb80 -00008133 52.95297241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb90 -00008134 52.95297623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb90 -00008135 52.95300293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba0 -00008136 52.95300293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba0 -00008137 52.95302963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb0 -00008138 52.95302963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb0 -00008139 52.95306015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc0 -00008140 52.95306015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc0 -00008141 52.95308304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd0 -00008142 52.95308685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd0 -00008143 52.95311356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe0 -00008144 52.95311737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe0 -00008145 52.95314407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbf0 -00008146 52.95314407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbf0 -00008147 52.95317078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc00 -00008148 52.95317459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc00 -00008149 52.95320129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc10 -00008150 52.95320129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc10 -00008151 52.95322800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc20 -00008152 52.95322800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc20 -00008153 52.95325851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc30 -00008154 52.95325851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc30 -00008155 52.95328140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc40 -00008156 52.95328522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc40 -00008157 52.95331192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc50 -00008158 52.95331573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc50 -00008159 52.95334244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc60 -00008160 52.95334244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc60 -00008161 52.95336914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc70 -00008162 52.95337296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc70 -00008163 52.95339966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc80 -00008164 52.95340347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc80 -00008165 52.95342636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc90 -00008166 52.95343018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc90 -00008167 52.95345688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca0 -00008168 52.95346069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca0 -00008169 52.95348358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb0 -00008170 52.95348358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb0 -00008171 52.95351410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc0 -00008172 52.95351410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc0 -00008173 52.95354080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcd0 -00008174 52.95354080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcd0 -00008175 52.95356750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfce0 -00008176 52.95357132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfce0 -00008177 52.95359802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcf0 -00008178 52.95360184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcf0 -00008179 52.95362473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd00 -00008180 52.95362854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd00 -00008181 52.95365524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd10 -00008182 52.95365906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd10 -00008183 52.95368195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd20 -00008184 52.95368195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd20 -00008185 52.95371246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd30 -00008186 52.95371246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd30 -00008187 52.95373917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd40 -00008188 52.95373917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd40 -00008189 52.95376587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd50 -00008190 52.95376968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd50 -00008191 52.95379639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd60 -00008192 52.95380020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd60 -00008193 52.95382309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd70 -00008194 52.95382690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd70 -00008195 52.95385361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd80 -00008196 52.95385742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd80 -00008197 52.95388031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd90 -00008198 52.95388031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd90 -00008199 52.95391083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfda0 -00008200 52.95391083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfda0 -00008201 52.95393753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdb0 -00008202 52.95393753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdb0 -00008203 52.95396423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdc0 -00008204 52.95396805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdc0 -00008205 52.95399475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdd0 -00008206 52.95399857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdd0 -00008207 52.95402145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfde0 -00008208 52.95402527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfde0 -00008209 52.95405197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdf0 -00008210 52.95405579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdf0 -00008211 52.95407867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe00 -00008212 52.95408249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe00 -00008213 52.95410919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe10 -00008214 52.95411301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe10 -00008215 52.95413589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe20 -00008216 52.95413589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe20 -00008217 52.95416641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe30 -00008218 52.95416641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe30 -00008219 52.95419312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe40 -00008220 52.95419693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe40 -00008221 52.95421982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe50 -00008222 52.95422363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe50 -00008223 52.95425034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe60 -00008224 52.95425415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe60 -00008225 52.95427704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe70 -00008226 52.95428085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe70 -00008227 52.95430756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe80 -00008228 52.95431137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe80 -00008229 52.95433426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe90 -00008230 52.95433426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe90 -00008231 52.95436478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea0 -00008232 52.95436478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea0 -00008233 52.95439148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb0 -00008234 52.95439529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb0 -00008235 52.95441818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec0 -00008236 52.95442200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec0 -00008237 52.95444870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed0 -00008238 52.95445251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed0 -00008239 52.95447540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfee0 -00008240 52.95447922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfee0 -00008241 52.95450592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfef0 -00008242 52.95450974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfef0 -00008243 52.95453262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff00 -00008244 52.95453644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff00 -00008245 52.95456314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff10 -00008246 52.95456314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff10 -00008247 52.95459366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff20 -00008248 52.95459366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff20 -00008249 52.95461655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff30 -00008250 52.95462036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff30 -00008251 52.95464706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff40 -00008252 52.95465088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff40 -00008253 52.95467377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff50 -00008254 52.95467758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff50 -00008255 52.95470428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff60 -00008256 52.95470810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff60 -00008257 52.95473099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff70 -00008258 52.95473480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff70 -00008259 52.95476151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff80 -00008260 52.95476532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff80 -00008261 52.95479202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff90 -00008262 52.95479202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xff90 -00008263 52.95481873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa0 -00008264 52.95481873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa0 -00008265 52.95484924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb0 -00008266 52.95484924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb0 -00008267 52.95487213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -00008268 52.95487595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -00008269 52.95490265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -00008270 52.95490646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -00008271 52.95492935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -00008272 52.95493317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -00008273 52.95495987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -00008274 52.95496368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -00008275 52.95499039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -00008276 52.95499039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -00008277 52.95501709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -00008278 52.95502090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -00008279 52.95504761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -00008280 52.95504761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -00008281 52.95507050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -00008282 52.95507431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -00008283 52.95510101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -00008284 52.95510483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -00008285 52.95512772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -00008286 52.95513153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -00008287 52.95515823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -00008288 52.95516205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -00008289 52.95518875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -00008290 52.95518875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -00008291 52.95521545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10080 -00008292 52.95521927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10080 -00008293 52.95524597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -00008294 52.95524597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -00008295 52.95527267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -00008296 52.95527267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -00008297 52.95530319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -00008298 52.95530319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -00008299 52.95532990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -00008300 52.95532990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -00008301 52.95535660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -00008302 52.95536041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -00008303 52.95538712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -00008304 52.95538712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -00008305 52.95541382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -00008306 52.95541763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -00008307 52.95544434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -00008308 52.95544815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -00008309 52.95547104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -00008310 52.95547485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -00008311 52.95550156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10120 -00008312 52.95550537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10120 -00008313 52.95552826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10130 -00008314 52.95553207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10130 -00008315 52.95555878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10140 -00008316 52.95555878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10140 -00008317 52.95558548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10150 -00008318 52.95558548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10150 -00008319 52.95561218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10160 -00008320 52.95561600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10160 -00008321 52.95564270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10170 -00008322 52.95564651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10170 -00008323 52.95566940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10180 -00008324 52.95567322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10180 -00008325 52.95569992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10190 -00008326 52.95570374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10190 -00008327 52.95572662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a0 -00008328 52.95573044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a0 -00008329 52.95575714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b0 -00008330 52.95576096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b0 -00008331 52.95578384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c0 -00008332 52.95578384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c0 -00008333 52.95581436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d0 -00008334 52.95581436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d0 -00008335 52.95584106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e0 -00008336 52.95584488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e0 -00008337 52.95586777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f0 -00008338 52.95587158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f0 -00008339 52.95589828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10200 -00008340 52.95590210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10200 -00008341 52.95592499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10210 -00008342 52.95592880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10210 -00008343 52.95595551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10220 -00008344 52.95595932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10220 -00008345 52.95598221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10230 -00008346 52.95598602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10230 -00008347 52.95601273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10240 -00008348 52.95601654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10240 -00008349 52.95604324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10250 -00008350 52.95604324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10250 -00008351 52.95606995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10260 -00008352 52.95606995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10260 -00008353 52.95610046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10270 -00008354 52.95610046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10270 -00008355 52.95612717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10280 -00008356 52.95612717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10280 -00008357 52.95615387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10290 -00008358 52.95615768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10290 -00008359 52.95618057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102a0 -00008360 52.95618439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102a0 -00008361 52.95621109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102b0 -00008362 52.95621490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102b0 -00008363 52.95624161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102c0 -00008364 52.95624161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102c0 -00008365 52.95626831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102d0 -00008366 52.95627213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102d0 -00008367 52.95629883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102e0 -00008368 52.95630264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102e0 -00008369 52.95632553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102f0 -00008370 52.95632553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x102f0 -00008371 52.95635223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10300 -00008372 52.95635605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10300 -00008373 52.95637894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10310 -00008374 52.95638275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10310 -00008375 52.95640945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10320 -00008376 52.95641327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10320 -00008377 52.95643997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10330 -00008378 52.95643997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10330 -00008379 52.95646667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10340 -00008380 52.95647049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10340 -00008381 52.95649719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10350 -00008382 52.95650101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10350 -00008383 52.95652390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10360 -00008384 52.95652771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10360 -00008385 52.95655441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10370 -00008386 52.95655441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10370 -00008387 52.95658112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10380 -00008388 52.95658112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10380 -00008389 52.95661163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10390 -00008390 52.95661163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10390 -00008391 52.95663834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103a0 -00008392 52.95663834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103a0 -00008393 52.95666504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103b0 -00008394 52.95666885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103b0 -00008395 52.95669556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103c0 -00008396 52.95669937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103c0 -00008397 52.95672226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103d0 -00008398 52.95672607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103d0 -00008399 52.95675278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103e0 -00008400 52.95675659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103e0 -00008401 52.95677948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f0 -00008402 52.95678329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f0 -00008403 52.95681000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10400 -00008404 52.95681000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10400 -00008405 52.95683670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10410 -00008406 52.95683670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10410 -00008407 52.95686340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10420 -00008408 52.95686722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10420 -00008409 52.95689392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10430 -00008410 52.95689774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10430 -00008411 52.95692062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10440 -00008412 52.95692444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10440 -00008413 52.95695114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10450 -00008414 52.95695496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10450 -00008415 52.95697784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10460 -00008416 52.95698166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10460 -00008417 52.95700836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10470 -00008418 52.95701218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10470 -00008419 52.95703506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10480 -00008420 52.95703506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10480 -00008421 52.95706558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10490 -00008422 52.95706558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10490 -00008423 52.95709229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a0 -00008424 52.95709610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a0 -00008425 52.95711899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b0 -00008426 52.95712280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b0 -00008427 52.95714951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104c0 -00008428 52.95715332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104c0 -00008429 52.95717621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104d0 -00008430 52.95718002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104d0 -00008431 52.95720673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104e0 -00008432 52.95721054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104e0 -00008433 52.95723343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104f0 -00008434 52.95723724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x104f0 -00008435 52.95726395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10500 -00008436 52.95726776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10500 -00008437 52.95729446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10510 -00008438 52.95729446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10510 -00008439 52.95732117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10520 -00008440 52.95732498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10520 -00008441 52.95735168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10530 -00008442 52.95735550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10530 -00008443 52.95737839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10540 -00008444 52.95737839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10540 -00008445 52.95740891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10550 -00008446 52.95740891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10550 -00008447 52.95743179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10560 -00008448 52.95743561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10560 -00008449 52.95746231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10570 -00008450 52.95746613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10570 -00008451 52.95749283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10580 -00008452 52.95749283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10580 -00008453 52.95751953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10590 -00008454 52.95752335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10590 -00008455 52.95755005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a0 -00008456 52.95755386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a0 -00008457 52.95757675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105b0 -00008458 52.95758057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105b0 -00008459 52.95760727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105c0 -00008460 52.95760727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105c0 -00008461 52.95763397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105d0 -00008462 52.95763397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105d0 -00008463 52.95766068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105e0 -00008464 52.95766449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105e0 -00008465 52.95769119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105f0 -00008466 52.95769119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x105f0 -00008467 52.95771790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10600 -00008468 52.95772171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10600 -00008469 52.95774841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10610 -00008470 52.95775223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10610 -00008471 52.95777512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10620 -00008472 52.95777893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10620 -00008473 52.95780563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10630 -00008474 52.95780945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10630 -00008475 52.95783234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10640 -00008476 52.95783615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10640 -00008477 52.95786285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10650 -00008478 52.95786667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10650 -00008479 52.95788956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10660 -00008480 52.95789337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10660 -00008481 52.95792007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10670 -00008482 52.95792007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10670 -00008483 52.95794678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10680 -00008484 52.95795059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10680 -00008485 52.95797348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10690 -00008486 52.95797729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10690 -00008487 52.95800400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106a0 -00008488 52.95800781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106a0 -00008489 52.95803070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106b0 -00008490 52.95803452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106b0 -00008491 52.95806122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106c0 -00008492 52.95806503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106c0 -00008493 52.95808792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d0 -00008494 52.95809174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d0 -00008495 52.95811844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e0 -00008496 52.95811844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e0 -00008497 52.95814896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f0 -00008498 52.95814896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f0 -00008499 52.95817184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10700 -00008500 52.95817566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10700 -00008501 52.95820236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10710 -00008502 52.95820618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10710 -00008503 52.95822906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -00008504 52.95823288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -00008505 52.95825958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -00008506 52.95826340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -00008507 52.95828629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -00008508 52.95829010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -00008509 52.95831680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -00008510 52.95832062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -00008511 52.95834732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -00008512 52.95834732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -00008513 52.95837402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -00008514 52.95837402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -00008515 52.95840073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -00008516 52.95840454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -00008517 52.95842743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -00008518 52.95843124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -00008519 52.95845795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -00008520 52.95846176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -00008521 52.95848465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -00008522 52.95848846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -00008523 52.95851517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -00008524 52.95851898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -00008525 52.95854568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -00008526 52.95854568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -00008527 52.95857239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -00008528 52.95857620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -00008529 52.95860291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -00008530 52.95860291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -00008531 52.95862961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -00008532 52.95862961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -00008533 52.95866013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -00008534 52.95866013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -00008535 52.95868301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -00008536 52.95868683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -00008537 52.95871353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10830 -00008538 52.95871735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10830 -00008539 52.95874405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10840 -00008540 52.95874405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10840 -00008541 52.95877075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10850 -00008542 52.95877457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10850 -00008543 52.95880127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10860 -00008544 52.95880508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10860 -00008545 52.95882797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10870 -00008546 52.95883179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10870 -00008547 52.95885849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10880 -00008548 52.95885849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10880 -00008549 52.95888519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10890 -00008550 52.95888519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10890 -00008551 52.95891190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108a0 -00008552 52.95891571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108a0 -00008553 52.95894241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108b0 -00008554 52.95894241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108b0 -00008555 52.95896912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108c0 -00008556 52.95897293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108c0 -00008557 52.95899963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108d0 -00008558 52.95900345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108d0 -00008559 52.95902634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108e0 -00008560 52.95903015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108e0 -00008561 52.95905685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108f0 -00008562 52.95906067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x108f0 -00008563 52.95908356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10900 -00008564 52.95908737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10900 -00008565 52.95911789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10910 -00008566 52.95912170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10910 -00008567 52.95914459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10920 -00008568 52.95914841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10920 -00008569 52.95917511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10930 -00008570 52.95917511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10930 -00008571 52.95920181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10940 -00008572 52.95920181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10940 -00008573 52.95922852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10950 -00008574 52.95923233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10950 -00008575 52.95925903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10960 -00008576 52.95925903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10960 -00008577 52.95928574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10970 -00008578 52.95928955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10970 -00008579 52.95931625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10980 -00008580 52.95932007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10980 -00008581 52.95934296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10990 -00008582 52.95934677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10990 -00008583 52.95937347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a0 -00008584 52.95937729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a0 -00008585 52.95940018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b0 -00008586 52.95940399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b0 -00008587 52.95943069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c0 -00008588 52.95943069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c0 -00008589 52.95945740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d0 -00008590 52.95945740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d0 -00008591 52.95948410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e0 -00008592 52.95948792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e0 -00008593 52.95951462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f0 -00008594 52.95951843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f0 -00008595 52.95954132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a00 -00008596 52.95954514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a00 -00008597 52.95957184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a10 -00008598 52.95957565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a10 -00008599 52.95959854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a20 -00008600 52.95960236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a20 -00008601 52.95962906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a30 -00008602 52.95963287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a30 -00008603 52.95965576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a40 -00008604 52.95965576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a40 -00008605 52.95968628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a50 -00008606 52.95969009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a50 -00008607 52.95971680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a60 -00008608 52.95971680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a60 -00008609 52.95974350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a70 -00008610 52.95974731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a70 -00008611 52.95977402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a80 -00008612 52.95977783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a80 -00008613 52.95980072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a90 -00008614 52.95980453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a90 -00008615 52.95983124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa0 -00008616 52.95983505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa0 -00008617 52.95985794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab0 -00008618 52.95985794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab0 -00008619 52.95988846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac0 -00008620 52.95988846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac0 -00008621 52.95991516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad0 -00008622 52.95991516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad0 -00008623 52.95994186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae0 -00008624 52.95994568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae0 -00008625 52.95997238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af0 -00008626 52.95997620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af0 -00008627 52.95999908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b00 -00008628 52.96000290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b00 -00008629 52.96002960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b10 -00008630 52.96003342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b10 -00008631 52.96005630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b20 -00008632 52.96006012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b20 -00008633 52.96008682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b30 -00008634 52.96009064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b30 -00008635 52.96011353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b40 -00008636 52.96011734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b40 -00008637 52.96014404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b50 -00008638 52.96014786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b50 -00008639 52.96017456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b60 -00008640 52.96017456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b60 -00008641 52.96019745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b70 -00008642 52.96020126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b70 -00008643 52.96022797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b80 -00008644 52.96023178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b80 -00008645 52.96025467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b90 -00008646 52.96025848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b90 -00008647 52.96028519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba0 -00008648 52.96028900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba0 -00008649 52.96031189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb0 -00008650 52.96031570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb0 -00008651 52.96034241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc0 -00008652 52.96034622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc0 -00008653 52.96037292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd0 -00008654 52.96037292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd0 -00008655 52.96039963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be0 -00008656 52.96040344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be0 -00008657 52.96043015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf0 -00008658 52.96043015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf0 -00008659 52.96045685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c00 -00008660 52.96046066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c00 -00008661 52.96048737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c10 -00008662 52.96049118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c10 -00008663 52.96051407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c20 -00008664 52.96051407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c20 -00008665 52.96054459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c30 -00008666 52.96054459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c30 -00008667 52.96057129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c40 -00008668 52.96057129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c40 -00008669 52.96059799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c50 -00008670 52.96060181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c50 -00008671 52.96062851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c60 -00008672 52.96062851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c60 -00008673 52.96065521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c70 -00008674 52.96065903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c70 -00008675 52.96068573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c80 -00008676 52.96068954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c80 -00008677 52.96071243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c90 -00008678 52.96071625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c90 -00008679 52.96074295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ca0 -00008680 52.96074295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ca0 -00008681 52.96076965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cb0 -00008682 52.96076965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cb0 -00008683 52.96079636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cc0 -00008684 52.96080017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cc0 -00008685 52.96082687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cd0 -00008686 52.96083069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cd0 -00008687 52.96085358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ce0 -00008688 52.96085739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ce0 -00008689 52.96088409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cf0 -00008690 52.96088791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cf0 -00008691 52.96091080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d00 -00008692 52.96091461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d00 -00008693 52.96094131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d10 -00008694 52.96094513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d10 -00008695 52.96096802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d20 -00008696 52.96097183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d20 -00008697 52.96099854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d30 -00008698 52.96100235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d30 -00008699 52.96102905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d40 -00008700 52.96102905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d40 -00008701 52.96105576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d50 -00008702 52.96105957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d50 -00008703 52.96108627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d60 -00008704 52.96108627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d60 -00008705 52.96111298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d70 -00008706 52.96111679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d70 -00008707 52.96114349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d80 -00008708 52.96114349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d80 -00008709 52.96117020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d90 -00008710 52.96117020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d90 -00008711 52.96119690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da0 -00008712 52.96120071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da0 -00008713 52.96122742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db0 -00008714 52.96122742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db0 -00008715 52.96125412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc0 -00008716 52.96125793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc0 -00008717 52.96128464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd0 -00008718 52.96128464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd0 -00008719 52.96131134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de0 -00008720 52.96131516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de0 -00008721 52.96134186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df0 -00008722 52.96134567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df0 -00008723 52.96136856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e00 -00008724 52.96136856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e00 -00008725 52.96139526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e10 -00008726 52.96139908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e10 -00008727 52.96142578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e20 -00008728 52.96142578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e20 -00008729 52.96145248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e30 -00008730 52.96145630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e30 -00008731 52.96148300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e40 -00008732 52.96148300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e40 -00008733 52.96150970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e50 -00008734 52.96151352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e50 -00008735 52.96154022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e60 -00008736 52.96154404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e60 -00008737 52.96156693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e70 -00008738 52.96157074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e70 -00008739 52.96159744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e80 -00008740 52.96160126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e80 -00008741 52.96162415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e90 -00008742 52.96162415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e90 -00008743 52.96165466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ea0 -00008744 52.96165466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ea0 -00008745 52.96168137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10eb0 -00008746 52.96168518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10eb0 -00008747 52.96171188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec0 -00008748 52.96171188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec0 -00008749 52.96173859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed0 -00008750 52.96174240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed0 -00008751 52.96176529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee0 -00008752 52.96176910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee0 -00008753 52.96179581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef0 -00008754 52.96179962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef0 -00008755 52.96182251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f00 -00008756 52.96182632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f00 -00008757 52.96185303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f10 -00008758 52.96185684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f10 -00008759 52.96187973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f20 -00008760 52.96188354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f20 -00008761 52.96191025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f30 -00008762 52.96191025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f30 -00008763 52.96194077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f40 -00008764 52.96194077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f40 -00008765 52.96196365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f50 -00008766 52.96196747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f50 -00008767 52.96199417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f60 -00008768 52.96199799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f60 -00008769 52.96202087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f70 -00008770 52.96202469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f70 -00008771 52.96205139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f80 -00008772 52.96205521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f80 -00008773 52.96207809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f90 -00008774 52.96208191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f90 -00008775 52.96210861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa0 -00008776 52.96211243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa0 -00008777 52.96213913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb0 -00008778 52.96213913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb0 -00008779 52.96216583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc0 -00008780 52.96216583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc0 -00008781 52.96219635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd0 -00008782 52.96219635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd0 -00008783 52.96221924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe0 -00008784 52.96222305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe0 -00008785 52.96224976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff0 -00008786 52.96225357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff0 -00008787 52.96228027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11000 -00008788 52.96228027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11000 -00008789 52.96230698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11010 -00008790 52.96231079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11010 -00008791 52.96233749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11020 -00008792 52.96233749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11020 -00008793 52.96236420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11030 -00008794 52.96236801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11030 -00008795 52.96239471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11040 -00008796 52.96239853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11040 -00008797 52.96242142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11050 -00008798 52.96242523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11050 -00008799 52.96245193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11060 -00008800 52.96245193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11060 -00008801 52.96247864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11070 -00008802 52.96247864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11070 -00008803 52.96250534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11080 -00008804 52.96250916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11080 -00008805 52.96253586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11090 -00008806 52.96253586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11090 -00008807 52.96256256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110a0 -00008808 52.96256638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110a0 -00008809 52.96259308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110b0 -00008810 52.96259689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110b0 -00008811 52.96261978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110c0 -00008812 52.96262360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110c0 -00008813 52.96265030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110d0 -00008814 52.96265411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110d0 -00008815 52.96267700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110e0 -00008816 52.96268082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110e0 -00008817 52.96270752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f0 -00008818 52.96270752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f0 -00008819 52.96273422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11100 -00008820 52.96273422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11100 -00008821 52.96276093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11110 -00008822 52.96276474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11110 -00008823 52.96279144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11120 -00008824 52.96279526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11120 -00008825 52.96281815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11130 -00008826 52.96282196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11130 -00008827 52.96284866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11140 -00008828 52.96285248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11140 -00008829 52.96287537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11150 -00008830 52.96287918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11150 -00008831 52.96290588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11160 -00008832 52.96290970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11160 -00008833 52.96293259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11170 -00008834 52.96293640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11170 -00008835 52.96296310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11180 -00008836 52.96296310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11180 -00008837 52.96299362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11190 -00008838 52.96299362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11190 -00008839 52.96301651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a0 -00008840 52.96302032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a0 -00008841 52.96304703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b0 -00008842 52.96305084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b0 -00008843 52.96307373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c0 -00008844 52.96307755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c0 -00008845 52.96310425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d0 -00008846 52.96310806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d0 -00008847 52.96313095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e0 -00008848 52.96313477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e0 -00008849 52.96316147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f0 -00008850 52.96316528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f0 -00008851 52.96319199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11200 -00008852 52.96319199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11200 -00008853 52.96321869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11210 -00008854 52.96321869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11210 -00008855 52.96324921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11220 -00008856 52.96324921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11220 -00008857 52.96327209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11230 -00008858 52.96327591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11230 -00008859 52.96330261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -00008860 52.96330643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -00008861 52.96332932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11250 -00008862 52.96333313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11250 -00008863 52.96335983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11260 -00008864 52.96336365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11260 -00008865 52.96339035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11270 -00008866 52.96339035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11270 -00008867 52.96341705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11280 -00008868 52.96342087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11280 -00008869 52.96344757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11290 -00008870 52.96345139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11290 -00008871 52.96347427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a0 -00008872 52.96347809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a0 -00008873 52.96350479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b0 -00008874 52.96350479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b0 -00008875 52.96353149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c0 -00008876 52.96353149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c0 -00008877 52.96355820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d0 -00008878 52.96356201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d0 -00008879 52.96358871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e0 -00008880 52.96358871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e0 -00008881 52.96361542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f0 -00008882 52.96361923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f0 -00008883 52.96364594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11300 -00008884 52.96364975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11300 -00008885 52.96367264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11310 -00008886 52.96367645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11310 -00008887 52.96370316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11320 -00008888 52.96370697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11320 -00008889 52.96372986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11330 -00008890 52.96372986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11330 -00008891 52.96376038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11340 -00008892 52.96376038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11340 -00008893 52.96378708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11350 -00008894 52.96378708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11350 -00008895 52.96381378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11360 -00008896 52.96381760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11360 -00008897 52.96384430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11370 -00008898 52.96384811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11370 -00008899 52.96387100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11380 -00008900 52.96387482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11380 -00008901 52.96390152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11390 -00008902 52.96390533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11390 -00008903 52.96392822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a0 -00008904 52.96393204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a0 -00008905 52.96395874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b0 -00008906 52.96396255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b0 -00008907 52.96398544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c0 -00008908 52.96398544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c0 -00008909 52.96401215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d0 -00008910 52.96401596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d0 -00008911 52.96404266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e0 -00008912 52.96404648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e0 -00008913 52.96406937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f0 -00008914 52.96407318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f0 -00008915 52.96409988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11400 -00008916 52.96410370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11400 -00008917 52.96412659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11410 -00008918 52.96413040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11410 -00008919 52.96415710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11420 -00008920 52.96416092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11420 -00008921 52.96418381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11430 -00008922 52.96418762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11430 -00008923 52.96421432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11440 -00008924 52.96421814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11440 -00008925 52.96424484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11450 -00008926 52.96424484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11450 -00008927 52.96426773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11460 -00008928 52.96427155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11460 -00008929 52.96429825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11470 -00008930 52.96430206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11470 -00008931 52.96432495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11480 -00008932 52.96432877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11480 -00008933 52.96435547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11490 -00008934 52.96435928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11490 -00008935 52.96438217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114a0 -00008936 52.96438599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114a0 -00008937 52.96441269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114b0 -00008938 52.96441650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114b0 -00008939 52.96444321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114c0 -00008940 52.96444321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114c0 -00008941 52.96446991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114d0 -00008942 52.96446991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114d0 -00008943 52.96449661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114e0 -00008944 52.96450043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114e0 -00008945 52.96452332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114f0 -00008946 52.96452713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x114f0 -00008947 52.96455383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11500 -00008948 52.96455765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11500 -00008949 52.96458054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11510 -00008950 52.96458435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11510 -00008951 52.96461105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11520 -00008952 52.96461487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11520 -00008953 52.96464157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11530 -00008954 52.96464157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11530 -00008955 52.96466827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11540 -00008956 52.96467209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11540 -00008957 52.96469879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11550 -00008958 52.96470261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11550 -00008959 52.96472549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11560 -00008960 52.96472931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11560 -00008961 52.96475601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11570 -00008962 52.96475601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11570 -00008963 52.96477890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11580 -00008964 52.96478271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11580 -00008965 52.96480942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11590 -00008966 52.96481323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11590 -00008967 52.96483994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a0 -00008968 52.96483994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a0 -00008969 52.96486664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b0 -00008970 52.96487045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b0 -00008971 52.96489716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115c0 -00008972 52.96490097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115c0 -00008973 52.96492386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115d0 -00008974 52.96492767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115d0 -00008975 52.96495438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115e0 -00008976 52.96495819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115e0 -00008977 52.96498108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115f0 -00008978 52.96498489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x115f0 -00008979 52.96501160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11600 -00008980 52.96501541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11600 -00008981 52.96503830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11610 -00008982 52.96504211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11610 -00008983 52.96506882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11620 -00008984 52.96506882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11620 -00008985 52.96509552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11630 -00008986 52.96509933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11630 -00008987 52.96512222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11640 -00008988 52.96512604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11640 -00008989 52.96515274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11650 -00008990 52.96515656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11650 -00008991 52.96517944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11660 -00008992 52.96518326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11660 -00008993 52.96520996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11670 -00008994 52.96521378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11670 -00008995 52.96523666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11680 -00008996 52.96524048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11680 -00008997 52.96526718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11690 -00008998 52.96527100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11690 -00008999 52.96529770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116a0 -00009000 52.96529770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116a0 -00009001 52.96532440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116b0 -00009002 52.96532822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116b0 -00009003 52.96535492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116c0 -00009004 52.96535492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116c0 -00009005 52.96538162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116d0 -00009006 52.96538544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116d0 -00009007 52.96541214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116e0 -00009008 52.96541595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116e0 -00009009 52.96543884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116f0 -00009010 52.96544266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x116f0 -00009011 52.96546936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11700 -00009012 52.96547318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11700 -00009013 52.96549606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11710 -00009014 52.96549606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11710 -00009015 52.96552658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11720 -00009016 52.96552658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11720 -00009017 52.96555328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11730 -00009018 52.96555710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11730 -00009019 52.96557999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11740 -00009020 52.96558380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11740 -00009021 52.96561050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11750 -00009022 52.96561432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11750 -00009023 52.96563721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11760 -00009024 52.96564102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11760 -00009025 52.96566772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11770 -00009026 52.96567154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11770 -00009027 52.96569443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11780 -00009028 52.96569824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11780 -00009029 52.96572495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11790 -00009030 52.96572876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11790 -00009031 52.96575546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117a0 -00009032 52.96575546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117a0 -00009033 52.96578217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117b0 -00009034 52.96578598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117b0 -00009035 52.96581268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117c0 -00009036 52.96581268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117c0 -00009037 52.96583557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117d0 -00009038 52.96583939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117d0 -00009039 52.96586609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117e0 -00009040 52.96586990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117e0 -00009041 52.96589279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117f0 -00009042 52.96589661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x117f0 -00009043 52.96592331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11800 -00009044 52.96592712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11800 -00009045 52.96595383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11810 -00009046 52.96595383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11810 -00009047 52.96598053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11820 -00009048 52.96598434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11820 -00009049 52.96601105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11830 -00009050 52.96601105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11830 -00009051 52.96603775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11840 -00009052 52.96604156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11840 -00009053 52.96606827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11850 -00009054 52.96607208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11850 -00009055 52.96609497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11860 -00009056 52.96609497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11860 -00009057 52.96612167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11870 -00009058 52.96612549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11870 -00009059 52.96615219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11880 -00009060 52.96615219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11880 -00009061 52.96617889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11890 -00009062 52.96618271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11890 -00009063 52.96620941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118a0 -00009064 52.96620941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118a0 -00009065 52.96623611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118b0 -00009066 52.96623993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118b0 -00009067 52.96626663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118c0 -00009068 52.96627045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118c0 -00009069 52.96629333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118d0 -00009070 52.96629333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118d0 -00009071 52.96632385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118e0 -00009072 52.96632385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118e0 -00009073 52.96635056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118f0 -00009074 52.96635056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x118f0 -00009075 52.96637726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11900 -00009076 52.96638107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11900 -00009077 52.96640778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11910 -00009078 52.96640778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11910 -00009079 52.96643448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11920 -00009080 52.96643829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11920 -00009081 52.96646500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11930 -00009082 52.96646881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11930 -00009083 52.96649170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11940 -00009084 52.96649551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11940 -00009085 52.96652222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11950 -00009086 52.96652222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11950 -00009087 52.96654892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11960 -00009088 52.96654892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11960 -00009089 52.96657944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11970 -00009090 52.96657944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11970 -00009091 52.96660614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11980 -00009092 52.96660614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11980 -00009093 52.96663284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11990 -00009094 52.96663666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11990 -00009095 52.96666336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119a0 -00009096 52.96666718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119a0 -00009097 52.96669006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119b0 -00009098 52.96669388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119b0 -00009099 52.96672058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119c0 -00009100 52.96672440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119c0 -00009101 52.96674728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119d0 -00009102 52.96675110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119d0 -00009103 52.96677780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e0 -00009104 52.96677780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e0 -00009105 52.96680450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f0 -00009106 52.96680450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f0 -00009107 52.96683121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a00 -00009108 52.96683502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a00 -00009109 52.96686172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a10 -00009110 52.96686554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a10 -00009111 52.96688843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a20 -00009112 52.96689224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a20 -00009113 52.96691895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a30 -00009114 52.96692276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a30 -00009115 52.96694565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a40 -00009116 52.96694946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a40 -00009117 52.96697617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a50 -00009118 52.96697998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a50 -00009119 52.96700668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a60 -00009120 52.96700668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a60 -00009121 52.96702957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a70 -00009122 52.96703339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a70 -00009123 52.96706009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a80 -00009124 52.96706390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a80 -00009125 52.96708679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a90 -00009126 52.96709061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a90 -00009127 52.96711731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa0 -00009128 52.96712112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa0 -00009129 52.96714401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab0 -00009130 52.96714783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab0 -00009131 52.96717453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac0 -00009132 52.96717834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac0 -00009133 52.96720505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad0 -00009134 52.96720505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad0 -00009135 52.96723175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae0 -00009136 52.96723557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae0 -00009137 52.96726227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af0 -00009138 52.96726227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af0 -00009139 52.96728897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b00 -00009140 52.96728897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b00 -00009141 52.96731567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b10 -00009142 52.96731949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b10 -00009143 52.96734238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b20 -00009144 52.96734619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b20 -00009145 52.96737289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b30 -00009146 52.96737671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b30 -00009147 52.96740341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b40 -00009148 52.96740341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b40 -00009149 52.96743011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b50 -00009150 52.96743393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b50 -00009151 52.96746063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b60 -00009152 52.96746063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b60 -00009153 52.96748734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b70 -00009154 52.96748734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b70 -00009155 52.96751785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b80 -00009156 52.96751785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b80 -00009157 52.96754074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b90 -00009158 52.96754456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b90 -00009159 52.96757126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ba0 -00009160 52.96757507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ba0 -00009161 52.96760178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bb0 -00009162 52.96760178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bb0 -00009163 52.96762848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bc0 -00009164 52.96763229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bc0 -00009165 52.96765900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bd0 -00009166 52.96765900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bd0 -00009167 52.96768570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be0 -00009168 52.96768951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be0 -00009169 52.96771622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf0 -00009170 52.96771622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf0 -00009171 52.96773911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c00 -00009172 52.96774292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c00 -00009173 52.96776962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c10 -00009174 52.96777344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c10 -00009175 52.96780014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c20 -00009176 52.96780014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c20 -00009177 52.96782684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c30 -00009178 52.96783066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c30 -00009179 52.96785736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c40 -00009180 52.96785736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c40 -00009181 52.96788406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c50 -00009182 52.96788788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c50 -00009183 52.96791458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c60 -00009184 52.96791840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c60 -00009185 52.96794128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c70 -00009186 52.96794510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c70 -00009187 52.96797180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c80 -00009188 52.96797562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c80 -00009189 52.96799850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c90 -00009190 52.96799850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c90 -00009191 52.96802521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca0 -00009192 52.96802902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca0 -00009193 52.96805573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb0 -00009194 52.96805573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb0 -00009195 52.96808243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc0 -00009196 52.96808624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc0 -00009197 52.96811295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd0 -00009198 52.96811676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd0 -00009199 52.96813965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce0 -00009200 52.96814346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce0 -00009201 52.96817017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf0 -00009202 52.96817398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf0 -00009203 52.96819687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d00 -00009204 52.96819687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d00 -00009205 52.96822357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d10 -00009206 52.96822739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d10 -00009207 52.96825409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d20 -00009208 52.96825790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d20 -00009209 52.96828079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d30 -00009210 52.96828461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d30 -00009211 52.96831131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d40 -00009212 52.96831512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d40 -00009213 52.96833801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d50 -00009214 52.96834183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d50 -00009215 52.96836853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d60 -00009216 52.96837234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d60 -00009217 52.96839523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d70 -00009218 52.96839905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d70 -00009219 52.96842575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d80 -00009220 52.96842575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d80 -00009221 52.96845627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d90 -00009222 52.96845627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d90 -00009223 52.96848297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da0 -00009224 52.96848297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da0 -00009225 52.96850967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -00009226 52.96851349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -00009227 52.96853638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -00009228 52.96854019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -00009229 52.96856689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -00009230 52.96857071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -00009231 52.96859360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -00009232 52.96859741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -00009233 52.96862411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -00009234 52.96862793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -00009235 52.96865463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -00009236 52.96865463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -00009237 52.96868134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -00009238 52.96868134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -00009239 52.96871185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -00009240 52.96871185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -00009241 52.96873474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -00009242 52.96873856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -00009243 52.96876526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -00009244 52.96876907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -00009245 52.96879196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -00009246 52.96879578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -00009247 52.96882248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -00009248 52.96882629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -00009249 52.96885300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -00009250 52.96885300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -00009251 52.96887970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -00009252 52.96888351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -00009253 52.96891022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -00009254 52.96891022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -00009255 52.96893311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -00009256 52.96893692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -00009257 52.96896362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -00009258 52.96896744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -00009259 52.96899033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -00009260 52.96899414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -00009261 52.96902084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -00009262 52.96902466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -00009263 52.96905136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -00009264 52.96905136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -00009265 52.96907806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -00009266 52.96908188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -00009267 52.96910858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -00009268 52.96910858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -00009269 52.96913528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -00009270 52.96913910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -00009271 52.96916580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f20 -00009272 52.96916962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f20 -00009273 52.96919250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f30 -00009274 52.96919632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f30 -00009275 52.96922302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f40 -00009276 52.96922302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f40 -00009277 52.96924973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f50 -00009278 52.96924973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f50 -00009279 52.96927643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f60 -00009280 52.96928024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f60 -00009281 52.96930695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f70 -00009282 52.96930695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f70 -00009283 52.96933365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f80 -00009284 52.96933746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f80 -00009285 52.96936417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f90 -00009286 52.96936798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f90 -00009287 52.96939087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa0 -00009288 52.96939468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa0 -00009289 52.96942139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb0 -00009290 52.96942520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb0 -00009291 52.96944809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc0 -00009292 52.96945190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc0 -00009293 52.96947861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd0 -00009294 52.96947861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd0 -00009295 52.96950531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe0 -00009296 52.96950531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe0 -00009297 52.96953201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff0 -00009298 52.96953583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff0 -00009299 52.96956253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12000 -00009300 52.96956635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12000 -00009301 52.96958923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12010 -00009302 52.96959305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12010 -00009303 52.96961975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12020 -00009304 52.96962357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12020 -00009305 52.96964645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12030 -00009306 52.96965027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12030 -00009307 52.96967697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12040 -00009308 52.96968079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12040 -00009309 52.96970749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12050 -00009310 52.96970749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12050 -00009311 52.96973419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12060 -00009312 52.96973801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12060 -00009313 52.96976471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12070 -00009314 52.96976471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12070 -00009315 52.96978760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12080 -00009316 52.96979141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12080 -00009317 52.96981812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12090 -00009318 52.96982193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12090 -00009319 52.96984482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120a0 -00009320 52.96984863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120a0 -00009321 52.96987534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120b0 -00009322 52.96987915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120b0 -00009323 52.96990585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120c0 -00009324 52.96990585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120c0 -00009325 52.96993256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120d0 -00009326 52.96993637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120d0 -00009327 52.96996307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120e0 -00009328 52.96996307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120e0 -00009329 52.96998978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120f0 -00009330 52.96998978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x120f0 -00009331 52.97001648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12100 -00009332 52.97002029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12100 -00009333 52.97004318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12110 -00009334 52.97004700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12110 -00009335 52.97007370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12120 -00009336 52.97007751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12120 -00009337 52.97010422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12130 -00009338 52.97010422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12130 -00009339 52.97013092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12140 -00009340 52.97013474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12140 -00009341 52.97016144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12150 -00009342 52.97016144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12150 -00009343 52.97018814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12160 -00009344 52.97018814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12160 -00009345 52.97021484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12170 -00009346 52.97021866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12170 -00009347 52.97024155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12180 -00009348 52.97024536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12180 -00009349 52.97027206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12190 -00009350 52.97027588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12190 -00009351 52.97030258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121a0 -00009352 52.97030258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121a0 -00009353 52.97032928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121b0 -00009354 52.97033310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121b0 -00009355 52.97035980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121c0 -00009356 52.97035980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121c0 -00009357 52.97038651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121d0 -00009358 52.97039032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121d0 -00009359 52.97041702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121e0 -00009360 52.97042084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121e0 -00009361 52.97044373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121f0 -00009362 52.97044373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x121f0 -00009363 52.97047424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12200 -00009364 52.97047424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12200 -00009365 52.97050095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12210 -00009366 52.97050095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12210 -00009367 52.97052765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12220 -00009368 52.97053146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12220 -00009369 52.97055817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12230 -00009370 52.97055817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12230 -00009371 52.97058487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12240 -00009372 52.97058868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12240 -00009373 52.97061539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12250 -00009374 52.97061920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12250 -00009375 52.97064209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12260 -00009376 52.97064590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12260 -00009377 52.97067261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12270 -00009378 52.97067261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12270 -00009379 52.97069931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12280 -00009380 52.97069931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12280 -00009381 52.97072601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12290 -00009382 52.97072983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12290 -00009383 52.97075653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a0 -00009384 52.97075653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a0 -00009385 52.97078323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b0 -00009386 52.97078705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b0 -00009387 52.97081375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122c0 -00009388 52.97081757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122c0 -00009389 52.97084045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122d0 -00009390 52.97084427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122d0 -00009391 52.97087097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122e0 -00009392 52.97087479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122e0 -00009393 52.97089767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122f0 -00009394 52.97089767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x122f0 -00009395 52.97092819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12300 -00009396 52.97092819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12300 -00009397 52.97095490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12310 -00009398 52.97095490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12310 -00009399 52.97098541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12320 -00009400 52.97098541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12320 -00009401 52.97101593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12330 -00009402 52.97101593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12330 -00009403 52.97103882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12340 -00009404 52.97104263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12340 -00009405 52.97106934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12350 -00009406 52.97107315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12350 -00009407 52.97109604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12360 -00009408 52.97109985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12360 -00009409 52.97112656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12370 -00009410 52.97113037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12370 -00009411 52.97115707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12380 -00009412 52.97115707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12380 -00009413 52.97118378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12390 -00009414 52.97118759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12390 -00009415 52.97121429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123a0 -00009416 52.97121429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123a0 -00009417 52.97124100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123b0 -00009418 52.97124100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123b0 -00009419 52.97126770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123c0 -00009420 52.97127151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123c0 -00009421 52.97129440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123d0 -00009422 52.97129822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123d0 -00009423 52.97132492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123e0 -00009424 52.97132874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123e0 -00009425 52.97135544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123f0 -00009426 52.97135544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x123f0 -00009427 52.97138214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12400 -00009428 52.97138596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12400 -00009429 52.97141266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12410 -00009430 52.97141266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12410 -00009431 52.97143936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12420 -00009432 52.97143936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12420 -00009433 52.97146606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12430 -00009434 52.97146988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12430 -00009435 52.97149277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12440 -00009436 52.97149658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12440 -00009437 52.97152328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12450 -00009438 52.97152710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12450 -00009439 52.97155380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12460 -00009440 52.97155380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12460 -00009441 52.97158051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12470 -00009442 52.97158432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12470 -00009443 52.97161102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12480 -00009444 52.97161102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12480 -00009445 52.97163773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12490 -00009446 52.97164154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12490 -00009447 52.97166824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124a0 -00009448 52.97167206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124a0 -00009449 52.97169495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124b0 -00009450 52.97169876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124b0 -00009451 52.97172546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124c0 -00009452 52.97172928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124c0 -00009453 52.97175217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124d0 -00009454 52.97175598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124d0 -00009455 52.97178268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124e0 -00009456 52.97178268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124e0 -00009457 52.97180939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124f0 -00009458 52.97180939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x124f0 -00009459 52.97183609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12500 -00009460 52.97183990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12500 -00009461 52.97186661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12510 -00009462 52.97187042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12510 -00009463 52.97189331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12520 -00009464 52.97189713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12520 -00009465 52.97192383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12530 -00009466 52.97192764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12530 -00009467 52.97195053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12540 -00009468 52.97195435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12540 -00009469 52.97198105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12550 -00009470 52.97198486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12550 -00009471 52.97200775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12560 -00009472 52.97200775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12560 -00009473 52.97203827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12570 -00009474 52.97203827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12570 -00009475 52.97206497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12580 -00009476 52.97206879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12580 -00009477 52.97209167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12590 -00009478 52.97209549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12590 -00009479 52.97212219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125a0 -00009480 52.97212601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125a0 -00009481 52.97214890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125b0 -00009482 52.97215271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125b0 -00009483 52.97217941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125c0 -00009484 52.97218323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125c0 -00009485 52.97220612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125d0 -00009486 52.97220993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125d0 -00009487 52.97224045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125e0 -00009488 52.97224426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125e0 -00009489 52.97226715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125f0 -00009490 52.97226715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x125f0 -00009491 52.97229767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12600 -00009492 52.97229767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12600 -00009493 52.97232819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12610 -00009494 52.97232819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12610 -00009495 52.97235489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12620 -00009496 52.97235870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12620 -00009497 52.97238541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12630 -00009498 52.97238541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12630 -00009499 52.97241211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12640 -00009500 52.97241592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12640 -00009501 52.97244263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12650 -00009502 52.97244644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12650 -00009503 52.97246933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12660 -00009504 52.97247314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12660 -00009505 52.97249985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12670 -00009506 52.97250366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12670 -00009507 52.97252655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12680 -00009508 52.97253036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12680 -00009509 52.97255707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12690 -00009510 52.97256088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12690 -00009511 52.97258377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a0 -00009512 52.97258759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a0 -00009513 52.97261429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b0 -00009514 52.97261810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b0 -00009515 52.97264481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c0 -00009516 52.97264481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c0 -00009517 52.97267151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d0 -00009518 52.97267532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d0 -00009519 52.97270203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e0 -00009520 52.97270584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e0 -00009521 52.97272873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126f0 -00009522 52.97273254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x126f0 -00009523 52.97275925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12700 -00009524 52.97276306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12700 -00009525 52.97278595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12710 -00009526 52.97278976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12710 -00009527 52.97281647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12720 -00009528 52.97282028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12720 -00009529 52.97284317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12730 -00009530 52.97284698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12730 -00009531 52.97287750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12740 -00009532 52.97287750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12740 -00009533 52.97290421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12750 -00009534 52.97290802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12750 -00009535 52.97294235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12760 -00009536 52.97294235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12760 -00009537 52.97296524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12770 -00009538 52.97296906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12770 -00009539 52.97299957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12780 -00009540 52.97299957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12780 -00009541 52.97303391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12790 -00009542 52.97303772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12790 -00009543 52.97306824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a0 -00009544 52.97307205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a0 -00009545 52.97309875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b0 -00009546 52.97310257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b0 -00009547 52.97312546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c0 -00009548 52.97312546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c0 -00009549 52.97315216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d0 -00009550 52.97315598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d0 -00009551 52.97318268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e0 -00009552 52.97318268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e0 -00009553 52.97320938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f0 -00009554 52.97321320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f0 -00009555 52.97323990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12800 -00009556 52.97323990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12800 -00009557 52.97326660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12810 -00009558 52.97327042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12810 -00009559 52.97329712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12820 -00009560 52.97330093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12820 -00009561 52.97332382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12830 -00009562 52.97332764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12830 -00009563 52.97335434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12840 -00009564 52.97335815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12840 -00009565 52.97338104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12850 -00009566 52.97338486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12850 -00009567 52.97341156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12860 -00009568 52.97341537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12860 -00009569 52.97343826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12870 -00009570 52.97344208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12870 -00009571 52.97346878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12880 -00009572 52.97347260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12880 -00009573 52.97349930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12890 -00009574 52.97349930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12890 -00009575 52.97352600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a0 -00009576 52.97352982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a0 -00009577 52.97355652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b0 -00009578 52.97355652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b0 -00009579 52.97357941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c0 -00009580 52.97358322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c0 -00009581 52.97360992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d0 -00009582 52.97361374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d0 -00009583 52.97363663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e0 -00009584 52.97364044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e0 -00009585 52.97366714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f0 -00009586 52.97367096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f0 -00009587 52.97369766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12900 -00009588 52.97369766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12900 -00009589 52.97372437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12910 -00009590 52.97372818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12910 -00009591 52.97375488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12920 -00009592 52.97375488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12920 -00009593 52.97377777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12930 -00009594 52.97378159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12930 -00009595 52.97380829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12940 -00009596 52.97381210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12940 -00009597 52.97383499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12950 -00009598 52.97383881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12950 -00009599 52.97386551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12960 -00009600 52.97386932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12960 -00009601 52.97389603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12970 -00009602 52.97389603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12970 -00009603 52.97392273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12980 -00009604 52.97392654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12980 -00009605 52.97395325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12990 -00009606 52.97395325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12990 -00009607 52.97397995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a0 -00009608 52.97397995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a0 -00009609 52.97400665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b0 -00009610 52.97401047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b0 -00009611 52.97403336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c0 -00009612 52.97403717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c0 -00009613 52.97406387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d0 -00009614 52.97406769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d0 -00009615 52.97409439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e0 -00009616 52.97409439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e0 -00009617 52.97412109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f0 -00009618 52.97412491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f0 -00009619 52.97415161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a00 -00009620 52.97415543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a00 -00009621 52.97417831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a10 -00009622 52.97418213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a10 -00009623 52.97420883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -00009624 52.97421265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -00009625 52.97423553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -00009626 52.97423935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -00009627 52.97426605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -00009628 52.97426987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -00009629 52.97429276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -00009630 52.97429276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -00009631 52.97431946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -00009632 52.97432327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -00009633 52.97434998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -00009634 52.97435379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -00009635 52.97437668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -00009636 52.97438049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -00009637 52.97440720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -00009638 52.97441101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -00009639 52.97443390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -00009640 52.97443771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -00009641 52.97446442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -00009642 52.97446823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -00009643 52.97449112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -00009644 52.97449112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -00009645 52.97452164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad0 -00009646 52.97452164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad0 -00009647 52.97454834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae0 -00009648 52.97455215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae0 -00009649 52.97457504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af0 -00009650 52.97457886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af0 -00009651 52.97460556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b00 -00009652 52.97460938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b00 -00009653 52.97463226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b10 -00009654 52.97463608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b10 -00009655 52.97466278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b20 -00009656 52.97466660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b20 -00009657 52.97468948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b30 -00009658 52.97469330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b30 -00009659 52.97472382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b40 -00009660 52.97472382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b40 -00009661 52.97475052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b50 -00009662 52.97475052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b50 -00009663 52.97477722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b60 -00009664 52.97478104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b60 -00009665 52.97480774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b70 -00009666 52.97480774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b70 -00009667 52.97483444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b80 -00009668 52.97483826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b80 -00009669 52.97486496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b90 -00009670 52.97486877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b90 -00009671 52.97489166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ba0 -00009672 52.97489548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ba0 -00009673 52.97492218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bb0 -00009674 52.97492599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bb0 -00009675 52.97494888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bc0 -00009676 52.97494888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bc0 -00009677 52.97497940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bd0 -00009678 52.97497940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bd0 -00009679 52.97500610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12be0 -00009680 52.97500610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12be0 -00009681 52.97503281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bf0 -00009682 52.97503662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bf0 -00009683 52.97506332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c00 -00009684 52.97506714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c00 -00009685 52.97509003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c10 -00009686 52.97509384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c10 -00009687 52.97512054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c20 -00009688 52.97512436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c20 -00009689 52.97514725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c30 -00009690 52.97515106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c30 -00009691 52.97517776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c40 -00009692 52.97518158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c40 -00009693 52.97520828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c50 -00009694 52.97520828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c50 -00009695 52.97523117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c60 -00009696 52.97523499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c60 -00009697 52.97526169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c70 -00009698 52.97526550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c70 -00009699 52.97528839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c80 -00009700 52.97529221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c80 -00009701 52.97531891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c90 -00009702 52.97532272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c90 -00009703 52.97534561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ca0 -00009704 52.97534943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ca0 -00009705 52.97537613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cb0 -00009706 52.97537994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cb0 -00009707 52.97540665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cc0 -00009708 52.97540665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cc0 -00009709 52.97543335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cd0 -00009710 52.97543716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cd0 -00009711 52.97546387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce0 -00009712 52.97546387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce0 -00009713 52.97549057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf0 -00009714 52.97549438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf0 -00009715 52.97552109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d00 -00009716 52.97552490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d00 -00009717 52.97554779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d10 -00009718 52.97555161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d10 -00009719 52.97557831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d20 -00009720 52.97557831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d20 -00009721 52.97560501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d30 -00009722 52.97560501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d30 -00009723 52.97563171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d40 -00009724 52.97563553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d40 -00009725 52.97566223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d50 -00009726 52.97566223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d50 -00009727 52.97568893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d60 -00009728 52.97569275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d60 -00009729 52.97571945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d70 -00009730 52.97572327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d70 -00009731 52.97574615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d80 -00009732 52.97574997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d80 -00009733 52.97577667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d90 -00009734 52.97578049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d90 -00009735 52.97580338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da0 -00009736 52.97580719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da0 -00009737 52.97583389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db0 -00009738 52.97583389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db0 -00009739 52.97586060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc0 -00009740 52.97586060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc0 -00009741 52.97588730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd0 -00009742 52.97589111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd0 -00009743 52.97591782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de0 -00009744 52.97592163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de0 -00009745 52.97594452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df0 -00009746 52.97594833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df0 -00009747 52.97597504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e00 -00009748 52.97597885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e00 -00009749 52.97600174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e10 -00009750 52.97600555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e10 -00009751 52.97603226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e20 -00009752 52.97603607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e20 -00009753 52.97605896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e30 -00009754 52.97606277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e30 -00009755 52.97608948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e40 -00009756 52.97609329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e40 -00009757 52.97612000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e50 -00009758 52.97612000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e50 -00009759 52.97614670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e60 -00009760 52.97614670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e60 -00009761 52.97617722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e70 -00009762 52.97617722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e70 -00009763 52.97620010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e80 -00009764 52.97620392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e80 -00009765 52.97623062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e90 -00009766 52.97623444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e90 -00009767 52.97625732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ea0 -00009768 52.97626114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ea0 -00009769 52.97628784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12eb0 -00009770 52.97629166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12eb0 -00009771 52.97631836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ec0 -00009772 52.97631836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ec0 -00009773 52.97634506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ed0 -00009774 52.97634888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ed0 -00009775 52.97637558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ee0 -00009776 52.97637939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ee0 -00009777 52.97640228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ef0 -00009778 52.97640228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ef0 -00009779 52.97642899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f00 -00009780 52.97643280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f00 -00009781 52.97645950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f10 -00009782 52.97645950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f10 -00009783 52.97648621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f20 -00009784 52.97649002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f20 -00009785 52.97651672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f30 -00009786 52.97651672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f30 -00009787 52.97654343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f40 -00009788 52.97654724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f40 -00009789 52.97657394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f50 -00009790 52.97657776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f50 -00009791 52.97660065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f60 -00009792 52.97660446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f60 -00009793 52.97663116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f70 -00009794 52.97663498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f70 -00009795 52.97665787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f80 -00009796 52.97666168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f80 -00009797 52.97668839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f90 -00009798 52.97669220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f90 -00009799 52.97671509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fa0 -00009800 52.97671890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fa0 -00009801 52.97674561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fb0 -00009802 52.97674942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fb0 -00009803 52.97677612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fc0 -00009804 52.97677612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fc0 -00009805 52.97679901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fd0 -00009806 52.97680283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fd0 -00009807 52.97682953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fe0 -00009808 52.97683334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fe0 -00009809 52.97685623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ff0 -00009810 52.97686005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ff0 -00009811 52.97688675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13000 -00009812 52.97689056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13000 -00009813 52.97691345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13010 -00009814 52.97691727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13010 -00009815 52.97694397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13020 -00009816 52.97694778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13020 -00009817 52.97697449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13030 -00009818 52.97697449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13030 -00009819 52.97700119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13040 -00009820 52.97700119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13040 -00009821 52.97702789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13050 -00009822 52.97703171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13050 -00009823 52.97705460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13060 -00009824 52.97705841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13060 -00009825 52.97708511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13070 -00009826 52.97708893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13070 -00009827 52.97711182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13080 -00009828 52.97711563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13080 -00009829 52.97714233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13090 -00009830 52.97714615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13090 -00009831 52.97717285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130a0 -00009832 52.97717285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130a0 -00009833 52.97719955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130b0 -00009834 52.97720337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130b0 -00009835 52.97723007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130c0 -00009836 52.97723389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130c0 -00009837 52.97725677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130d0 -00009838 52.97725677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130d0 -00009839 52.97728348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130e0 -00009840 52.97728729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130e0 -00009841 52.97731018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130f0 -00009842 52.97731400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x130f0 -00009843 52.97734070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13100 -00009844 52.97734451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13100 -00009845 52.97737122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13110 -00009846 52.97737122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13110 -00009847 52.97739792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13120 -00009848 52.97740173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13120 -00009849 52.97742844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13130 -00009850 52.97743225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13130 -00009851 52.97745514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13140 -00009852 52.97745514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13140 -00009853 52.97748566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13150 -00009854 52.97748566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13150 -00009855 52.97750854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13160 -00009856 52.97751236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13160 -00009857 52.97753906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13170 -00009858 52.97754288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13170 -00009859 52.97756958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13180 -00009860 52.97756958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13180 -00009861 52.97759628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13190 -00009862 52.97760010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13190 -00009863 52.97762680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131a0 -00009864 52.97763062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131a0 -00009865 52.97765350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131b0 -00009866 52.97765732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131b0 -00009867 52.97768402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131c0 -00009868 52.97768402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131c0 -00009869 52.97770691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131d0 -00009870 52.97771072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131d0 -00009871 52.97773743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e0 -00009872 52.97774124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e0 -00009873 52.97776794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f0 -00009874 52.97776794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f0 -00009875 52.97779465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13200 -00009876 52.97779846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13200 -00009877 52.97782516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13210 -00009878 52.97782898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13210 -00009879 52.97785187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13220 -00009880 52.97785568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13220 -00009881 52.97788239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13230 -00009882 52.97788620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13230 -00009883 52.97790909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13240 -00009884 52.97791290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13240 -00009885 52.97793961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13250 -00009886 52.97793961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13250 -00009887 52.97796631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13260 -00009888 52.97796631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13260 -00009889 52.97799301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13270 -00009890 52.97799683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13270 -00009891 52.97802353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13280 -00009892 52.97802734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13280 -00009893 52.97805023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13290 -00009894 52.97805405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13290 -00009895 52.97808075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a0 -00009896 52.97808456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a0 -00009897 52.97810745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b0 -00009898 52.97811127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b0 -00009899 52.97813797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c0 -00009900 52.97813797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c0 -00009901 52.97816467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d0 -00009902 52.97816467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d0 -00009903 52.97819138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e0 -00009904 52.97819519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e0 -00009905 52.97822189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f0 -00009906 52.97822571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f0 -00009907 52.97824860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13300 -00009908 52.97825241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13300 -00009909 52.97827911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13310 -00009910 52.97828293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13310 -00009911 52.97830582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13320 -00009912 52.97830963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13320 -00009913 52.97833633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13330 -00009914 52.97833633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13330 -00009915 52.97836304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13340 -00009916 52.97836304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13340 -00009917 52.97838974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13350 -00009918 52.97839355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13350 -00009919 52.97842026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13360 -00009920 52.97842407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13360 -00009921 52.97844696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13370 -00009922 52.97845078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13370 -00009923 52.97847748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13380 -00009924 52.97848129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13380 -00009925 52.97850418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13390 -00009926 52.97850800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13390 -00009927 52.97853470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133a0 -00009928 52.97853851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133a0 -00009929 52.97856140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b0 -00009930 52.97856522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b0 -00009931 52.97859192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c0 -00009932 52.97859573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c0 -00009933 52.97862244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d0 -00009934 52.97862244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d0 -00009935 52.97864914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e0 -00009936 52.97864914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e0 -00009937 52.97867584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f0 -00009938 52.97867966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f0 -00009939 52.97870255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13400 -00009940 52.97870636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13400 -00009941 52.97873306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13410 -00009942 52.97873688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13410 -00009943 52.97875977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13420 -00009944 52.97876358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13420 -00009945 52.97879028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13430 -00009946 52.97879410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13430 -00009947 52.97882080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13440 -00009948 52.97882080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13440 -00009949 52.97884750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13450 -00009950 52.97884750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13450 -00009951 52.97887421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -00009952 52.97887802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -00009953 52.97890091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -00009954 52.97890472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -00009955 52.97893143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -00009956 52.97893524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -00009957 52.97895813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -00009958 52.97896194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -00009959 52.97898865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -00009960 52.97899246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -00009961 52.97901917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -00009962 52.97901917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -00009963 52.97904587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -00009964 52.97904587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -00009965 52.97907639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -00009966 52.97908020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -00009967 52.97910309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -00009968 52.97910690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -00009969 52.97913361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -00009970 52.97913742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -00009971 52.97917175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -00009972 52.97917557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -00009973 52.97920227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13510 -00009974 52.97920227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13510 -00009975 52.97923279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13520 -00009976 52.97923279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13520 -00009977 52.97925949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13530 -00009978 52.97925949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13530 -00009979 52.97928619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13540 -00009980 52.97929001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13540 -00009981 52.97931671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13550 -00009982 52.97931671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13550 -00009983 52.97934341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13560 -00009984 52.97934723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13560 -00009985 52.97937393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13570 -00009986 52.97937775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13570 -00009987 52.97940063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13580 -00009988 52.97940445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13580 -00009989 52.97943115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13590 -00009990 52.97943497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13590 -00009991 52.97945786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a0 -00009992 52.97946167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a0 -00009993 52.97948837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b0 -00009994 52.97948837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b0 -00009995 52.97951508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c0 -00009996 52.97951508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c0 -00009997 52.97954178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d0 -00009998 52.97954559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d0 -00009999 52.97957230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e0 -00010000 52.97957611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e0 -00010001 52.97959900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f0 -00010002 52.97960281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f0 -00010003 52.97962952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13600 -00010004 52.97963333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13600 -00010005 52.97965622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13610 -00010006 52.97966003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13610 -00010007 52.97968674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13620 -00010008 52.97969055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13620 -00010009 52.97971344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13630 -00010010 52.97971725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13630 -00010011 52.97974396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13640 -00010012 52.97974777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13640 -00010013 52.97977448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13650 -00010014 52.97977448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13650 -00010015 52.97980118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13660 -00010016 52.97980118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13660 -00010017 52.97982788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13670 -00010018 52.97983170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13670 -00010019 52.97985458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13680 -00010020 52.97985840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13680 -00010021 52.97988510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13690 -00010022 52.97988892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13690 -00010023 52.97991180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136a0 -00010024 52.97991562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136a0 -00010025 52.97994232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136b0 -00010026 52.97994614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136b0 -00010027 52.97997284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136c0 -00010028 52.97997284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136c0 -00010029 52.97999954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136d0 -00010030 52.97999954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136d0 -00010031 52.98002625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136e0 -00010032 52.98003006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136e0 -00010033 52.98005295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136f0 -00010034 52.98005676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x136f0 -00010035 52.98008347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13700 -00010036 52.98008728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13700 -00010037 52.98011017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13710 -00010038 52.98011398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13710 -00010039 52.98014069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13720 -00010040 52.98014450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13720 -00010041 52.98017120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13730 -00010042 52.98017120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13730 -00010043 52.98019791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13740 -00010044 52.98019791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13740 -00010045 52.98022461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13750 -00010046 52.98022842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13750 -00010047 52.98025131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13760 -00010048 52.98025513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13760 -00010049 52.98028183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13770 -00010050 52.98028564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13770 -00010051 52.98030853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13780 -00010052 52.98031235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13780 -00010053 52.98033905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13790 -00010054 52.98034286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13790 -00010055 52.98036957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137a0 -00010056 52.98036957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137a0 -00010057 52.98039627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137b0 -00010058 52.98040009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137b0 -00010059 52.98042679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137c0 -00010060 52.98043060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137c0 -00010061 52.98045349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137d0 -00010062 52.98045349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137d0 -00010063 52.98048019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137e0 -00010064 52.98048401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137e0 -00010065 52.98050690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f0 -00010066 52.98051071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f0 -00010067 52.98053741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13800 -00010068 52.98054123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13800 -00010069 52.98056793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13810 -00010070 52.98056793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13810 -00010071 52.98059464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13820 -00010072 52.98059845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13820 -00010073 52.98062515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13830 -00010074 52.98062897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13830 -00010075 52.98065186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13840 -00010076 52.98065186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13840 -00010077 52.98067856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13850 -00010078 52.98068237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13850 -00010079 52.98070908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13860 -00010080 52.98070908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13860 -00010081 52.98073578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13870 -00010082 52.98073959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13870 -00010083 52.98076630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13880 -00010084 52.98076630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13880 -00010085 52.98079300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13890 -00010086 52.98079681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13890 -00010087 52.98082352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a0 -00010088 52.98082733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a0 -00010089 52.98085022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b0 -00010090 52.98085022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b0 -00010091 52.98088074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c0 -00010092 52.98088074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c0 -00010093 52.98090744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d0 -00010094 52.98090744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d0 -00010095 52.98093414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e0 -00010096 52.98093796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e0 -00010097 52.98096466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f0 -00010098 52.98096466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f0 -00010099 52.98099136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13900 -00010100 52.98099518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13900 -00010101 52.98102188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13910 -00010102 52.98102570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13910 -00010103 52.98104858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13920 -00010104 52.98105240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13920 -00010105 52.98107910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13930 -00010106 52.98108292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13930 -00010107 52.98110580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13940 -00010108 52.98110580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13940 -00010109 52.98113632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13950 -00010110 52.98113632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13950 -00010111 52.98116302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13960 -00010112 52.98116302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13960 -00010113 52.98118973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13970 -00010114 52.98119354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13970 -00010115 52.98122025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13980 -00010116 52.98122406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13980 -00010117 52.98124695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13990 -00010118 52.98125076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13990 -00010119 52.98127747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a0 -00010120 52.98128128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a0 -00010121 52.98130417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b0 -00010122 52.98130798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b0 -00010123 52.98133469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c0 -00010124 52.98133469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c0 -00010125 52.98136139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d0 -00010126 52.98136139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d0 -00010127 52.98138809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e0 -00010128 52.98139191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e0 -00010129 52.98141861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f0 -00010130 52.98142242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f0 -00010131 52.98144531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a00 -00010132 52.98144913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a00 -00010133 52.98147583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a10 -00010134 52.98147964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a10 -00010135 52.98150253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a20 -00010136 52.98150635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a20 -00010137 52.98153305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a30 -00010138 52.98153305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a30 -00010139 52.98155975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a40 -00010140 52.98156357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a40 -00010141 52.98159027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a50 -00010142 52.98159027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a50 -00010143 52.98162079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a60 -00010144 52.98162079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a60 -00010145 52.98164368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a70 -00010146 52.98164749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a70 -00010147 52.98167419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a80 -00010148 52.98167801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a80 -00010149 52.98170090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a90 -00010150 52.98170471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a90 -00010151 52.98173141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa0 -00010152 52.98173523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa0 -00010153 52.98175812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab0 -00010154 52.98176193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab0 -00010155 52.98178864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac0 -00010156 52.98179245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac0 -00010157 52.98181915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad0 -00010158 52.98181915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad0 -00010159 52.98184204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae0 -00010160 52.98184586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae0 -00010161 52.98187256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af0 -00010162 52.98187637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af0 -00010163 52.98189926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b00 -00010164 52.98190308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b00 -00010165 52.98192978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b10 -00010166 52.98193359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b10 -00010167 52.98196030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b20 -00010168 52.98196030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b20 -00010169 52.98198700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b30 -00010170 52.98199081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b30 -00010171 52.98201752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b40 -00010172 52.98201752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b40 -00010173 52.98204041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b50 -00010174 52.98204422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b50 -00010175 52.98207092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b60 -00010176 52.98207474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b60 -00010177 52.98209763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b70 -00010178 52.98210144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b70 -00010179 52.98212814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b80 -00010180 52.98213196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b80 -00010181 52.98215866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b90 -00010182 52.98215866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b90 -00010183 52.98218536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ba0 -00010184 52.98218918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ba0 -00010185 52.98221588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb0 -00010186 52.98221588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb0 -00010187 52.98224258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc0 -00010188 52.98224640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc0 -00010189 52.98227310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd0 -00010190 52.98227310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd0 -00010191 52.98229599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be0 -00010192 52.98229980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be0 -00010193 52.98232651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bf0 -00010194 52.98233032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bf0 -00010195 52.98235703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c00 -00010196 52.98235703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c00 -00010197 52.98238373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c10 -00010198 52.98238754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c10 -00010199 52.98241425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c20 -00010200 52.98241425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c20 -00010201 52.98244095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c30 -00010202 52.98244476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c30 -00010203 52.98247147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c40 -00010204 52.98247147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c40 -00010205 52.98249435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c50 -00010206 52.98249817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c50 -00010207 52.98252487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c60 -00010208 52.98252869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c60 -00010209 52.98255539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c70 -00010210 52.98255539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c70 -00010211 52.98258209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c80 -00010212 52.98258591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c80 -00010213 52.98261261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c90 -00010214 52.98261261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c90 -00010215 52.98263931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -00010216 52.98264313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -00010217 52.98266983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -00010218 52.98266983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -00010219 52.98269653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc0 -00010220 52.98269653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc0 -00010221 52.98272324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd0 -00010222 52.98272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd0 -00010223 52.98275375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce0 -00010224 52.98275375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce0 -00010225 52.98278046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf0 -00010226 52.98278427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf0 -00010227 52.98281097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d00 -00010228 52.98281097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d00 -00010229 52.98283768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d10 -00010230 52.98284149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d10 -00010231 52.98286819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d20 -00010232 52.98287201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d20 -00010233 52.98289490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d30 -00010234 52.98289871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d30 -00010235 52.98292542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d40 -00010236 52.98292542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d40 -00010237 52.98295212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d50 -00010238 52.98295212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d50 -00010239 52.98297882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d60 -00010240 52.98298264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d60 -00010241 52.98300934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d70 -00010242 52.98300934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d70 -00010243 52.98303604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d80 -00010244 52.98303986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d80 -00010245 52.98306656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d90 -00010246 52.98307037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d90 -00010247 52.98309326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da0 -00010248 52.98309708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da0 -00010249 52.98312378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db0 -00010250 52.98312378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db0 -00010251 52.98315048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -00010252 52.98315048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -00010253 52.98317719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -00010254 52.98318100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -00010255 52.98320770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -00010256 52.98320770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -00010257 52.98323441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df0 -00010258 52.98323822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df0 -00010259 52.98326492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e00 -00010260 52.98326874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e00 -00010261 52.98329163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e10 -00010262 52.98329544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e10 -00010263 52.98332214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e20 -00010264 52.98332596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e20 -00010265 52.98334885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e30 -00010266 52.98334885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e30 -00010267 52.98337555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e40 -00010268 52.98337936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e40 -00010269 52.98340607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e50 -00010270 52.98340988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e50 -00010271 52.98343277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e60 -00010272 52.98343658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e60 -00010273 52.98346329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e70 -00010274 52.98346710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e70 -00010275 52.98348999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e80 -00010276 52.98349380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e80 -00010277 52.98352051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e90 -00010278 52.98352432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e90 -00010279 52.98354721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ea0 -00010280 52.98355103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ea0 -00010281 52.98357773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13eb0 -00010282 52.98358154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13eb0 -00010283 52.98360825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ec0 -00010284 52.98360825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ec0 -00010285 52.98363495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ed0 -00010286 52.98363495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ed0 -00010287 52.98366165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ee0 -00010288 52.98366547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ee0 -00010289 52.98368835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ef0 -00010290 52.98369217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ef0 -00010291 52.98371887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f00 -00010292 52.98372269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f00 -00010293 52.98374557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f10 -00010294 52.98374939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f10 -00010295 52.98377609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f20 -00010296 52.98377991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f20 -00010297 52.98380661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f30 -00010298 52.98380661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f30 -00010299 52.98383331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f40 -00010300 52.98383331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f40 -00010301 52.98386002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f50 -00010302 52.98386383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f50 -00010303 52.98388672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f60 -00010304 52.98389053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f60 -00010305 52.98391724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f70 -00010306 52.98392105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f70 -00010307 52.98394394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f80 -00010308 52.98394775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f80 -00010309 52.98397446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f90 -00010310 52.98397827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f90 -00010311 52.98400497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa0 -00010312 52.98400497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa0 -00010313 52.98403168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb0 -00010314 52.98403549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb0 -00010315 52.98406219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc0 -00010316 52.98406219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc0 -00010317 52.98408890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd0 -00010318 52.98408890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd0 -00010319 52.98411942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe0 -00010320 52.98411942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe0 -00010321 52.98414612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff0 -00010322 52.98414612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff0 -00010323 52.98417282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14000 -00010324 52.98417664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14000 -00010325 52.98420334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14010 -00010326 52.98420334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14010 -00010327 52.98423004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14020 -00010328 52.98423386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14020 -00010329 52.98426056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14030 -00010330 52.98426056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14030 -00010331 52.98428726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14040 -00010332 52.98429108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14040 -00010333 52.98431778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14050 -00010334 52.98432159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14050 -00010335 52.98434448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14060 -00010336 52.98434448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14060 -00010337 52.98437119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14070 -00010338 52.98437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14070 -00010339 52.98440170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14080 -00010340 52.98440170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14080 -00010341 52.98442841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14090 -00010342 52.98443222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14090 -00010343 52.98445892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a0 -00010344 52.98445892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a0 -00010345 52.98448563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b0 -00010346 52.98448944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b0 -00010347 52.98451614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c0 -00010348 52.98451996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c0 -00010349 52.98454285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d0 -00010350 52.98454285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d0 -00010351 52.98457336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e0 -00010352 52.98457336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e0 -00010353 52.98460007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f0 -00010354 52.98460007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f0 -00010355 52.98462677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14100 -00010356 52.98463058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14100 -00010357 52.98465729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14110 -00010358 52.98466110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14110 -00010359 52.98468399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14120 -00010360 52.98468781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14120 -00010361 52.98471451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14130 -00010362 52.98471832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14130 -00010363 52.98474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14140 -00010364 52.98474503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14140 -00010365 52.98477173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14150 -00010366 52.98477554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14150 -00010367 52.98479843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14160 -00010368 52.98479843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14160 -00010369 52.98482895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14170 -00010370 52.98482895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14170 -00010371 52.98485565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14180 -00010372 52.98485947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14180 -00010373 52.98488235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14190 -00010374 52.98488617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14190 -00010375 52.98491287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141a0 -00010376 52.98491669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141a0 -00010377 52.98493958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141b0 -00010378 52.98494339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141b0 -00010379 52.98497009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141c0 -00010380 52.98497391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141c0 -00010381 52.98499680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141d0 -00010382 52.98500061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141d0 -00010383 52.98502731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141e0 -00010384 52.98502731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141e0 -00010385 52.98505783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141f0 -00010386 52.98505783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x141f0 -00010387 52.98508072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14200 -00010388 52.98508453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14200 -00010389 52.98511124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14210 -00010390 52.98511505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14210 -00010391 52.98513794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14220 -00010392 52.98514175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14220 -00010393 52.98516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14230 -00010394 52.98517227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14230 -00010395 52.98519516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14240 -00010396 52.98519897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14240 -00010397 52.98522568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14250 -00010398 52.98522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14250 -00010399 52.98525620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14260 -00010400 52.98525620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14260 -00010401 52.98527908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14270 -00010402 52.98528290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14270 -00010403 52.98531342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14280 -00010404 52.98531342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14280 -00010405 52.98533630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14290 -00010406 52.98534012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14290 -00010407 52.98536682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142a0 -00010408 52.98537064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142a0 -00010409 52.98539352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142b0 -00010410 52.98539734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142b0 -00010411 52.98542404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142c0 -00010412 52.98542786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142c0 -00010413 52.98545456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142d0 -00010414 52.98545456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142d0 -00010415 52.98548126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142e0 -00010416 52.98548508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142e0 -00010417 52.98551178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142f0 -00010418 52.98551178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x142f0 -00010419 52.98553848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14300 -00010420 52.98553848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14300 -00010421 52.98556519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14310 -00010422 52.98556900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14310 -00010423 52.98559189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14320 -00010424 52.98559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14320 -00010425 52.98562241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14330 -00010426 52.98562622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14330 -00010427 52.98565292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14340 -00010428 52.98565292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14340 -00010429 52.98567963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -00010430 52.98568344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -00010431 52.98571014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -00010432 52.98571014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -00010433 52.98573685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -00010434 52.98573685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -00010435 52.98576736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -00010436 52.98576736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -00010437 52.98579025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -00010438 52.98579407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -00010439 52.98582077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -00010440 52.98582458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -00010441 52.98585129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -00010442 52.98585129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -00010443 52.98587799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -00010444 52.98588181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -00010445 52.98590851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -00010446 52.98590851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -00010447 52.98593521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -00010448 52.98593903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -00010449 52.98596573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -00010450 52.98596954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -00010451 52.98599243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14400 -00010452 52.98599625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14400 -00010453 52.98602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14410 -00010454 52.98602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14410 -00010455 52.98604965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14420 -00010456 52.98604965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14420 -00010457 52.98607635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14430 -00010458 52.98608017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14430 -00010459 52.98610687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14440 -00010460 52.98611069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14440 -00010461 52.98613358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14450 -00010462 52.98613739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14450 -00010463 52.98616409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14460 -00010464 52.98616791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14460 -00010465 52.98619080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14470 -00010466 52.98619461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14470 -00010467 52.98622131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14480 -00010468 52.98622131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14480 -00010469 52.98624802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14490 -00010470 52.98624802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14490 -00010471 52.98627472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a0 -00010472 52.98627853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a0 -00010473 52.98630524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b0 -00010474 52.98630905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b0 -00010475 52.98633194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c0 -00010476 52.98633575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c0 -00010477 52.98636246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d0 -00010478 52.98636627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d0 -00010479 52.98638916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e0 -00010480 52.98639297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e0 -00010481 52.98641968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f0 -00010482 52.98642349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f0 -00010483 52.98644638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14500 -00010484 52.98644638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14500 -00010485 52.98647690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14510 -00010486 52.98647690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14510 -00010487 52.98650360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14520 -00010488 52.98650742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14520 -00010489 52.98653030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14530 -00010490 52.98653412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14530 -00010491 52.98656082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14540 -00010492 52.98656464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14540 -00010493 52.98658752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14550 -00010494 52.98659134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14550 -00010495 52.98661804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14560 -00010496 52.98662186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14560 -00010497 52.98664474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14570 -00010498 52.98664856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14570 -00010499 52.98667526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14580 -00010500 52.98667908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14580 -00010501 52.98670578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14590 -00010502 52.98670578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14590 -00010503 52.98673248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a0 -00010504 52.98673248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a0 -00010505 52.98675919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b0 -00010506 52.98676300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b0 -00010507 52.98678589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c0 -00010508 52.98678970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c0 -00010509 52.98681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d0 -00010510 52.98682022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d0 -00010511 52.98684311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e0 -00010512 52.98684692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e0 -00010513 52.98687363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f0 -00010514 52.98687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f0 -00010515 52.98690414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14600 -00010516 52.98690414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14600 -00010517 52.98693085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14610 -00010518 52.98693085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14610 -00010519 52.98696136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14620 -00010520 52.98696136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14620 -00010521 52.98698425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14630 -00010522 52.98698807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14630 -00010523 52.98701477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14640 -00010524 52.98701859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14640 -00010525 52.98704147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14650 -00010526 52.98704529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14650 -00010527 52.98707199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14660 -00010528 52.98707581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14660 -00010529 52.98710251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14670 -00010530 52.98710251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14670 -00010531 52.98712921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14680 -00010532 52.98713303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14680 -00010533 52.98715973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14690 -00010534 52.98715973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14690 -00010535 52.98718643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146a0 -00010536 52.98718643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146a0 -00010537 52.98721695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146b0 -00010538 52.98721695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146b0 -00010539 52.98724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146c0 -00010540 52.98724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146c0 -00010541 52.98727036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146d0 -00010542 52.98727417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146d0 -00010543 52.98730087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146e0 -00010544 52.98730087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146e0 -00010545 52.98732758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146f0 -00010546 52.98733139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x146f0 -00010547 52.98735809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14700 -00010548 52.98735809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14700 -00010549 52.98738480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14710 -00010550 52.98738861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14710 -00010551 52.98741531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14720 -00010552 52.98741913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14720 -00010553 52.98744202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14730 -00010554 52.98744202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14730 -00010555 52.98746872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14740 -00010556 52.98747253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14740 -00010557 52.98749924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14750 -00010558 52.98749924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14750 -00010559 52.98752594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14760 -00010560 52.98752975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14760 -00010561 52.98755646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14770 -00010562 52.98756027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14770 -00010563 52.98758316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14780 -00010564 52.98758698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14780 -00010565 52.98761368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14790 -00010566 52.98761749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14790 -00010567 52.98764038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147a0 -00010568 52.98764420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147a0 -00010569 52.98767090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147b0 -00010570 52.98767090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147b0 -00010571 52.98769760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147c0 -00010572 52.98769760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147c0 -00010573 52.98772430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147d0 -00010574 52.98772812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147d0 -00010575 52.98775482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e0 -00010576 52.98775864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e0 -00010577 52.98778152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f0 -00010578 52.98778534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f0 -00010579 52.98781204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14800 -00010580 52.98781586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14800 -00010581 52.98783875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14810 -00010582 52.98784256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14810 -00010583 52.98786926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14820 -00010584 52.98787308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14820 -00010585 52.98789597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14830 -00010586 52.98789978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14830 -00010587 52.98792648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14840 -00010588 52.98793030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14840 -00010589 52.98795700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14850 -00010590 52.98795700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14850 -00010591 52.98798370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14860 -00010592 52.98798370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14860 -00010593 52.98801041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14870 -00010594 52.98801422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14870 -00010595 52.98803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14880 -00010596 52.98804092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14880 -00010597 52.98806763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14890 -00010598 52.98807144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14890 -00010599 52.98809433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a0 -00010600 52.98809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a0 -00010601 52.98812485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b0 -00010602 52.98812866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b0 -00010603 52.98815536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c0 -00010604 52.98815536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c0 -00010605 52.98818207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d0 -00010606 52.98818207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d0 -00010607 52.98821259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e0 -00010608 52.98821259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e0 -00010609 52.98823547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f0 -00010610 52.98823929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f0 -00010611 52.98826599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14900 -00010612 52.98826981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14900 -00010613 52.98829269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14910 -00010614 52.98829651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14910 -00010615 52.98832321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14920 -00010616 52.98832703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14920 -00010617 52.98835373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14930 -00010618 52.98835373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14930 -00010619 52.98838043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14940 -00010620 52.98838425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14940 -00010621 52.98841095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14950 -00010622 52.98841095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14950 -00010623 52.98843765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14960 -00010624 52.98844147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14960 -00010625 52.98846817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14970 -00010626 52.98846817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14970 -00010627 52.98849106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14980 -00010628 52.98849487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14980 -00010629 52.98852158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14990 -00010630 52.98852539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14990 -00010631 52.98855209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149a0 -00010632 52.98855209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149a0 -00010633 52.98857880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149b0 -00010634 52.98858261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149b0 -00010635 52.98860931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149c0 -00010636 52.98860931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149c0 -00010637 52.98863602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149d0 -00010638 52.98863983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149d0 -00010639 52.98866653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e0 -00010640 52.98867035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e0 -00010641 52.98869324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f0 -00010642 52.98869705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f0 -00010643 52.98872375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a00 -00010644 52.98872375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a00 -00010645 52.98875046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a10 -00010646 52.98875046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a10 -00010647 52.98877716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a20 -00010648 52.98878098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a20 -00010649 52.98880768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a30 -00010650 52.98881149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a30 -00010651 52.98883438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a40 -00010652 52.98883820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a40 -00010653 52.98886490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a50 -00010654 52.98886871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a50 -00010655 52.98889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a60 -00010656 52.98889542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a60 -00010657 52.98892212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a70 -00010658 52.98892593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a70 -00010659 52.98894882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a80 -00010660 52.98894882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a80 -00010661 52.98897552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a90 -00010662 52.98897934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a90 -00010663 52.98900604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa0 -00010664 52.98900986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa0 -00010665 52.98903275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab0 -00010666 52.98903656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab0 -00010667 52.98906326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac0 -00010668 52.98906708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac0 -00010669 52.98908997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad0 -00010670 52.98909378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad0 -00010671 52.98912048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae0 -00010672 52.98912430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae0 -00010673 52.98914719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af0 -00010674 52.98915100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af0 -00010675 52.98917770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b00 -00010676 52.98918152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b00 -00010677 52.98920822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b10 -00010678 52.98920822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b10 -00010679 52.98923492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b20 -00010680 52.98923492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b20 -00010681 52.98926163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b30 -00010682 52.98926544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b30 -00010683 52.98928833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b40 -00010684 52.98929214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b40 -00010685 52.98931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b50 -00010686 52.98932266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b50 -00010687 52.98934555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b60 -00010688 52.98934937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b60 -00010689 52.98937607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b70 -00010690 52.98937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b70 -00010691 52.98940659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b80 -00010692 52.98940659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b80 -00010693 52.98943329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b90 -00010694 52.98943329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b90 -00010695 52.98945999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba0 -00010696 52.98946381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba0 -00010697 52.98948669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb0 -00010698 52.98949051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb0 -00010699 52.98951721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc0 -00010700 52.98952103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc0 -00010701 52.98954391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd0 -00010702 52.98954773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd0 -00010703 52.98957443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be0 -00010704 52.98957825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be0 -00010705 52.98960495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf0 -00010706 52.98960495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf0 -00010707 52.98963165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c00 -00010708 52.98963547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c00 -00010709 52.98966217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c10 -00010710 52.98966217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c10 -00010711 52.98968887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c20 -00010712 52.98968887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c20 -00010713 52.98971939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c30 -00010714 52.98971939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c30 -00010715 52.98974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c40 -00010716 52.98974991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c40 -00010717 52.98977661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c50 -00010718 52.98978043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c50 -00010719 52.98980331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c60 -00010720 52.98980713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c60 -00010721 52.98983383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c70 -00010722 52.98983765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c70 -00010723 52.98986053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c80 -00010724 52.98986435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c80 -00010725 52.98989105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c90 -00010726 52.98989487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c90 -00010727 52.98992157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca0 -00010728 52.98992157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca0 -00010729 52.98994446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb0 -00010730 52.98994827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb0 -00010731 52.98997498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc0 -00010732 52.98997879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc0 -00010733 52.99000168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd0 -00010734 52.99000549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd0 -00010735 52.99003220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ce0 -00010736 52.99003601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ce0 -00010737 52.99005890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cf0 -00010738 52.99006271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cf0 -00010739 52.99008942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d00 -00010740 52.99009323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d00 -00010741 52.99011993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d10 -00010742 52.99011993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d10 -00010743 52.99014664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d20 -00010744 52.99014664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d20 -00010745 52.99017334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d30 -00010746 52.99017715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d30 -00010747 52.99020004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d40 -00010748 52.99020386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d40 -00010749 52.99023056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d50 -00010750 52.99023438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d50 -00010751 52.99026108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d60 -00010752 52.99026108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d60 -00010753 52.99028778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d70 -00010754 52.99029160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d70 -00010755 52.99031830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d80 -00010756 52.99031830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d80 -00010757 52.99034500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d90 -00010758 52.99034500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d90 -00010759 52.99037552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da0 -00010760 52.99037933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da0 -00010761 52.99040222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db0 -00010762 52.99040604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db0 -00010763 52.99043274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc0 -00010764 52.99043274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc0 -00010765 52.99045944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd0 -00010766 52.99045944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd0 -00010767 52.99048615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -00010768 52.99048996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -00010769 52.99051666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -00010770 52.99051666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -00010771 52.99054337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -00010772 52.99054718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -00010773 52.99057388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -00010774 52.99057770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -00010775 52.99060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -00010776 52.99060440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -00010777 52.99063110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -00010778 52.99063492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -00010779 52.99065781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -00010780 52.99066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -00010781 52.99068832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -00010782 52.99068832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -00010783 52.99071503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -00010784 52.99071503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -00010785 52.99074173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -00010786 52.99074554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -00010787 52.99077225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -00010788 52.99077606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -00010789 52.99079895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e90 -00010790 52.99080276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e90 -00010791 52.99082947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea0 -00010792 52.99083328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea0 -00010793 52.99085617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb0 -00010794 52.99085999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb0 -00010795 52.99088669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec0 -00010796 52.99089050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec0 -00010797 52.99091339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed0 -00010798 52.99091339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed0 -00010799 52.99094391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee0 -00010800 52.99094391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee0 -00010801 52.99097443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef0 -00010802 52.99097443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef0 -00010803 52.99099731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f00 -00010804 52.99100113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f00 -00010805 52.99102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f10 -00010806 52.99103165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f10 -00010807 52.99105453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f20 -00010808 52.99105835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f20 -00010809 52.99108505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f30 -00010810 52.99108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f30 -00010811 52.99111176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f40 -00010812 52.99111557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f40 -00010813 52.99114227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f50 -00010814 52.99114609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f50 -00010815 52.99117279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f60 -00010816 52.99117279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f60 -00010817 52.99119949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f70 -00010818 52.99119949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f70 -00010819 52.99122620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f80 -00010820 52.99123001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f80 -00010821 52.99125290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f90 -00010822 52.99125671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f90 -00010823 52.99128342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa0 -00010824 52.99128723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa0 -00010825 52.99131012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb0 -00010826 52.99131393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb0 -00010827 52.99134064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc0 -00010828 52.99134445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc0 -00010829 52.99137115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd0 -00010830 52.99137115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd0 -00010831 52.99139786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe0 -00010832 52.99140167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe0 -00010833 52.99142838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff0 -00010834 52.99142838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff0 -00010835 52.99145126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15000 -00010836 52.99145508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15000 -00010837 52.99148178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15010 -00010838 52.99148560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15010 -00010839 52.99151230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15020 -00010840 52.99151230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15020 -00010841 52.99153900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15030 -00010842 52.99154282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15030 -00010843 52.99156952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15040 -00010844 52.99157333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15040 -00010845 52.99160004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15050 -00010846 52.99160385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15050 -00010847 52.99163055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15060 -00010848 52.99163055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15060 -00010849 52.99165726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15070 -00010850 52.99165726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15070 -00010851 52.99168396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15080 -00010852 52.99168777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15080 -00010853 52.99171066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15090 -00010854 52.99171448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15090 -00010855 52.99174118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a0 -00010856 52.99174500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a0 -00010857 52.99176788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b0 -00010858 52.99177170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b0 -00010859 52.99179840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c0 -00010860 52.99180222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c0 -00010861 52.99182892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d0 -00010862 52.99182892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d0 -00010863 52.99185562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e0 -00010864 52.99185944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e0 -00010865 52.99188614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f0 -00010866 52.99188614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f0 -00010867 52.99191284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15100 -00010868 52.99191666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15100 -00010869 52.99194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15110 -00010870 52.99194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15110 -00010871 52.99196625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15120 -00010872 52.99197006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15120 -00010873 52.99199677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15130 -00010874 52.99200058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15130 -00010875 52.99202728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15140 -00010876 52.99202728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15140 -00010877 52.99205399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15150 -00010878 52.99205780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15150 -00010879 52.99208450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15160 -00010880 52.99208450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15160 -00010881 52.99211121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15170 -00010882 52.99211502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15170 -00010883 52.99214172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15180 -00010884 52.99214172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15180 -00010885 52.99216843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15190 -00010886 52.99216843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15190 -00010887 52.99219894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151a0 -00010888 52.99219894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151a0 -00010889 52.99222565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151b0 -00010890 52.99222565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151b0 -00010891 52.99225235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151c0 -00010892 52.99225616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151c0 -00010893 52.99228287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151d0 -00010894 52.99228668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151d0 -00010895 52.99230957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151e0 -00010896 52.99231339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151e0 -00010897 52.99234009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151f0 -00010898 52.99234390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x151f0 -00010899 52.99236679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15200 -00010900 52.99237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15200 -00010901 52.99239731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15210 -00010902 52.99240112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15210 -00010903 52.99242401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15220 -00010904 52.99242401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15220 -00010905 52.99245453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15230 -00010906 52.99245453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15230 -00010907 52.99248123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15240 -00010908 52.99248505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15240 -00010909 52.99250793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15250 -00010910 52.99251175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15250 -00010911 52.99253845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15260 -00010912 52.99254227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15260 -00010913 52.99256516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15270 -00010914 52.99256897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15270 -00010915 52.99259567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15280 -00010916 52.99259949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15280 -00010917 52.99262238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15290 -00010918 52.99262619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15290 -00010919 52.99265289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a0 -00010920 52.99265289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a0 -00010921 52.99267960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b0 -00010922 52.99268341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b0 -00010923 52.99270630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c0 -00010924 52.99271011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c0 -00010925 52.99273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d0 -00010926 52.99274063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d0 -00010927 52.99276352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e0 -00010928 52.99276733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e0 -00010929 52.99279404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f0 -00010930 52.99279785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f0 -00010931 52.99282074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15300 -00010932 52.99282455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15300 -00010933 52.99285126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15310 -00010934 52.99285507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15310 -00010935 52.99288177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15320 -00010936 52.99288177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15320 -00010937 52.99290848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -00010938 52.99291229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -00010939 52.99293900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -00010940 52.99293900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -00010941 52.99296570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15350 -00010942 52.99296570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15350 -00010943 52.99299240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -00010944 52.99299622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -00010945 52.99301910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -00010946 52.99302292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -00010947 52.99304962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -00010948 52.99305344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -00010949 52.99308014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -00010950 52.99308395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -00010951 52.99311066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -00010952 52.99311447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -00010953 52.99313736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -00010954 52.99314117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -00010955 52.99316788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -00010956 52.99317169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -00010957 52.99319839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -00010958 52.99319839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -00010959 52.99322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -00010960 52.99322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -00010961 52.99325562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -00010962 52.99325943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -00010963 52.99328232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -00010964 52.99328232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -00010965 52.99331284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15410 -00010966 52.99331284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15410 -00010967 52.99333572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15420 -00010968 52.99333954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15420 -00010969 52.99336624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15430 -00010970 52.99337006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15430 -00010971 52.99339676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15440 -00010972 52.99339676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15440 -00010973 52.99342346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15450 -00010974 52.99342728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15450 -00010975 52.99345398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15460 -00010976 52.99345779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15460 -00010977 52.99348068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15470 -00010978 52.99348450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15470 -00010979 52.99351120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15480 -00010980 52.99351501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15480 -00010981 52.99353790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15490 -00010982 52.99354172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15490 -00010983 52.99356842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154a0 -00010984 52.99357224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154a0 -00010985 52.99359512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154b0 -00010986 52.99359894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154b0 -00010987 52.99362564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154c0 -00010988 52.99362946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154c0 -00010989 52.99365616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154d0 -00010990 52.99365616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154d0 -00010991 52.99368286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154e0 -00010992 52.99368668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154e0 -00010993 52.99371338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154f0 -00010994 52.99371338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x154f0 -00010995 52.99374008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15500 -00010996 52.99374390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15500 -00010997 52.99377060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15510 -00010998 52.99377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15510 -00010999 52.99379730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15520 -00011000 52.99380112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15520 -00011001 52.99382782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15530 -00011002 52.99383163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15530 -00011003 52.99385452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15540 -00011004 52.99385452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15540 -00011005 52.99388123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15550 -00011006 52.99388504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15550 -00011007 52.99391174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15560 -00011008 52.99391174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15560 -00011009 52.99393845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15570 -00011010 52.99394226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15570 -00011011 52.99396896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15580 -00011012 52.99397278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15580 -00011013 52.99399567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15590 -00011014 52.99399948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15590 -00011015 52.99402618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155a0 -00011016 52.99403000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155a0 -00011017 52.99405289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155b0 -00011018 52.99405289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155b0 -00011019 52.99408340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155c0 -00011020 52.99408722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155c0 -00011021 52.99411011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155d0 -00011022 52.99411011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155d0 -00011023 52.99413681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155e0 -00011024 52.99414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155e0 -00011025 52.99416733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155f0 -00011026 52.99417114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x155f0 -00011027 52.99419403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15600 -00011028 52.99419785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15600 -00011029 52.99422455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15610 -00011030 52.99422836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15610 -00011031 52.99425125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15620 -00011032 52.99425507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15620 -00011033 52.99428177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15630 -00011034 52.99428558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15630 -00011035 52.99431229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15640 -00011036 52.99431229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15640 -00011037 52.99433899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15650 -00011038 52.99433899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15650 -00011039 52.99436569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15660 -00011040 52.99436951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15660 -00011041 52.99439240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15670 -00011042 52.99439621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15670 -00011043 52.99442291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15680 -00011044 52.99442673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15680 -00011045 52.99444962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15690 -00011046 52.99445343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15690 -00011047 52.99448013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a0 -00011048 52.99448395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a0 -00011049 52.99451065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b0 -00011050 52.99451065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b0 -00011051 52.99453735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c0 -00011052 52.99454117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c0 -00011053 52.99456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d0 -00011054 52.99456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d0 -00011055 52.99459076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e0 -00011056 52.99459457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e0 -00011057 52.99462128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f0 -00011058 52.99462509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f0 -00011059 52.99464798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15700 -00011060 52.99465179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15700 -00011061 52.99467850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15710 -00011062 52.99468231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15710 -00011063 52.99470901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15720 -00011064 52.99470901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15720 -00011065 52.99473572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15730 -00011066 52.99473953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15730 -00011067 52.99476624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15740 -00011068 52.99476624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15740 -00011069 52.99479294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15750 -00011070 52.99479675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15750 -00011071 52.99482346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15760 -00011072 52.99482727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15760 -00011073 52.99485016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15770 -00011074 52.99485397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15770 -00011075 52.99488068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15780 -00011076 52.99488449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15780 -00011077 52.99490738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15790 -00011078 52.99491119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15790 -00011079 52.99493790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157a0 -00011080 52.99493790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157a0 -00011081 52.99496460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157b0 -00011082 52.99496460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157b0 -00011083 52.99499130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157c0 -00011084 52.99499512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157c0 -00011085 52.99502182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d0 -00011086 52.99502563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d0 -00011087 52.99504852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e0 -00011088 52.99505234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e0 -00011089 52.99507904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157f0 -00011090 52.99508286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x157f0 -00011091 52.99510574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15800 -00011092 52.99510956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15800 -00011093 52.99513626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15810 -00011094 52.99514008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15810 -00011095 52.99516296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15820 -00011096 52.99516296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15820 -00011097 52.99519348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15830 -00011098 52.99519348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15830 -00011099 52.99522018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15840 -00011100 52.99522400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15840 -00011101 52.99524689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15850 -00011102 52.99525070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15850 -00011103 52.99527740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15860 -00011104 52.99528122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15860 -00011105 52.99530411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15870 -00011106 52.99530792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15870 -00011107 52.99533463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15880 -00011108 52.99533844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15880 -00011109 52.99536133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15890 -00011110 52.99536514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15890 -00011111 52.99539185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a0 -00011112 52.99539566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a0 -00011113 52.99542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b0 -00011114 52.99542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b0 -00011115 52.99544907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c0 -00011116 52.99545288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c0 -00011117 52.99547958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d0 -00011118 52.99547958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d0 -00011119 52.99550247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e0 -00011120 52.99550629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e0 -00011121 52.99553299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f0 -00011122 52.99553680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f0 -00011123 52.99556351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15900 -00011124 52.99556351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15900 -00011125 52.99559021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15910 -00011126 52.99559402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15910 -00011127 52.99562073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15920 -00011128 52.99562073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15920 -00011129 52.99564743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15930 -00011130 52.99565125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15930 -00011131 52.99567795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15940 -00011132 52.99568176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15940 -00011133 52.99570465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15950 -00011134 52.99570847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15950 -00011135 52.99573517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15960 -00011136 52.99573898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15960 -00011137 52.99576187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15970 -00011138 52.99576569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15970 -00011139 52.99579239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15980 -00011140 52.99579620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15980 -00011141 52.99581909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15990 -00011142 52.99581909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15990 -00011143 52.99584579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a0 -00011144 52.99584961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a0 -00011145 52.99587631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b0 -00011146 52.99588013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b0 -00011147 52.99590302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c0 -00011148 52.99590683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c0 -00011149 52.99593353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d0 -00011150 52.99593735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d0 -00011151 52.99596024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e0 -00011152 52.99596405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e0 -00011153 52.99599075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f0 -00011154 52.99599457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f0 -00011155 52.99601746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a00 -00011156 52.99602127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a00 -00011157 52.99604797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a10 -00011158 52.99605179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a10 -00011159 52.99607849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a20 -00011160 52.99607849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a20 -00011161 52.99610519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a30 -00011162 52.99610901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a30 -00011163 52.99613571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a40 -00011164 52.99613571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a40 -00011165 52.99616241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a50 -00011166 52.99616241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a50 -00011167 52.99618912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a60 -00011168 52.99619293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a60 -00011169 52.99621582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a70 -00011170 52.99621964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a70 -00011171 52.99624634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a80 -00011172 52.99625015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a80 -00011173 52.99627686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a90 -00011174 52.99627686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a90 -00011175 52.99630356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa0 -00011176 52.99630737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa0 -00011177 52.99633408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab0 -00011178 52.99633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab0 -00011179 52.99636078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac0 -00011180 52.99636459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac0 -00011181 52.99639130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad0 -00011182 52.99639130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad0 -00011183 52.99641418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae0 -00011184 52.99641800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae0 -00011185 52.99644470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af0 -00011186 52.99644852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af0 -00011187 52.99647522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b00 -00011188 52.99647522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b00 -00011189 52.99650192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b10 -00011190 52.99650574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b10 -00011191 52.99653244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b20 -00011192 52.99653625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b20 -00011193 52.99655914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b30 -00011194 52.99656296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b30 -00011195 52.99658966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b40 -00011196 52.99659348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b40 -00011197 52.99661636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b50 -00011198 52.99662018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b50 -00011199 52.99664688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b60 -00011200 52.99664688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b60 -00011201 52.99667358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b70 -00011202 52.99667358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b70 -00011203 52.99670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b80 -00011204 52.99670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b80 -00011205 52.99673462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b90 -00011206 52.99673462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b90 -00011207 52.99676514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba0 -00011208 52.99677277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba0 -00011209 52.99680710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb0 -00011210 52.99681091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb0 -00011211 52.99684143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc0 -00011212 52.99684525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc0 -00011213 52.99687195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd0 -00011214 52.99687195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd0 -00011215 52.99689865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be0 -00011216 52.99690247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be0 -00011217 52.99692917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf0 -00011218 52.99693298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf0 -00011219 52.99695587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c00 -00011220 52.99695969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c00 -00011221 52.99698639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c10 -00011222 52.99699020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c10 -00011223 52.99701309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c20 -00011224 52.99701309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c20 -00011225 52.99703979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c30 -00011226 52.99704361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c30 -00011227 52.99707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c40 -00011228 52.99707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c40 -00011229 52.99709702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c50 -00011230 52.99710083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c50 -00011231 52.99712753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c60 -00011232 52.99713135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c60 -00011233 52.99715424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c70 -00011234 52.99715805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c70 -00011235 52.99718475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c80 -00011236 52.99718857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c80 -00011237 52.99721146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c90 -00011238 52.99721527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c90 -00011239 52.99724197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ca0 -00011240 52.99724579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ca0 -00011241 52.99726868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cb0 -00011242 52.99727249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cb0 -00011243 52.99730301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cc0 -00011244 52.99731064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cc0 -00011245 52.99734116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cd0 -00011246 52.99734497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cd0 -00011247 52.99736786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ce0 -00011248 52.99736786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ce0 -00011249 52.99739838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf0 -00011250 52.99740219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf0 -00011251 52.99742889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d00 -00011252 52.99742889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d00 -00011253 52.99745560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d10 -00011254 52.99745560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d10 -00011255 52.99748230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d20 -00011256 52.99748611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d20 -00011257 52.99750900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d30 -00011258 52.99751282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d30 -00011259 52.99753952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d40 -00011260 52.99754333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d40 -00011261 52.99756622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d50 -00011262 52.99757004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d50 -00011263 52.99759674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d60 -00011264 52.99760056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d60 -00011265 52.99762726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d70 -00011266 52.99762726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d70 -00011267 52.99765396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d80 -00011268 52.99765778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d80 -00011269 52.99768448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d90 -00011270 52.99768448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d90 -00011271 52.99771118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da0 -00011272 52.99771500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da0 -00011273 52.99774551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db0 -00011274 52.99774551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db0 -00011275 52.99776840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc0 -00011276 52.99777222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc0 -00011277 52.99779892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd0 -00011278 52.99780273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd0 -00011279 52.99782944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de0 -00011280 52.99782944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de0 -00011281 52.99785614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df0 -00011282 52.99785995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df0 -00011283 52.99788666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e00 -00011284 52.99788666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e00 -00011285 52.99791336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e10 -00011286 52.99791718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e10 -00011287 52.99794388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e20 -00011288 52.99794388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e20 -00011289 52.99798203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e30 -00011290 52.99798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e30 -00011291 52.99801254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e40 -00011292 52.99801254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e40 -00011293 52.99804306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e50 -00011294 52.99804306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e50 -00011295 52.99808121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e60 -00011296 52.99808502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e60 -00011297 52.99812317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e70 -00011298 52.99812698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e70 -00011299 52.99816513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e80 -00011300 52.99816895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e80 -00011301 52.99820328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e90 -00011302 52.99820709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e90 -00011303 52.99824142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea0 -00011304 52.99824142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea0 -00011305 52.99826813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb0 -00011306 52.99827194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb0 -00011307 52.99829865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec0 -00011308 52.99830246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec0 -00011309 52.99832535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed0 -00011310 52.99832916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed0 -00011311 52.99835587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee0 -00011312 52.99835968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee0 -00011313 52.99838257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -00011314 52.99838638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -00011315 52.99841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -00011316 52.99841690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -00011317 52.99843979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -00011318 52.99844360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -00011319 52.99847031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -00011320 52.99847412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -00011321 52.99850082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -00011322 52.99850082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -00011323 52.99852753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -00011324 52.99853134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -00011325 52.99855804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -00011326 52.99856186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -00011327 52.99858475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -00011328 52.99858475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -00011329 52.99861526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -00011330 52.99861526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -00011331 52.99864197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -00011332 52.99864197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -00011333 52.99866867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -00011334 52.99867249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -00011335 52.99869919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -00011336 52.99869919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -00011337 52.99872589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -00011338 52.99872971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -00011339 52.99875641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -00011340 52.99876022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -00011341 52.99878311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -00011342 52.99878693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -00011343 52.99881363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -00011344 52.99881744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -00011345 52.99884033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -00011346 52.99884415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -00011347 52.99887085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -00011348 52.99887466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -00011349 52.99889755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -00011350 52.99889755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -00011351 52.99892426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -00011352 52.99892807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -00011353 52.99895477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16030 -00011354 52.99895859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16030 -00011355 52.99898148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16040 -00011356 52.99898529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16040 -00011357 52.99901199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16050 -00011358 52.99901581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16050 -00011359 52.99903870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16060 -00011360 52.99904251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16060 -00011361 52.99906921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16070 -00011362 52.99907303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16070 -00011363 52.99909592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16080 -00011364 52.99909973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16080 -00011365 52.99912643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16090 -00011366 52.99913025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16090 -00011367 52.99915695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a0 -00011368 52.99915695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a0 -00011369 52.99917984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b0 -00011370 52.99918365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b0 -00011371 52.99921036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c0 -00011372 52.99921417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c0 -00011373 52.99923706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d0 -00011374 52.99924088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d0 -00011375 52.99926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e0 -00011376 52.99927139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e0 -00011377 52.99929428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f0 -00011378 52.99929810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f0 -00011379 52.99932480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16100 -00011380 52.99932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16100 -00011381 52.99935532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16110 -00011382 52.99935532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16110 -00011383 52.99938202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16120 -00011384 52.99938583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16120 -00011385 52.99941254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16130 -00011386 52.99941254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16130 -00011387 52.99943924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16140 -00011388 52.99943924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16140 -00011389 52.99946976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16150 -00011390 52.99946976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16150 -00011391 52.99949265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16160 -00011392 52.99949646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16160 -00011393 52.99952316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16170 -00011394 52.99952698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16170 -00011395 52.99955368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16180 -00011396 52.99955368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16180 -00011397 52.99958038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16190 -00011398 52.99958420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16190 -00011399 52.99961090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161a0 -00011400 52.99961090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161a0 -00011401 52.99963760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161b0 -00011402 52.99964142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161b0 -00011403 52.99966812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c0 -00011404 52.99966812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c0 -00011405 52.99969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d0 -00011406 52.99969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d0 -00011407 52.99972153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e0 -00011408 52.99972534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e0 -00011409 52.99975204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f0 -00011410 52.99975204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f0 -00011411 52.99977875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16200 -00011412 52.99978256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16200 -00011413 52.99980927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16210 -00011414 52.99981308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16210 -00011415 52.99983597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16220 -00011416 52.99983978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16220 -00011417 52.99986649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16230 -00011418 52.99987030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16230 -00011419 52.99989319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16240 -00011420 52.99989700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16240 -00011421 52.99992371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16250 -00011422 52.99992752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16250 -00011423 52.99995041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16260 -00011424 52.99995422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16260 -00011425 52.99998093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16270 -00011426 52.99998474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16270 -00011427 53.00001144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16280 -00011428 53.00001144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16280 -00011429 53.00003433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16290 -00011430 53.00003815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16290 -00011431 53.00006485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a0 -00011432 53.00006866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a0 -00011433 53.00009155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b0 -00011434 53.00009537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b0 -00011435 53.00012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c0 -00011436 53.00012589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c0 -00011437 53.00014877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d0 -00011438 53.00015259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d0 -00011439 53.00017929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e0 -00011440 53.00018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e0 -00011441 53.00020981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f0 -00011442 53.00020981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f0 -00011443 53.00023651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16300 -00011444 53.00023651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16300 -00011445 53.00026321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16310 -00011446 53.00026703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16310 -00011447 53.00028992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16320 -00011448 53.00029373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16320 -00011449 53.00032043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16330 -00011450 53.00032806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16330 -00011451 53.00036621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16340 -00011452 53.00037003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16340 -00011453 53.00040817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16350 -00011454 53.00041199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16350 -00011455 53.00045013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16360 -00011456 53.00045776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16360 -00011457 53.00049591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16370 -00011458 53.00049973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16370 -00011459 53.00053787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16380 -00011460 53.00054550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16380 -00011461 53.00058365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16390 -00011462 53.00058746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16390 -00011463 53.00062561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163a0 -00011464 53.00062943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163a0 -00011465 53.00067139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163b0 -00011466 53.00067520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163b0 -00011467 53.00071716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163c0 -00011468 53.00072098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163c0 -00011469 53.00075912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163d0 -00011470 53.00076294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163d0 -00011471 53.00080490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163e0 -00011472 53.00080490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163e0 -00011473 53.00084305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163f0 -00011474 53.00084305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x163f0 -00011475 53.00086975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16400 -00011476 53.00087357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16400 -00011477 53.00090027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16410 -00011478 53.00090408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16410 -00011479 53.00092697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16420 -00011480 53.00093460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16420 -00011481 53.00096130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16430 -00011482 53.00096130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16430 -00011483 53.00098801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16440 -00011484 53.00098801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16440 -00011485 53.00101471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16450 -00011486 53.00101852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16450 -00011487 53.00104141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16460 -00011488 53.00104523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16460 -00011489 53.00107193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16470 -00011490 53.00107574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16470 -00011491 53.00110245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16480 -00011492 53.00110245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16480 -00011493 53.00112915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16490 -00011494 53.00113297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16490 -00011495 53.00115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a0 -00011496 53.00116348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a0 -00011497 53.00118637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b0 -00011498 53.00119019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b0 -00011499 53.00121689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c0 -00011500 53.00122070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c0 -00011501 53.00124359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d0 -00011502 53.00124359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d0 -00011503 53.00127411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e0 -00011504 53.00127411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e0 -00011505 53.00130081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f0 -00011506 53.00130081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f0 -00011507 53.00132751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16500 -00011508 53.00133133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16500 -00011509 53.00135803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16510 -00011510 53.00136185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16510 -00011511 53.00138474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16520 -00011512 53.00138855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16520 -00011513 53.00141525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16530 -00011514 53.00141907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16530 -00011515 53.00144196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16540 -00011516 53.00144577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16540 -00011517 53.00147247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16550 -00011518 53.00147629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16550 -00011519 53.00149918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16560 -00011520 53.00150299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16560 -00011521 53.00152969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16570 -00011522 53.00153351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16570 -00011523 53.00156021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16580 -00011524 53.00156021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16580 -00011525 53.00159073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16590 -00011526 53.00159454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16590 -00011527 53.00161743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a0 -00011528 53.00162125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a0 -00011529 53.00164795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b0 -00011530 53.00165176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b0 -00011531 53.00167847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c0 -00011532 53.00167847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c0 -00011533 53.00170517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d0 -00011534 53.00170898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d0 -00011535 53.00173569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e0 -00011536 53.00173950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e0 -00011537 53.00176239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f0 -00011538 53.00176620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f0 -00011539 53.00179291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16600 -00011540 53.00179672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16600 -00011541 53.00181961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16610 -00011542 53.00182343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16610 -00011543 53.00185013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16620 -00011544 53.00185013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16620 -00011545 53.00187683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16630 -00011546 53.00187683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16630 -00011547 53.00190353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16640 -00011548 53.00190735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16640 -00011549 53.00193405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16650 -00011550 53.00193787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16650 -00011551 53.00196075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16660 -00011552 53.00196457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16660 -00011553 53.00199127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16670 -00011554 53.00199509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16670 -00011555 53.00201797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16680 -00011556 53.00202179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16680 -00011557 53.00204849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16690 -00011558 53.00205231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16690 -00011559 53.00207520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a0 -00011560 53.00207901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a0 -00011561 53.00210571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b0 -00011562 53.00210953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b0 -00011563 53.00213623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c0 -00011564 53.00213623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c0 -00011565 53.00216293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d0 -00011566 53.00216675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d0 -00011567 53.00219345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e0 -00011568 53.00219345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e0 -00011569 53.00222015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f0 -00011570 53.00222397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f0 -00011571 53.00225067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16700 -00011572 53.00225449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16700 -00011573 53.00227737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16710 -00011574 53.00228119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16710 -00011575 53.00230789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16720 -00011576 53.00230789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16720 -00011577 53.00233459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16730 -00011578 53.00233459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16730 -00011579 53.00236130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16740 -00011580 53.00236511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16740 -00011581 53.00239182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16750 -00011582 53.00239182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16750 -00011583 53.00241852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16760 -00011584 53.00242233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16760 -00011585 53.00244904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16770 -00011586 53.00245285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16770 -00011587 53.00247574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16780 -00011588 53.00247955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16780 -00011589 53.00250626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16790 -00011590 53.00251007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16790 -00011591 53.00253296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a0 -00011592 53.00253677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a0 -00011593 53.00256348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167b0 -00011594 53.00256348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167b0 -00011595 53.00259018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167c0 -00011596 53.00259018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167c0 -00011597 53.00261688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167d0 -00011598 53.00262070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167d0 -00011599 53.00264740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167e0 -00011600 53.00265121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167e0 -00011601 53.00267410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167f0 -00011602 53.00267792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x167f0 -00011603 53.00270462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16800 -00011604 53.00270844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16800 -00011605 53.00273132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16810 -00011606 53.00273514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16810 -00011607 53.00276184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16820 -00011608 53.00276566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16820 -00011609 53.00278854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16830 -00011610 53.00278854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16830 -00011611 53.00281906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16840 -00011612 53.00282288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16840 -00011613 53.00284958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -00011614 53.00284958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -00011615 53.00287628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -00011616 53.00287628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -00011617 53.00290680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -00011618 53.00290680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -00011619 53.00292969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -00011620 53.00293350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -00011621 53.00296021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -00011622 53.00296402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -00011623 53.00298691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -00011624 53.00299072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -00011625 53.00301743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -00011626 53.00302124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -00011627 53.00304794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -00011628 53.00304794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -00011629 53.00307465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -00011630 53.00307846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -00011631 53.00310516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -00011632 53.00310516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -00011633 53.00312805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -00011634 53.00313187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -00011635 53.00315857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -00011636 53.00316238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -00011637 53.00318909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -00011638 53.00318909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -00011639 53.00321579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -00011640 53.00321960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -00011641 53.00324631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -00011642 53.00324631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -00011643 53.00327301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -00011644 53.00327682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -00011645 53.00330353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -00011646 53.00330734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -00011647 53.00333023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -00011648 53.00333405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -00011649 53.00336075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -00011650 53.00336456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -00011651 53.00338745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -00011652 53.00339127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -00011653 53.00341797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16990 -00011654 53.00341797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16990 -00011655 53.00344467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a0 -00011656 53.00344467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a0 -00011657 53.00347519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169b0 -00011658 53.00347519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169b0 -00011659 53.00350189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c0 -00011660 53.00350571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c0 -00011661 53.00352859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d0 -00011662 53.00353241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d0 -00011663 53.00355911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e0 -00011664 53.00356293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e0 -00011665 53.00358582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f0 -00011666 53.00358963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f0 -00011667 53.00361633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a00 -00011668 53.00362015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a00 -00011669 53.00364304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a10 -00011670 53.00364685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a10 -00011671 53.00367355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a20 -00011672 53.00367737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a20 -00011673 53.00370407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a30 -00011674 53.00370407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a30 -00011675 53.00372696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a40 -00011676 53.00373077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a40 -00011677 53.00375748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a50 -00011678 53.00376129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a50 -00011679 53.00378418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a60 -00011680 53.00378799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a60 -00011681 53.00381470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a70 -00011682 53.00381851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a70 -00011683 53.00384140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a80 -00011684 53.00384521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a80 -00011685 53.00387192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a90 -00011686 53.00387573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a90 -00011687 53.00390244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa0 -00011688 53.00390244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa0 -00011689 53.00392914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab0 -00011690 53.00393295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab0 -00011691 53.00395966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac0 -00011692 53.00396347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac0 -00011693 53.00398636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad0 -00011694 53.00398636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad0 -00011695 53.00401306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae0 -00011696 53.00401688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae0 -00011697 53.00403976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af0 -00011698 53.00404358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af0 -00011699 53.00407028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b00 -00011700 53.00407410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b00 -00011701 53.00410080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b10 -00011702 53.00410080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b10 -00011703 53.00412750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b20 -00011704 53.00413132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b20 -00011705 53.00415802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b30 -00011706 53.00416183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b30 -00011707 53.00418472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b40 -00011708 53.00418854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b40 -00011709 53.00421524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b50 -00011710 53.00421906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b50 -00011711 53.00424194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b60 -00011712 53.00424576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b60 -00011713 53.00427246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b70 -00011714 53.00427628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b70 -00011715 53.00429916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b80 -00011716 53.00430298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b80 -00011717 53.00432968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b90 -00011718 53.00433350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b90 -00011719 53.00436020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ba0 -00011720 53.00436020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ba0 -00011721 53.00438690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bb0 -00011722 53.00438690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bb0 -00011723 53.00441360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bc0 -00011724 53.00441742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bc0 -00011725 53.00444031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bd0 -00011726 53.00444412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bd0 -00011727 53.00447083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16be0 -00011728 53.00447464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16be0 -00011729 53.00449753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bf0 -00011730 53.00450134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bf0 -00011731 53.00452805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c00 -00011732 53.00453186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c00 -00011733 53.00455856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c10 -00011734 53.00455856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c10 -00011735 53.00458527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c20 -00011736 53.00458527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c20 -00011737 53.00461578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c30 -00011738 53.00461578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c30 -00011739 53.00463867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c40 -00011740 53.00464249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c40 -00011741 53.00466919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c50 -00011742 53.00467300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c50 -00011743 53.00469971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c60 -00011744 53.00470352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c60 -00011745 53.00473022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c70 -00011746 53.00473404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c70 -00011747 53.00475693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c80 -00011748 53.00476074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c80 -00011749 53.00478745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c90 -00011750 53.00479126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c90 -00011751 53.00481415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ca0 -00011752 53.00481796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ca0 -00011753 53.00484467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cb0 -00011754 53.00484467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cb0 -00011755 53.00487137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cc0 -00011756 53.00487518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cc0 -00011757 53.00489807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cd0 -00011758 53.00490189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cd0 -00011759 53.00492859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ce0 -00011760 53.00493240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ce0 -00011761 53.00495529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cf0 -00011762 53.00495911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cf0 -00011763 53.00498581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d00 -00011764 53.00498962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d00 -00011765 53.00501251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d10 -00011766 53.00501633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d10 -00011767 53.00504303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d20 -00011768 53.00504684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d20 -00011769 53.00507355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d30 -00011770 53.00507355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d30 -00011771 53.00510025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d40 -00011772 53.00510406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d40 -00011773 53.00513077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d50 -00011774 53.00513458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d50 -00011775 53.00515747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d60 -00011776 53.00516129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d60 -00011777 53.00518799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d70 -00011778 53.00519180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d70 -00011779 53.00521469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d80 -00011780 53.00521469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d80 -00011781 53.00524139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d90 -00011782 53.00524521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d90 -00011783 53.00527191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da0 -00011784 53.00527191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da0 -00011785 53.00529861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db0 -00011786 53.00530243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db0 -00011787 53.00532913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc0 -00011788 53.00533295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc0 -00011789 53.00535583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd0 -00011790 53.00535965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd0 -00011791 53.00538635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de0 -00011792 53.00539017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de0 -00011793 53.00541306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df0 -00011794 53.00541687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df0 -00011795 53.00544357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e00 -00011796 53.00544739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e00 -00011797 53.00547028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e10 -00011798 53.00547409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e10 -00011799 53.00550079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e20 -00011800 53.00550461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e20 -00011801 53.00553131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e30 -00011802 53.00553131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e30 -00011803 53.00555420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e40 -00011804 53.00555801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e40 -00011805 53.00558472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e50 -00011806 53.00558853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e50 -00011807 53.00561523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e60 -00011808 53.00561523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e60 -00011809 53.00564575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e70 -00011810 53.00564575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e70 -00011811 53.00566864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e80 -00011812 53.00567245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e80 -00011813 53.00569916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e90 -00011814 53.00570297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e90 -00011815 53.00572968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea0 -00011816 53.00572968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea0 -00011817 53.00575638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb0 -00011818 53.00576019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb0 -00011819 53.00578690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec0 -00011820 53.00578690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec0 -00011821 53.00581360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed0 -00011822 53.00581741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed0 -00011823 53.00584412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee0 -00011824 53.00584793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee0 -00011825 53.00587082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef0 -00011826 53.00587082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef0 -00011827 53.00589752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f00 -00011828 53.00590134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f00 -00011829 53.00592804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f10 -00011830 53.00592804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f10 -00011831 53.00595474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f20 -00011832 53.00595856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f20 -00011833 53.00598526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f30 -00011834 53.00598907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f30 -00011835 53.00601196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f40 -00011836 53.00601578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f40 -00011837 53.00604248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f50 -00011838 53.00604630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f50 -00011839 53.00606918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f60 -00011840 53.00607300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f60 -00011841 53.00609970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f70 -00011842 53.00610352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f70 -00011843 53.00612640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f80 -00011844 53.00612640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f80 -00011845 53.00615311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f90 -00011846 53.00615692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f90 -00011847 53.00618362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa0 -00011848 53.00618744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa0 -00011849 53.00621033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb0 -00011850 53.00621414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb0 -00011851 53.00624084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc0 -00011852 53.00624466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc0 -00011853 53.00626755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd0 -00011854 53.00627136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd0 -00011855 53.00629807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe0 -00011856 53.00630188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe0 -00011857 53.00632477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff0 -00011858 53.00632858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff0 -00011859 53.00635529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17000 -00011860 53.00635910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17000 -00011861 53.00638580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17010 -00011862 53.00638580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17010 -00011863 53.00641251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17020 -00011864 53.00641251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17020 -00011865 53.00643921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17030 -00011866 53.00644302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17030 -00011867 53.00646591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17040 -00011868 53.00646973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17040 -00011869 53.00649643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17050 -00011870 53.00650024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17050 -00011871 53.00652313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17060 -00011872 53.00652695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17060 -00011873 53.00655365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17070 -00011874 53.00655746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17070 -00011875 53.00658417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17080 -00011876 53.00658417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17080 -00011877 53.00661087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17090 -00011878 53.00661469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17090 -00011879 53.00664139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a0 -00011880 53.00664139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a0 -00011881 53.00666809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b0 -00011882 53.00667191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b0 -00011883 53.00669861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c0 -00011884 53.00670242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c0 -00011885 53.00672531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d0 -00011886 53.00672531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d0 -00011887 53.00675201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e0 -00011888 53.00675583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e0 -00011889 53.00678253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f0 -00011890 53.00678253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f0 -00011891 53.00680923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17100 -00011892 53.00681305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17100 -00011893 53.00683975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17110 -00011894 53.00683975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17110 -00011895 53.00686646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17120 -00011896 53.00687027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17120 -00011897 53.00689697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17130 -00011898 53.00690079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17130 -00011899 53.00692368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17140 -00011900 53.00692749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17140 -00011901 53.00695419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17150 -00011902 53.00695801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17150 -00011903 53.00698090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17160 -00011904 53.00698471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17160 -00011905 53.00701141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17170 -00011906 53.00701141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17170 -00011907 53.00703812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17180 -00011908 53.00703812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17180 -00011909 53.00706482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17190 -00011910 53.00706863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17190 -00011911 53.00709915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a0 -00011912 53.00709915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a0 -00011913 53.00712585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171b0 -00011914 53.00712967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171b0 -00011915 53.00715637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171c0 -00011916 53.00716019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171c0 -00011917 53.00718689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171d0 -00011918 53.00718689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171d0 -00011919 53.00721741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171e0 -00011920 53.00721741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171e0 -00011921 53.00724411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171f0 -00011922 53.00724792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x171f0 -00011923 53.00727463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17200 -00011924 53.00727844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17200 -00011925 53.00730133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17210 -00011926 53.00730515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17210 -00011927 53.00733185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17220 -00011928 53.00733566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17220 -00011929 53.00735855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17230 -00011930 53.00736237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17230 -00011931 53.00738907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17240 -00011932 53.00739288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17240 -00011933 53.00741577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17250 -00011934 53.00741959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17250 -00011935 53.00744629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17260 -00011936 53.00745010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17260 -00011937 53.00747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17270 -00011938 53.00747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17270 -00011939 53.00750351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17280 -00011940 53.00750732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17280 -00011941 53.00753403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17290 -00011942 53.00753784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17290 -00011943 53.00756073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172a0 -00011944 53.00756454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172a0 -00011945 53.00759125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172b0 -00011946 53.00759506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172b0 -00011947 53.00761795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172c0 -00011948 53.00762177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172c0 -00011949 53.00764847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172d0 -00011950 53.00765228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172d0 -00011951 53.00767899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172e0 -00011952 53.00767899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172e0 -00011953 53.00770950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172f0 -00011954 53.00771332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x172f0 -00011955 53.00773621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17300 -00011956 53.00773621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17300 -00011957 53.00776672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17310 -00011958 53.00777054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17310 -00011959 53.00779343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -00011960 53.00779724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -00011961 53.00782394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -00011962 53.00782776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -00011963 53.00785446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -00011964 53.00785446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -00011965 53.00788116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -00011966 53.00788498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -00011967 53.00791168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -00011968 53.00791550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -00011969 53.00793839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -00011970 53.00794220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -00011971 53.00796890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -00011972 53.00797272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -00011973 53.00799561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -00011974 53.00799942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -00011975 53.00802612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -00011976 53.00802612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -00011977 53.00805283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -00011978 53.00805283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -00011979 53.00807953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -00011980 53.00808334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -00011981 53.00811005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d0 -00011982 53.00811386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d0 -00011983 53.00813675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e0 -00011984 53.00814056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e0 -00011985 53.00816727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f0 -00011986 53.00817108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f0 -00011987 53.00819397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17400 -00011988 53.00819778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17400 -00011989 53.00822449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17410 -00011990 53.00822830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17410 -00011991 53.00825119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -00011992 53.00825500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -00011993 53.00828171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -00011994 53.00828552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -00011995 53.00831223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -00011996 53.00831223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -00011997 53.00833893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -00011998 53.00833893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -00011999 53.00836945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -00012000 53.00836945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -00012001 53.00839615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -00012002 53.00839615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -00012003 53.00842667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17480 -00012004 53.00842667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17480 -00012005 53.00845337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17490 -00012006 53.00845718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17490 -00012007 53.00848389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a0 -00012008 53.00848389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a0 -00012009 53.00851059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b0 -00012010 53.00851059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b0 -00012011 53.00853729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c0 -00012012 53.00854111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c0 -00012013 53.00856781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174d0 -00012014 53.00856781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174d0 -00012015 53.00859451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174e0 -00012016 53.00859833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174e0 -00012017 53.00862503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174f0 -00012018 53.00862885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x174f0 -00012019 53.00865173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17500 -00012020 53.00865555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17500 -00012021 53.00868225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17510 -00012022 53.00868607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17510 -00012023 53.00870895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17520 -00012024 53.00871277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17520 -00012025 53.00873947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17530 -00012026 53.00874329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17530 -00012027 53.00876617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17540 -00012028 53.00876617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17540 -00012029 53.00879669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17550 -00012030 53.00879669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17550 -00012031 53.00882339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17560 -00012032 53.00882721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17560 -00012033 53.00885010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17570 -00012034 53.00885391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17570 -00012035 53.00888062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17580 -00012036 53.00888443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17580 -00012037 53.00890732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17590 -00012038 53.00891113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17590 -00012039 53.00893784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a0 -00012040 53.00894165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a0 -00012041 53.00896454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b0 -00012042 53.00896835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b0 -00012043 53.00899506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c0 -00012044 53.00899887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c0 -00012045 53.00902557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d0 -00012046 53.00902557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d0 -00012047 53.00905228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e0 -00012048 53.00905609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e0 -00012049 53.00908279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f0 -00012050 53.00908661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f0 -00012051 53.00910950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17600 -00012052 53.00911331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17600 -00012053 53.00914001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17610 -00012054 53.00914383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17610 -00012055 53.00916672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17620 -00012056 53.00917053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17620 -00012057 53.00919724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17630 -00012058 53.00920105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17630 -00012059 53.00922394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17640 -00012060 53.00922775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17640 -00012061 53.00925446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17650 -00012062 53.00925827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17650 -00012063 53.00928497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17660 -00012064 53.00928497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17660 -00012065 53.00931168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17670 -00012066 53.00931168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17670 -00012067 53.00933838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17680 -00012068 53.00934219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17680 -00012069 53.00936508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17690 -00012070 53.00936890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17690 -00012071 53.00939560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a0 -00012072 53.00939941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a0 -00012073 53.00942230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b0 -00012074 53.00942612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b0 -00012075 53.00945282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c0 -00012076 53.00945663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c0 -00012077 53.00948334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d0 -00012078 53.00948334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d0 -00012079 53.00951004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e0 -00012080 53.00951385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e0 -00012081 53.00954056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f0 -00012082 53.00954056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f0 -00012083 53.00956726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17700 -00012084 53.00957108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17700 -00012085 53.00959778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17710 -00012086 53.00960159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17710 -00012087 53.00962448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17720 -00012088 53.00962448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17720 -00012089 53.00965118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17730 -00012090 53.00965500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17730 -00012091 53.00968170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17740 -00012092 53.00968170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17740 -00012093 53.00970840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17750 -00012094 53.00971222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17750 -00012095 53.00973892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17760 -00012096 53.00973892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17760 -00012097 53.00976563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17770 -00012098 53.00976944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17770 -00012099 53.00979614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17780 -00012100 53.00979996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17780 -00012101 53.00982285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17790 -00012102 53.00982666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17790 -00012103 53.00985336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177a0 -00012104 53.00985718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177a0 -00012105 53.00988007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177b0 -00012106 53.00988007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177b0 -00012107 53.00990677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177c0 -00012108 53.00991058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177c0 -00012109 53.00993729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177d0 -00012110 53.00994110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177d0 -00012111 53.00996399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177e0 -00012112 53.00996780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177e0 -00012113 53.00999451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177f0 -00012114 53.00999832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x177f0 -00012115 53.01002121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17800 -00012116 53.01002502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17800 -00012117 53.01005173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17810 -00012118 53.01005554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17810 -00012119 53.01007843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17820 -00012120 53.01007843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17820 -00012121 53.01010513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17830 -00012122 53.01010895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17830 -00012123 53.01013565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17840 -00012124 53.01013947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17840 -00012125 53.01016235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17850 -00012126 53.01016617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17850 -00012127 53.01019287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17860 -00012128 53.01019669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17860 -00012129 53.01021957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17870 -00012130 53.01022339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17870 -00012131 53.01025009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17880 -00012132 53.01025391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17880 -00012133 53.01027679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17890 -00012134 53.01028061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17890 -00012135 53.01030731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a0 -00012136 53.01031113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a0 -00012137 53.01033783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b0 -00012138 53.01033783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b0 -00012139 53.01036453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c0 -00012140 53.01036835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c0 -00012141 53.01039505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d0 -00012142 53.01039505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d0 -00012143 53.01042175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e0 -00012144 53.01042557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e0 -00012145 53.01045227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f0 -00012146 53.01045227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f0 -00012147 53.01047516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17900 -00012148 53.01047897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17900 -00012149 53.01050568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17910 -00012150 53.01050949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17910 -00012151 53.01053619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17920 -00012152 53.01053619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17920 -00012153 53.01056290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17930 -00012154 53.01056671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17930 -00012155 53.01059341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17940 -00012156 53.01059341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17940 -00012157 53.01062012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17950 -00012158 53.01062393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17950 -00012159 53.01065063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17960 -00012160 53.01065445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17960 -00012161 53.01067734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17970 -00012162 53.01068115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17970 -00012163 53.01070786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17980 -00012164 53.01071167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17980 -00012165 53.01073456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17990 -00012166 53.01073456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17990 -00012167 53.01076508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179a0 -00012168 53.01076508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179a0 -00012169 53.01079178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179b0 -00012170 53.01079178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179b0 -00012171 53.01081848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179c0 -00012172 53.01082230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179c0 -00012173 53.01084900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179d0 -00012174 53.01085281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179d0 -00012175 53.01087570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179e0 -00012176 53.01087952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179e0 -00012177 53.01090622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179f0 -00012178 53.01091003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x179f0 -00012179 53.01093292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a00 -00012180 53.01093674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a00 -00012181 53.01096344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a10 -00012182 53.01096725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a10 -00012183 53.01099014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a20 -00012184 53.01099396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a20 -00012185 53.01102066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a30 -00012186 53.01102448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a30 -00012187 53.01105118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a40 -00012188 53.01105118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a40 -00012189 53.01107788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a50 -00012190 53.01107788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a50 -00012191 53.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a60 -00012192 53.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a60 -00012193 53.01113129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a70 -00012194 53.01113510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a70 -00012195 53.01116180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a80 -00012196 53.01116562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a80 -00012197 53.01118851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a90 -00012198 53.01119232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a90 -00012199 53.01121902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa0 -00012200 53.01122284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa0 -00012201 53.01124954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab0 -00012202 53.01124954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab0 -00012203 53.01127625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac0 -00012204 53.01128006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac0 -00012205 53.01130676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad0 -00012206 53.01130676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad0 -00012207 53.01133347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae0 -00012208 53.01133347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae0 -00012209 53.01136017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af0 -00012210 53.01136398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af0 -00012211 53.01139069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b00 -00012212 53.01139069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b00 -00012213 53.01141739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b10 -00012214 53.01142120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b10 -00012215 53.01144791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b20 -00012216 53.01144791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b20 -00012217 53.01147461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b30 -00012218 53.01147842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b30 -00012219 53.01150513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b40 -00012220 53.01150894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b40 -00012221 53.01153183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b50 -00012222 53.01153183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b50 -00012223 53.01156235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b60 -00012224 53.01156616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b60 -00012225 53.01158905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b70 -00012226 53.01158905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b70 -00012227 53.01161575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b80 -00012228 53.01161957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b80 -00012229 53.01164627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b90 -00012230 53.01164627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b90 -00012231 53.01167297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba0 -00012232 53.01167679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba0 -00012233 53.01170349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb0 -00012234 53.01170731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb0 -00012235 53.01173019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc0 -00012236 53.01173401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc0 -00012237 53.01176071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd0 -00012238 53.01176453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd0 -00012239 53.01178741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be0 -00012240 53.01178741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be0 -00012241 53.01181412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf0 -00012242 53.01181793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf0 -00012243 53.01184464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c00 -00012244 53.01184464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c00 -00012245 53.01187134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c10 -00012246 53.01187515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c10 -00012247 53.01190186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c20 -00012248 53.01190567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c20 -00012249 53.01192856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c30 -00012250 53.01193237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c30 -00012251 53.01195908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c40 -00012252 53.01196289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c40 -00012253 53.01198578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c50 -00012254 53.01198959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c50 -00012255 53.01201630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c60 -00012256 53.01202011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c60 -00012257 53.01204300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c70 -00012258 53.01204300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c70 -00012259 53.01206970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c80 -00012260 53.01207352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c80 -00012261 53.01210022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c90 -00012262 53.01210403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c90 -00012263 53.01212692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca0 -00012264 53.01213074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca0 -00012265 53.01215744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb0 -00012266 53.01216125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb0 -00012267 53.01218414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc0 -00012268 53.01218796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc0 -00012269 53.01221466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd0 -00012270 53.01221848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd0 -00012271 53.01224136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce0 -00012272 53.01224518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce0 -00012273 53.01227188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf0 -00012274 53.01227570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf0 -00012275 53.01230240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d00 -00012276 53.01230240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d00 -00012277 53.01232529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d10 -00012278 53.01232910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d10 -00012279 53.01235580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d20 -00012280 53.01235962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d20 -00012281 53.01238251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d30 -00012282 53.01238632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d30 -00012283 53.01241302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d40 -00012284 53.01241684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d40 -00012285 53.01243973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d50 -00012286 53.01244354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d50 -00012287 53.01247025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d60 -00012288 53.01247406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d60 -00012289 53.01250076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d70 -00012290 53.01250076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d70 -00012291 53.01252747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d80 -00012292 53.01252747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d80 -00012293 53.01255417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d90 -00012294 53.01255798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d90 -00012295 53.01258087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da0 -00012296 53.01258469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da0 -00012297 53.01261139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db0 -00012298 53.01261520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db0 -00012299 53.01264191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc0 -00012300 53.01264191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc0 -00012301 53.01266861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd0 -00012302 53.01267242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd0 -00012303 53.01269913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de0 -00012304 53.01269913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de0 -00012305 53.01272583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df0 -00012306 53.01272964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df0 -00012307 53.01275635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e00 -00012308 53.01275635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e00 -00012309 53.01277924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e10 -00012310 53.01278305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e10 -00012311 53.01280975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e20 -00012312 53.01281357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e20 -00012313 53.01284027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e30 -00012314 53.01284027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e30 -00012315 53.01286697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e40 -00012316 53.01287079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e40 -00012317 53.01289749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e50 -00012318 53.01289749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e50 -00012319 53.01292419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e60 -00012320 53.01292801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e60 -00012321 53.01295471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e70 -00012322 53.01295853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e70 -00012323 53.01298141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e80 -00012324 53.01298523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e80 -00012325 53.01301193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -00012326 53.01301193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -00012327 53.01303864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -00012328 53.01303864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -00012329 53.01306534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -00012330 53.01306915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -00012331 53.01309586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -00012332 53.01309586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -00012333 53.01312256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -00012334 53.01312637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -00012335 53.01315308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -00012336 53.01315689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -00012337 53.01317978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -00012338 53.01318359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -00012339 53.01321030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -00012340 53.01321411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -00012341 53.01323700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -00012342 53.01323700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -00012343 53.01326752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f20 -00012344 53.01326752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f20 -00012345 53.01329422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f30 -00012346 53.01329422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f30 -00012347 53.01332092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f40 -00012348 53.01332474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f40 -00012349 53.01335144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f50 -00012350 53.01335526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f50 -00012351 53.01337814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f60 -00012352 53.01338196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f60 -00012353 53.01340866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f70 -00012354 53.01341248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f70 -00012355 53.01343536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f80 -00012356 53.01343918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f80 -00012357 53.01346588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f90 -00012358 53.01346970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f90 -00012359 53.01349258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fa0 -00012360 53.01349640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fa0 -00012361 53.01352310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fb0 -00012362 53.01352692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fb0 -00012363 53.01355362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fc0 -00012364 53.01355362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fc0 -00012365 53.01357651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fd0 -00012366 53.01358032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fd0 -00012367 53.01360703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fe0 -00012368 53.01361084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fe0 -00012369 53.01363373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ff0 -00012370 53.01363754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ff0 -00012371 53.01366425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18000 -00012372 53.01366806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18000 -00012373 53.01369095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18010 -00012374 53.01369476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18010 -00012375 53.01372147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18020 -00012376 53.01372528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18020 -00012377 53.01375198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18030 -00012378 53.01375198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18030 -00012379 53.01377869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18040 -00012380 53.01377869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18040 -00012381 53.01380539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18050 -00012382 53.01380920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18050 -00012383 53.01383209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18060 -00012384 53.01383591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18060 -00012385 53.01386261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18070 -00012386 53.01386642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18070 -00012387 53.01388931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18080 -00012388 53.01389313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18080 -00012389 53.01391983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18090 -00012390 53.01392365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18090 -00012391 53.01395035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180a0 -00012392 53.01395035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180a0 -00012393 53.01397705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180b0 -00012394 53.01398087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180b0 -00012395 53.01400757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180c0 -00012396 53.01401138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180c0 -00012397 53.01403427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180d0 -00012398 53.01403427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180d0 -00012399 53.01406479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180e0 -00012400 53.01406860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180e0 -00012401 53.01409149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180f0 -00012402 53.01409149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x180f0 -00012403 53.01412201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18100 -00012404 53.01412201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18100 -00012405 53.01414871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18110 -00012406 53.01414871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18110 -00012407 53.01417542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18120 -00012408 53.01417923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18120 -00012409 53.01420593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18130 -00012410 53.01420975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18130 -00012411 53.01423264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18140 -00012412 53.01423645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18140 -00012413 53.01426315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18150 -00012414 53.01426697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18150 -00012415 53.01428986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18160 -00012416 53.01429367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18160 -00012417 53.01432037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18170 -00012418 53.01432037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18170 -00012419 53.01434708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18180 -00012420 53.01434708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18180 -00012421 53.01437378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18190 -00012422 53.01437759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18190 -00012423 53.01440430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181a0 -00012424 53.01440811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181a0 -00012425 53.01443100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181b0 -00012426 53.01443481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181b0 -00012427 53.01446152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c0 -00012428 53.01446533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c0 -00012429 53.01448822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d0 -00012430 53.01449203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d0 -00012431 53.01451874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e0 -00012432 53.01452255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e0 -00012433 53.01454544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f0 -00012434 53.01454544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f0 -00012435 53.01457596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18200 -00012436 53.01457596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18200 -00012437 53.01460266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18210 -00012438 53.01460648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18210 -00012439 53.01462936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18220 -00012440 53.01463318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18220 -00012441 53.01465988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18230 -00012442 53.01466370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18230 -00012443 53.01468658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18240 -00012444 53.01469040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18240 -00012445 53.01471710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18250 -00012446 53.01472092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18250 -00012447 53.01474380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18260 -00012448 53.01474762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18260 -00012449 53.01477432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18270 -00012450 53.01477814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18270 -00012451 53.01480484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18280 -00012452 53.01480484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18280 -00012453 53.01483154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18290 -00012454 53.01483536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18290 -00012455 53.01486206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182a0 -00012456 53.01486206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182a0 -00012457 53.01488495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182b0 -00012458 53.01488876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182b0 -00012459 53.01491547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182c0 -00012460 53.01491928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182c0 -00012461 53.01494217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182d0 -00012462 53.01494598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182d0 -00012463 53.01497269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182e0 -00012464 53.01497650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182e0 -00012465 53.01500320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182f0 -00012466 53.01500320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x182f0 -00012467 53.01502991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18300 -00012468 53.01503372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18300 -00012469 53.01506042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18310 -00012470 53.01506424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18310 -00012471 53.01508713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18320 -00012472 53.01509094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18320 -00012473 53.01511765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18330 -00012474 53.01511765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18330 -00012475 53.01514435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18340 -00012476 53.01514435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18340 -00012477 53.01517105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18350 -00012478 53.01517487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18350 -00012479 53.01520157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18360 -00012480 53.01520157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18360 -00012481 53.01522827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18370 -00012482 53.01523209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18370 -00012483 53.01525879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18380 -00012484 53.01526260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18380 -00012485 53.01528549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18390 -00012486 53.01528931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18390 -00012487 53.01531601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a0 -00012488 53.01531982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a0 -00012489 53.01534271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b0 -00012490 53.01534653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b0 -00012491 53.01537323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c0 -00012492 53.01537323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c0 -00012493 53.01539993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d0 -00012494 53.01539993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d0 -00012495 53.01542664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e0 -00012496 53.01543045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e0 -00012497 53.01545715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f0 -00012498 53.01546097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f0 -00012499 53.01548386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18400 -00012500 53.01548767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18400 -00012501 53.01551437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18410 -00012502 53.01551819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18410 -00012503 53.01554108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18420 -00012504 53.01554489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18420 -00012505 53.01557159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18430 -00012506 53.01557541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18430 -00012507 53.01559830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18440 -00012508 53.01560211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18440 -00012509 53.01562881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18450 -00012510 53.01563263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18450 -00012511 53.01565933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18460 -00012512 53.01565933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18460 -00012513 53.01568604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18470 -00012514 53.01568985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18470 -00012515 53.01571655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18480 -00012516 53.01571655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18480 -00012517 53.01574326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18490 -00012518 53.01574326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18490 -00012519 53.01577377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a0 -00012520 53.01577377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a0 -00012521 53.01580048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b0 -00012522 53.01580048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b0 -00012523 53.01582718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c0 -00012524 53.01583099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c0 -00012525 53.01585770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d0 -00012526 53.01585770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d0 -00012527 53.01588440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e0 -00012528 53.01588821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e0 -00012529 53.01591492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f0 -00012530 53.01591492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f0 -00012531 53.01594162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18500 -00012532 53.01594543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18500 -00012533 53.01597214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18510 -00012534 53.01597595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18510 -00012535 53.01599884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18520 -00012536 53.01600266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18520 -00012537 53.01602936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18530 -00012538 53.01602936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18530 -00012539 53.01605606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18540 -00012540 53.01605606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18540 -00012541 53.01608276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18550 -00012542 53.01608658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18550 -00012543 53.01611328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18560 -00012544 53.01611710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18560 -00012545 53.01613998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18570 -00012546 53.01614380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18570 -00012547 53.01617050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18580 -00012548 53.01617432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18580 -00012549 53.01619720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18590 -00012550 53.01620102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18590 -00012551 53.01622772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185a0 -00012552 53.01623154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185a0 -00012553 53.01625443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185b0 -00012554 53.01625824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185b0 -00012555 53.01628494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185c0 -00012556 53.01628876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185c0 -00012557 53.01631546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185d0 -00012558 53.01631546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185d0 -00012559 53.01634216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185e0 -00012560 53.01634216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185e0 -00012561 53.01637268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185f0 -00012562 53.01637268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x185f0 -00012563 53.01639938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18600 -00012564 53.01639938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18600 -00012565 53.01642609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18610 -00012566 53.01642990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18610 -00012567 53.01645279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18620 -00012568 53.01645660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18620 -00012569 53.01648331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18630 -00012570 53.01648712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18630 -00012571 53.01651382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18640 -00012572 53.01651382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18640 -00012573 53.01654053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18650 -00012574 53.01654434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18650 -00012575 53.01657104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18660 -00012576 53.01657104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18660 -00012577 53.01659775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18670 -00012578 53.01660156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18670 -00012579 53.01662827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18680 -00012580 53.01663208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18680 -00012581 53.01665497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18690 -00012582 53.01665497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18690 -00012583 53.01668167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a0 -00012584 53.01668549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a0 -00012585 53.01671219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b0 -00012586 53.01671219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b0 -00012587 53.01673889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c0 -00012588 53.01674271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c0 -00012589 53.01676941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186d0 -00012590 53.01676941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186d0 -00012591 53.01679611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186e0 -00012592 53.01679993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186e0 -00012593 53.01682663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186f0 -00012594 53.01683044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x186f0 -00012595 53.01685333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18700 -00012596 53.01685715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18700 -00012597 53.01688385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18710 -00012598 53.01688766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18710 -00012599 53.01691055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18720 -00012600 53.01691437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18720 -00012601 53.01694107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18730 -00012602 53.01694489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18730 -00012603 53.01696777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18740 -00012604 53.01696777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18740 -00012605 53.01699448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18750 -00012606 53.01699829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18750 -00012607 53.01702499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18760 -00012608 53.01702881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18760 -00012609 53.01705170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18770 -00012610 53.01705551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18770 -00012611 53.01708221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18780 -00012612 53.01708603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18780 -00012613 53.01710892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18790 -00012614 53.01711273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18790 -00012615 53.01713943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a0 -00012616 53.01714325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a0 -00012617 53.01716614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b0 -00012618 53.01716995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b0 -00012619 53.01719666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c0 -00012620 53.01720047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c0 -00012621 53.01722717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d0 -00012622 53.01722717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d0 -00012623 53.01725388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e0 -00012624 53.01725388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e0 -00012625 53.01728058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f0 -00012626 53.01728439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f0 -00012627 53.01730728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18800 -00012628 53.01731110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18800 -00012629 53.01733780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18810 -00012630 53.01734161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18810 -00012631 53.01736450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18820 -00012632 53.01736832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18820 -00012633 53.01739502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18830 -00012634 53.01739883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18830 -00012635 53.01742554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18840 -00012636 53.01742554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18840 -00012637 53.01745224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18850 -00012638 53.01745605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18850 -00012639 53.01748276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18860 -00012640 53.01748276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18860 -00012641 53.01750565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18870 -00012642 53.01750946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18870 -00012643 53.01753616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18880 -00012644 53.01753998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18880 -00012645 53.01756668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18890 -00012646 53.01756668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18890 -00012647 53.01759338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a0 -00012648 53.01759720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a0 -00012649 53.01762390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b0 -00012650 53.01762390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b0 -00012651 53.01765060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c0 -00012652 53.01765442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c0 -00012653 53.01768112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d0 -00012654 53.01768494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d0 -00012655 53.01770782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e0 -00012656 53.01770782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e0 -00012657 53.01773453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f0 -00012658 53.01773834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f0 -00012659 53.01776505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18900 -00012660 53.01776505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18900 -00012661 53.01779175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18910 -00012662 53.01779556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18910 -00012663 53.01782227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18920 -00012664 53.01782227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18920 -00012665 53.01784897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18930 -00012666 53.01785278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18930 -00012667 53.01787949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18940 -00012668 53.01788330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18940 -00012669 53.01790619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18950 -00012670 53.01791000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18950 -00012671 53.01793671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18960 -00012672 53.01794052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18960 -00012673 53.01796341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18970 -00012674 53.01796341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18970 -00012675 53.01799011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18980 -00012676 53.01799393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18980 -00012677 53.01802063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18990 -00012678 53.01802063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18990 -00012679 53.01804733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a0 -00012680 53.01805115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a0 -00012681 53.01807785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b0 -00012682 53.01808167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b0 -00012683 53.01810455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c0 -00012684 53.01810837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c0 -00012685 53.01813507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d0 -00012686 53.01813889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d0 -00012687 53.01816177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e0 -00012688 53.01816177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e0 -00012689 53.01818848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f0 -00012690 53.01819229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f0 -00012691 53.01821899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a00 -00012692 53.01821899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a00 -00012693 53.01824570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a10 -00012694 53.01824951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a10 -00012695 53.01827621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a20 -00012696 53.01828003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a20 -00012697 53.01830292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a30 -00012698 53.01830673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a30 -00012699 53.01833344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a40 -00012700 53.01833725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a40 -00012701 53.01836014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a50 -00012702 53.01836395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a50 -00012703 53.01839066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a60 -00012704 53.01839447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a60 -00012705 53.01841736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a70 -00012706 53.01841736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a70 -00012707 53.01844788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a80 -00012708 53.01845169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a80 -00012709 53.01847839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a90 -00012710 53.01847839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a90 -00012711 53.01850510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa0 -00012712 53.01850510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa0 -00012713 53.01853561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab0 -00012714 53.01853561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab0 -00012715 53.01855850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac0 -00012716 53.01856232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac0 -00012717 53.01858902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad0 -00012718 53.01859283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad0 -00012719 53.01861572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae0 -00012720 53.01861954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae0 -00012721 53.01864624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af0 -00012722 53.01865005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af0 -00012723 53.01867676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b00 -00012724 53.01867676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b00 -00012725 53.01870346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b10 -00012726 53.01870728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b10 -00012727 53.01873398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b20 -00012728 53.01873779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b20 -00012729 53.01876068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b30 -00012730 53.01876450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b30 -00012731 53.01879120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b40 -00012732 53.01879501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b40 -00012733 53.01881790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b50 -00012734 53.01882172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b50 -00012735 53.01884842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b60 -00012736 53.01885223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b60 -00012737 53.01887512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b70 -00012738 53.01887512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b70 -00012739 53.01890564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b80 -00012740 53.01890564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b80 -00012741 53.01893234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b90 -00012742 53.01893616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b90 -00012743 53.01895905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba0 -00012744 53.01896286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba0 -00012745 53.01898956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb0 -00012746 53.01899338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb0 -00012747 53.01901627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc0 -00012748 53.01902008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc0 -00012749 53.01904678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd0 -00012750 53.01905060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd0 -00012751 53.01907349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be0 -00012752 53.01907730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be0 -00012753 53.01910400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf0 -00012754 53.01910782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf0 -00012755 53.01913452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c00 -00012756 53.01913452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c00 -00012757 53.01916122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c10 -00012758 53.01916504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c10 -00012759 53.01919174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c20 -00012760 53.01919174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c20 -00012761 53.01921463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c30 -00012762 53.01921844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c30 -00012763 53.01924515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c40 -00012764 53.01924896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c40 -00012765 53.01927185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c50 -00012766 53.01927567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c50 -00012767 53.01930237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c60 -00012768 53.01930618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c60 -00012769 53.01933289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c70 -00012770 53.01933289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c70 -00012771 53.01935959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c80 -00012772 53.01936340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c80 -00012773 53.01939011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c90 -00012774 53.01939011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c90 -00012775 53.01941681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ca0 -00012776 53.01941681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ca0 -00012777 53.01944351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cb0 -00012778 53.01944733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cb0 -00012779 53.01947021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cc0 -00012780 53.01947403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cc0 -00012781 53.01950073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cd0 -00012782 53.01950455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cd0 -00012783 53.01953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ce0 -00012784 53.01953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ce0 -00012785 53.01955795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cf0 -00012786 53.01956177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cf0 -00012787 53.01958847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d00 -00012788 53.01959229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d00 -00012789 53.01961517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d10 -00012790 53.01961899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d10 -00012791 53.01964569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d20 -00012792 53.01964569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d20 -00012793 53.01967239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d30 -00012794 53.01967239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d30 -00012795 53.01970291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d40 -00012796 53.01970673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d40 -00012797 53.01972961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d50 -00012798 53.01972961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d50 -00012799 53.01976013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d60 -00012800 53.01976395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d60 -00012801 53.01979065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d70 -00012802 53.01979065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d70 -00012803 53.01981735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d80 -00012804 53.01982117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d80 -00012805 53.01984787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d90 -00012806 53.01984787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d90 -00012807 53.01987457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da0 -00012808 53.01987839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da0 -00012809 53.01990509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db0 -00012810 53.01990891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db0 -00012811 53.01993179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc0 -00012812 53.01993561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc0 -00012813 53.01996231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd0 -00012814 53.01996613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd0 -00012815 53.01998901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de0 -00012816 53.01999283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de0 -00012817 53.02001953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18df0 -00012818 53.02002335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18df0 -00012819 53.02004623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e00 -00012820 53.02004623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e00 -00012821 53.02007675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e10 -00012822 53.02007675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e10 -00012823 53.02010345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e20 -00012824 53.02010727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e20 -00012825 53.02013016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e30 -00012826 53.02013397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e30 -00012827 53.02016068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e40 -00012828 53.02016449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e40 -00012829 53.02018738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e50 -00012830 53.02019119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e50 -00012831 53.02021790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e60 -00012832 53.02022171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e60 -00012833 53.02024460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e70 -00012834 53.02024841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e70 -00012835 53.02027512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e80 -00012836 53.02027893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e80 -00012837 53.02030563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e90 -00012838 53.02030563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e90 -00012839 53.02033234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea0 -00012840 53.02033615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea0 -00012841 53.02036285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb0 -00012842 53.02036667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb0 -00012843 53.02038956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ec0 -00012844 53.02038956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ec0 -00012845 53.02041626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ed0 -00012846 53.02042007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ed0 -00012847 53.02044296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ee0 -00012848 53.02044678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ee0 -00012849 53.02047348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ef0 -00012850 53.02047729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ef0 -00012851 53.02050400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f00 -00012852 53.02050400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f00 -00012853 53.02053070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f10 -00012854 53.02053452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f10 -00012855 53.02056122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f20 -00012856 53.02056503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f20 -00012857 53.02058792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f30 -00012858 53.02059174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f30 -00012859 53.02061844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f40 -00012860 53.02061844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f40 -00012861 53.02064133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f50 -00012862 53.02064514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f50 -00012863 53.02067184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f60 -00012864 53.02067566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f60 -00012865 53.02070236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f70 -00012866 53.02070236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f70 -00012867 53.02072906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f80 -00012868 53.02073288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f80 -00012869 53.02075958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f90 -00012870 53.02076340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f90 -00012871 53.02078629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fa0 -00012872 53.02079010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fa0 -00012873 53.02081680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fb0 -00012874 53.02082062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fb0 -00012875 53.02084351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fc0 -00012876 53.02084732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fc0 -00012877 53.02087402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -00012878 53.02087784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -00012879 53.02090073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -00012880 53.02090454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -00012881 53.02093124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -00012882 53.02093506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -00012883 53.02096176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -00012884 53.02096176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -00012885 53.02098846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -00012886 53.02098846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -00012887 53.02101898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -00012888 53.02101898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -00012889 53.02104187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -00012890 53.02104568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -00012891 53.02107239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -00012892 53.02107620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -00012893 53.02109909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -00012894 53.02110291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -00012895 53.02112961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -00012896 53.02113342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -00012897 53.02116013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -00012898 53.02116013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -00012899 53.02118683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19080 -00012900 53.02119064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19080 -00012901 53.02121735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19090 -00012902 53.02121735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19090 -00012903 53.02124405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190a0 -00012904 53.02124786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190a0 -00012905 53.02127457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190b0 -00012906 53.02127838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190b0 -00012907 53.02130127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190c0 -00012908 53.02130127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190c0 -00012909 53.02133179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190d0 -00012910 53.02133179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190d0 -00012911 53.02135849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190e0 -00012912 53.02135849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190e0 -00012913 53.02138519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190f0 -00012914 53.02138901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x190f0 -00012915 53.02141571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19100 -00012916 53.02141571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19100 -00012917 53.02144241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19110 -00012918 53.02144623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19110 -00012919 53.02147293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19120 -00012920 53.02147675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19120 -00012921 53.02149963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19130 -00012922 53.02150345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19130 -00012923 53.02153015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19140 -00012924 53.02153397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19140 -00012925 53.02155685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19150 -00012926 53.02156067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19150 -00012927 53.02158737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19160 -00012928 53.02159119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19160 -00012929 53.02161789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19170 -00012930 53.02161789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19170 -00012931 53.02164459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19180 -00012932 53.02164841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19180 -00012933 53.02167511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19190 -00012934 53.02167511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19190 -00012935 53.02170181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a0 -00012936 53.02170181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a0 -00012937 53.02173233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b0 -00012938 53.02173233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b0 -00012939 53.02175522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c0 -00012940 53.02175903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c0 -00012941 53.02178574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d0 -00012942 53.02178955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d0 -00012943 53.02181625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e0 -00012944 53.02181625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e0 -00012945 53.02184296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191f0 -00012946 53.02184677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x191f0 -00012947 53.02187347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19200 -00012948 53.02187347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19200 -00012949 53.02190018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19210 -00012950 53.02190399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19210 -00012951 53.02193069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19220 -00012952 53.02193451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19220 -00012953 53.02195740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19230 -00012954 53.02196121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19230 -00012955 53.02198792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19240 -00012956 53.02199173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19240 -00012957 53.02201462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19250 -00012958 53.02201462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19250 -00012959 53.02204514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19260 -00012960 53.02204514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19260 -00012961 53.02207184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19270 -00012962 53.02207184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19270 -00012963 53.02209854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19280 -00012964 53.02210236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19280 -00012965 53.02212906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19290 -00012966 53.02213287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19290 -00012967 53.02215576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192a0 -00012968 53.02215958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192a0 -00012969 53.02218628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b0 -00012970 53.02219009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b0 -00012971 53.02221298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c0 -00012972 53.02221680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c0 -00012973 53.02224350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d0 -00012974 53.02224731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d0 -00012975 53.02227020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e0 -00012976 53.02227402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e0 -00012977 53.02230072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f0 -00012978 53.02230072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f0 -00012979 53.02233124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19300 -00012980 53.02233124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19300 -00012981 53.02235413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19310 -00012982 53.02235794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19310 -00012983 53.02238464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19320 -00012984 53.02238846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19320 -00012985 53.02241135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -00012986 53.02241516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -00012987 53.02244186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -00012988 53.02244568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -00012989 53.02246857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -00012990 53.02247238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -00012991 53.02249908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -00012992 53.02250290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -00012993 53.02252960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -00012994 53.02252960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -00012995 53.02255630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -00012996 53.02255630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -00012997 53.02258682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -00012998 53.02258682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -00012999 53.02260971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -00013000 53.02261353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -00013001 53.02264023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -00013002 53.02264404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -00013003 53.02266693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -00013004 53.02267075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -00013005 53.02269745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -00013006 53.02270126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -00013007 53.02272797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -00013008 53.02272797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -00013009 53.02275467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -00013010 53.02275848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -00013011 53.02278519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -00013012 53.02278900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -00013013 53.02281189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19410 -00013014 53.02281570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19410 -00013015 53.02284241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19420 -00013016 53.02284622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19420 -00013017 53.02286911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19430 -00013018 53.02287292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19430 -00013019 53.02289963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19440 -00013020 53.02289963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19440 -00013021 53.02292633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19450 -00013022 53.02292633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19450 -00013023 53.02295303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -00013024 53.02295685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -00013025 53.02298355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -00013026 53.02298737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -00013027 53.02301025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -00013028 53.02301407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -00013029 53.02304077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19490 -00013030 53.02304459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19490 -00013031 53.02306747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194a0 -00013032 53.02307129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194a0 -00013033 53.02309799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194b0 -00013034 53.02310181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194b0 -00013035 53.02312469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194c0 -00013036 53.02312851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194c0 -00013037 53.02315521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194d0 -00013038 53.02315521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194d0 -00013039 53.02318192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194e0 -00013040 53.02318573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194e0 -00013041 53.02320862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194f0 -00013042 53.02321243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x194f0 -00013043 53.02323914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19500 -00013044 53.02324295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19500 -00013045 53.02326584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19510 -00013046 53.02326965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19510 -00013047 53.02329636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19520 -00013048 53.02330017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19520 -00013049 53.02332306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19530 -00013050 53.02332687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19530 -00013051 53.02335358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19540 -00013052 53.02335739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19540 -00013053 53.02338409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19550 -00013054 53.02338409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19550 -00013055 53.02341080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19560 -00013056 53.02341461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19560 -00013057 53.02344131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19570 -00013058 53.02344131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19570 -00013059 53.02346802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19580 -00013060 53.02347183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19580 -00013061 53.02349854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19590 -00013062 53.02350235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19590 -00013063 53.02352524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a0 -00013064 53.02352905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a0 -00013065 53.02355576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b0 -00013066 53.02355957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b0 -00013067 53.02358246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c0 -00013068 53.02358246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c0 -00013069 53.02361298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d0 -00013070 53.02361298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d0 -00013071 53.02364349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e0 -00013072 53.02364349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e0 -00013073 53.02366638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f0 -00013074 53.02367020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f0 -00013075 53.02370071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19600 -00013076 53.02370071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19600 -00013077 53.02372360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19610 -00013078 53.02372742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19610 -00013079 53.02375412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19620 -00013080 53.02375793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19620 -00013081 53.02378082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19630 -00013082 53.02378464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19630 -00013083 53.02381134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19640 -00013084 53.02381516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19640 -00013085 53.02384186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19650 -00013086 53.02384186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19650 -00013087 53.02386856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19660 -00013088 53.02387238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19660 -00013089 53.02389908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19670 -00013090 53.02389908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19670 -00013091 53.02392578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19680 -00013092 53.02392960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19680 -00013093 53.02395630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19690 -00013094 53.02396011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19690 -00013095 53.02398300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196a0 -00013096 53.02398682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196a0 -00013097 53.02401352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196b0 -00013098 53.02401733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196b0 -00013099 53.02404022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196c0 -00013100 53.02404404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196c0 -00013101 53.02407074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196d0 -00013102 53.02407455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196d0 -00013103 53.02409744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196e0 -00013104 53.02410126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196e0 -00013105 53.02412796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196f0 -00013106 53.02412796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x196f0 -00013107 53.02415848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19700 -00013108 53.02415848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19700 -00013109 53.02418137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19710 -00013110 53.02418518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19710 -00013111 53.02421188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19720 -00013112 53.02421570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19720 -00013113 53.02423859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19730 -00013114 53.02424240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19730 -00013115 53.02426910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19740 -00013116 53.02427292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19740 -00013117 53.02429581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19750 -00013118 53.02429962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19750 -00013119 53.02432632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19760 -00013120 53.02433014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19760 -00013121 53.02435684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19770 -00013122 53.02435684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19770 -00013123 53.02438354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19780 -00013124 53.02438736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19780 -00013125 53.02441406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19790 -00013126 53.02441406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19790 -00013127 53.02444077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a0 -00013128 53.02444077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a0 -00013129 53.02446747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b0 -00013130 53.02447128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b0 -00013131 53.02449417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c0 -00013132 53.02449799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c0 -00013133 53.02452469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d0 -00013134 53.02452850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d0 -00013135 53.02455521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e0 -00013136 53.02455521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e0 -00013137 53.02458191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f0 -00013138 53.02458572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f0 -00013139 53.02461243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19800 -00013140 53.02461624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19800 -00013141 53.02463913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19810 -00013142 53.02464294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19810 -00013143 53.02466965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19820 -00013144 53.02467346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19820 -00013145 53.02469635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19830 -00013146 53.02470016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19830 -00013147 53.02472687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19840 -00013148 53.02473068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19840 -00013149 53.02475357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19850 -00013150 53.02475357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19850 -00013151 53.02478027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19860 -00013152 53.02478409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19860 -00013153 53.02481079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19870 -00013154 53.02481461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19870 -00013155 53.02483749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19880 -00013156 53.02484131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19880 -00013157 53.02486801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19890 -00013158 53.02487183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19890 -00013159 53.02489471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198a0 -00013160 53.02489853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198a0 -00013161 53.02492523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b0 -00013162 53.02492905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b0 -00013163 53.02495193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c0 -00013164 53.02495575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c0 -00013165 53.02498245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d0 -00013166 53.02498627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d0 -00013167 53.02501297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e0 -00013168 53.02501297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e0 -00013169 53.02503586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f0 -00013170 53.02503967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f0 -00013171 53.02506638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19900 -00013172 53.02507019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19900 -00013173 53.02509308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19910 -00013174 53.02509689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19910 -00013175 53.02512360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19920 -00013176 53.02512741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19920 -00013177 53.02515030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19930 -00013178 53.02515411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19930 -00013179 53.02518082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19940 -00013180 53.02518463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19940 -00013181 53.02521133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19950 -00013182 53.02521133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19950 -00013183 53.02523804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19960 -00013184 53.02524185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19960 -00013185 53.02526855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19970 -00013186 53.02526855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19970 -00013187 53.02529526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19980 -00013188 53.02529907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19980 -00013189 53.02532578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19990 -00013190 53.02532959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19990 -00013191 53.02535248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a0 -00013192 53.02535629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a0 -00013193 53.02538300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b0 -00013194 53.02538681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b0 -00013195 53.02540970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c0 -00013196 53.02541351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c0 -00013197 53.02544403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d0 -00013198 53.02544785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d0 -00013199 53.02547073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e0 -00013200 53.02547455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e0 -00013201 53.02550125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f0 -00013202 53.02550507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f0 -00013203 53.02552795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a00 -00013204 53.02553177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a00 -00013205 53.02555847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a10 -00013206 53.02556229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a10 -00013207 53.02558899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a20 -00013208 53.02558899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a20 -00013209 53.02561188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a30 -00013210 53.02561569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a30 -00013211 53.02564240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a40 -00013212 53.02564621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a40 -00013213 53.02566910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a50 -00013214 53.02567291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a50 -00013215 53.02569962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a60 -00013216 53.02570343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a60 -00013217 53.02572632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a70 -00013218 53.02573013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a70 -00013219 53.02575684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a80 -00013220 53.02576065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a80 -00013221 53.02578735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a90 -00013222 53.02578735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a90 -00013223 53.02581406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19aa0 -00013224 53.02581787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19aa0 -00013225 53.02584457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ab0 -00013226 53.02584457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ab0 -00013227 53.02587128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ac0 -00013228 53.02587509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ac0 -00013229 53.02590179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ad0 -00013230 53.02590561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ad0 -00013231 53.02592850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ae0 -00013232 53.02593231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ae0 -00013233 53.02595901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19af0 -00013234 53.02596283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19af0 -00013235 53.02598572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b00 -00013236 53.02598953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b00 -00013237 53.02601624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b10 -00013238 53.02602005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b10 -00013239 53.02604294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b20 -00013240 53.02604675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b20 -00013241 53.02607346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b30 -00013242 53.02607346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b30 -00013243 53.02610016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b40 -00013244 53.02610397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b40 -00013245 53.02612686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b50 -00013246 53.02613068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b50 -00013247 53.02615738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b60 -00013248 53.02616119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b60 -00013249 53.02618408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b70 -00013250 53.02618790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b70 -00013251 53.02621460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b80 -00013252 53.02621841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b80 -00013253 53.02624130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b90 -00013254 53.02624512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b90 -00013255 53.02627182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ba0 -00013256 53.02627563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ba0 -00013257 53.02630234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bb0 -00013258 53.02630234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bb0 -00013259 53.02632904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bc0 -00013260 53.02632904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bc0 -00013261 53.02635574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bd0 -00013262 53.02635956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bd0 -00013263 53.02638245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19be0 -00013264 53.02638626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19be0 -00013265 53.02641296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bf0 -00013266 53.02641678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bf0 -00013267 53.02644348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c00 -00013268 53.02644348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c00 -00013269 53.02647018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c10 -00013270 53.02647400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c10 -00013271 53.02650070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c20 -00013272 53.02650070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c20 -00013273 53.02652740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c30 -00013274 53.02653122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c30 -00013275 53.02655792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c40 -00013276 53.02656174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c40 -00013277 53.02658463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c50 -00013278 53.02658844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c50 -00013279 53.02661514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c60 -00013280 53.02661896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c60 -00013281 53.02664185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c70 -00013282 53.02664566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c70 -00013283 53.02667236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c80 -00013284 53.02667618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c80 -00013285 53.02669907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c90 -00013286 53.02669907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c90 -00013287 53.02672577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ca0 -00013288 53.02672958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ca0 -00013289 53.02675629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cb0 -00013290 53.02676010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cb0 -00013291 53.02678299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cc0 -00013292 53.02678680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cc0 -00013293 53.02681351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cd0 -00013294 53.02681732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cd0 -00013295 53.02684021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ce0 -00013296 53.02684402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ce0 -00013297 53.02687073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cf0 -00013298 53.02687454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cf0 -00013299 53.02689743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d00 -00013300 53.02690125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d00 -00013301 53.02692795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d10 -00013302 53.02693176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d10 -00013303 53.02695847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d20 -00013304 53.02695847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d20 -00013305 53.02698517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d30 -00013306 53.02698517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d30 -00013307 53.02701187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d40 -00013308 53.02701569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d40 -00013309 53.02703857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d50 -00013310 53.02704239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d50 -00013311 53.02706909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d60 -00013312 53.02707291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d60 -00013313 53.02709579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d70 -00013314 53.02709961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d70 -00013315 53.02712631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d80 -00013316 53.02713013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d80 -00013317 53.02715683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d90 -00013318 53.02715683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d90 -00013319 53.02718353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da0 -00013320 53.02718735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da0 -00013321 53.02721405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db0 -00013322 53.02721786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db0 -00013323 53.02724075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc0 -00013324 53.02724457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc0 -00013325 53.02727127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd0 -00013326 53.02727509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd0 -00013327 53.02729797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de0 -00013328 53.02730179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de0 -00013329 53.02732849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df0 -00013330 53.02733231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df0 -00013331 53.02735519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e00 -00013332 53.02735519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e00 -00013333 53.02738571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e10 -00013334 53.02738571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e10 -00013335 53.02741241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e20 -00013336 53.02741623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e20 -00013337 53.02743912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e30 -00013338 53.02744293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e30 -00013339 53.02746964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e40 -00013340 53.02747345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e40 -00013341 53.02749634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e50 -00013342 53.02750015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e50 -00013343 53.02752686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e60 -00013344 53.02753067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e60 -00013345 53.02755356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e70 -00013346 53.02755737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e70 -00013347 53.02758408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e80 -00013348 53.02758408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e80 -00013349 53.02761459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e90 -00013350 53.02761459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e90 -00013351 53.02763748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ea0 -00013352 53.02764130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ea0 -00013353 53.02766800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19eb0 -00013354 53.02767181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19eb0 -00013355 53.02769470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ec0 -00013356 53.02769852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ec0 -00013357 53.02772522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ed0 -00013358 53.02772903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ed0 -00013359 53.02775192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ee0 -00013360 53.02775574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ee0 -00013361 53.02778244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ef0 -00013362 53.02778625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ef0 -00013363 53.02781296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f00 -00013364 53.02781296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f00 -00013365 53.02783966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f10 -00013366 53.02784348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f10 -00013367 53.02787018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f20 -00013368 53.02787018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f20 -00013369 53.02789688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f30 -00013370 53.02790070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f30 -00013371 53.02792740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f40 -00013372 53.02793121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f40 -00013373 53.02795410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f50 -00013374 53.02795792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f50 -00013375 53.02798462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f60 -00013376 53.02798843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f60 -00013377 53.02801132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f70 -00013378 53.02801514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f70 -00013379 53.02804184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f80 -00013380 53.02804184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f80 -00013381 53.02806854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f90 -00013382 53.02806854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f90 -00013383 53.02809525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fa0 -00013384 53.02809906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fa0 -00013385 53.02812576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fb0 -00013386 53.02812958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fb0 -00013387 53.02815247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fc0 -00013388 53.02815628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fc0 -00013389 53.02818298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fd0 -00013390 53.02818680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fd0 -00013391 53.02820969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fe0 -00013392 53.02821350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fe0 -00013393 53.02824020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ff0 -00013394 53.02824402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ff0 -00013395 53.02826691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a000 -00013396 53.02827072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a000 -00013397 53.02829742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a010 -00013398 53.02830124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a010 -00013399 53.02832794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a020 -00013400 53.02832794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a020 -00013401 53.02835083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a030 -00013402 53.02835464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a030 -00013403 53.02838135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a040 -00013404 53.02838516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a040 -00013405 53.02840805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a050 -00013406 53.02841187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a050 -00013407 53.02843857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a060 -00013408 53.02844238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a060 -00013409 53.02846909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a070 -00013410 53.02846909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a070 -00013411 53.02849579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a080 -00013412 53.02849960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a080 -00013413 53.02852631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a090 -00013414 53.02852631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a090 -00013415 53.02855301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0a0 -00013416 53.02855682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0a0 -00013417 53.02858353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0b0 -00013418 53.02858734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0b0 -00013419 53.02861023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0c0 -00013420 53.02861404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0c0 -00013421 53.02864075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0d0 -00013422 53.02864456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0d0 -00013423 53.02866745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0e0 -00013424 53.02867126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0e0 -00013425 53.02869797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f0 -00013426 53.02869797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f0 -00013427 53.02872467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a100 -00013428 53.02872467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a100 -00013429 53.02875137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a110 -00013430 53.02875519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a110 -00013431 53.02878189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a120 -00013432 53.02878571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a120 -00013433 53.02880859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a130 -00013434 53.02881241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a130 -00013435 53.02883911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a140 -00013436 53.02884293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a140 -00013437 53.02886581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a150 -00013438 53.02886963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a150 -00013439 53.02889633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a160 -00013440 53.02890015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a160 -00013441 53.02892303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a170 -00013442 53.02892303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a170 -00013443 53.02895355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a180 -00013444 53.02895355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a180 -00013445 53.02898026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a190 -00013446 53.02898407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a190 -00013447 53.02900696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a0 -00013448 53.02901077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a0 -00013449 53.02903748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b0 -00013450 53.02904129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b0 -00013451 53.02906418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c0 -00013452 53.02906799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c0 -00013453 53.02909470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d0 -00013454 53.02909851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d0 -00013455 53.02912140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e0 -00013456 53.02912521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e0 -00013457 53.02915192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f0 -00013458 53.02915573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f0 -00013459 53.02918243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a200 -00013460 53.02918243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a200 -00013461 53.02920914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a210 -00013462 53.02921295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a210 -00013463 53.02923965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a220 -00013464 53.02924347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a220 -00013465 53.02926636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a230 -00013466 53.02927017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a230 -00013467 53.02929688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a240 -00013468 53.02930069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a240 -00013469 53.02932358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a250 -00013470 53.02932358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a250 -00013471 53.02935028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a260 -00013472 53.02935410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a260 -00013473 53.02938080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a270 -00013474 53.02938080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a270 -00013475 53.02940750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a280 -00013476 53.02941132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a280 -00013477 53.02943802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a290 -00013478 53.02944183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a290 -00013479 53.02946472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a0 -00013480 53.02946854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a0 -00013481 53.02949524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b0 -00013482 53.02949905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b0 -00013483 53.02952194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c0 -00013484 53.02952194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c0 -00013485 53.02955246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d0 -00013486 53.02955246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d0 -00013487 53.02957916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2e0 -00013488 53.02957916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2e0 -00013489 53.02960587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2f0 -00013490 53.02960968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2f0 -00013491 53.02963638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a300 -00013492 53.02964020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a300 -00013493 53.02966309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a310 -00013494 53.02966690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a310 -00013495 53.02969360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a320 -00013496 53.02969742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a320 -00013497 53.02972031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a330 -00013498 53.02972412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a330 -00013499 53.02975082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a340 -00013500 53.02975464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a340 -00013501 53.02977753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a350 -00013502 53.02978134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a350 -00013503 53.02980804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a360 -00013504 53.02981186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a360 -00013505 53.02983856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a370 -00013506 53.02983856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a370 -00013507 53.02986526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a380 -00013508 53.02986526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a380 -00013509 53.02989197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a390 -00013510 53.02989578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a390 -00013511 53.02991867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a0 -00013512 53.02992249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a0 -00013513 53.02994919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b0 -00013514 53.02995300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b0 -00013515 53.02997589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c0 -00013516 53.02997971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c0 -00013517 53.03000641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d0 -00013518 53.03001022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d0 -00013519 53.03003693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e0 -00013520 53.03003693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e0 -00013521 53.03006363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f0 -00013522 53.03006363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f0 -00013523 53.03009033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a400 -00013524 53.03009415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a400 -00013525 53.03011703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a410 -00013526 53.03012085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a410 -00013527 53.03014755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a420 -00013528 53.03015137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a420 -00013529 53.03017426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a430 -00013530 53.03017807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a430 -00013531 53.03020477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a440 -00013532 53.03020859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a440 -00013533 53.03023529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a450 -00013534 53.03023529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a450 -00013535 53.03026199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a460 -00013536 53.03026581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a460 -00013537 53.03029251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a470 -00013538 53.03029251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a470 -00013539 53.03031921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a480 -00013540 53.03031921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a480 -00013541 53.03034973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a490 -00013542 53.03034973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a490 -00013543 53.03037643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a0 -00013544 53.03037643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a0 -00013545 53.03040314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b0 -00013546 53.03040695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b0 -00013547 53.03043365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c0 -00013548 53.03043365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c0 -00013549 53.03046036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4d0 -00013550 53.03046417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4d0 -00013551 53.03049088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4e0 -00013552 53.03049469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4e0 -00013553 53.03051758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4f0 -00013554 53.03052139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4f0 -00013555 53.03054810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a500 -00013556 53.03055191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a500 -00013557 53.03057480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a510 -00013558 53.03057861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a510 -00013559 53.03060532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a520 -00013560 53.03060532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a520 -00013561 53.03063202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a530 -00013562 53.03063202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a530 -00013563 53.03065872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a540 -00013564 53.03066254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a540 -00013565 53.03068924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a550 -00013566 53.03069305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a550 -00013567 53.03071594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a560 -00013568 53.03071976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a560 -00013569 53.03074646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a570 -00013570 53.03075027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a570 -00013571 53.03077316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a580 -00013572 53.03077698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a580 -00013573 53.03080368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a590 -00013574 53.03080750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a590 -00013575 53.03083038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a0 -00013576 53.03083420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a0 -00013577 53.03086090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b0 -00013578 53.03086090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b0 -00013579 53.03089142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c0 -00013580 53.03089142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c0 -00013581 53.03091431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d0 -00013582 53.03091812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d0 -00013583 53.03094482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -00013584 53.03094864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -00013585 53.03097153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -00013586 53.03097534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -00013587 53.03100204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -00013588 53.03100586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -00013589 53.03102875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -00013590 53.03103256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -00013591 53.03105927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -00013592 53.03106308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -00013593 53.03108978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -00013594 53.03108978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -00013595 53.03111649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -00013596 53.03112030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -00013597 53.03114700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -00013598 53.03114700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -00013599 53.03117371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -00013600 53.03117371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -00013601 53.03120041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -00013602 53.03120422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -00013603 53.03122711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -00013604 53.03123093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -00013605 53.03125763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -00013606 53.03126144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -00013607 53.03128815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -00013608 53.03128815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -00013609 53.03131485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -00013610 53.03131866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -00013611 53.03134537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -00013612 53.03134537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -00013613 53.03137207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -00013614 53.03137589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -00013615 53.03140259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -00013616 53.03140640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -00013617 53.03142929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -00013618 53.03143311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -00013619 53.03145981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -00013620 53.03145981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -00013621 53.03148651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -00013622 53.03148651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -00013623 53.03151321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -00013624 53.03151703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -00013625 53.03154373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a730 -00013626 53.03154373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a730 -00013627 53.03157043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a740 -00013628 53.03157425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a740 -00013629 53.03160095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a750 -00013630 53.03160477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a750 -00013631 53.03162766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a760 -00013632 53.03163147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a760 -00013633 53.03165817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a770 -00013634 53.03166199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a770 -00013635 53.03168488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a780 -00013636 53.03168869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a780 -00013637 53.03171539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a790 -00013638 53.03171921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a790 -00013639 53.03174210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7a0 -00013640 53.03174210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7a0 -00013641 53.03176880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7b0 -00013642 53.03177261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7b0 -00013643 53.03179932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7c0 -00013644 53.03180313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7c0 -00013645 53.03182602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7d0 -00013646 53.03182983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7d0 -00013647 53.03185654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7e0 -00013648 53.03186035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7e0 -00013649 53.03188324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7f0 -00013650 53.03188705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7f0 -00013651 53.03191376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a800 -00013652 53.03191757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a800 -00013653 53.03194427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a810 -00013654 53.03194427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a810 -00013655 53.03197098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a820 -00013656 53.03197098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a820 -00013657 53.03199768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a830 -00013658 53.03200150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a830 -00013659 53.03202438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a840 -00013660 53.03202820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a840 -00013661 53.03205490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a850 -00013662 53.03205872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a850 -00013663 53.03208160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a860 -00013664 53.03208542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a860 -00013665 53.03211212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a870 -00013666 53.03211594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a870 -00013667 53.03214264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a880 -00013668 53.03214264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a880 -00013669 53.03216934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a890 -00013670 53.03217316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a890 -00013671 53.03219986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a0 -00013672 53.03219986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a0 -00013673 53.03222656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b0 -00013674 53.03223038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b0 -00013675 53.03225708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c0 -00013676 53.03225708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c0 -00013677 53.03227997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d0 -00013678 53.03228378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d0 -00013679 53.03231049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e0 -00013680 53.03231430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e0 -00013681 53.03234100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f0 -00013682 53.03234100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f0 -00013683 53.03236771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a900 -00013684 53.03237152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a900 -00013685 53.03239822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a910 -00013686 53.03239822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a910 -00013687 53.03242493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a920 -00013688 53.03242874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a920 -00013689 53.03245544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a930 -00013690 53.03245926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a930 -00013691 53.03248215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a940 -00013692 53.03248215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a940 -00013693 53.03250885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a950 -00013694 53.03251266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a950 -00013695 53.03253937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a960 -00013696 53.03253937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a960 -00013697 53.03256607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a970 -00013698 53.03256989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a970 -00013699 53.03259659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a980 -00013700 53.03259659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a980 -00013701 53.03262329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a990 -00013702 53.03262711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a990 -00013703 53.03265381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a0 -00013704 53.03265762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a0 -00013705 53.03268051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b0 -00013706 53.03268433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b0 -00013707 53.03271103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c0 -00013708 53.03271103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c0 -00013709 53.03273773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d0 -00013710 53.03273773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d0 -00013711 53.03276443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e0 -00013712 53.03276825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e0 -00013713 53.03279495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f0 -00013714 53.03279495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f0 -00013715 53.03282166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa00 -00013716 53.03282547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa00 -00013717 53.03285217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa10 -00013718 53.03285599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa10 -00013719 53.03287888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa20 -00013720 53.03288269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa20 -00013721 53.03290939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa30 -00013722 53.03291321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa30 -00013723 53.03293610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa40 -00013724 53.03293991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa40 -00013725 53.03296661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa50 -00013726 53.03297043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa50 -00013727 53.03299332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa60 -00013728 53.03299332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa60 -00013729 53.03302383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa70 -00013730 53.03302383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa70 -00013731 53.03305054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa80 -00013732 53.03305435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa80 -00013733 53.03307724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa90 -00013734 53.03308105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa90 -00013735 53.03310776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa0 -00013736 53.03311157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa0 -00013737 53.03313446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab0 -00013738 53.03313828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab0 -00013739 53.03316498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac0 -00013740 53.03316879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac0 -00013741 53.03319550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad0 -00013742 53.03319550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad0 -00013743 53.03322220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae0 -00013744 53.03322220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae0 -00013745 53.03325272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf0 -00013746 53.03325272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf0 -00013747 53.03327560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab00 -00013748 53.03327942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab00 -00013749 53.03330612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab10 -00013750 53.03330994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab10 -00013751 53.03333282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab20 -00013752 53.03333664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab20 -00013753 53.03336334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab30 -00013754 53.03336716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab30 -00013755 53.03339386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab40 -00013756 53.03339386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab40 -00013757 53.03342056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab50 -00013758 53.03342438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab50 -00013759 53.03345108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab60 -00013760 53.03345108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab60 -00013761 53.03347778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab70 -00013762 53.03348160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab70 -00013763 53.03350830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab80 -00013764 53.03351212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab80 -00013765 53.03353500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab90 -00013766 53.03353882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab90 -00013767 53.03356552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba0 -00013768 53.03356552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba0 -00013769 53.03359222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb0 -00013770 53.03359222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb0 -00013771 53.03361893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abc0 -00013772 53.03362274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abc0 -00013773 53.03364944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abd0 -00013774 53.03364944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abd0 -00013775 53.03367615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abe0 -00013776 53.03367996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abe0 -00013777 53.03370667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abf0 -00013778 53.03371048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abf0 -00013779 53.03373337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac00 -00013780 53.03373718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac00 -00013781 53.03376389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac10 -00013782 53.03376770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac10 -00013783 53.03379059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac20 -00013784 53.03379440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac20 -00013785 53.03382111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac30 -00013786 53.03382492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac30 -00013787 53.03384781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac40 -00013788 53.03384781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac40 -00013789 53.03387833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac50 -00013790 53.03387833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac50 -00013791 53.03390503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac60 -00013792 53.03390884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac60 -00013793 53.03393173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac70 -00013794 53.03393555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac70 -00013795 53.03396225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac80 -00013796 53.03396606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac80 -00013797 53.03398895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac90 -00013798 53.03399277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac90 -00013799 53.03401947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca0 -00013800 53.03402328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca0 -00013801 53.03404617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb0 -00013802 53.03404999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb0 -00013803 53.03407669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc0 -00013804 53.03408051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc0 -00013805 53.03410721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd0 -00013806 53.03410721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd0 -00013807 53.03413391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace0 -00013808 53.03413773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace0 -00013809 53.03416443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf0 -00013810 53.03416824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf0 -00013811 53.03419113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad00 -00013812 53.03419495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad00 -00013813 53.03422165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad10 -00013814 53.03422165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad10 -00013815 53.03424454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad20 -00013816 53.03424835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad20 -00013817 53.03427505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad30 -00013818 53.03427887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad30 -00013819 53.03430557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad40 -00013820 53.03430557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad40 -00013821 53.03433228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad50 -00013822 53.03433609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad50 -00013823 53.03436279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad60 -00013824 53.03436661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad60 -00013825 53.03438950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad70 -00013826 53.03439331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad70 -00013827 53.03442001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad80 -00013828 53.03442383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad80 -00013829 53.03444672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad90 -00013830 53.03444672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad90 -00013831 53.03447342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ada0 -00013832 53.03447723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ada0 -00013833 53.03450394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adb0 -00013834 53.03450394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adb0 -00013835 53.03453064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adc0 -00013836 53.03453445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adc0 -00013837 53.03456116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1add0 -00013838 53.03456497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1add0 -00013839 53.03458786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ade0 -00013840 53.03459167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ade0 -00013841 53.03461838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adf0 -00013842 53.03462219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adf0 -00013843 53.03464508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae00 -00013844 53.03464890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae00 -00013845 53.03467560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae10 -00013846 53.03467941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae10 -00013847 53.03470612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae20 -00013848 53.03470612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae20 -00013849 53.03473663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae30 -00013850 53.03473663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae30 -00013851 53.03476334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae40 -00013852 53.03476334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae40 -00013853 53.03479004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae50 -00013854 53.03479385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae50 -00013855 53.03482056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae60 -00013856 53.03482056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae60 -00013857 53.03484726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae70 -00013858 53.03485107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae70 -00013859 53.03487778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae80 -00013860 53.03488159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae80 -00013861 53.03490448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae90 -00013862 53.03490829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae90 -00013863 53.03493500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea0 -00013864 53.03493881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea0 -00013865 53.03496170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb0 -00013866 53.03496552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb0 -00013867 53.03499222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec0 -00013868 53.03499603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec0 -00013869 53.03501892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed0 -00013870 53.03502274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed0 -00013871 53.03504944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee0 -00013872 53.03505325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee0 -00013873 53.03507996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef0 -00013874 53.03507996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef0 -00013875 53.03510666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af00 -00013876 53.03511047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af00 -00013877 53.03513718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af10 -00013878 53.03514099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af10 -00013879 53.03516388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af20 -00013880 53.03516769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af20 -00013881 53.03519440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af30 -00013882 53.03519821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af30 -00013883 53.03522110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af40 -00013884 53.03522491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af40 -00013885 53.03525162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -00013886 53.03525543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -00013887 53.03527832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -00013888 53.03528214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -00013889 53.03530884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -00013890 53.03531265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -00013891 53.03533936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af80 -00013892 53.03533936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af80 -00013893 53.03536606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af90 -00013894 53.03537369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af90 -00013895 53.03540802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa0 -00013896 53.03541565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa0 -00013897 53.03545761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb0 -00013898 53.03545761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb0 -00013899 53.03549957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc0 -00013900 53.03550339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc0 -00013901 53.03554535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd0 -00013902 53.03554916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd0 -00013903 53.03558731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe0 -00013904 53.03559113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe0 -00013905 53.03563309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff0 -00013906 53.03563690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff0 -00013907 53.03567505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b000 -00013908 53.03567886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b000 -00013909 53.03571701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b010 -00013910 53.03572464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b010 -00013911 53.03576279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b020 -00013912 53.03576660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b020 -00013913 53.03580093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b030 -00013914 53.03580475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b030 -00013915 53.03583908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b040 -00013916 53.03584671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b040 -00013917 53.03587341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b050 -00013918 53.03587341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b050 -00013919 53.03590012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b060 -00013920 53.03590393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b060 -00013921 53.03593063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b070 -00013922 53.03593445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b070 -00013923 53.03595734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b080 -00013924 53.03596115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b080 -00013925 53.03598785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b090 -00013926 53.03599167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b090 -00013927 53.03601456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a0 -00013928 53.03601837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a0 -00013929 53.03604507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b0 -00013930 53.03604889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b0 -00013931 53.03607178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c0 -00013932 53.03607559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c0 -00013933 53.03610229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d0 -00013934 53.03610611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d0 -00013935 53.03613281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e0 -00013936 53.03613281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e0 -00013937 53.03615952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0f0 -00013938 53.03616333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0f0 -00013939 53.03619003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b100 -00013940 53.03619385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b100 -00013941 53.03621674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b110 -00013942 53.03621674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b110 -00013943 53.03624725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b120 -00013944 53.03624725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b120 -00013945 53.03627014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b130 -00013946 53.03627396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b130 -00013947 53.03630066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b140 -00013948 53.03630447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b140 -00013949 53.03633118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b150 -00013950 53.03633118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b150 -00013951 53.03635788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b160 -00013952 53.03636169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b160 -00013953 53.03638840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b170 -00013954 53.03639221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b170 -00013955 53.03641510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b180 -00013956 53.03641891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b180 -00013957 53.03644562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b190 -00013958 53.03644943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b190 -00013959 53.03647232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -00013960 53.03647232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -00013961 53.03650284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -00013962 53.03650284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -00013963 53.03652954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -00013964 53.03652954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -00013965 53.03655624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -00013966 53.03656006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -00013967 53.03659058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -00013968 53.03659058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -00013969 53.03661728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -00013970 53.03662109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -00013971 53.03664780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -00013972 53.03664780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -00013973 53.03667450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -00013974 53.03667831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -00013975 53.03670502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -00013976 53.03670883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -00013977 53.03673172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -00013978 53.03673553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -00013979 53.03676224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -00013980 53.03676605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -00013981 53.03678894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b250 -00013982 53.03679276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b250 -00013983 53.03681946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b260 -00013984 53.03682327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b260 -00013985 53.03684616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b270 -00013986 53.03684998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b270 -00013987 53.03687668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b280 -00013988 53.03688049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b280 -00013989 53.03690720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b290 -00013990 53.03690720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b290 -00013991 53.03693390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -00013992 53.03693390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -00013993 53.03696060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -00013994 53.03696442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -00013995 53.03698730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -00013996 53.03699112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -00013997 53.03701782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -00013998 53.03702164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -00013999 53.03704453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -00014000 53.03704834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -00014001 53.03707504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -00014002 53.03707886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -00014003 53.03710556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -00014004 53.03710556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -00014005 53.03713226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -00014006 53.03713608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -00014007 53.03716278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -00014008 53.03716278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -00014009 53.03718948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -00014010 53.03719330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -00014011 53.03722000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -00014012 53.03722000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -00014013 53.03724670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b350 -00014014 53.03724670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b350 -00014015 53.03727722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b360 -00014016 53.03727722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b360 -00014017 53.03730392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b370 -00014018 53.03730774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b370 -00014019 53.03733444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b380 -00014020 53.03733826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b380 -00014021 53.03736496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b390 -00014022 53.03736496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b390 -00014023 53.03739166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3a0 -00014024 53.03739548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3a0 -00014025 53.03742218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3b0 -00014026 53.03742218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3b0 -00014027 53.03744507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3c0 -00014028 53.03744888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3c0 -00014029 53.03747559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3d0 -00014030 53.03747940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3d0 -00014031 53.03750229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3e0 -00014032 53.03750610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3e0 -00014033 53.03753281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3f0 -00014034 53.03753662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3f0 -00014035 53.03756332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b400 -00014036 53.03756332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b400 -00014037 53.03759003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b410 -00014038 53.03759384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b410 -00014039 53.03762054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b420 -00014040 53.03762054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b420 -00014041 53.03764725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b430 -00014042 53.03765106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b430 -00014043 53.03767776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b440 -00014044 53.03768158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b440 -00014045 53.03770447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b450 -00014046 53.03770447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b450 -00014047 53.03773499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b460 -00014048 53.03773499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b460 -00014049 53.03776169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b470 -00014050 53.03776169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b470 -00014051 53.03778839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b480 -00014052 53.03779221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b480 -00014053 53.03781891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b490 -00014054 53.03781891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b490 -00014055 53.03784561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4a0 -00014056 53.03784943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4a0 -00014057 53.03787613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4b0 -00014058 53.03787994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4b0 -00014059 53.03790283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4c0 -00014060 53.03790665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4c0 -00014061 53.03793335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4d0 -00014062 53.03793716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4d0 -00014063 53.03796005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4e0 -00014064 53.03796387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4e0 -00014065 53.03799057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4f0 -00014066 53.03799438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4f0 -00014067 53.03802109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b500 -00014068 53.03802109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b500 -00014069 53.03804779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b510 -00014070 53.03805161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b510 -00014071 53.03807831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b520 -00014072 53.03807831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b520 -00014073 53.03810501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b530 -00014074 53.03810883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b530 -00014075 53.03813553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b540 -00014076 53.03813934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b540 -00014077 53.03816223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b550 -00014078 53.03816605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b550 -00014079 53.03819275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b560 -00014080 53.03819656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b560 -00014081 53.03821945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b570 -00014082 53.03821945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b570 -00014083 53.03824615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b580 -00014084 53.03824997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b580 -00014085 53.03827667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b590 -00014086 53.03827667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b590 -00014087 53.03830338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5a0 -00014088 53.03830719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5a0 -00014089 53.03833389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b0 -00014090 53.03833771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b0 -00014091 53.03836060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c0 -00014092 53.03836441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c0 -00014093 53.03839111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d0 -00014094 53.03839493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d0 -00014095 53.03841782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e0 -00014096 53.03842163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e0 -00014097 53.03844833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f0 -00014098 53.03845215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f0 -00014099 53.03847504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b600 -00014100 53.03847885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b600 -00014101 53.03850555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b610 -00014102 53.03850555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b610 -00014103 53.03853607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b620 -00014104 53.03853607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b620 -00014105 53.03856277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b630 -00014106 53.03856277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b630 -00014107 53.03859329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b640 -00014108 53.03859329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b640 -00014109 53.03861618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b650 -00014110 53.03862000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b650 -00014111 53.03864670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b660 -00014112 53.03865051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b660 -00014113 53.03867340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b670 -00014114 53.03867722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b670 -00014115 53.03870392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b680 -00014116 53.03870773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b680 -00014117 53.03873444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b690 -00014118 53.03873444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b690 -00014119 53.03876114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6a0 -00014120 53.03876495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6a0 -00014121 53.03879166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6b0 -00014122 53.03879547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6b0 -00014123 53.03881836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6c0 -00014124 53.03882217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6c0 -00014125 53.03884888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6d0 -00014126 53.03884888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6d0 -00014127 53.03887558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6e0 -00014128 53.03887558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6e0 -00014129 53.03890228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6f0 -00014130 53.03890610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6f0 -00014131 53.03893280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b700 -00014132 53.03893280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b700 -00014133 53.03895950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b710 -00014134 53.03896332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b710 -00014135 53.03899002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b720 -00014136 53.03899384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b720 -00014137 53.03901672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b730 -00014138 53.03902054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b730 -00014139 53.03904724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b740 -00014140 53.03905106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b740 -00014141 53.03907394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b750 -00014142 53.03907776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b750 -00014143 53.03910446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b760 -00014144 53.03910828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b760 -00014145 53.03913116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b770 -00014146 53.03913498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b770 -00014147 53.03916168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b780 -00014148 53.03916550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b780 -00014149 53.03919220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b790 -00014150 53.03919220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b790 -00014151 53.03921890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7a0 -00014152 53.03922272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7a0 -00014153 53.03924942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7b0 -00014154 53.03924942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7b0 -00014155 53.03927612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7c0 -00014156 53.03927994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7c0 -00014157 53.03930664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7d0 -00014158 53.03931046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7d0 -00014159 53.03933334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7e0 -00014160 53.03933334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7e0 -00014161 53.03936005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7f0 -00014162 53.03936386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7f0 -00014163 53.03939056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b800 -00014164 53.03939056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b800 -00014165 53.03941727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b810 -00014166 53.03942108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b810 -00014167 53.03944778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b820 -00014168 53.03944778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b820 -00014169 53.03947449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b830 -00014170 53.03947830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b830 -00014171 53.03950500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b840 -00014172 53.03950882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b840 -00014173 53.03953171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b850 -00014174 53.03953552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b850 -00014175 53.03956223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b860 -00014176 53.03956604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b860 -00014177 53.03958893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b870 -00014178 53.03958893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b870 -00014179 53.03961563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b880 -00014180 53.03961945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b880 -00014181 53.03964615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b890 -00014182 53.03964615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b890 -00014183 53.03967285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a0 -00014184 53.03967667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a0 -00014185 53.03970337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b0 -00014186 53.03970718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b0 -00014187 53.03973007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c0 -00014188 53.03973389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c0 -00014189 53.03976059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d0 -00014190 53.03976440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d0 -00014191 53.03978729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e0 -00014192 53.03979111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e0 -00014193 53.03981781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f0 -00014194 53.03982162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f0 -00014195 53.03984451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b900 -00014196 53.03984833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b900 -00014197 53.03987503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b910 -00014198 53.03987503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b910 -00014199 53.03990173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b920 -00014200 53.03990555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b920 -00014201 53.03992844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b930 -00014202 53.03993225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b930 -00014203 53.03995895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b940 -00014204 53.03996277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b940 -00014205 53.03998566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b950 -00014206 53.03998947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b950 -00014207 53.04001617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b960 -00014208 53.04001999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b960 -00014209 53.04004669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b970 -00014210 53.04004669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b970 -00014211 53.04007339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b980 -00014212 53.04007721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b980 -00014213 53.04010391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b990 -00014214 53.04010391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b990 -00014215 53.04012680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a0 -00014216 53.04013062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a0 -00014217 53.04015732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b0 -00014218 53.04016113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b0 -00014219 53.04018402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c0 -00014220 53.04018784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c0 -00014221 53.04021454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d0 -00014222 53.04021835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d0 -00014223 53.04024506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e0 -00014224 53.04024506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e0 -00014225 53.04027176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f0 -00014226 53.04027557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f0 -00014227 53.04030228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba00 -00014228 53.04030228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba00 -00014229 53.04032898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba10 -00014230 53.04033279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba10 -00014231 53.04035950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba20 -00014232 53.04036331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba20 -00014233 53.04038620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba30 -00014234 53.04038620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba30 -00014235 53.04041672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba40 -00014236 53.04041672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba40 -00014237 53.04044342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba50 -00014238 53.04044342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba50 -00014239 53.04047012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba60 -00014240 53.04047394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba60 -00014241 53.04050064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba70 -00014242 53.04050064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba70 -00014243 53.04052734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba80 -00014244 53.04053116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba80 -00014245 53.04055786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba90 -00014246 53.04056168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba90 -00014247 53.04058456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa0 -00014248 53.04058838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa0 -00014249 53.04061508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab0 -00014250 53.04061508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab0 -00014251 53.04064178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac0 -00014252 53.04064178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac0 -00014253 53.04066849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad0 -00014254 53.04067230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad0 -00014255 53.04069901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bae0 -00014256 53.04069901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bae0 -00014257 53.04072571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baf0 -00014258 53.04072952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baf0 -00014259 53.04075623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb00 -00014260 53.04076004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb00 -00014261 53.04078293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb10 -00014262 53.04078674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb10 -00014263 53.04081345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb20 -00014264 53.04081726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb20 -00014265 53.04084015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb30 -00014266 53.04084015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb30 -00014267 53.04087067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb40 -00014268 53.04087067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb40 -00014269 53.04089737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb50 -00014270 53.04089737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb50 -00014271 53.04092407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb60 -00014272 53.04092789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb60 -00014273 53.04095459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb70 -00014274 53.04095840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb70 -00014275 53.04098129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb80 -00014276 53.04098511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb80 -00014277 53.04101181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb90 -00014278 53.04101563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb90 -00014279 53.04103851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bba0 -00014280 53.04104233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bba0 -00014281 53.04106903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbb0 -00014282 53.04107285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbb0 -00014283 53.04109573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbc0 -00014284 53.04109955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbc0 -00014285 53.04112625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbd0 -00014286 53.04113007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbd0 -00014287 53.04115677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbe0 -00014288 53.04115677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbe0 -00014289 53.04117966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbf0 -00014290 53.04118347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbf0 -00014291 53.04121017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc00 -00014292 53.04121399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc00 -00014293 53.04123688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc10 -00014294 53.04124069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc10 -00014295 53.04126740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc20 -00014296 53.04127121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc20 -00014297 53.04129410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc30 -00014298 53.04129791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc30 -00014299 53.04132462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc40 -00014300 53.04132843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc40 -00014301 53.04135513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc50 -00014302 53.04135513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc50 -00014303 53.04138184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc60 -00014304 53.04138184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc60 -00014305 53.04140854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc70 -00014306 53.04141235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc70 -00014307 53.04143524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc80 -00014308 53.04143906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc80 -00014309 53.04146576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc90 -00014310 53.04146957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc90 -00014311 53.04149628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca0 -00014312 53.04149628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca0 -00014313 53.04152298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb0 -00014314 53.04152679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb0 -00014315 53.04155350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc0 -00014316 53.04155350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc0 -00014317 53.04158020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd0 -00014318 53.04158401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd0 -00014319 53.04161072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce0 -00014320 53.04161453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce0 -00014321 53.04164124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf0 -00014322 53.04164886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf0 -00014323 53.04167557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd00 -00014324 53.04167938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd00 -00014325 53.04170609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd10 -00014326 53.04170990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd10 -00014327 53.04173279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd20 -00014328 53.04173660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd20 -00014329 53.04176331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd30 -00014330 53.04176712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd30 -00014331 53.04179382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd40 -00014332 53.04179764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd40 -00014333 53.04182434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd50 -00014334 53.04182434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd50 -00014335 53.04185104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd60 -00014336 53.04185486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd60 -00014337 53.04188156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd70 -00014338 53.04188156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd70 -00014339 53.04191208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd80 -00014340 53.04191208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd80 -00014341 53.04193878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd90 -00014342 53.04194260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd90 -00014343 53.04196930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bda0 -00014344 53.04196930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bda0 -00014345 53.04199600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdb0 -00014346 53.04199982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdb0 -00014347 53.04202652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdc0 -00014348 53.04203033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdc0 -00014349 53.04205322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdd0 -00014350 53.04205704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdd0 -00014351 53.04208374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bde0 -00014352 53.04208755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bde0 -00014353 53.04211044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdf0 -00014354 53.04211426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdf0 -00014355 53.04214096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be00 -00014356 53.04214478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be00 -00014357 53.04217148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be10 -00014358 53.04217148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be10 -00014359 53.04219818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be20 -00014360 53.04220200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be20 -00014361 53.04222870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be30 -00014362 53.04222870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be30 -00014363 53.04225540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be40 -00014364 53.04225922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be40 -00014365 53.04228973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be50 -00014366 53.04228973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be50 -00014367 53.04231644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be60 -00014368 53.04232025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be60 -00014369 53.04234695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be70 -00014370 53.04234695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be70 -00014371 53.04237366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be80 -00014372 53.04237747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be80 -00014373 53.04240417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be90 -00014374 53.04240799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be90 -00014375 53.04243469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea0 -00014376 53.04243851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea0 -00014377 53.04246521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb0 -00014378 53.04246902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb0 -00014379 53.04249191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec0 -00014380 53.04249573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec0 -00014381 53.04252243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed0 -00014382 53.04252625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed0 -00014383 53.04254913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee0 -00014384 53.04255295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee0 -00014385 53.04257965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef0 -00014386 53.04258347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef0 -00014387 53.04260635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf00 -00014388 53.04261017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf00 -00014389 53.04263687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf10 -00014390 53.04263687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf10 -00014391 53.04266357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf20 -00014392 53.04266739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf20 -00014393 53.04269028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf30 -00014394 53.04269409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf30 -00014395 53.04272079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf40 -00014396 53.04272461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf40 -00014397 53.04274750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf50 -00014398 53.04275131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf50 -00014399 53.04277802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf60 -00014400 53.04278183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf60 -00014401 53.04280853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf70 -00014402 53.04280853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf70 -00014403 53.04283524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf80 -00014404 53.04283905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf80 -00014405 53.04286575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf90 -00014406 53.04286575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf90 -00014407 53.04289246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa0 -00014408 53.04289627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa0 -00014409 53.04292297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb0 -00014410 53.04292297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb0 -00014411 53.04294968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc0 -00014412 53.04295349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc0 -00014413 53.04298019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd0 -00014414 53.04298401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd0 -00014415 53.04300690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe0 -00014416 53.04301071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe0 -00014417 53.04303741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff0 -00014418 53.04304123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff0 -00014419 53.04306412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c000 -00014420 53.04306793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c000 -00014421 53.04309464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c010 -00014422 53.04309845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c010 -00014423 53.04312134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c020 -00014424 53.04312134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c020 -00014425 53.04314804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c030 -00014426 53.04315186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c030 -00014427 53.04317856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c040 -00014428 53.04318237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c040 -00014429 53.04320526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c050 -00014430 53.04320908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c050 -00014431 53.04323578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c060 -00014432 53.04323959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c060 -00014433 53.04326248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c070 -00014434 53.04326630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c070 -00014435 53.04329300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c080 -00014436 53.04329681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c080 -00014437 53.04331970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c090 -00014438 53.04332352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c090 -00014439 53.04335022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0a0 -00014440 53.04335403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0a0 -00014441 53.04338074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0b0 -00014442 53.04338074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0b0 -00014443 53.04340363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0c0 -00014444 53.04340744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0c0 -00014445 53.04343796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0d0 -00014446 53.04343796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0d0 -00014447 53.04346085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0e0 -00014448 53.04346466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0e0 -00014449 53.04349136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0f0 -00014450 53.04349518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0f0 -00014451 53.04352188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c100 -00014452 53.04352188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c100 -00014453 53.04354858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c110 -00014454 53.04355240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c110 -00014455 53.04357910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c120 -00014456 53.04357910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c120 -00014457 53.04360580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c130 -00014458 53.04360962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c130 -00014459 53.04363632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c140 -00014460 53.04364014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c140 -00014461 53.04366302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c150 -00014462 53.04366302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c150 -00014463 53.04368973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c160 -00014464 53.04369354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c160 -00014465 53.04372025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c170 -00014466 53.04372025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c170 -00014467 53.04374695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c180 -00014468 53.04375076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c180 -00014469 53.04377747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c190 -00014470 53.04377747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c190 -00014471 53.04380417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1a0 -00014472 53.04380798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1a0 -00014473 53.04383469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1b0 -00014474 53.04383850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1b0 -00014475 53.04386139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1c0 -00014476 53.04386520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1c0 -00014477 53.04389191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1d0 -00014478 53.04389191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1d0 -00014479 53.04391861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1e0 -00014480 53.04391861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1e0 -00014481 53.04394531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1f0 -00014482 53.04394913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1f0 -00014483 53.04397583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c200 -00014484 53.04397583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c200 -00014485 53.04400253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c210 -00014486 53.04400635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c210 -00014487 53.04403305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c220 -00014488 53.04403687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c220 -00014489 53.04405975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c230 -00014490 53.04406357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c230 -00014491 53.04409027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c240 -00014492 53.04409409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c240 -00014493 53.04411697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c250 -00014494 53.04412079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c250 -00014495 53.04414749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c260 -00014496 53.04414749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c260 -00014497 53.04417419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c270 -00014498 53.04417419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c270 -00014499 53.04420090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c280 -00014500 53.04420471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c280 -00014501 53.04423141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c290 -00014502 53.04423523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c290 -00014503 53.04425812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2a0 -00014504 53.04426193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2a0 -00014505 53.04428864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2b0 -00014506 53.04429245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2b0 -00014507 53.04431534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2c0 -00014508 53.04431915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2c0 -00014509 53.04434586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2d0 -00014510 53.04434967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2d0 -00014511 53.04437256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e0 -00014512 53.04437637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e0 -00014513 53.04440308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f0 -00014514 53.04440689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f0 -00014515 53.04443359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c300 -00014516 53.04443359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c300 -00014517 53.04446030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c310 -00014518 53.04446030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c310 -00014519 53.04448700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c320 -00014520 53.04449081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c320 -00014521 53.04451370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c330 -00014522 53.04451752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c330 -00014523 53.04454422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c340 -00014524 53.04454803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c340 -00014525 53.04457092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c350 -00014526 53.04457474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c350 -00014527 53.04460144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c360 -00014528 53.04460526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c360 -00014529 53.04463196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c370 -00014530 53.04463196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c370 -00014531 53.04465866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c380 -00014532 53.04465866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c380 -00014533 53.04468918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c390 -00014534 53.04469299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c390 -00014535 53.04471588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a0 -00014536 53.04471970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a0 -00014537 53.04474640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b0 -00014538 53.04475021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b0 -00014539 53.04477310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c0 -00014540 53.04477310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c0 -00014541 53.04479980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d0 -00014542 53.04480362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d0 -00014543 53.04483032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e0 -00014544 53.04483032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e0 -00014545 53.04486084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f0 -00014546 53.04486465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f0 -00014547 53.04489136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c400 -00014548 53.04489136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c400 -00014549 53.04491806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c410 -00014550 53.04491806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c410 -00014551 53.04494476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c420 -00014552 53.04494858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c420 -00014553 53.04497147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c430 -00014554 53.04497528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c430 -00014555 53.04500198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c440 -00014556 53.04500580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c440 -00014557 53.04502869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c450 -00014558 53.04503250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c450 -00014559 53.04505920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c460 -00014560 53.04506302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c460 -00014561 53.04508972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c470 -00014562 53.04508972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c470 -00014563 53.04511642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c480 -00014564 53.04511642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c480 -00014565 53.04514313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c490 -00014566 53.04514694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c490 -00014567 53.04516983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a0 -00014568 53.04517365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a0 -00014569 53.04520035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b0 -00014570 53.04520416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b0 -00014571 53.04522705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c0 -00014572 53.04523087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c0 -00014573 53.04525757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d0 -00014574 53.04526138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d0 -00014575 53.04528809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e0 -00014576 53.04528809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e0 -00014577 53.04531479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f0 -00014578 53.04531860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f0 -00014579 53.04534531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c500 -00014580 53.04534531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c500 -00014581 53.04537201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c510 -00014582 53.04537201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c510 -00014583 53.04540253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c520 -00014584 53.04540253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c520 -00014585 53.04542542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c530 -00014586 53.04542923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c530 -00014587 53.04545593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c540 -00014588 53.04545975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c540 -00014589 53.04548645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c550 -00014590 53.04548645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c550 -00014591 53.04551315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c560 -00014592 53.04551697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c560 -00014593 53.04554367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c570 -00014594 53.04554749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c570 -00014595 53.04557037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c580 -00014596 53.04557419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c580 -00014597 53.04560089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c590 -00014598 53.04560471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c590 -00014599 53.04562759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5a0 -00014600 53.04563141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5a0 -00014601 53.04565811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5b0 -00014602 53.04566193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5b0 -00014603 53.04568481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5c0 -00014604 53.04568863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5c0 -00014605 53.04571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5d0 -00014606 53.04571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5d0 -00014607 53.04574203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5e0 -00014608 53.04574585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5e0 -00014609 53.04576874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5f0 -00014610 53.04577255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5f0 -00014611 53.04579926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c600 -00014612 53.04580307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c600 -00014613 53.04582596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c610 -00014614 53.04582977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c610 -00014615 53.04585648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c620 -00014616 53.04586029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c620 -00014617 53.04588318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c630 -00014618 53.04588699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c630 -00014619 53.04591370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c640 -00014620 53.04591751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c640 -00014621 53.04594421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c650 -00014622 53.04594421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c650 -00014623 53.04597092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c660 -00014624 53.04597473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c660 -00014625 53.04600143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c670 -00014626 53.04600143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c670 -00014627 53.04602814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c680 -00014628 53.04602814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c680 -00014629 53.04605484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c690 -00014630 53.04605865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c690 -00014631 53.04608154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6a0 -00014632 53.04608536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6a0 -00014633 53.04611206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6b0 -00014634 53.04611588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6b0 -00014635 53.04614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c0 -00014636 53.04614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c0 -00014637 53.04616928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d0 -00014638 53.04617310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d0 -00014639 53.04619980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e0 -00014640 53.04619980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e0 -00014641 53.04622650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f0 -00014642 53.04623032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f0 -00014643 53.04625702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c700 -00014644 53.04626083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c700 -00014645 53.04628372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c710 -00014646 53.04628754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c710 -00014647 53.04631424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c720 -00014648 53.04631805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c720 -00014649 53.04634094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c730 -00014650 53.04634094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c730 -00014651 53.04636765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c740 -00014652 53.04637146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c740 -00014653 53.04639816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c750 -00014654 53.04639816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c750 -00014655 53.04642487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c760 -00014656 53.04642868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c760 -00014657 53.04645538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c770 -00014658 53.04645920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c770 -00014659 53.04648209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c780 -00014660 53.04648590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c780 -00014661 53.04651260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c790 -00014662 53.04651642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c790 -00014663 53.04653931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a0 -00014664 53.04654312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a0 -00014665 53.04656982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b0 -00014666 53.04657364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b0 -00014667 53.04659653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c0 -00014668 53.04660034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c0 -00014669 53.04662704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d0 -00014670 53.04662704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d0 -00014671 53.04665756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e0 -00014672 53.04665756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e0 -00014673 53.04668045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f0 -00014674 53.04668427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f0 -00014675 53.04671097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c800 -00014676 53.04671478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c800 -00014677 53.04673767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c810 -00014678 53.04674149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c810 -00014679 53.04676819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c820 -00014680 53.04677200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c820 -00014681 53.04679871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c830 -00014682 53.04679871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c830 -00014683 53.04682541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c840 -00014684 53.04682922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c840 -00014685 53.04685593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c850 -00014686 53.04685593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c850 -00014687 53.04688263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c860 -00014688 53.04688263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c860 -00014689 53.04690933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c870 -00014690 53.04691315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c870 -00014691 53.04693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c880 -00014692 53.04693985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c880 -00014693 53.04696655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c890 -00014694 53.04697037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c890 -00014695 53.04699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a0 -00014696 53.04699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a0 -00014697 53.04702377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b0 -00014698 53.04702759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b0 -00014699 53.04705429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c0 -00014700 53.04705429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c0 -00014701 53.04708099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d0 -00014702 53.04708481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d0 -00014703 53.04711151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e0 -00014704 53.04711151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e0 -00014705 53.04713440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f0 -00014706 53.04713821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f0 -00014707 53.04716492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c900 -00014708 53.04716873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c900 -00014709 53.04719543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c910 -00014710 53.04719543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c910 -00014711 53.04722214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c920 -00014712 53.04722595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c920 -00014713 53.04725266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c930 -00014714 53.04725266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c930 -00014715 53.04727936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c940 -00014716 53.04728317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c940 -00014717 53.04730988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c950 -00014718 53.04731369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c950 -00014719 53.04733658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c960 -00014720 53.04734039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c960 -00014721 53.04736710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c970 -00014722 53.04737091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c970 -00014723 53.04739380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c980 -00014724 53.04739761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c980 -00014725 53.04742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c990 -00014726 53.04742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c990 -00014727 53.04745102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a0 -00014728 53.04745102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a0 -00014729 53.04747772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b0 -00014730 53.04748154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b0 -00014731 53.04750824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c0 -00014732 53.04751205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c0 -00014733 53.04753494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d0 -00014734 53.04753876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d0 -00014735 53.04756546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e0 -00014736 53.04756927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e0 -00014737 53.04759216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f0 -00014738 53.04759598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f0 -00014739 53.04762268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca00 -00014740 53.04762268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca00 -00014741 53.04764938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca10 -00014742 53.04764938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca10 -00014743 53.04767609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca20 -00014744 53.04767990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca20 -00014745 53.04770660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca30 -00014746 53.04771042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca30 -00014747 53.04773331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca40 -00014748 53.04773712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca40 -00014749 53.04776382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca50 -00014750 53.04776764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca50 -00014751 53.04779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca60 -00014752 53.04779434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca60 -00014753 53.04782104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca70 -00014754 53.04782486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca70 -00014755 53.04784775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca80 -00014756 53.04785156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca80 -00014757 53.04787827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca90 -00014758 53.04787827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca90 -00014759 53.04790878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa0 -00014760 53.04790878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa0 -00014761 53.04793167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab0 -00014762 53.04793549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab0 -00014763 53.04796219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac0 -00014764 53.04796600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac0 -00014765 53.04798889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad0 -00014766 53.04799271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad0 -00014767 53.04801941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae0 -00014768 53.04802322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae0 -00014769 53.04804611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf0 -00014770 53.04804993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf0 -00014771 53.04807663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb00 -00014772 53.04808044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb00 -00014773 53.04810715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb10 -00014774 53.04810715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb10 -00014775 53.04813385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb20 -00014776 53.04813385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb20 -00014777 53.04816055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb30 -00014778 53.04816437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb30 -00014779 53.04818726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb40 -00014780 53.04819107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb40 -00014781 53.04821777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb50 -00014782 53.04822159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb50 -00014783 53.04824829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb60 -00014784 53.04824829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb60 -00014785 53.04827499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb70 -00014786 53.04827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb70 -00014787 53.04830551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb80 -00014788 53.04830551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb80 -00014789 53.04833221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb90 -00014790 53.04833221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb90 -00014791 53.04835892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba0 -00014792 53.04836273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba0 -00014793 53.04838562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb0 -00014794 53.04838943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb0 -00014795 53.04841614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc0 -00014796 53.04841995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc0 -00014797 53.04844666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd0 -00014798 53.04844666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd0 -00014799 53.04847336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe0 -00014800 53.04847717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe0 -00014801 53.04850388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf0 -00014802 53.04850388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf0 -00014803 53.04853058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc00 -00014804 53.04853439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc00 -00014805 53.04856110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc10 -00014806 53.04856491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc10 -00014807 53.04858780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc20 -00014808 53.04859161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc20 -00014809 53.04861832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc30 -00014810 53.04862213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc30 -00014811 53.04864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc40 -00014812 53.04864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc40 -00014813 53.04867554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc50 -00014814 53.04867554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc50 -00014815 53.04870224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc60 -00014816 53.04870224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc60 -00014817 53.04872894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc70 -00014818 53.04873276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc70 -00014819 53.04875946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc80 -00014820 53.04876328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc80 -00014821 53.04878616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc90 -00014822 53.04878998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc90 -00014823 53.04881668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca0 -00014824 53.04882050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca0 -00014825 53.04884338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb0 -00014826 53.04884720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb0 -00014827 53.04887390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc0 -00014828 53.04887772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc0 -00014829 53.04890060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd0 -00014830 53.04890442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd0 -00014831 53.04893112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce0 -00014832 53.04893494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce0 -00014833 53.04896164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf0 -00014834 53.04896164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf0 -00014835 53.04898453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd00 -00014836 53.04898834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd00 -00014837 53.04901505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd10 -00014838 53.04901886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd10 -00014839 53.04904175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd20 -00014840 53.04904556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd20 -00014841 53.04907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd30 -00014842 53.04907608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd30 -00014843 53.04909897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd40 -00014844 53.04910278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd40 -00014845 53.04912949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd50 -00014846 53.04913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd50 -00014847 53.04916000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd60 -00014848 53.04916000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd60 -00014849 53.04918671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd70 -00014850 53.04919052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd70 -00014851 53.04921722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd80 -00014852 53.04922104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd80 -00014853 53.04924393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd90 -00014854 53.04924774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd90 -00014855 53.04927444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda0 -00014856 53.04927826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda0 -00014857 53.04930115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb0 -00014858 53.04930115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb0 -00014859 53.04932785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc0 -00014860 53.04933167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc0 -00014861 53.04935837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd0 -00014862 53.04935837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd0 -00014863 53.04938507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde0 -00014864 53.04938889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde0 -00014865 53.04941559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf0 -00014866 53.04941940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf0 -00014867 53.04944229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce00 -00014868 53.04944611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce00 -00014869 53.04947281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce10 -00014870 53.04947662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce10 -00014871 53.04949951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce20 -00014872 53.04950333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce20 -00014873 53.04953003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce30 -00014874 53.04953003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce30 -00014875 53.04955673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce40 -00014876 53.04955673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce40 -00014877 53.04958344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce50 -00014878 53.04958725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce50 -00014879 53.04961395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce60 -00014880 53.04961777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce60 -00014881 53.04964066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce70 -00014882 53.04964447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce70 -00014883 53.04967117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce80 -00014884 53.04967499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce80 -00014885 53.04969788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce90 -00014886 53.04970551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce90 -00014887 53.04973221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea0 -00014888 53.04973221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea0 -00014889 53.04975891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb0 -00014890 53.04975891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb0 -00014891 53.04978561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cec0 -00014892 53.04978943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cec0 -00014893 53.04981613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ced0 -00014894 53.04981613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ced0 -00014895 53.04984283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cee0 -00014896 53.04984665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cee0 -00014897 53.04987335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cef0 -00014898 53.04987335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cef0 -00014899 53.04990005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf00 -00014900 53.04990387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf00 -00014901 53.04993057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf10 -00014902 53.04993439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf10 -00014903 53.04995728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf20 -00014904 53.04996109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf20 -00014905 53.04998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf30 -00014906 53.04999161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf30 -00014907 53.05001450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf40 -00014908 53.05001831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf40 -00014909 53.05004501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf50 -00014910 53.05004501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf50 -00014911 53.05007172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf60 -00014912 53.05007172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf60 -00014913 53.05009842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf70 -00014914 53.05010223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf70 -00014915 53.05012894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf80 -00014916 53.05013275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf80 -00014917 53.05015564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf90 -00014918 53.05015945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf90 -00014919 53.05018616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfa0 -00014920 53.05018997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfa0 -00014921 53.05021286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfb0 -00014922 53.05021667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfb0 -00014923 53.05024338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfc0 -00014924 53.05024719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfc0 -00014925 53.05027390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfd0 -00014926 53.05027390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfd0 -00014927 53.05030060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfe0 -00014928 53.05030441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfe0 -00014929 53.05033112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cff0 -00014930 53.05033112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cff0 -00014931 53.05035782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d000 -00014932 53.05035782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d000 -00014933 53.05038834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d010 -00014934 53.05038834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d010 -00014935 53.05041122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d020 -00014936 53.05041504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d020 -00014937 53.05044174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d030 -00014938 53.05044556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d030 -00014939 53.05047226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d040 -00014940 53.05047226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d040 -00014941 53.05049896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d050 -00014942 53.05050278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d050 -00014943 53.05052948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d060 -00014944 53.05052948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d060 -00014945 53.05055618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d070 -00014946 53.05056000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d070 -00014947 53.05058670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d080 -00014948 53.05059052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d080 -00014949 53.05061340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d090 -00014950 53.05061722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d090 -00014951 53.05064392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a0 -00014952 53.05064774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a0 -00014953 53.05067062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b0 -00014954 53.05067062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b0 -00014955 53.05070114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c0 -00014956 53.05070114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c0 -00014957 53.05072784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d0 -00014958 53.05072784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d0 -00014959 53.05075455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e0 -00014960 53.05075836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e0 -00014961 53.05078506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f0 -00014962 53.05078888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f0 -00014963 53.05081177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d100 -00014964 53.05081558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d100 -00014965 53.05084229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d110 -00014966 53.05084610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d110 -00014967 53.05086899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d120 -00014968 53.05087280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d120 -00014969 53.05089951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d130 -00014970 53.05089951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d130 -00014971 53.05092621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d140 -00014972 53.05093002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d140 -00014973 53.05095673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d150 -00014974 53.05095673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d150 -00014975 53.05098724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d160 -00014976 53.05098724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d160 -00014977 53.05101013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d170 -00014978 53.05101395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d170 -00014979 53.05104065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d180 -00014980 53.05104446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d180 -00014981 53.05106735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d190 -00014982 53.05107117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d190 -00014983 53.05109787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a0 -00014984 53.05110168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a0 -00014985 53.05112457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b0 -00014986 53.05112839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b0 -00014987 53.05115509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c0 -00014988 53.05115891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c0 -00014989 53.05118561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d0 -00014990 53.05118561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d0 -00014991 53.05121231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1e0 -00014992 53.05121613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1e0 -00014993 53.05124283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1f0 -00014994 53.05124664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1f0 -00014995 53.05126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d200 -00014996 53.05126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d200 -00014997 53.05129623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d210 -00014998 53.05130005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d210 -00014999 53.05132294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d220 -00015000 53.05132675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d220 -00015001 53.05135345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d230 -00015002 53.05135727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d230 -00015003 53.05138397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d240 -00015004 53.05138397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d240 -00015005 53.05141068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d250 -00015006 53.05141449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d250 -00015007 53.05144119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d260 -00015008 53.05144501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d260 -00015009 53.05146790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d270 -00015010 53.05146790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d270 -00015011 53.05149841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d280 -00015012 53.05149841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d280 -00015013 53.05152130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d290 -00015014 53.05152512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d290 -00015015 53.05155563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a0 -00015016 53.05155563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a0 -00015017 53.05158234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b0 -00015018 53.05158234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b0 -00015019 53.05160904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c0 -00015020 53.05161285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c0 -00015021 53.05163956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d0 -00015022 53.05164337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d0 -00015023 53.05166626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e0 -00015024 53.05167007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e0 -00015025 53.05169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f0 -00015026 53.05170059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f0 -00015027 53.05172348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d300 -00015028 53.05172729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d300 -00015029 53.05175400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d310 -00015030 53.05175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d310 -00015031 53.05178070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d320 -00015032 53.05178452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d320 -00015033 53.05181122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d330 -00015034 53.05181503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d330 -00015035 53.05184174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d340 -00015036 53.05184174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d340 -00015037 53.05186844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d350 -00015038 53.05186844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d350 -00015039 53.05189896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d360 -00015040 53.05189896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d360 -00015041 53.05192184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d370 -00015042 53.05192566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d370 -00015043 53.05195236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d380 -00015044 53.05195618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d380 -00015045 53.05197906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d390 -00015046 53.05198288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d390 -00015047 53.05200958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a0 -00015048 53.05201340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a0 -00015049 53.05204010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b0 -00015050 53.05204010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b0 -00015051 53.05206680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3c0 -00015052 53.05207062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3c0 -00015053 53.05209732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3d0 -00015054 53.05209732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3d0 -00015055 53.05212021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3e0 -00015056 53.05212402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3e0 -00015057 53.05215073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3f0 -00015058 53.05215454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3f0 -00015059 53.05217743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d400 -00015060 53.05218124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d400 -00015061 53.05220795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d410 -00015062 53.05221176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d410 -00015063 53.05223846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d420 -00015064 53.05223846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d420 -00015065 53.05226517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d430 -00015066 53.05226898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d430 -00015067 53.05229568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d440 -00015068 53.05229950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d440 -00015069 53.05232239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d450 -00015070 53.05232620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d450 -00015071 53.05235291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d460 -00015072 53.05235291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d460 -00015073 53.05237961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d470 -00015074 53.05237961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d470 -00015075 53.05240631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d480 -00015076 53.05241013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d480 -00015077 53.05243683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d490 -00015078 53.05243683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d490 -00015079 53.05246353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a0 -00015080 53.05246735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a0 -00015081 53.05249405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b0 -00015082 53.05249786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b0 -00015083 53.05252075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c0 -00015084 53.05252457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c0 -00015085 53.05255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d0 -00015086 53.05255508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d0 -00015087 53.05257797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4e0 -00015088 53.05258179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4e0 -00015089 53.05260849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4f0 -00015090 53.05260849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4f0 -00015091 53.05263519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d500 -00015092 53.05263519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d500 -00015093 53.05266190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d510 -00015094 53.05266571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d510 -00015095 53.05269241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d520 -00015096 53.05269623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d520 -00015097 53.05271912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d530 -00015098 53.05272293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d530 -00015099 53.05274963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d540 -00015100 53.05275345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d540 -00015101 53.05277634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d550 -00015102 53.05278015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d550 -00015103 53.05280685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d560 -00015104 53.05281067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d560 -00015105 53.05283356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d570 -00015106 53.05283737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d570 -00015107 53.05286407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d580 -00015108 53.05286789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d580 -00015109 53.05289459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d590 -00015110 53.05289459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d590 -00015111 53.05292130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a0 -00015112 53.05292130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a0 -00015113 53.05294800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b0 -00015114 53.05295181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b0 -00015115 53.05297470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c0 -00015116 53.05297852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c0 -00015117 53.05300522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d0 -00015118 53.05300903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d0 -00015119 53.05303192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e0 -00015120 53.05303574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e0 -00015121 53.05306244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f0 -00015122 53.05306625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f0 -00015123 53.05309296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d600 -00015124 53.05309296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d600 -00015125 53.05311966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d610 -00015126 53.05312347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d610 -00015127 53.05315018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d620 -00015128 53.05315018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d620 -00015129 53.05317307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d630 -00015130 53.05317688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d630 -00015131 53.05320358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d640 -00015132 53.05320740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d640 -00015133 53.05323029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d650 -00015134 53.05323410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d650 -00015135 53.05326080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d660 -00015136 53.05326462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d660 -00015137 53.05329132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d670 -00015138 53.05329132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d670 -00015139 53.05331802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d680 -00015140 53.05332184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d680 -00015141 53.05334854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d690 -00015142 53.05334854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d690 -00015143 53.05337524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6a0 -00015144 53.05337524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6a0 -00015145 53.05340195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6b0 -00015146 53.05340576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6b0 -00015147 53.05342865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6c0 -00015148 53.05343246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6c0 -00015149 53.05345917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d0 -00015150 53.05346298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d0 -00015151 53.05348969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e0 -00015152 53.05348969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e0 -00015153 53.05351639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f0 -00015154 53.05352020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f0 -00015155 53.05354691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d700 -00015156 53.05354691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d700 -00015157 53.05357361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d710 -00015158 53.05357742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d710 -00015159 53.05360413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d720 -00015160 53.05360794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d720 -00015161 53.05363083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d730 -00015162 53.05363464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d730 -00015163 53.05366135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d740 -00015164 53.05366135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d740 -00015165 53.05368805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d750 -00015166 53.05368805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d750 -00015167 53.05371475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d760 -00015168 53.05371857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d760 -00015169 53.05374527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d770 -00015170 53.05374908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d770 -00015171 53.05377197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d780 -00015172 53.05377579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d780 -00015173 53.05380249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d790 -00015174 53.05380630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d790 -00015175 53.05382919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a0 -00015176 53.05383301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a0 -00015177 53.05385971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b0 -00015178 53.05386353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b0 -00015179 53.05388641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c0 -00015180 53.05388641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c0 -00015181 53.05391312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d0 -00015182 53.05391693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d0 -00015183 53.05394363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e0 -00015184 53.05394745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e0 -00015185 53.05397034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f0 -00015186 53.05397415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f0 -00015187 53.05400085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d800 -00015188 53.05400467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d800 -00015189 53.05402756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d810 -00015190 53.05403137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d810 -00015191 53.05405807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d820 -00015192 53.05406189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d820 -00015193 53.05408478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d830 -00015194 53.05408859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d830 -00015195 53.05411530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d840 -00015196 53.05411911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d840 -00015197 53.05414581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d850 -00015198 53.05414581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d850 -00015199 53.05416870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d860 -00015200 53.05417252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d860 -00015201 53.05419922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d870 -00015202 53.05420303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d870 -00015203 53.05422592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d880 -00015204 53.05422974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d880 -00015205 53.05425644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d890 -00015206 53.05426025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d890 -00015207 53.05428314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a0 -00015208 53.05428696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a0 -00015209 53.05431366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8b0 -00015210 53.05431747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8b0 -00015211 53.05434418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8c0 -00015212 53.05434418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8c0 -00015213 53.05437088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8d0 -00015214 53.05437469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8d0 -00015215 53.05440140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8e0 -00015216 53.05440140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8e0 -00015217 53.05442429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8f0 -00015218 53.05442810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8f0 -00015219 53.05445480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d900 -00015220 53.05445862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d900 -00015221 53.05448151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d910 -00015222 53.05448532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d910 -00015223 53.05451202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d920 -00015224 53.05451584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d920 -00015225 53.05454254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d930 -00015226 53.05454254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d930 -00015227 53.05456924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d940 -00015228 53.05457306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d940 -00015229 53.05459976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d950 -00015230 53.05459976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d950 -00015231 53.05462646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d960 -00015232 53.05463028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d960 -00015233 53.05465698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d970 -00015234 53.05465698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d970 -00015235 53.05468369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d980 -00015236 53.05468750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d980 -00015237 53.05471420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d990 -00015238 53.05471420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d990 -00015239 53.05474091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a0 -00015240 53.05474091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a0 -00015241 53.05476761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b0 -00015242 53.05477142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b0 -00015243 53.05479813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c0 -00015244 53.05479813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c0 -00015245 53.05482483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d0 -00015246 53.05482864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d0 -00015247 53.05485535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e0 -00015248 53.05485916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e0 -00015249 53.05488205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f0 -00015250 53.05488586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f0 -00015251 53.05491257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da00 -00015252 53.05491638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da00 -00015253 53.05493927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da10 -00015254 53.05493927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da10 -00015255 53.05496979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da20 -00015256 53.05496979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da20 -00015257 53.05499649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da30 -00015258 53.05500031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da30 -00015259 53.05502319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da40 -00015260 53.05502701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da40 -00015261 53.05505371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da50 -00015262 53.05505753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da50 -00015263 53.05508041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da60 -00015264 53.05508423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da60 -00015265 53.05511093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da70 -00015266 53.05511475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da70 -00015267 53.05513763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da80 -00015268 53.05514145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da80 -00015269 53.05516815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da90 -00015270 53.05516815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da90 -00015271 53.05519485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa0 -00015272 53.05519867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa0 -00015273 53.05522156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab0 -00015274 53.05522537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab0 -00015275 53.05525208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac0 -00015276 53.05525589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac0 -00015277 53.05527878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad0 -00015278 53.05528259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad0 -00015279 53.05530930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae0 -00015280 53.05531311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae0 -00015281 53.05533600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf0 -00015282 53.05533981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf0 -00015283 53.05536652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db00 -00015284 53.05537033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db00 -00015285 53.05539703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db10 -00015286 53.05539703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db10 -00015287 53.05542374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db20 -00015288 53.05542755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db20 -00015289 53.05545425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db30 -00015290 53.05545425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db30 -00015291 53.05548096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db40 -00015292 53.05548477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db40 -00015293 53.05551147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db50 -00015294 53.05551529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db50 -00015295 53.05553818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db60 -00015296 53.05554199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db60 -00015297 53.05557251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db70 -00015298 53.05557251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db70 -00015299 53.05559921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db80 -00015300 53.05559921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db80 -00015301 53.05562592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db90 -00015302 53.05562973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db90 -00015303 53.05565262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dba0 -00015304 53.05565643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dba0 -00015305 53.05568314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbb0 -00015306 53.05568695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbb0 -00015307 53.05571365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbc0 -00015308 53.05571365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbc0 -00015309 53.05574036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd0 -00015310 53.05574417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd0 -00015311 53.05577087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe0 -00015312 53.05577469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe0 -00015313 53.05579758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf0 -00015314 53.05580139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf0 -00015315 53.05582809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc00 -00015316 53.05582809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc00 -00015317 53.05585098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc10 -00015318 53.05585480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc10 -00015319 53.05588150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc20 -00015320 53.05588531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc20 -00015321 53.05591202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc30 -00015322 53.05591202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc30 -00015323 53.05593872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc40 -00015324 53.05594254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc40 -00015325 53.05596924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc50 -00015326 53.05597305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc50 -00015327 53.05599594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc60 -00015328 53.05599976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc60 -00015329 53.05602646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc70 -00015330 53.05603027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc70 -00015331 53.05605316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc80 -00015332 53.05605698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc80 -00015333 53.05608368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc90 -00015334 53.05608368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc90 -00015335 53.05611038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dca0 -00015336 53.05611038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dca0 -00015337 53.05614090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcb0 -00015338 53.05614090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcb0 -00015339 53.05616760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcc0 -00015340 53.05617142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcc0 -00015341 53.05619431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcd0 -00015342 53.05619812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcd0 -00015343 53.05622482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dce0 -00015344 53.05622864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dce0 -00015345 53.05625153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcf0 -00015346 53.05625534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcf0 -00015347 53.05628204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd00 -00015348 53.05628586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd00 -00015349 53.05630875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd10 -00015350 53.05631256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd10 -00015351 53.05633926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd20 -00015352 53.05634308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd20 -00015353 53.05636978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd30 -00015354 53.05636978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd30 -00015355 53.05639267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd40 -00015356 53.05639648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd40 -00015357 53.05642319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd50 -00015358 53.05642700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd50 -00015359 53.05644989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd60 -00015360 53.05645370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd60 -00015361 53.05648041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd70 -00015362 53.05648422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd70 -00015363 53.05650711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd80 -00015364 53.05651093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd80 -00015365 53.05653763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd90 -00015366 53.05654144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd90 -00015367 53.05656815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda0 -00015368 53.05656815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda0 -00015369 53.05659485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb0 -00015370 53.05659485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb0 -00015371 53.05662537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc0 -00015372 53.05662537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc0 -00015373 53.05665207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd0 -00015374 53.05665207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd0 -00015375 53.05667877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde0 -00015376 53.05668259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde0 -00015377 53.05670547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf0 -00015378 53.05670929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf0 -00015379 53.05673599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de00 -00015380 53.05673981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de00 -00015381 53.05676651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de10 -00015382 53.05676651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de10 -00015383 53.05679321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de20 -00015384 53.05679703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de20 -00015385 53.05682373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de30 -00015386 53.05682373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de30 -00015387 53.05685043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de40 -00015388 53.05685425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de40 -00015389 53.05688095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de50 -00015390 53.05688477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de50 -00015391 53.05690765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de60 -00015392 53.05690765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de60 -00015393 53.05693436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de70 -00015394 53.05693817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de70 -00015395 53.05696487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de80 -00015396 53.05696487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de80 -00015397 53.05699158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -00015398 53.05699539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -00015399 53.05702209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -00015400 53.05702209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -00015401 53.05704880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -00015402 53.05705261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -00015403 53.05707932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -00015404 53.05708313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -00015405 53.05710602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -00015406 53.05710983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -00015407 53.05713654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -00015408 53.05713654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -00015409 53.05716324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -00015410 53.05716324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -00015411 53.05719376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -00015412 53.05719376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -00015413 53.05722427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -00015414 53.05722427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -00015415 53.05724716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -00015416 53.05725098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -00015417 53.05727768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -00015418 53.05728149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -00015419 53.05730438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -00015420 53.05730820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -00015421 53.05733490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df50 -00015422 53.05733871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df50 -00015423 53.05736160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df60 -00015424 53.05736542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df60 -00015425 53.05739212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df70 -00015426 53.05739594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df70 -00015427 53.05742264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df80 -00015428 53.05742264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df80 -00015429 53.05744934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df90 -00015430 53.05745316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df90 -00015431 53.05747986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa0 -00015432 53.05747986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa0 -00015433 53.05750275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb0 -00015434 53.05750656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb0 -00015435 53.05753326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfc0 -00015436 53.05753708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfc0 -00015437 53.05755997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfd0 -00015438 53.05756378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfd0 -00015439 53.05759048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfe0 -00015440 53.05759430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfe0 -00015441 53.05762100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dff0 -00015442 53.05762100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dff0 -00015443 53.05764771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e000 -00015444 53.05765152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e000 -00015445 53.05767822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e010 -00015446 53.05767822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e010 -00015447 53.05770493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e020 -00015448 53.05770874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e020 -00015449 53.05773544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e030 -00015450 53.05773544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e030 -00015451 53.05775833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e040 -00015452 53.05776215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e040 -00015453 53.05778885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e050 -00015454 53.05779266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e050 -00015455 53.05781937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e060 -00015456 53.05781937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e060 -00015457 53.05784607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e070 -00015458 53.05784988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e070 -00015459 53.05787659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e080 -00015460 53.05787659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e080 -00015461 53.05790329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e090 -00015462 53.05790710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e090 -00015463 53.05793381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0a0 -00015464 53.05793762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0a0 -00015465 53.05796051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0b0 -00015466 53.05796432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0b0 -00015467 53.05799103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c0 -00015468 53.05799484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c0 -00015469 53.05801773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d0 -00015470 53.05802155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d0 -00015471 53.05804825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e0 -00015472 53.05804825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e0 -00015473 53.05807495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f0 -00015474 53.05807495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f0 -00015475 53.05810165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e100 -00015476 53.05810547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e100 -00015477 53.05813217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e110 -00015478 53.05813599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e110 -00015479 53.05815887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e120 -00015480 53.05816269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e120 -00015481 53.05818939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e130 -00015482 53.05819321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e130 -00015483 53.05821609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e140 -00015484 53.05821991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e140 -00015485 53.05824661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e150 -00015486 53.05825043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e150 -00015487 53.05827332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e160 -00015488 53.05827332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e160 -00015489 53.05830383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e170 -00015490 53.05830383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e170 -00015491 53.05833054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e180 -00015492 53.05833435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e180 -00015493 53.05835724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e190 -00015494 53.05836105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e190 -00015495 53.05838776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a0 -00015496 53.05839157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a0 -00015497 53.05841446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b0 -00015498 53.05841827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b0 -00015499 53.05844498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c0 -00015500 53.05844879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c0 -00015501 53.05847549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d0 -00015502 53.05847549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d0 -00015503 53.05850220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e0 -00015504 53.05850601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e0 -00015505 53.05853271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f0 -00015506 53.05853271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f0 -00015507 53.05855942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e200 -00015508 53.05855942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e200 -00015509 53.05858612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e210 -00015510 53.05858994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e210 -00015511 53.05861282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e220 -00015512 53.05861664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e220 -00015513 53.05864334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e230 -00015514 53.05864716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e230 -00015515 53.05867386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e240 -00015516 53.05867386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e240 -00015517 53.05870056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e250 -00015518 53.05870438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e250 -00015519 53.05873108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e260 -00015520 53.05873108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e260 -00015521 53.05875778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e270 -00015522 53.05876160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e270 -00015523 53.05878830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e280 -00015524 53.05879211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e280 -00015525 53.05881500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e290 -00015526 53.05881882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e290 -00015527 53.05884552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a0 -00015528 53.05884933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a0 -00015529 53.05887222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b0 -00015530 53.05887222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b0 -00015531 53.05889893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c0 -00015532 53.05890274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c0 -00015533 53.05892944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d0 -00015534 53.05892944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d0 -00015535 53.05895615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e0 -00015536 53.05895996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e0 -00015537 53.05898666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f0 -00015538 53.05899048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f0 -00015539 53.05901337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e300 -00015540 53.05901718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e300 -00015541 53.05904388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e310 -00015542 53.05904770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e310 -00015543 53.05907059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e320 -00015544 53.05907440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e320 -00015545 53.05910110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e330 -00015546 53.05910492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e330 -00015547 53.05912781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e340 -00015548 53.05913162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e340 -00015549 53.05915833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e350 -00015550 53.05915833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e350 -00015551 53.05918884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e360 -00015552 53.05918884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e360 -00015553 53.05921173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e370 -00015554 53.05921555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e370 -00015555 53.05924225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e380 -00015556 53.05924606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e380 -00015557 53.05926895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e390 -00015558 53.05927277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e390 -00015559 53.05929947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3a0 -00015560 53.05930328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3a0 -00015561 53.05932617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3b0 -00015562 53.05932999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3b0 -00015563 53.05935669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3c0 -00015564 53.05936050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3c0 -00015565 53.05938721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3d0 -00015566 53.05938721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3d0 -00015567 53.05941010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3e0 -00015568 53.05941391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3e0 -00015569 53.05944061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3f0 -00015570 53.05944443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3f0 -00015571 53.05946732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e400 -00015572 53.05947113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e400 -00015573 53.05949783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e410 -00015574 53.05950165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e410 -00015575 53.05952454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e420 -00015576 53.05952835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e420 -00015577 53.05955505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e430 -00015578 53.05955887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e430 -00015579 53.05958557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e440 -00015580 53.05958557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e440 -00015581 53.05961227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e450 -00015582 53.05961227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e450 -00015583 53.05964279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e460 -00015584 53.05964279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e460 -00015585 53.05966568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e470 -00015586 53.05966949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e470 -00015587 53.05969620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e480 -00015588 53.05970001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e480 -00015589 53.05972290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e490 -00015590 53.05972672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e490 -00015591 53.05975342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4a0 -00015592 53.05975723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4a0 -00015593 53.05978394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4b0 -00015594 53.05978394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4b0 -00015595 53.05981064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4c0 -00015596 53.05981445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4c0 -00015597 53.05984116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4d0 -00015598 53.05984497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4d0 -00015599 53.05986786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4e0 -00015600 53.05987167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4e0 -00015601 53.05989838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4f0 -00015602 53.05989838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4f0 -00015603 53.05992508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e500 -00015604 53.05992508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e500 -00015605 53.05995178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e510 -00015606 53.05995560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e510 -00015607 53.05998230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e520 -00015608 53.05998230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e520 -00015609 53.06000900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e530 -00015610 53.06001282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e530 -00015611 53.06003952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e540 -00015612 53.06004333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e540 -00015613 53.06006622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e550 -00015614 53.06007004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e550 -00015615 53.06009674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e560 -00015616 53.06009674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e560 -00015617 53.06012344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e570 -00015618 53.06012344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e570 -00015619 53.06015015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e580 -00015620 53.06015396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e580 -00015621 53.06018066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e590 -00015622 53.06018066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e590 -00015623 53.06020737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a0 -00015624 53.06021118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a0 -00015625 53.06023788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b0 -00015626 53.06024170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b0 -00015627 53.06026459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c0 -00015628 53.06026840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c0 -00015629 53.06029510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d0 -00015630 53.06029510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d0 -00015631 53.06032181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e0 -00015632 53.06032181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e0 -00015633 53.06035233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f0 -00015634 53.06035233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f0 -00015635 53.06037903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e600 -00015636 53.06037903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e600 -00015637 53.06040573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e610 -00015638 53.06040955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e610 -00015639 53.06043625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e620 -00015640 53.06044006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e620 -00015641 53.06046295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e630 -00015642 53.06046677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e630 -00015643 53.06049347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e640 -00015644 53.06049728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e640 -00015645 53.06052017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e650 -00015646 53.06052399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e650 -00015647 53.06055069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e660 -00015648 53.06055069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e660 -00015649 53.06057739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e670 -00015650 53.06057739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e670 -00015651 53.06060410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e680 -00015652 53.06060791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e680 -00015653 53.06063461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e690 -00015654 53.06063843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e690 -00015655 53.06066132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6a0 -00015656 53.06066513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6a0 -00015657 53.06069183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6b0 -00015658 53.06069565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6b0 -00015659 53.06071854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6c0 -00015660 53.06072235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6c0 -00015661 53.06074905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6d0 -00015662 53.06074905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6d0 -00015663 53.06077576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6e0 -00015664 53.06077576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6e0 -00015665 53.06080246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6f0 -00015666 53.06080627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6f0 -00015667 53.06083298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e700 -00015668 53.06083679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e700 -00015669 53.06085968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e710 -00015670 53.06086349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e710 -00015671 53.06089020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e720 -00015672 53.06089401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e720 -00015673 53.06091690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e730 -00015674 53.06092072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e730 -00015675 53.06094742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e740 -00015676 53.06095123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e740 -00015677 53.06097412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e750 -00015678 53.06097794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e750 -00015679 53.06100464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e760 -00015680 53.06100464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e760 -00015681 53.06103134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e770 -00015682 53.06103516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e770 -00015683 53.06105804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e780 -00015684 53.06106186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e780 -00015685 53.06108856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e790 -00015686 53.06109238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e790 -00015687 53.06111526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a0 -00015688 53.06111908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a0 -00015689 53.06114578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b0 -00015690 53.06114960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b0 -00015691 53.06117630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c0 -00015692 53.06117630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c0 -00015693 53.06120300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d0 -00015694 53.06120682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d0 -00015695 53.06123352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e0 -00015696 53.06123352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e0 -00015697 53.06125641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f0 -00015698 53.06126022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f0 -00015699 53.06128693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e800 -00015700 53.06129074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e800 -00015701 53.06131363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e810 -00015702 53.06131744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e810 -00015703 53.06134415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e820 -00015704 53.06134796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e820 -00015705 53.06137466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e830 -00015706 53.06137466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e830 -00015707 53.06140137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e840 -00015708 53.06140518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e840 -00015709 53.06143188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e850 -00015710 53.06143188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e850 -00015711 53.06145859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e860 -00015712 53.06145859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e860 -00015713 53.06148529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e870 -00015714 53.06148911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e870 -00015715 53.06151199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e880 -00015716 53.06151581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e880 -00015717 53.06154251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e890 -00015718 53.06154633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e890 -00015719 53.06157303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a0 -00015720 53.06157303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a0 -00015721 53.06159973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b0 -00015722 53.06160355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b0 -00015723 53.06163025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c0 -00015724 53.06163025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c0 -00015725 53.06165695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d0 -00015726 53.06166077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d0 -00015727 53.06168747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e0 -00015728 53.06169128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e0 -00015729 53.06171417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f0 -00015730 53.06171417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f0 -00015731 53.06174088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e900 -00015732 53.06174469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e900 -00015733 53.06177139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e910 -00015734 53.06177139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e910 -00015735 53.06179810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e920 -00015736 53.06180191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e920 -00015737 53.06182861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e930 -00015738 53.06182861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e930 -00015739 53.06185532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e940 -00015740 53.06185913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e940 -00015741 53.06188583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e950 -00015742 53.06188965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e950 -00015743 53.06191254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e960 -00015744 53.06191254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e960 -00015745 53.06193924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e970 -00015746 53.06194305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e970 -00015747 53.06196976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e980 -00015748 53.06196976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e980 -00015749 53.06199646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e990 -00015750 53.06200027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e990 -00015751 53.06202698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9a0 -00015752 53.06202698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9a0 -00015753 53.06205368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9b0 -00015754 53.06205750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9b0 -00015755 53.06208420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9c0 -00015756 53.06208801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9c0 -00015757 53.06211090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9d0 -00015758 53.06211090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9d0 -00015759 53.06214142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9e0 -00015760 53.06214142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9e0 -00015761 53.06216812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9f0 -00015762 53.06216812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9f0 -00015763 53.06219482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea00 -00015764 53.06219864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea00 -00015765 53.06222534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea10 -00015766 53.06222534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea10 -00015767 53.06225204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea20 -00015768 53.06225586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea20 -00015769 53.06228256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea30 -00015770 53.06228638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea30 -00015771 53.06230927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea40 -00015772 53.06231308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea40 -00015773 53.06233978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea50 -00015774 53.06234360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea50 -00015775 53.06236649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea60 -00015776 53.06237030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea60 -00015777 53.06239700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea70 -00015778 53.06240082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea70 -00015779 53.06242371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea80 -00015780 53.06242752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea80 -00015781 53.06245422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea90 -00015782 53.06245804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea90 -00015783 53.06248474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa0 -00015784 53.06248474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa0 -00015785 53.06251144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab0 -00015786 53.06251526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab0 -00015787 53.06254196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac0 -00015788 53.06254578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac0 -00015789 53.06256866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead0 -00015790 53.06257248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead0 -00015791 53.06259918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae0 -00015792 53.06260300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae0 -00015793 53.06262589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf0 -00015794 53.06262970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf0 -00015795 53.06266403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb00 -00015796 53.06266403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb00 -00015797 53.06270218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb10 -00015798 53.06270599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb10 -00015799 53.06274796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb20 -00015800 53.06275177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb20 -00015801 53.06278992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb30 -00015802 53.06279755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb30 -00015803 53.06283951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb40 -00015804 53.06284332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb40 -00015805 53.06288147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb50 -00015806 53.06288528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb50 -00015807 53.06292343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb60 -00015808 53.06293106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb60 -00015809 53.06296921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb70 -00015810 53.06297302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb70 -00015811 53.06301498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb80 -00015812 53.06301880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb80 -00015813 53.06305695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb90 -00015814 53.06306076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb90 -00015815 53.06309891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eba0 -00015816 53.06310654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eba0 -00015817 53.06314468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebb0 -00015818 53.06314850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebb0 -00015819 53.06319046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebc0 -00015820 53.06319427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebc0 -00015821 53.06323624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebd0 -00015822 53.06324005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebd0 -00015823 53.06327820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebe0 -00015824 53.06328201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebe0 -00015825 53.06332016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebf0 -00015826 53.06332397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebf0 -00015827 53.06336594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec00 -00015828 53.06336975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec00 -00015829 53.06340790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec10 -00015830 53.06341553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec10 -00015831 53.06345367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec20 -00015832 53.06345749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec20 -00015833 53.06349945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec30 -00015834 53.06350327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec30 -00015835 53.06354141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec40 -00015836 53.06354904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec40 -00015837 53.06358719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec50 -00015838 53.06359100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec50 -00015839 53.06363297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec60 -00015840 53.06363678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec60 -00015841 53.06367493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec70 -00015842 53.06367874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec70 -00015843 53.06372070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec80 -00015844 53.06372833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec80 -00015845 53.06376266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec90 -00015846 53.06376648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec90 -00015847 53.06380844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca0 -00015848 53.06381226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca0 -00015849 53.06385040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb0 -00015850 53.06385422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb0 -00015851 53.06389618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc0 -00015852 53.06389999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc0 -00015853 53.06393814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd0 -00015854 53.06394577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd0 -00015855 53.06397247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece0 -00015856 53.06397629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece0 -00015857 53.06399918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf0 -00015858 53.06400299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf0 -00015859 53.06403732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed00 -00015860 53.06404114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed00 -00015861 53.06407928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed10 -00015862 53.06408310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed10 -00015863 53.06412506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed20 -00015864 53.06412888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed20 -00015865 53.06416702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed30 -00015866 53.06417084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed30 -00015867 53.06420898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed40 -00015868 53.06421280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed40 -00015869 53.06423950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed50 -00015870 53.06424332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed50 -00015871 53.06427002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed60 -00015872 53.06427383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed60 -00015873 53.06429672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed70 -00015874 53.06430054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed70 -00015875 53.06432724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed80 -00015876 53.06433105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed80 -00015877 53.06435394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed90 -00015878 53.06435776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed90 -00015879 53.06438446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda0 -00015880 53.06438828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda0 -00015881 53.06441116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb0 -00015882 53.06441116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb0 -00015883 53.06444168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc0 -00015884 53.06444168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc0 -00015885 53.06446838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd0 -00015886 53.06447220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd0 -00015887 53.06449509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede0 -00015888 53.06449890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede0 -00015889 53.06452560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf0 -00015890 53.06452942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf0 -00015891 53.06455231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee00 -00015892 53.06455612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee00 -00015893 53.06458282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee10 -00015894 53.06458664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee10 -00015895 53.06460953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee20 -00015896 53.06461334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee20 -00015897 53.06464005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee30 -00015898 53.06464005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee30 -00015899 53.06467056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee40 -00015900 53.06467056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee40 -00015901 53.06469727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee50 -00015902 53.06470490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee50 -00015903 53.06472778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee60 -00015904 53.06473160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee60 -00015905 53.06475830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee70 -00015906 53.06476212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee70 -00015907 53.06478882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee80 -00015908 53.06478882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee80 -00015909 53.06481552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee90 -00015910 53.06481934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee90 -00015911 53.06484604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eea0 -00015912 53.06484985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eea0 -00015913 53.06487274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eeb0 -00015914 53.06487656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eeb0 -00015915 53.06490326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eec0 -00015916 53.06490326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eec0 -00015917 53.06492996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eed0 -00015918 53.06492996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eed0 -00015919 53.06495667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eee0 -00015920 53.06496048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eee0 -00015921 53.06498718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eef0 -00015922 53.06498718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eef0 -00015923 53.06501389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef00 -00015924 53.06501770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef00 -00015925 53.06504440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef10 -00015926 53.06504822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef10 -00015927 53.06507111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef20 -00015928 53.06507492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef20 -00015929 53.06510162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef30 -00015930 53.06510544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef30 -00015931 53.06512833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef40 -00015932 53.06513214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef40 -00015933 53.06515884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef50 -00015934 53.06515884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef50 -00015935 53.06518555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef60 -00015936 53.06518555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef60 -00015937 53.06521225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef70 -00015938 53.06521606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef70 -00015939 53.06524277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef80 -00015940 53.06524658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef80 -00015941 53.06526947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef90 -00015942 53.06527328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef90 -00015943 53.06530380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efa0 -00015944 53.06530380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efa0 -00015945 53.06533051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efb0 -00015946 53.06533051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efb0 -00015947 53.06535721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efc0 -00015948 53.06536102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efc0 -00015949 53.06538391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efd0 -00015950 53.06538773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efd0 -00015951 53.06541443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efe0 -00015952 53.06541824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efe0 -00015953 53.06544495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eff0 -00015954 53.06544495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eff0 -00015955 53.06547165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f000 -00015956 53.06547546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f000 -00015957 53.06550217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f010 -00015958 53.06550217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f010 -00015959 53.06552887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f020 -00015960 53.06553268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f020 -00015961 53.06555939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f030 -00015962 53.06556320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f030 -00015963 53.06558609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f040 -00015964 53.06558990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f040 -00015965 53.06561661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f050 -00015966 53.06562042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f050 -00015967 53.06564331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f060 -00015968 53.06564331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f060 -00015969 53.06567383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f070 -00015970 53.06567383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f070 -00015971 53.06570053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f080 -00015972 53.06570053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f080 -00015973 53.06572723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f090 -00015974 53.06573105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f090 -00015975 53.06575775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a0 -00015976 53.06576157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a0 -00015977 53.06578445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -00015978 53.06578827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -00015979 53.06581497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -00015980 53.06581879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -00015981 53.06584167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -00015982 53.06584549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -00015983 53.06587219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -00015984 53.06587601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -00015985 53.06589890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -00015986 53.06590271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -00015987 53.06592941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -00015988 53.06593323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -00015989 53.06595993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -00015990 53.06595993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -00015991 53.06598663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -00015992 53.06599045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -00015993 53.06601715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -00015994 53.06602097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -00015995 53.06604385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -00015996 53.06604767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -00015997 53.06607437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -00015998 53.06607819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -00015999 53.06610107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -00016000 53.06610489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -00016001 53.06613159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -00016002 53.06613541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -00016003 53.06615829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -00016004 53.06616211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -00016005 53.06618881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -00016006 53.06618881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -00016007 53.06621552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a0 -00016008 53.06621933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a0 -00016009 53.06624222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b0 -00016010 53.06624603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b0 -00016011 53.06627274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c0 -00016012 53.06627655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c0 -00016013 53.06629944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d0 -00016014 53.06630325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d0 -00016015 53.06632996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e0 -00016016 53.06633377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e0 -00016017 53.06635666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f0 -00016018 53.06636047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f0 -00016019 53.06638718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f200 -00016020 53.06639099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f200 -00016021 53.06641769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f210 -00016022 53.06641769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f210 -00016023 53.06644440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f220 -00016024 53.06644440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f220 -00016025 53.06647491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f230 -00016026 53.06647491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f230 -00016027 53.06650162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f240 -00016028 53.06650162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f240 -00016029 53.06652832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f250 -00016030 53.06653214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f250 -00016031 53.06655502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f260 -00016032 53.06655884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f260 -00016033 53.06658554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f270 -00016034 53.06658936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f270 -00016035 53.06661606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f280 -00016036 53.06661606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f280 -00016037 53.06664276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f290 -00016038 53.06664658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f290 -00016039 53.06667328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2a0 -00016040 53.06667709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2a0 -00016041 53.06669998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2b0 -00016042 53.06670380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2b0 -00016043 53.06673050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2c0 -00016044 53.06673431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2c0 -00016045 53.06675720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2d0 -00016046 53.06676102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2d0 -00016047 53.06678772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2e0 -00016048 53.06679153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2e0 -00016049 53.06681442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2f0 -00016050 53.06681824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2f0 -00016051 53.06684494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f300 -00016052 53.06684494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f300 -00016053 53.06687546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f310 -00016054 53.06687546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f310 -00016055 53.06689835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f320 -00016056 53.06690216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f320 -00016057 53.06692886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f330 -00016058 53.06693268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f330 -00016059 53.06695557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f340 -00016060 53.06695938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f340 -00016061 53.06698608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f350 -00016062 53.06698990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f350 -00016063 53.06701279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f360 -00016064 53.06701660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f360 -00016065 53.06704330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f370 -00016066 53.06704712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f370 -00016067 53.06707382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f380 -00016068 53.06707382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f380 -00016069 53.06710052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f390 -00016070 53.06710434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f390 -00016071 53.06713104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3a0 -00016072 53.06713104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3a0 -00016073 53.06715775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3b0 -00016074 53.06715775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3b0 -00016075 53.06718826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3c0 -00016076 53.06719208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3c0 -00016077 53.06721497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3d0 -00016078 53.06721878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3d0 -00016079 53.06724548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3e0 -00016080 53.06724548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3e0 -00016081 53.06727219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3f0 -00016082 53.06727219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3f0 -00016083 53.06729889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f400 -00016084 53.06730270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f400 -00016085 53.06732941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f410 -00016086 53.06732941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f410 -00016087 53.06735611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f420 -00016088 53.06735992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f420 -00016089 53.06738663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f430 -00016090 53.06739044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f430 -00016091 53.06741333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f440 -00016092 53.06741714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f440 -00016093 53.06744385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f450 -00016094 53.06744766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f450 -00016095 53.06747055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f460 -00016096 53.06747437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f460 -00016097 53.06750107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f470 -00016098 53.06750488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f470 -00016099 53.06752777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f480 -00016100 53.06753159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f480 -00016101 53.06755829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f490 -00016102 53.06756210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f490 -00016103 53.06758881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4a0 -00016104 53.06758881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4a0 -00016105 53.06761551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4b0 -00016106 53.06761551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4b0 -00016107 53.06764603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4c0 -00016108 53.06764603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4c0 -00016109 53.06767273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4d0 -00016110 53.06767273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4d0 -00016111 53.06769943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4e0 -00016112 53.06770325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4e0 -00016113 53.06772614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4f0 -00016114 53.06772995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4f0 -00016115 53.06775665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f500 -00016116 53.06776047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f500 -00016117 53.06778717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f510 -00016118 53.06778717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f510 -00016119 53.06781387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f520 -00016120 53.06781769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f520 -00016121 53.06784439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f530 -00016122 53.06784821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f530 -00016123 53.06787872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f540 -00016124 53.06787872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f540 -00016125 53.06790543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f550 -00016126 53.06790924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f550 -00016127 53.06793594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f560 -00016128 53.06793976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f560 -00016129 53.06797028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f570 -00016130 53.06797409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f570 -00016131 53.06800461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f580 -00016132 53.06800461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f580 -00016133 53.06803513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f590 -00016134 53.06804276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f590 -00016135 53.06806564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5a0 -00016136 53.06806946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5a0 -00016137 53.06810379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5b0 -00016138 53.06810379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5b0 -00016139 53.06813049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5c0 -00016140 53.06813431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5c0 -00016141 53.06816101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5d0 -00016142 53.06816101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5d0 -00016143 53.06818390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5e0 -00016144 53.06818771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5e0 -00016145 53.06821442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5f0 -00016146 53.06821823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5f0 -00016147 53.06824493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f600 -00016148 53.06824493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f600 -00016149 53.06827164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f610 -00016150 53.06827545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f610 -00016151 53.06830215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f620 -00016152 53.06830215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f620 -00016153 53.06832886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f630 -00016154 53.06833267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f630 -00016155 53.06835938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f640 -00016156 53.06835938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f640 -00016157 53.06838608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f650 -00016158 53.06838608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f650 -00016159 53.06841278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f660 -00016160 53.06841660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f660 -00016161 53.06844330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f670 -00016162 53.06844711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f670 -00016163 53.06847382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f680 -00016164 53.06847382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f680 -00016165 53.06850052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f690 -00016166 53.06850052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f690 -00016167 53.06852722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6a0 -00016168 53.06853104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6a0 -00016169 53.06855774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6b0 -00016170 53.06856155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6b0 -00016171 53.06858444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6c0 -00016172 53.06858826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6c0 -00016173 53.06861496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6d0 -00016174 53.06861877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6d0 -00016175 53.06864166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6e0 -00016176 53.06864548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6e0 -00016177 53.06867218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6f0 -00016178 53.06867599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6f0 -00016179 53.06870270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f700 -00016180 53.06870270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f700 -00016181 53.06872559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f710 -00016182 53.06872940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f710 -00016183 53.06875610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f720 -00016184 53.06875992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f720 -00016185 53.06878281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f730 -00016186 53.06878662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f730 -00016187 53.06881332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f740 -00016188 53.06881714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f740 -00016189 53.06884003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f750 -00016190 53.06884384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f750 -00016191 53.06887054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f760 -00016192 53.06887436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f760 -00016193 53.06890106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f770 -00016194 53.06890106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f770 -00016195 53.06892776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f780 -00016196 53.06892776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f780 -00016197 53.06895828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f790 -00016198 53.06895828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f790 -00016199 53.06898117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -00016200 53.06898499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -00016201 53.06901169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -00016202 53.06901550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -00016203 53.06903839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -00016204 53.06904221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -00016205 53.06906891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -00016206 53.06907272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -00016207 53.06909943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -00016208 53.06909943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -00016209 53.06913757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -00016210 53.06914139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -00016211 53.06918335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -00016212 53.06919098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -00016213 53.06921768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -00016214 53.06921768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -00016215 53.06924438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -00016216 53.06924820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -00016217 53.06927490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -00016218 53.06927490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -00016219 53.06930161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -00016220 53.06930542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -00016221 53.06933212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -00016222 53.06933594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -00016223 53.06935883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -00016224 53.06936264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -00016225 53.06938934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -00016226 53.06938934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -00016227 53.06941605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -00016228 53.06941605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -00016229 53.06944275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -00016230 53.06944656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -00016231 53.06947327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a0 -00016232 53.06947708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a0 -00016233 53.06949997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b0 -00016234 53.06950378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b0 -00016235 53.06953049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c0 -00016236 53.06953430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c0 -00016237 53.06955719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d0 -00016238 53.06956100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d0 -00016239 53.06958771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e0 -00016240 53.06959152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e0 -00016241 53.06961441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f0 -00016242 53.06961823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f0 -00016243 53.06964493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f900 -00016244 53.06964493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f900 -00016245 53.06967545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f910 -00016246 53.06967545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f910 -00016247 53.06970596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f920 -00016248 53.06970978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f920 -00016249 53.06973267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f930 -00016250 53.06973648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f930 -00016251 53.06976318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f940 -00016252 53.06976700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f940 -00016253 53.06979370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f950 -00016254 53.06979370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f950 -00016255 53.06982040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f960 -00016256 53.06982422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f960 -00016257 53.06985092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f970 -00016258 53.06985092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f970 -00016259 53.06988144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f980 -00016260 53.06988144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f980 -00016261 53.06991196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f990 -00016262 53.06991196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f990 -00016263 53.06993866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a0 -00016264 53.06993866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a0 -00016265 53.06996536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b0 -00016266 53.06996918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b0 -00016267 53.06999588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c0 -00016268 53.06999588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c0 -00016269 53.07002258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d0 -00016270 53.07002640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d0 -00016271 53.07005310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e0 -00016272 53.07005310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e0 -00016273 53.07007980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f0 -00016274 53.07008362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f0 -00016275 53.07011032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa00 -00016276 53.07011032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa00 -00016277 53.07014084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa10 -00016278 53.07014084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa10 -00016279 53.07017136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa20 -00016280 53.07017136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa20 -00016281 53.07019424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa30 -00016282 53.07019806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa30 -00016283 53.07022858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa40 -00016284 53.07022858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa40 -00016285 53.07025528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa50 -00016286 53.07025909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa50 -00016287 53.07028580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa60 -00016288 53.07028961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa60 -00016289 53.07031250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa70 -00016290 53.07031631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa70 -00016291 53.07035065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa80 -00016292 53.07035446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa80 -00016293 53.07038116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa90 -00016294 53.07038116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa90 -00016295 53.07040787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa0 -00016296 53.07040787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa0 -00016297 53.07043839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab0 -00016298 53.07043839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab0 -00016299 53.07046890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac0 -00016300 53.07046890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac0 -00016301 53.07049561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad0 -00016302 53.07049942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad0 -00016303 53.07052612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae0 -00016304 53.07052612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae0 -00016305 53.07055283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf0 -00016306 53.07055664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf0 -00016307 53.07058334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb00 -00016308 53.07058716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb00 -00016309 53.07061005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb10 -00016310 53.07061386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb10 -00016311 53.07064056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb20 -00016312 53.07064438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb20 -00016313 53.07066727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb30 -00016314 53.07066727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb30 -00016315 53.07069397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb40 -00016316 53.07069778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb40 -00016317 53.07072449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb50 -00016318 53.07072830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb50 -00016319 53.07075119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb60 -00016320 53.07075500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb60 -00016321 53.07078171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb70 -00016322 53.07078552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb70 -00016323 53.07080841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb80 -00016324 53.07081223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb80 -00016325 53.07083893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb90 -00016326 53.07084274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb90 -00016327 53.07086563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba0 -00016328 53.07086945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba0 -00016329 53.07089615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb0 -00016330 53.07089996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb0 -00016331 53.07092667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc0 -00016332 53.07092667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc0 -00016333 53.07095337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd0 -00016334 53.07095718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd0 -00016335 53.07098389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe0 -00016336 53.07098389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe0 -00016337 53.07101059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf0 -00016338 53.07101059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf0 -00016339 53.07104111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc00 -00016340 53.07104111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc00 -00016341 53.07106781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc10 -00016342 53.07106781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc10 -00016343 53.07109833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc20 -00016344 53.07109833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc20 -00016345 53.07112503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc30 -00016346 53.07112503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc30 -00016347 53.07115173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc40 -00016348 53.07115555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc40 -00016349 53.07118225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc50 -00016350 53.07118225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc50 -00016351 53.07120895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc60 -00016352 53.07121277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc60 -00016353 53.07123947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc70 -00016354 53.07124329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc70 -00016355 53.07126617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc80 -00016356 53.07126999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc80 -00016357 53.07129669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc90 -00016358 53.07130051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc90 -00016359 53.07132339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca0 -00016360 53.07132721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca0 -00016361 53.07135391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb0 -00016362 53.07135773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb0 -00016363 53.07138062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc0 -00016364 53.07138062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc0 -00016365 53.07140732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd0 -00016366 53.07141113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd0 -00016367 53.07143784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce0 -00016368 53.07144165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce0 -00016369 53.07146454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf0 -00016370 53.07146835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf0 -00016371 53.07149506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd00 -00016372 53.07149887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd00 -00016373 53.07152176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd10 -00016374 53.07152557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd10 -00016375 53.07155228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd20 -00016376 53.07155609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd20 -00016377 53.07157898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd30 -00016378 53.07158279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd30 -00016379 53.07160950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd40 -00016380 53.07161331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd40 -00016381 53.07164001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd50 -00016382 53.07164001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd50 -00016383 53.07166672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd60 -00016384 53.07166672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd60 -00016385 53.07169342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd70 -00016386 53.07169724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd70 -00016387 53.07172012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd80 -00016388 53.07172394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd80 -00016389 53.07175064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd90 -00016390 53.07175446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd90 -00016391 53.07177734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda0 -00016392 53.07178116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda0 -00016393 53.07180786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb0 -00016394 53.07181168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb0 -00016395 53.07183838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc0 -00016396 53.07183838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc0 -00016397 53.07186508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd0 -00016398 53.07186890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd0 -00016399 53.07189560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde0 -00016400 53.07189941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde0 -00016401 53.07192230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf0 -00016402 53.07192612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf0 -00016403 53.07195282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe00 -00016404 53.07195663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe00 -00016405 53.07197952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe10 -00016406 53.07198334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe10 -00016407 53.07201004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe20 -00016408 53.07201004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe20 -00016409 53.07203674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe30 -00016410 53.07203674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe30 -00016411 53.07206345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe40 -00016412 53.07206726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe40 -00016413 53.07209396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe50 -00016414 53.07209778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe50 -00016415 53.07212067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe60 -00016416 53.07212448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe60 -00016417 53.07215118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe70 -00016418 53.07215500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe70 -00016419 53.07217789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe80 -00016420 53.07218170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe80 -00016421 53.07220840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe90 -00016422 53.07221222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe90 -00016423 53.07223511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea0 -00016424 53.07223892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea0 -00016425 53.07226563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb0 -00016426 53.07226944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb0 -00016427 53.07229614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec0 -00016428 53.07229614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec0 -00016429 53.07232285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed0 -00016430 53.07232285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed0 -00016431 53.07234955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee0 -00016432 53.07235336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee0 -00016433 53.07237625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef0 -00016434 53.07238007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef0 -00016435 53.07240677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff00 -00016436 53.07241058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff00 -00016437 53.07243347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff10 -00016438 53.07243729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff10 -00016439 53.07246399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff20 -00016440 53.07246780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff20 -00016441 53.07249451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff30 -00016442 53.07249451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff30 -00016443 53.07252121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff40 -00016444 53.07252502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff40 -00016445 53.07255173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff50 -00016446 53.07255173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff50 -00016447 53.07257843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff60 -00016448 53.07258224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff60 -00016449 53.07260895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff70 -00016450 53.07260895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff70 -00016451 53.07263565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff80 -00016452 53.07263565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff80 -00016453 53.07266235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff90 -00016454 53.07266617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff90 -00016455 53.07269287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffa0 -00016456 53.07269287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffa0 -00016457 53.07271957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffb0 -00016458 53.07272339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffb0 -00016459 53.07275009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffc0 -00016460 53.07275391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffc0 -00016461 53.07277679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffd0 -00016462 53.07278061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffd0 -00016463 53.07280731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffe0 -00016464 53.07281113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffe0 -00016465 53.07283401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fff0 -00016466 53.07283783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fff0 -00016467 53.07286453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20000 -00016468 53.07286835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20000 -00016469 53.07289124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20010 -00016470 53.07289505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20010 -00016471 53.07292175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20020 -00016472 53.07292175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20020 -00016473 53.07295227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20030 -00016474 53.07295227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20030 -00016475 53.07297516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20040 -00016476 53.07297897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20040 -00016477 53.07300568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20050 -00016478 53.07300949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20050 -00016479 53.07303238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20060 -00016480 53.07303619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20060 -00016481 53.07306290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20070 -00016482 53.07306671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20070 -00016483 53.07308960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20080 -00016484 53.07309341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20080 -00016485 53.07312012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20090 -00016486 53.07312393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20090 -00016487 53.07315063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a0 -00016488 53.07315063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a0 -00016489 53.07317734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b0 -00016490 53.07317734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b0 -00016491 53.07320404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c0 -00016492 53.07320786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c0 -00016493 53.07323074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d0 -00016494 53.07323456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d0 -00016495 53.07326126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e0 -00016496 53.07326508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e0 -00016497 53.07328796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f0 -00016498 53.07329178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f0 -00016499 53.07331848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20100 -00016500 53.07332230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20100 -00016501 53.07334900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20110 -00016502 53.07334900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20110 -00016503 53.07337570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20120 -00016504 53.07337570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20120 -00016505 53.07340240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20130 -00016506 53.07340622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20130 -00016507 53.07343292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20140 -00016508 53.07343292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20140 -00016509 53.07345963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20150 -00016510 53.07346344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20150 -00016511 53.07348633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20160 -00016512 53.07349014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20160 -00016513 53.07351685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20170 -00016514 53.07352066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20170 -00016515 53.07354736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20180 -00016516 53.07354736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20180 -00016517 53.07357407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20190 -00016518 53.07357788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20190 -00016519 53.07360458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a0 -00016520 53.07360458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a0 -00016521 53.07363129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b0 -00016522 53.07363510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b0 -00016523 53.07366180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c0 -00016524 53.07366562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c0 -00016525 53.07368851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d0 -00016526 53.07368851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d0 -00016527 53.07371521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e0 -00016528 53.07371902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e0 -00016529 53.07374573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f0 -00016530 53.07374573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f0 -00016531 53.07377243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20200 -00016532 53.07377625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20200 -00016533 53.07380295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20210 -00016534 53.07380295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20210 -00016535 53.07382965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20220 -00016536 53.07383347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20220 -00016537 53.07386017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20230 -00016538 53.07386398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20230 -00016539 53.07388687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20240 -00016540 53.07388687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20240 -00016541 53.07391357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20250 -00016542 53.07391739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20250 -00016543 53.07394409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20260 -00016544 53.07394409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20260 -00016545 53.07397079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20270 -00016546 53.07397461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20270 -00016547 53.07400131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20280 -00016548 53.07400131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20280 -00016549 53.07402802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20290 -00016550 53.07403183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20290 -00016551 53.07405853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a0 -00016552 53.07406235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a0 -00016553 53.07408524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b0 -00016554 53.07408905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b0 -00016555 53.07411575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c0 -00016556 53.07411957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c0 -00016557 53.07414246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d0 -00016558 53.07414246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d0 -00016559 53.07417297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e0 -00016560 53.07417297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e0 -00016561 53.07419968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f0 -00016562 53.07420349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f0 -00016563 53.07422638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20300 -00016564 53.07423019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20300 -00016565 53.07425690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20310 -00016566 53.07426071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20310 -00016567 53.07428360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20320 -00016568 53.07428741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20320 -00016569 53.07431412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20330 -00016570 53.07431793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20330 -00016571 53.07434082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20340 -00016572 53.07434464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20340 -00016573 53.07437134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20350 -00016574 53.07437134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20350 -00016575 53.07440186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20360 -00016576 53.07440186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20360 -00016577 53.07442474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20370 -00016578 53.07442856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20370 -00016579 53.07445526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20380 -00016580 53.07445908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20380 -00016581 53.07448196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20390 -00016582 53.07448578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20390 -00016583 53.07451248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a0 -00016584 53.07451630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a0 -00016585 53.07453918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b0 -00016586 53.07454300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b0 -00016587 53.07456970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c0 -00016588 53.07457352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c0 -00016589 53.07460022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d0 -00016590 53.07460022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d0 -00016591 53.07462311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e0 -00016592 53.07462692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e0 -00016593 53.07465363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f0 -00016594 53.07465744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f0 -00016595 53.07468033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20400 -00016596 53.07468414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20400 -00016597 53.07471085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20410 -00016598 53.07471466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20410 -00016599 53.07473755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20420 -00016600 53.07474136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20420 -00016601 53.07476807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20430 -00016602 53.07477188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20430 -00016603 53.07479858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20440 -00016604 53.07479858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20440 -00016605 53.07482529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20450 -00016606 53.07482910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20450 -00016607 53.07485580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20460 -00016608 53.07485580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20460 -00016609 53.07487869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20470 -00016610 53.07488251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20470 -00016611 53.07491302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20480 -00016612 53.07491302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20480 -00016613 53.07493591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20490 -00016614 53.07493973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20490 -00016615 53.07496643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a0 -00016616 53.07497025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a0 -00016617 53.07499695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b0 -00016618 53.07499695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b0 -00016619 53.07502365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c0 -00016620 53.07502747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c0 -00016621 53.07505417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d0 -00016622 53.07505417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d0 -00016623 53.07508087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e0 -00016624 53.07508469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e0 -00016625 53.07511139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f0 -00016626 53.07511520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f0 -00016627 53.07513809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20500 -00016628 53.07514191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20500 -00016629 53.07516861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20510 -00016630 53.07516861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20510 -00016631 53.07519531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20520 -00016632 53.07519531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20520 -00016633 53.07522202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20530 -00016634 53.07522583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20530 -00016635 53.07525253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20540 -00016636 53.07525253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20540 -00016637 53.07527924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20550 -00016638 53.07528305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20550 -00016639 53.07530975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20560 -00016640 53.07531357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20560 -00016641 53.07533646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20570 -00016642 53.07534027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20570 -00016643 53.07536697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20580 -00016644 53.07537079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20580 -00016645 53.07539368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20590 -00016646 53.07539749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20590 -00016647 53.07542419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a0 -00016648 53.07542419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a0 -00016649 53.07545090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205b0 -00016650 53.07545090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205b0 -00016651 53.07547760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205c0 -00016652 53.07548141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205c0 -00016653 53.07550812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205d0 -00016654 53.07551193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205d0 -00016655 53.07553864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205e0 -00016656 53.07553864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205e0 -00016657 53.07556534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205f0 -00016658 53.07556915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x205f0 -00016659 53.07559204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20600 -00016660 53.07559586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20600 -00016661 53.07562256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20610 -00016662 53.07562637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20610 -00016663 53.07565308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20620 -00016664 53.07565308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20620 -00016665 53.07567978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20630 -00016666 53.07568359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20630 -00016667 53.07571030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -00016668 53.07571030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -00016669 53.07573700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -00016670 53.07574081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -00016671 53.07576752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -00016672 53.07577133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -00016673 53.07579422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -00016674 53.07579803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -00016675 53.07582474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -00016676 53.07582855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -00016677 53.07585144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -00016678 53.07585526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -00016679 53.07588196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -00016680 53.07588577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -00016681 53.07590866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -00016682 53.07590866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -00016683 53.07593918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -00016684 53.07594299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -00016685 53.07596970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -00016686 53.07596970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -00016687 53.07599258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -00016688 53.07599640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -00016689 53.07602310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -00016690 53.07602692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -00016691 53.07604980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -00016692 53.07605362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -00016693 53.07608032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -00016694 53.07608414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -00016695 53.07610703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -00016696 53.07611084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -00016697 53.07613754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -00016698 53.07614136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -00016699 53.07616806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -00016700 53.07616806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -00016701 53.07619476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -00016702 53.07619858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -00016703 53.07622528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -00016704 53.07622528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -00016705 53.07624817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -00016706 53.07625198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -00016707 53.07627869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -00016708 53.07628250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -00016709 53.07630539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -00016710 53.07630920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -00016711 53.07633591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a0 -00016712 53.07633972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a0 -00016713 53.07636642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b0 -00016714 53.07636642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b0 -00016715 53.07639694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c0 -00016716 53.07640076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c0 -00016717 53.07643127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d0 -00016718 53.07643509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d0 -00016719 53.07646179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e0 -00016720 53.07646561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e0 -00016721 53.07648849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f0 -00016722 53.07649231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f0 -00016723 53.07651901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20800 -00016724 53.07652283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20800 -00016725 53.07654572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20810 -00016726 53.07654953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20810 -00016727 53.07657623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20820 -00016728 53.07658005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20820 -00016729 53.07660294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20830 -00016730 53.07660294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20830 -00016731 53.07663345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20840 -00016732 53.07663345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20840 -00016733 53.07666016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20850 -00016734 53.07666397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20850 -00016735 53.07668686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20860 -00016736 53.07669067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20860 -00016737 53.07671738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20870 -00016738 53.07672119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20870 -00016739 53.07674408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20880 -00016740 53.07674789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20880 -00016741 53.07677460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20890 -00016742 53.07677841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20890 -00016743 53.07680130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a0 -00016744 53.07680511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a0 -00016745 53.07683182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b0 -00016746 53.07683563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b0 -00016747 53.07686234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c0 -00016748 53.07686234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c0 -00016749 53.07688904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d0 -00016750 53.07689285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d0 -00016751 53.07691956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e0 -00016752 53.07691956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e0 -00016753 53.07694244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f0 -00016754 53.07694626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f0 -00016755 53.07697296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20900 -00016756 53.07697678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20900 -00016757 53.07700348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20910 -00016758 53.07700348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20910 -00016759 53.07703018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20920 -00016760 53.07703400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20920 -00016761 53.07706070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20930 -00016762 53.07706070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20930 -00016763 53.07708740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20940 -00016764 53.07709122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20940 -00016765 53.07711792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20950 -00016766 53.07712173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20950 -00016767 53.07714462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20960 -00016768 53.07714462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20960 -00016769 53.07717514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20970 -00016770 53.07717896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20970 -00016771 53.07720184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20980 -00016772 53.07720184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20980 -00016773 53.07723236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20990 -00016774 53.07723236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20990 -00016775 53.07725906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a0 -00016776 53.07725906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a0 -00016777 53.07728577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b0 -00016778 53.07728958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b0 -00016779 53.07731628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c0 -00016780 53.07732010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c0 -00016781 53.07734299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d0 -00016782 53.07734680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d0 -00016783 53.07737350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e0 -00016784 53.07737732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e0 -00016785 53.07740021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209f0 -00016786 53.07740402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209f0 -00016787 53.07743073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a00 -00016788 53.07743454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a00 -00016789 53.07745743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a10 -00016790 53.07745743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a10 -00016791 53.07748413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a20 -00016792 53.07748795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a20 -00016793 53.07751465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a30 -00016794 53.07751846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a30 -00016795 53.07754135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a40 -00016796 53.07754517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a40 -00016797 53.07757187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a50 -00016798 53.07757568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a50 -00016799 53.07759857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a60 -00016800 53.07760239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a60 -00016801 53.07762909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a70 -00016802 53.07763290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a70 -00016803 53.07765579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a80 -00016804 53.07765579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a80 -00016805 53.07768250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a90 -00016806 53.07768631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a90 -00016807 53.07771301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20aa0 -00016808 53.07771683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20aa0 -00016809 53.07773972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ab0 -00016810 53.07774353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ab0 -00016811 53.07777023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ac0 -00016812 53.07777405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ac0 -00016813 53.07779694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ad0 -00016814 53.07780075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ad0 -00016815 53.07782745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ae0 -00016816 53.07783127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ae0 -00016817 53.07785416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20af0 -00016818 53.07785797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20af0 -00016819 53.07788467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b00 -00016820 53.07788849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b00 -00016821 53.07791519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b10 -00016822 53.07791519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b10 -00016823 53.07794189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b20 -00016824 53.07794189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b20 -00016825 53.07796860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b30 -00016826 53.07797241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b30 -00016827 53.07799530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b40 -00016828 53.07799911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b40 -00016829 53.07802582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b50 -00016830 53.07802963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b50 -00016831 53.07805252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b60 -00016832 53.07805634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b60 -00016833 53.07808304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b70 -00016834 53.07808685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b70 -00016835 53.07811356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b80 -00016836 53.07811356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b80 -00016837 53.07814026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b90 -00016838 53.07814407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b90 -00016839 53.07817078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba0 -00016840 53.07817078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba0 -00016841 53.07819366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb0 -00016842 53.07819748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb0 -00016843 53.07822418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc0 -00016844 53.07822800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc0 -00016845 53.07825470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd0 -00016846 53.07825470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd0 -00016847 53.07828140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be0 -00016848 53.07828522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be0 -00016849 53.07831192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf0 -00016850 53.07831192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf0 -00016851 53.07833862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c00 -00016852 53.07834244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c00 -00016853 53.07836914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c10 -00016854 53.07837296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c10 -00016855 53.07839584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c20 -00016856 53.07839584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c20 -00016857 53.07842636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c30 -00016858 53.07843018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c30 -00016859 53.07845306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c40 -00016860 53.07845306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c40 -00016861 53.07847977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c50 -00016862 53.07848358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c50 -00016863 53.07851028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c60 -00016864 53.07851028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c60 -00016865 53.07853699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c70 -00016866 53.07854080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c70 -00016867 53.07856750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c80 -00016868 53.07857132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c80 -00016869 53.07859421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c90 -00016870 53.07859802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c90 -00016871 53.07862473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ca0 -00016872 53.07862854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ca0 -00016873 53.07865143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cb0 -00016874 53.07865524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cb0 -00016875 53.07868195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cc0 -00016876 53.07868195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cc0 -00016877 53.07870865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cd0 -00016878 53.07870865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cd0 -00016879 53.07873535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ce0 -00016880 53.07873917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ce0 -00016881 53.07876587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cf0 -00016882 53.07876968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cf0 -00016883 53.07879257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d00 -00016884 53.07879639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d00 -00016885 53.07882309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d10 -00016886 53.07882690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d10 -00016887 53.07884979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d20 -00016888 53.07885361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d20 -00016889 53.07888031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d30 -00016890 53.07888031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d30 -00016891 53.07890701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d40 -00016892 53.07890701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d40 -00016893 53.07893372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d50 -00016894 53.07893753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d50 -00016895 53.07896423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d60 -00016896 53.07896805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d60 -00016897 53.07899094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d70 -00016898 53.07899475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d70 -00016899 53.07902145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d80 -00016900 53.07902527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d80 -00016901 53.07904816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d90 -00016902 53.07905197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d90 -00016903 53.07907867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20da0 -00016904 53.07908249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20da0 -00016905 53.07910538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db0 -00016906 53.07910919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db0 -00016907 53.07913589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc0 -00016908 53.07913589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc0 -00016909 53.07916641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd0 -00016910 53.07916641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd0 -00016911 53.07918930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de0 -00016912 53.07919312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de0 -00016913 53.07921982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df0 -00016914 53.07922363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df0 -00016915 53.07924652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e00 -00016916 53.07925034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e00 -00016917 53.07927704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e10 -00016918 53.07928085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e10 -00016919 53.07930374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e20 -00016920 53.07930756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e20 -00016921 53.07933426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e30 -00016922 53.07933807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e30 -00016923 53.07936478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e40 -00016924 53.07936478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e40 -00016925 53.07939148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e50 -00016926 53.07939148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e50 -00016927 53.07941818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e60 -00016928 53.07942200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e60 -00016929 53.07944489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e70 -00016930 53.07944870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e70 -00016931 53.07947540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e80 -00016932 53.07947922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e80 -00016933 53.07950211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e90 -00016934 53.07950592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e90 -00016935 53.07953262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ea0 -00016936 53.07953644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ea0 -00016937 53.07956314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20eb0 -00016938 53.07956314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20eb0 -00016939 53.07958984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ec0 -00016940 53.07958984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ec0 -00016941 53.07961655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ed0 -00016942 53.07962036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ed0 -00016943 53.07964325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ee0 -00016944 53.07964706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ee0 -00016945 53.07967377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ef0 -00016946 53.07967758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ef0 -00016947 53.07970428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f00 -00016948 53.07970428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f00 -00016949 53.07973480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f10 -00016950 53.07973862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f10 -00016951 53.07976151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f20 -00016952 53.07976532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f20 -00016953 53.07979202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f30 -00016954 53.07979584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f30 -00016955 53.07982254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f40 -00016956 53.07982254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f40 -00016957 53.07984543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f50 -00016958 53.07984924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f50 -00016959 53.07987595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f60 -00016960 53.07987976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f60 -00016961 53.07990265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f70 -00016962 53.07990646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f70 -00016963 53.07993317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f80 -00016964 53.07993698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f80 -00016965 53.07995987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f90 -00016966 53.07996368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f90 -00016967 53.07999039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fa0 -00016968 53.07999420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fa0 -00016969 53.08002090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fb0 -00016970 53.08002090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fb0 -00016971 53.08004761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fc0 -00016972 53.08005142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fc0 -00016973 53.08007813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fd0 -00016974 53.08007813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fd0 -00016975 53.08010483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fe0 -00016976 53.08010483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fe0 -00016977 53.08013153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ff0 -00016978 53.08013535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ff0 -00016979 53.08015823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21000 -00016980 53.08016205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21000 -00016981 53.08018875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21010 -00016982 53.08019257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21010 -00016983 53.08021927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21020 -00016984 53.08021927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21020 -00016985 53.08024597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21030 -00016986 53.08024979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21030 -00016987 53.08027649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21040 -00016988 53.08028030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21040 -00016989 53.08030319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21050 -00016990 53.08030701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21050 -00016991 53.08033371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21060 -00016992 53.08033752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21060 -00016993 53.08036041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21070 -00016994 53.08036423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21070 -00016995 53.08039093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21080 -00016996 53.08039474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21080 -00016997 53.08041763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21090 -00016998 53.08041763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21090 -00016999 53.08044815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210a0 -00017000 53.08044815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210a0 -00017001 53.08047485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210b0 -00017002 53.08047867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210b0 -00017003 53.08050156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210c0 -00017004 53.08050537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210c0 -00017005 53.08053207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d0 -00017006 53.08053589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d0 -00017007 53.08055878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e0 -00017008 53.08056259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e0 -00017009 53.08058929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f0 -00017010 53.08059311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f0 -00017011 53.08061600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21100 -00017012 53.08061981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21100 -00017013 53.08064651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21110 -00017014 53.08065033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21110 -00017015 53.08067703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21120 -00017016 53.08067703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21120 -00017017 53.08070374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21130 -00017018 53.08070755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21130 -00017019 53.08073425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21140 -00017020 53.08073425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21140 -00017021 53.08076096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21150 -00017022 53.08076096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21150 -00017023 53.08078766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21160 -00017024 53.08079147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21160 -00017025 53.08081436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21170 -00017026 53.08081818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21170 -00017027 53.08084488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21180 -00017028 53.08084869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21180 -00017029 53.08087540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21190 -00017030 53.08087540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21190 -00017031 53.08090210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a0 -00017032 53.08090591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a0 -00017033 53.08093262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b0 -00017034 53.08093262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b0 -00017035 53.08095932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c0 -00017036 53.08096313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c0 -00017037 53.08098984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d0 -00017038 53.08099365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d0 -00017039 53.08101654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e0 -00017040 53.08101654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e0 -00017041 53.08104324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f0 -00017042 53.08104706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f0 -00017043 53.08107376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21200 -00017044 53.08107376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21200 -00017045 53.08110046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21210 -00017046 53.08110428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21210 -00017047 53.08113098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21220 -00017048 53.08113098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21220 -00017049 53.08115768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21230 -00017050 53.08116150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21230 -00017051 53.08118820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21240 -00017052 53.08119202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21240 -00017053 53.08121490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21250 -00017054 53.08121872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21250 -00017055 53.08124542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21260 -00017056 53.08124924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21260 -00017057 53.08127213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21270 -00017058 53.08127594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21270 -00017059 53.08130264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21280 -00017060 53.08130646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21280 -00017061 53.08132935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21290 -00017062 53.08132935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21290 -00017063 53.08135605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212a0 -00017064 53.08135986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212a0 -00017065 53.08138657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212b0 -00017066 53.08139038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212b0 -00017067 53.08141327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212c0 -00017068 53.08141708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212c0 -00017069 53.08144379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212d0 -00017070 53.08144760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212d0 -00017071 53.08147049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212e0 -00017072 53.08147430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212e0 -00017073 53.08150101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212f0 -00017074 53.08150482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x212f0 -00017075 53.08152771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21300 -00017076 53.08153152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21300 -00017077 53.08155823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21310 -00017078 53.08156204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21310 -00017079 53.08158875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21320 -00017080 53.08158875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21320 -00017081 53.08161545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21330 -00017082 53.08161545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21330 -00017083 53.08164215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21340 -00017084 53.08164597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21340 -00017085 53.08166885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21350 -00017086 53.08167267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21350 -00017087 53.08169937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21360 -00017088 53.08170319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21360 -00017089 53.08172989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21370 -00017090 53.08172989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21370 -00017091 53.08175659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21380 -00017092 53.08176041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21380 -00017093 53.08178711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21390 -00017094 53.08178711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21390 -00017095 53.08181381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213a0 -00017096 53.08181763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213a0 -00017097 53.08184433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213b0 -00017098 53.08184814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213b0 -00017099 53.08187103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c0 -00017100 53.08187103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c0 -00017101 53.08190155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d0 -00017102 53.08190155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d0 -00017103 53.08192825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e0 -00017104 53.08192825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e0 -00017105 53.08195496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f0 -00017106 53.08195877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f0 -00017107 53.08198547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21400 -00017108 53.08198547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21400 -00017109 53.08201218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21410 -00017110 53.08201599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21410 -00017111 53.08204269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21420 -00017112 53.08204651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21420 -00017113 53.08206940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21430 -00017114 53.08207321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21430 -00017115 53.08209991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21440 -00017116 53.08210373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21440 -00017117 53.08212662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21450 -00017118 53.08212662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21450 -00017119 53.08215332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21460 -00017120 53.08215714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21460 -00017121 53.08218384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21470 -00017122 53.08218384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21470 -00017123 53.08221054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21480 -00017124 53.08221436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21480 -00017125 53.08224106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21490 -00017126 53.08224487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21490 -00017127 53.08226776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a0 -00017128 53.08227158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a0 -00017129 53.08229828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b0 -00017130 53.08230209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b0 -00017131 53.08232498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c0 -00017132 53.08232880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c0 -00017133 53.08235550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d0 -00017134 53.08235931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d0 -00017135 53.08238220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e0 -00017136 53.08238220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e0 -00017137 53.08240891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f0 -00017138 53.08241272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f0 -00017139 53.08243942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21500 -00017140 53.08244324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21500 -00017141 53.08246613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21510 -00017142 53.08246994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21510 -00017143 53.08249664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21520 -00017144 53.08250046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21520 -00017145 53.08252335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21530 -00017146 53.08252716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21530 -00017147 53.08255386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21540 -00017148 53.08255768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21540 -00017149 53.08258057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21550 -00017150 53.08258438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21550 -00017151 53.08261108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21560 -00017152 53.08261490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21560 -00017153 53.08264160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21570 -00017154 53.08264160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21570 -00017155 53.08266830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21580 -00017156 53.08266830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21580 -00017157 53.08269501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21590 -00017158 53.08269882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21590 -00017159 53.08272171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a0 -00017160 53.08272552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a0 -00017161 53.08275223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b0 -00017162 53.08275604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b0 -00017163 53.08277893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c0 -00017164 53.08278275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c0 -00017165 53.08280945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d0 -00017166 53.08281326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d0 -00017167 53.08283997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e0 -00017168 53.08283997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e0 -00017169 53.08286667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f0 -00017170 53.08287048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f0 -00017171 53.08289719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21600 -00017172 53.08290100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21600 -00017173 53.08292389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21610 -00017174 53.08292389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21610 -00017175 53.08295059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21620 -00017176 53.08295441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21620 -00017177 53.08297729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21630 -00017178 53.08298111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21630 -00017179 53.08300781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21640 -00017180 53.08301163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21640 -00017181 53.08303833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21650 -00017182 53.08303833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21650 -00017183 53.08306503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21660 -00017184 53.08306885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21660 -00017185 53.08309555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21670 -00017186 53.08309937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21670 -00017187 53.08312225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21680 -00017188 53.08312607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21680 -00017189 53.08315277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21690 -00017190 53.08315659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21690 -00017191 53.08317947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a0 -00017192 53.08318329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a0 -00017193 53.08320999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216b0 -00017194 53.08320999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216b0 -00017195 53.08323669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216c0 -00017196 53.08323669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216c0 -00017197 53.08326340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216d0 -00017198 53.08326721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216d0 -00017199 53.08329391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216e0 -00017200 53.08329773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216e0 -00017201 53.08332062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216f0 -00017202 53.08332443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x216f0 -00017203 53.08335114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21700 -00017204 53.08335495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21700 -00017205 53.08337784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21710 -00017206 53.08338165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21710 -00017207 53.08340836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21720 -00017208 53.08341217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21720 -00017209 53.08343506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21730 -00017210 53.08343887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21730 -00017211 53.08346558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21740 -00017212 53.08346939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21740 -00017213 53.08349609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21750 -00017214 53.08349609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21750 -00017215 53.08352280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21760 -00017216 53.08352280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21760 -00017217 53.08355331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21770 -00017218 53.08355331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21770 -00017219 53.08357620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21780 -00017220 53.08358002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21780 -00017221 53.08360672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21790 -00017222 53.08361053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21790 -00017223 53.08363342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a0 -00017224 53.08363724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a0 -00017225 53.08366394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b0 -00017226 53.08366776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b0 -00017227 53.08369446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c0 -00017228 53.08369446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c0 -00017229 53.08372116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d0 -00017230 53.08372498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d0 -00017231 53.08375168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e0 -00017232 53.08375549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e0 -00017233 53.08377838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f0 -00017234 53.08377838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f0 -00017235 53.08380890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21800 -00017236 53.08380890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21800 -00017237 53.08383179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21810 -00017238 53.08383560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21810 -00017239 53.08386230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21820 -00017240 53.08386612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21820 -00017241 53.08389282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21830 -00017242 53.08389282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21830 -00017243 53.08391953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21840 -00017244 53.08392334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21840 -00017245 53.08395004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21850 -00017246 53.08395386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21850 -00017247 53.08397675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21860 -00017248 53.08398056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21860 -00017249 53.08400726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21870 -00017250 53.08401108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21870 -00017251 53.08403397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21880 -00017252 53.08403397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21880 -00017253 53.08406448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21890 -00017254 53.08406448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21890 -00017255 53.08409119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a0 -00017256 53.08409119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a0 -00017257 53.08411789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b0 -00017258 53.08412170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b0 -00017259 53.08414841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c0 -00017260 53.08415222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c0 -00017261 53.08417511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d0 -00017262 53.08417892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d0 -00017263 53.08420563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e0 -00017264 53.08420944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e0 -00017265 53.08423233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f0 -00017266 53.08423615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f0 -00017267 53.08426666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21900 -00017268 53.08427048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21900 -00017269 53.08429337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21910 -00017270 53.08429718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21910 -00017271 53.08432388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21920 -00017272 53.08432770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21920 -00017273 53.08435059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21930 -00017274 53.08435440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21930 -00017275 53.08438110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21940 -00017276 53.08438110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21940 -00017277 53.08440781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21950 -00017278 53.08440781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21950 -00017279 53.08443451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21960 -00017280 53.08443832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21960 -00017281 53.08446503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21970 -00017282 53.08446884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21970 -00017283 53.08449173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21980 -00017284 53.08449554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21980 -00017285 53.08452225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21990 -00017286 53.08452606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21990 -00017287 53.08454895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219a0 -00017288 53.08455276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219a0 -00017289 53.08457947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219b0 -00017290 53.08458328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219b0 -00017291 53.08460617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219c0 -00017292 53.08460617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219c0 -00017293 53.08463287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219d0 -00017294 53.08463669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219d0 -00017295 53.08466339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219e0 -00017296 53.08466721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219e0 -00017297 53.08469009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219f0 -00017298 53.08469391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x219f0 -00017299 53.08472061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a00 -00017300 53.08472443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a00 -00017301 53.08474731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a10 -00017302 53.08475113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a10 -00017303 53.08477783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a20 -00017304 53.08478165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a20 -00017305 53.08480453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a30 -00017306 53.08480835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a30 -00017307 53.08483505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a40 -00017308 53.08483887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a40 -00017309 53.08486557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a50 -00017310 53.08486557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a50 -00017311 53.08489227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a60 -00017312 53.08489227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a60 -00017313 53.08492279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a70 -00017314 53.08492279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a70 -00017315 53.08494568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a80 -00017316 53.08494949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a80 -00017317 53.08497620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a90 -00017318 53.08498001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a90 -00017319 53.08500290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21aa0 -00017320 53.08500671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21aa0 -00017321 53.08503342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab0 -00017322 53.08503723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab0 -00017323 53.08506393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac0 -00017324 53.08506393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac0 -00017325 53.08509064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad0 -00017326 53.08509445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad0 -00017327 53.08512115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae0 -00017328 53.08512497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae0 -00017329 53.08514786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af0 -00017330 53.08515167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af0 -00017331 53.08517838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b00 -00017332 53.08518219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b00 -00017333 53.08520508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b10 -00017334 53.08520508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b10 -00017335 53.08523178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b20 -00017336 53.08523560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b20 -00017337 53.08526230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b30 -00017338 53.08526230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b30 -00017339 53.08528900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b40 -00017340 53.08529282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b40 -00017341 53.08531952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b50 -00017342 53.08532333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b50 -00017343 53.08534622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b60 -00017344 53.08535004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b60 -00017345 53.08537674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b70 -00017346 53.08538055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b70 -00017347 53.08540344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b80 -00017348 53.08540726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b80 -00017349 53.08543396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b90 -00017350 53.08543777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b90 -00017351 53.08546066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba0 -00017352 53.08546066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba0 -00017353 53.08549118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb0 -00017354 53.08549118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb0 -00017355 53.08551788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc0 -00017356 53.08552170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc0 -00017357 53.08554459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd0 -00017358 53.08554840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd0 -00017359 53.08557510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be0 -00017360 53.08557892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be0 -00017361 53.08560181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf0 -00017362 53.08560562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf0 -00017363 53.08563232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c00 -00017364 53.08563614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c00 -00017365 53.08565903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c10 -00017366 53.08566284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c10 -00017367 53.08568954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c20 -00017368 53.08569336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c20 -00017369 53.08572006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c30 -00017370 53.08572006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c30 -00017371 53.08574677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c40 -00017372 53.08575058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c40 -00017373 53.08577728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c50 -00017374 53.08578110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c50 -00017375 53.08580399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c60 -00017376 53.08580780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c60 -00017377 53.08583450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c70 -00017378 53.08583832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c70 -00017379 53.08586121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c80 -00017380 53.08586121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c80 -00017381 53.08589172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c90 -00017382 53.08589172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c90 -00017383 53.08591843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ca0 -00017384 53.08591843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ca0 -00017385 53.08594513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cb0 -00017386 53.08594894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cb0 -00017387 53.08597565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cc0 -00017388 53.08597946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cc0 -00017389 53.08600235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cd0 -00017390 53.08600616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cd0 -00017391 53.08603287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ce0 -00017392 53.08603668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ce0 -00017393 53.08605957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cf0 -00017394 53.08606339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cf0 -00017395 53.08609009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d00 -00017396 53.08609390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d00 -00017397 53.08611679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d10 -00017398 53.08612061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d10 -00017399 53.08614731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d20 -00017400 53.08615112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d20 -00017401 53.08617783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d30 -00017402 53.08617783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d30 -00017403 53.08620071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d40 -00017404 53.08620453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d40 -00017405 53.08623123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d50 -00017406 53.08623505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d50 -00017407 53.08625793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d60 -00017408 53.08626175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d60 -00017409 53.08628845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d70 -00017410 53.08629227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d70 -00017411 53.08631516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d80 -00017412 53.08631897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d80 -00017413 53.08634567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d90 -00017414 53.08634949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d90 -00017415 53.08637619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21da0 -00017416 53.08637619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21da0 -00017417 53.08640289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21db0 -00017418 53.08640671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21db0 -00017419 53.08643341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dc0 -00017420 53.08643341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dc0 -00017421 53.08645630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dd0 -00017422 53.08646011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dd0 -00017423 53.08648682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21de0 -00017424 53.08649063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21de0 -00017425 53.08651352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21df0 -00017426 53.08651733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21df0 -00017427 53.08654404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e00 -00017428 53.08654785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e00 -00017429 53.08657455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e10 -00017430 53.08657455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e10 -00017431 53.08660126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e20 -00017432 53.08660507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e20 -00017433 53.08663177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e30 -00017434 53.08663177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e30 -00017435 53.08665848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e40 -00017436 53.08666229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e40 -00017437 53.08668900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e50 -00017438 53.08668900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e50 -00017439 53.08671188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e60 -00017440 53.08671570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e60 -00017441 53.08674240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e70 -00017442 53.08674622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e70 -00017443 53.08677292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e80 -00017444 53.08677292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e80 -00017445 53.08679962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e90 -00017446 53.08680344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e90 -00017447 53.08683014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ea0 -00017448 53.08683014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ea0 -00017449 53.08685684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21eb0 -00017450 53.08686066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21eb0 -00017451 53.08688736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ec0 -00017452 53.08689117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ec0 -00017453 53.08691406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ed0 -00017454 53.08691788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ed0 -00017455 53.08694458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ee0 -00017456 53.08694458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ee0 -00017457 53.08697128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ef0 -00017458 53.08697128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ef0 -00017459 53.08699799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f00 -00017460 53.08700180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f00 -00017461 53.08702850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f10 -00017462 53.08702850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f10 -00017463 53.08705521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f20 -00017464 53.08705902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f20 -00017465 53.08708572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f30 -00017466 53.08708954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f30 -00017467 53.08711243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f40 -00017468 53.08711624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f40 -00017469 53.08714294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f50 -00017470 53.08714676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f50 -00017471 53.08716965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f60 -00017472 53.08717346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f60 -00017473 53.08720016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f70 -00017474 53.08720016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f70 -00017475 53.08722687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f80 -00017476 53.08723068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f80 -00017477 53.08725357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f90 -00017478 53.08725739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f90 -00017479 53.08728409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fa0 -00017480 53.08728790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fa0 -00017481 53.08731079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fb0 -00017482 53.08731461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fb0 -00017483 53.08734131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fc0 -00017484 53.08734512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fc0 -00017485 53.08736801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fd0 -00017486 53.08737183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fd0 -00017487 53.08739853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fe0 -00017488 53.08740234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fe0 -00017489 53.08742905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff0 -00017490 53.08742905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff0 -00017491 53.08745575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22000 -00017492 53.08745575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22000 -00017493 53.08748627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22010 -00017494 53.08748627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22010 -00017495 53.08750916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22020 -00017496 53.08751297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22020 -00017497 53.08753967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22030 -00017498 53.08754349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22030 -00017499 53.08756638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22040 -00017500 53.08757019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22040 -00017501 53.08759689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22050 -00017502 53.08760071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22050 -00017503 53.08762741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22060 -00017504 53.08762741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22060 -00017505 53.08765411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22070 -00017506 53.08765793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22070 -00017507 53.08768463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22080 -00017508 53.08768463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22080 -00017509 53.08771133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22090 -00017510 53.08771133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22090 -00017511 53.08773804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a0 -00017512 53.08774185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a0 -00017513 53.08776474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b0 -00017514 53.08776855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b0 -00017515 53.08779526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c0 -00017516 53.08779907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c0 -00017517 53.08782578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d0 -00017518 53.08782578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d0 -00017519 53.08785248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e0 -00017520 53.08785629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e0 -00017521 53.08788300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f0 -00017522 53.08788300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f0 -00017523 53.08790970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22100 -00017524 53.08791351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22100 -00017525 53.08794022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22110 -00017526 53.08794403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22110 -00017527 53.08796692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22120 -00017528 53.08797073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22120 -00017529 53.08799744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22130 -00017530 53.08799744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22130 -00017531 53.08802414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22140 -00017532 53.08802414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22140 -00017533 53.08805084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22150 -00017534 53.08805466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22150 -00017535 53.08808136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22160 -00017536 53.08808136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22160 -00017537 53.08810806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22170 -00017538 53.08811188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22170 -00017539 53.08813858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22180 -00017540 53.08814240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22180 -00017541 53.08816528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22190 -00017542 53.08816910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22190 -00017543 53.08819580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a0 -00017544 53.08819962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a0 -00017545 53.08822250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b0 -00017546 53.08822632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b0 -00017547 53.08825302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c0 -00017548 53.08825302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c0 -00017549 53.08827972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d0 -00017550 53.08827972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d0 -00017551 53.08830643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e0 -00017552 53.08831024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e0 -00017553 53.08833694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f0 -00017554 53.08834076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f0 -00017555 53.08836365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22200 -00017556 53.08836746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22200 -00017557 53.08839417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22210 -00017558 53.08839798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22210 -00017559 53.08842087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22220 -00017560 53.08842468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22220 -00017561 53.08845139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22230 -00017562 53.08845520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22230 -00017563 53.08848190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22240 -00017564 53.08848190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22240 -00017565 53.08850861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22250 -00017566 53.08851242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22250 -00017567 53.08853912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22260 -00017568 53.08853912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22260 -00017569 53.08856201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22270 -00017570 53.08856583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22270 -00017571 53.08859253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22280 -00017572 53.08859634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22280 -00017573 53.08861923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22290 -00017574 53.08862305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22290 -00017575 53.08864975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a0 -00017576 53.08865356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a0 -00017577 53.08868027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b0 -00017578 53.08868027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b0 -00017579 53.08870697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c0 -00017580 53.08871078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c0 -00017581 53.08873749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d0 -00017582 53.08873749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d0 -00017583 53.08876419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e0 -00017584 53.08876801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e0 -00017585 53.08879471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222f0 -00017586 53.08879852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x222f0 -00017587 53.08882141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22300 -00017588 53.08882141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22300 -00017589 53.08885193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22310 -00017590 53.08885193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22310 -00017591 53.08887863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22320 -00017592 53.08887863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22320 -00017593 53.08890533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22330 -00017594 53.08890915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22330 -00017595 53.08893585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22340 -00017596 53.08893585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22340 -00017597 53.08896255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22350 -00017598 53.08896637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22350 -00017599 53.08899307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22360 -00017600 53.08899689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22360 -00017601 53.08901978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22370 -00017602 53.08902359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22370 -00017603 53.08905029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22380 -00017604 53.08905411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22380 -00017605 53.08907700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22390 -00017606 53.08908081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22390 -00017607 53.08910751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a0 -00017608 53.08911133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a0 -00017609 53.08913422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b0 -00017610 53.08913803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b0 -00017611 53.08916473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c0 -00017612 53.08916473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c0 -00017613 53.08919144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d0 -00017614 53.08919525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d0 -00017615 53.08921814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e0 -00017616 53.08922195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e0 -00017617 53.08924866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f0 -00017618 53.08925247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f0 -00017619 53.08927536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22400 -00017620 53.08927917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22400 -00017621 53.08930588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22410 -00017622 53.08930969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22410 -00017623 53.08933258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22420 -00017624 53.08933640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22420 -00017625 53.08936310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22430 -00017626 53.08936691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22430 -00017627 53.08939362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22440 -00017628 53.08939362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22440 -00017629 53.08942032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22450 -00017630 53.08942032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22450 -00017631 53.08945084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22460 -00017632 53.08945084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22460 -00017633 53.08947372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22470 -00017634 53.08947754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22470 -00017635 53.08950424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22480 -00017636 53.08950806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22480 -00017637 53.08953094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22490 -00017638 53.08953476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22490 -00017639 53.08956146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a0 -00017640 53.08956528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a0 -00017641 53.08959198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b0 -00017642 53.08959198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b0 -00017643 53.08961868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c0 -00017644 53.08962250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c0 -00017645 53.08964920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d0 -00017646 53.08965302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d0 -00017647 53.08967590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e0 -00017648 53.08967590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e0 -00017649 53.08970642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f0 -00017650 53.08970642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f0 -00017651 53.08973312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22500 -00017652 53.08973312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22500 -00017653 53.08975983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22510 -00017654 53.08976364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22510 -00017655 53.08979034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22520 -00017656 53.08979034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22520 -00017657 53.08981705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22530 -00017658 53.08982086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22530 -00017659 53.08984756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22540 -00017660 53.08985138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22540 -00017661 53.08987427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22550 -00017662 53.08987808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22550 -00017663 53.08990479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22560 -00017664 53.08990860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22560 -00017665 53.08993149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22570 -00017666 53.08993530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22570 -00017667 53.08996201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22580 -00017668 53.08996582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22580 -00017669 53.08998871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22590 -00017670 53.08998871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22590 -00017671 53.09001541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a0 -00017672 53.09001923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a0 -00017673 53.09004593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b0 -00017674 53.09004974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b0 -00017675 53.09007263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c0 -00017676 53.09007645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c0 -00017677 53.09010315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d0 -00017678 53.09010696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d0 -00017679 53.09012985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e0 -00017680 53.09013367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e0 -00017681 53.09016037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f0 -00017682 53.09016418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f0 -00017683 53.09018707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22600 -00017684 53.09019089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22600 -00017685 53.09021759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22610 -00017686 53.09021759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22610 -00017687 53.09024811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22620 -00017688 53.09024811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22620 -00017689 53.09027100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22630 -00017690 53.09027481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22630 -00017691 53.09030151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22640 -00017692 53.09030533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22640 -00017693 53.09032822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22650 -00017694 53.09033203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22650 -00017695 53.09035873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22660 -00017696 53.09036255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22660 -00017697 53.09038544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22670 -00017698 53.09038925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22670 -00017699 53.09041595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22680 -00017700 53.09041977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22680 -00017701 53.09044647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22690 -00017702 53.09044647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22690 -00017703 53.09047318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226a0 -00017704 53.09047699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226a0 -00017705 53.09050369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b0 -00017706 53.09050751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b0 -00017707 53.09053040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c0 -00017708 53.09053421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c0 -00017709 53.09056091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d0 -00017710 53.09056091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d0 -00017711 53.09058380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e0 -00017712 53.09058762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e0 -00017713 53.09061432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f0 -00017714 53.09061813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f0 -00017715 53.09064484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22700 -00017716 53.09064484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22700 -00017717 53.09067154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22710 -00017718 53.09067535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22710 -00017719 53.09070206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22720 -00017720 53.09070587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22720 -00017721 53.09072876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22730 -00017722 53.09073257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22730 -00017723 53.09075928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22740 -00017724 53.09076309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22740 -00017725 53.09078598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22750 -00017726 53.09078979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22750 -00017727 53.09081650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22760 -00017728 53.09081650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22760 -00017729 53.09084320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22770 -00017730 53.09084320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22770 -00017731 53.09086990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22780 -00017732 53.09087372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22780 -00017733 53.09090042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22790 -00017734 53.09090424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22790 -00017735 53.09092712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a0 -00017736 53.09093094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a0 -00017737 53.09095764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b0 -00017738 53.09096146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b0 -00017739 53.09098434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c0 -00017740 53.09098816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c0 -00017741 53.09101486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d0 -00017742 53.09101868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d0 -00017743 53.09104156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e0 -00017744 53.09104538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e0 -00017745 53.09107208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f0 -00017746 53.09107208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f0 -00017747 53.09110260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22800 -00017748 53.09110260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22800 -00017749 53.09112549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22810 -00017750 53.09112930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22810 -00017751 53.09115601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22820 -00017752 53.09115982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22820 -00017753 53.09118271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22830 -00017754 53.09118652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22830 -00017755 53.09121323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22840 -00017756 53.09121704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22840 -00017757 53.09123993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22850 -00017758 53.09124374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22850 -00017759 53.09127045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22860 -00017760 53.09127426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22860 -00017761 53.09130096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22870 -00017762 53.09130096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22870 -00017763 53.09132767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22880 -00017764 53.09133148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22880 -00017765 53.09135818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22890 -00017766 53.09135818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22890 -00017767 53.09138489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228a0 -00017768 53.09138489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228a0 -00017769 53.09141159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228b0 -00017770 53.09141541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228b0 -00017771 53.09143829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228c0 -00017772 53.09144211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228c0 -00017773 53.09146881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228d0 -00017774 53.09147263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228d0 -00017775 53.09149933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228e0 -00017776 53.09149933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228e0 -00017777 53.09152603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228f0 -00017778 53.09152985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x228f0 -00017779 53.09155655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22900 -00017780 53.09155655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22900 -00017781 53.09158325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22910 -00017782 53.09158707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22910 -00017783 53.09161377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22920 -00017784 53.09161758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22920 -00017785 53.09164047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22930 -00017786 53.09164047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22930 -00017787 53.09167099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22940 -00017788 53.09167099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22940 -00017789 53.09169769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22950 -00017790 53.09169769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22950 -00017791 53.09172440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22960 -00017792 53.09172821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22960 -00017793 53.09175491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22970 -00017794 53.09175491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22970 -00017795 53.09178162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22980 -00017796 53.09178543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22980 -00017797 53.09181213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22990 -00017798 53.09181595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22990 -00017799 53.09183884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229a0 -00017800 53.09184265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229a0 -00017801 53.09186935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229b0 -00017802 53.09187317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229b0 -00017803 53.09189606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c0 -00017804 53.09189987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c0 -00017805 53.09192657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d0 -00017806 53.09192657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d0 -00017807 53.09195328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e0 -00017808 53.09195709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e0 -00017809 53.09197998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f0 -00017810 53.09198380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f0 -00017811 53.09201050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a00 -00017812 53.09201431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a00 -00017813 53.09203720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a10 -00017814 53.09204102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a10 -00017815 53.09206772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a20 -00017816 53.09207153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a20 -00017817 53.09209442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a30 -00017818 53.09209824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a30 -00017819 53.09212494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a40 -00017820 53.09212875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a40 -00017821 53.09215546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a50 -00017822 53.09215546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a50 -00017823 53.09218216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a60 -00017824 53.09218216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a60 -00017825 53.09221268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a70 -00017826 53.09221268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a70 -00017827 53.09223938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a80 -00017828 53.09223938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a80 -00017829 53.09226608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a90 -00017830 53.09226990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a90 -00017831 53.09229279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa0 -00017832 53.09229660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa0 -00017833 53.09232330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab0 -00017834 53.09232712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab0 -00017835 53.09235382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac0 -00017836 53.09235382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac0 -00017837 53.09238052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad0 -00017838 53.09238434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad0 -00017839 53.09241104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae0 -00017840 53.09241104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae0 -00017841 53.09243774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af0 -00017842 53.09244156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af0 -00017843 53.09246826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b00 -00017844 53.09247208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b00 -00017845 53.09249496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b10 -00017846 53.09249496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b10 -00017847 53.09252548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b20 -00017848 53.09252548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b20 -00017849 53.09255219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b30 -00017850 53.09255219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b30 -00017851 53.09257889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b40 -00017852 53.09258270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b40 -00017853 53.09260941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b50 -00017854 53.09260941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b50 -00017855 53.09263611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b60 -00017856 53.09263992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b60 -00017857 53.09266663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b70 -00017858 53.09267044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b70 -00017859 53.09269333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b80 -00017860 53.09269714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b80 -00017861 53.09272385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b90 -00017862 53.09272766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b90 -00017863 53.09275055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba0 -00017864 53.09275055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba0 -00017865 53.09278107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb0 -00017866 53.09278107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb0 -00017867 53.09280777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc0 -00017868 53.09280777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc0 -00017869 53.09283447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bd0 -00017870 53.09283829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bd0 -00017871 53.09286499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22be0 -00017872 53.09286880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22be0 -00017873 53.09289169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bf0 -00017874 53.09289551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bf0 -00017875 53.09292221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c00 -00017876 53.09292603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c00 -00017877 53.09294891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c10 -00017878 53.09295273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c10 -00017879 53.09297943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c20 -00017880 53.09298325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c20 -00017881 53.09300613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c30 -00017882 53.09300995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c30 -00017883 53.09303665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c40 -00017884 53.09303665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c40 -00017885 53.09306717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c50 -00017886 53.09306717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c50 -00017887 53.09309006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c60 -00017888 53.09309387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c60 -00017889 53.09312057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c70 -00017890 53.09312439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c70 -00017891 53.09314728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c80 -00017892 53.09315109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c80 -00017893 53.09317780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c90 -00017894 53.09318161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c90 -00017895 53.09320450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca0 -00017896 53.09320831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca0 -00017897 53.09323502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb0 -00017898 53.09323883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb0 -00017899 53.09326553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc0 -00017900 53.09326553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc0 -00017901 53.09329224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd0 -00017902 53.09329605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd0 -00017903 53.09332275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce0 -00017904 53.09332657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce0 -00017905 53.09334946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf0 -00017906 53.09334946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf0 -00017907 53.09337616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d00 -00017908 53.09337997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d00 -00017909 53.09340668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d10 -00017910 53.09340668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d10 -00017911 53.09343338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d20 -00017912 53.09343719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d20 -00017913 53.09346390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d30 -00017914 53.09346390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d30 -00017915 53.09349060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d40 -00017916 53.09349442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d40 -00017917 53.09352112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d50 -00017918 53.09352493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d50 -00017919 53.09354782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d60 -00017920 53.09355164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d60 -00017921 53.09357834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d70 -00017922 53.09358215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d70 -00017923 53.09360504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d80 -00017924 53.09360504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d80 -00017925 53.09363556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d90 -00017926 53.09363556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d90 -00017927 53.09366226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da0 -00017928 53.09366226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da0 -00017929 53.09368896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db0 -00017930 53.09369278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db0 -00017931 53.09371948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dc0 -00017932 53.09372330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dc0 -00017933 53.09374619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dd0 -00017934 53.09375000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dd0 -00017935 53.09377670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22de0 -00017936 53.09378052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22de0 -00017937 53.09380341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22df0 -00017938 53.09380722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22df0 -00017939 53.09383392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e00 -00017940 53.09383774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e00 -00017941 53.09386063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e10 -00017942 53.09386063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e10 -00017943 53.09389114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e20 -00017944 53.09389114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e20 -00017945 53.09391785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e30 -00017946 53.09392166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e30 -00017947 53.09394455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e40 -00017948 53.09394836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e40 -00017949 53.09397507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e50 -00017950 53.09397888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e50 -00017951 53.09400177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e60 -00017952 53.09400558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e60 -00017953 53.09403229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e70 -00017954 53.09403610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e70 -00017955 53.09405899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e80 -00017956 53.09406281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e80 -00017957 53.09408951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e90 -00017958 53.09409332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e90 -00017959 53.09412003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ea0 -00017960 53.09412003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ea0 -00017961 53.09414673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22eb0 -00017962 53.09414673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22eb0 -00017963 53.09417343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ec0 -00017964 53.09417725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ec0 -00017965 53.09420013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ed0 -00017966 53.09420395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ed0 -00017967 53.09423065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ee0 -00017968 53.09423447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ee0 -00017969 53.09425735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ef0 -00017970 53.09426117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ef0 -00017971 53.09428787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f00 -00017972 53.09429169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f00 -00017973 53.09431839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f10 -00017974 53.09431839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f10 -00017975 53.09434509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f20 -00017976 53.09434891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f20 -00017977 53.09437561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f30 -00017978 53.09437943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f30 -00017979 53.09440231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f40 -00017980 53.09440231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f40 -00017981 53.09443283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f50 -00017982 53.09443283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f50 -00017983 53.09445572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f60 -00017984 53.09445953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f60 -00017985 53.09448624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f70 -00017986 53.09449005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f70 -00017987 53.09451675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f80 -00017988 53.09451675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f80 -00017989 53.09454346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f90 -00017990 53.09454727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f90 -00017991 53.09457397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa0 -00017992 53.09457779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa0 -00017993 53.09460068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb0 -00017994 53.09460449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb0 -00017995 53.09463120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc0 -00017996 53.09463120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc0 -00017997 53.09465790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd0 -00017998 53.09465790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd0 -00017999 53.09468842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe0 -00018000 53.09468842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe0 -00018001 53.09471512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff0 -00018002 53.09471512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff0 -00018003 53.09474564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23000 -00018004 53.09474945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23000 -00018005 53.09477615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23010 -00018006 53.09477615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23010 -00018007 53.09480286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23020 -00018008 53.09480667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23020 -00018009 53.09483337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23030 -00018010 53.09483337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23030 -00018011 53.09486008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23040 -00018012 53.09486389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23040 -00018013 53.09489059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23050 -00018014 53.09489441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23050 -00018015 53.09491730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23060 -00018016 53.09492111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23060 -00018017 53.09494781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23070 -00018018 53.09495163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23070 -00018019 53.09497452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23080 -00018020 53.09497833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23080 -00018021 53.09500504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23090 -00018022 53.09500885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23090 -00018023 53.09503174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230a0 -00018024 53.09503174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230a0 -00018025 53.09506226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230b0 -00018026 53.09506226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230b0 -00018027 53.09509277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230c0 -00018028 53.09509277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230c0 -00018029 53.09511566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230d0 -00018030 53.09511948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230d0 -00018031 53.09514618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230e0 -00018032 53.09514999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230e0 -00018033 53.09517288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230f0 -00018034 53.09517670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x230f0 -00018035 53.09520340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23100 -00018036 53.09520721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23100 -00018037 53.09523010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23110 -00018038 53.09523392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23110 -00018039 53.09526062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23120 -00018040 53.09526443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23120 -00018041 53.09529114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23130 -00018042 53.09529114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23130 -00018043 53.09531784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23140 -00018044 53.09532166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23140 -00018045 53.09534836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23150 -00018046 53.09534836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23150 -00018047 53.09537506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23160 -00018048 53.09537506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23160 -00018049 53.09540176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23170 -00018050 53.09540558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23170 -00018051 53.09543228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23180 -00018052 53.09543228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23180 -00018053 53.09545898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23190 -00018054 53.09546280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23190 -00018055 53.09548950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a0 -00018056 53.09548950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a0 -00018057 53.09551620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b0 -00018058 53.09552002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b0 -00018059 53.09554672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c0 -00018060 53.09555054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c0 -00018061 53.09557343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d0 -00018062 53.09557724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d0 -00018063 53.09560394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e0 -00018064 53.09560776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e0 -00018065 53.09563065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f0 -00018066 53.09563446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f0 -00018067 53.09566116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23200 -00018068 53.09566498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23200 -00018069 53.09568787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23210 -00018070 53.09569168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23210 -00018071 53.09571838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23220 -00018072 53.09572220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23220 -00018073 53.09574890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23230 -00018074 53.09574890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23230 -00018075 53.09577560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23240 -00018076 53.09577560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23240 -00018077 53.09580231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23250 -00018078 53.09580612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23250 -00018079 53.09582901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23260 -00018080 53.09583282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23260 -00018081 53.09585953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23270 -00018082 53.09586334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23270 -00018083 53.09588623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23280 -00018084 53.09589005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23280 -00018085 53.09591675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23290 -00018086 53.09592056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23290 -00018087 53.09594727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a0 -00018088 53.09594727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a0 -00018089 53.09597397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b0 -00018090 53.09597778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b0 -00018091 53.09600449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c0 -00018092 53.09600830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c0 -00018093 53.09603119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d0 -00018094 53.09603500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d0 -00018095 53.09606171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e0 -00018096 53.09606171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e0 -00018097 53.09608841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f0 -00018098 53.09608841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f0 -00018099 53.09611511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23300 -00018100 53.09611893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23300 -00018101 53.09614563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23310 -00018102 53.09614563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23310 -00018103 53.09617233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23320 -00018104 53.09617615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23320 -00018105 53.09620285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23330 -00018106 53.09620667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23330 -00018107 53.09622955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23340 -00018108 53.09623337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23340 -00018109 53.09626007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23350 -00018110 53.09626389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23350 -00018111 53.09628677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23360 -00018112 53.09629059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23360 -00018113 53.09631729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23370 -00018114 53.09632111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23370 -00018115 53.09634399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23380 -00018116 53.09634399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23380 -00018117 53.09637070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23390 -00018118 53.09637451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23390 -00018119 53.09640121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a0 -00018120 53.09640503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a0 -00018121 53.09642792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b0 -00018122 53.09643173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b0 -00018123 53.09645844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c0 -00018124 53.09646225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c0 -00018125 53.09648514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d0 -00018126 53.09648895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d0 -00018127 53.09651566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e0 -00018128 53.09651947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e0 -00018129 53.09654236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f0 -00018130 53.09654617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f0 -00018131 53.09657288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23400 -00018132 53.09657669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23400 -00018133 53.09660339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23410 -00018134 53.09660339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23410 -00018135 53.09662628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23420 -00018136 53.09663010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23420 -00018137 53.09665680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23430 -00018138 53.09666061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23430 -00018139 53.09668350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23440 -00018140 53.09668732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23440 -00018141 53.09671402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23450 -00018142 53.09671783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23450 -00018143 53.09674072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23460 -00018144 53.09674454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23460 -00018145 53.09677124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23470 -00018146 53.09677505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23470 -00018147 53.09680176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23480 -00018148 53.09680176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23480 -00018149 53.09682846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23490 -00018150 53.09683228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23490 -00018151 53.09685898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a0 -00018152 53.09685898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a0 -00018153 53.09688568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00018154 53.09688568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00018155 53.09691620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00018156 53.09691620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00018157 53.09693909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00018158 53.09694290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00018159 53.09696960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00018160 53.09697342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00018161 53.09700012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00018162 53.09700012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00018163 53.09702682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00018164 53.09703064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00018165 53.09705734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -00018166 53.09705734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -00018167 53.09708405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -00018168 53.09708786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -00018169 53.09711456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -00018170 53.09711838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -00018171 53.09714127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -00018172 53.09714127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -00018173 53.09716797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -00018174 53.09717178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -00018175 53.09719849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23560 -00018176 53.09719849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23560 -00018177 53.09722519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23570 -00018178 53.09722900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23570 -00018179 53.09725571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23580 -00018180 53.09725571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23580 -00018181 53.09728241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23590 -00018182 53.09728622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23590 -00018183 53.09731293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a0 -00018184 53.09731674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a0 -00018185 53.09733963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b0 -00018186 53.09734344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b0 -00018187 53.09737015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c0 -00018188 53.09737396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c0 -00018189 53.09739685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d0 -00018190 53.09740067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d0 -00018191 53.09742737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e0 -00018192 53.09743118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e0 -00018193 53.09745789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f0 -00018194 53.09745789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f0 -00018195 53.09748459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23600 -00018196 53.09748840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23600 -00018197 53.09751511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23610 -00018198 53.09751511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23610 -00018199 53.09753799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23620 -00018200 53.09754181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23620 -00018201 53.09756851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -00018202 53.09757233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -00018203 53.09759521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -00018204 53.09759903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -00018205 53.09762573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -00018206 53.09762955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -00018207 53.09765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23660 -00018208 53.09765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23660 -00018209 53.09768295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23670 -00018210 53.09768677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23670 -00018211 53.09771347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23680 -00018212 53.09771347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23680 -00018213 53.09774017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23690 -00018214 53.09774017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23690 -00018215 53.09777069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236a0 -00018216 53.09777069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236a0 -00018217 53.09779739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -00018218 53.09779739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -00018219 53.09782410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -00018220 53.09782791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -00018221 53.09785461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -00018222 53.09785461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -00018223 53.09788132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e0 -00018224 53.09788513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e0 -00018225 53.09791183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f0 -00018226 53.09791183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f0 -00018227 53.09793854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23700 -00018228 53.09794235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23700 -00018229 53.09796906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23710 -00018230 53.09797287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23710 -00018231 53.09799576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23720 -00018232 53.09799957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23720 -00018233 53.09802628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23730 -00018234 53.09803009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23730 -00018235 53.09805298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23740 -00018236 53.09805298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23740 -00018237 53.09807968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23750 -00018238 53.09808350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23750 -00018239 53.09811020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23760 -00018240 53.09811020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23760 -00018241 53.09813690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23770 -00018242 53.09814072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23770 -00018243 53.09816742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23780 -00018244 53.09817123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23780 -00018245 53.09819412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23790 -00018246 53.09819794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23790 -00018247 53.09822464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a0 -00018248 53.09822845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a0 -00018249 53.09825134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b0 -00018250 53.09825516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b0 -00018251 53.09828186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c0 -00018252 53.09828186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c0 -00018253 53.09830856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d0 -00018254 53.09830856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d0 -00018255 53.09833527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e0 -00018256 53.09833908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e0 -00018257 53.09836578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f0 -00018258 53.09836960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f0 -00018259 53.09839249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23800 -00018260 53.09839630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23800 -00018261 53.09842300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23810 -00018262 53.09842682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23810 -00018263 53.09844971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23820 -00018264 53.09845352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23820 -00018265 53.09848022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23830 -00018266 53.09848404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23830 -00018267 53.09850693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23840 -00018268 53.09851074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23840 -00018269 53.09853745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23850 -00018270 53.09854126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23850 -00018271 53.09856796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23860 -00018272 53.09856796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23860 -00018273 53.09859085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23870 -00018274 53.09859467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23870 -00018275 53.09862137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23880 -00018276 53.09862518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23880 -00018277 53.09864807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23890 -00018278 53.09865189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23890 -00018279 53.09867859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238a0 -00018280 53.09868240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238a0 -00018281 53.09870911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238b0 -00018282 53.09870911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238b0 -00018283 53.09873581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238c0 -00018284 53.09873962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238c0 -00018285 53.09876633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238d0 -00018286 53.09876633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238d0 -00018287 53.09879303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238e0 -00018288 53.09879303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238e0 -00018289 53.09882355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238f0 -00018290 53.09882355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x238f0 -00018291 53.09884644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23900 -00018292 53.09885025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23900 -00018293 53.09887695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23910 -00018294 53.09888077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23910 -00018295 53.09890747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23920 -00018296 53.09890747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23920 -00018297 53.09893417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23930 -00018298 53.09893799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23930 -00018299 53.09896469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23940 -00018300 53.09896469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23940 -00018301 53.09899139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23950 -00018302 53.09899521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23950 -00018303 53.09902191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23960 -00018304 53.09902573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23960 -00018305 53.09904861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23970 -00018306 53.09905243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23970 -00018307 53.09907913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23980 -00018308 53.09908295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23980 -00018309 53.09910583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23990 -00018310 53.09910965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23990 -00018311 53.09913635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239a0 -00018312 53.09914017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239a0 -00018313 53.09916306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239b0 -00018314 53.09916687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239b0 -00018315 53.09919357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c0 -00018316 53.09919357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c0 -00018317 53.09922028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d0 -00018318 53.09922409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d0 -00018319 53.09924698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e0 -00018320 53.09925079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e0 -00018321 53.09927750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f0 -00018322 53.09928131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f0 -00018323 53.09930420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a00 -00018324 53.09930801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a00 -00018325 53.09933472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a10 -00018326 53.09933853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a10 -00018327 53.09936142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a20 -00018328 53.09936523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a20 -00018329 53.09939194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a30 -00018330 53.09939575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a30 -00018331 53.09942245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a40 -00018332 53.09942245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a40 -00018333 53.09944916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a50 -00018334 53.09944916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a50 -00018335 53.09947586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a60 -00018336 53.09947968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a60 -00018337 53.09950256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a70 -00018338 53.09950638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a70 -00018339 53.09953308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a80 -00018340 53.09953690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a80 -00018341 53.09955978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a90 -00018342 53.09956360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a90 -00018343 53.09959030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa0 -00018344 53.09959412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa0 -00018345 53.09962082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab0 -00018346 53.09962082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab0 -00018347 53.09964752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac0 -00018348 53.09965134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac0 -00018349 53.09967804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad0 -00018350 53.09968185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad0 -00018351 53.09970474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae0 -00018352 53.09970474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae0 -00018353 53.09973145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af0 -00018354 53.09973526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af0 -00018355 53.09975815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b00 -00018356 53.09976196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b00 -00018357 53.09978867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b10 -00018358 53.09979248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b10 -00018359 53.09981918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b20 -00018360 53.09981918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b20 -00018361 53.09984589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b30 -00018362 53.09984970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b30 -00018363 53.09987640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b40 -00018364 53.09988022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b40 -00018365 53.09990311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b50 -00018366 53.09990692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b50 -00018367 53.09993362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b60 -00018368 53.09993362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b60 -00018369 53.09996033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b70 -00018370 53.09996033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b70 -00018371 53.09998703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b80 -00018372 53.09999084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b80 -00018373 53.10001755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b90 -00018374 53.10001755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b90 -00018375 53.10004425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba0 -00018376 53.10004807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba0 -00018377 53.10007477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb0 -00018378 53.10007858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb0 -00018379 53.10010147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc0 -00018380 53.10010529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc0 -00018381 53.10013199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd0 -00018382 53.10013580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd0 -00018383 53.10015869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be0 -00018384 53.10015869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be0 -00018385 53.10018921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf0 -00018386 53.10018921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf0 -00018387 53.10021591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c00 -00018388 53.10021591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c00 -00018389 53.10024261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c10 -00018390 53.10024643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c10 -00018391 53.10027313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c20 -00018392 53.10027695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c20 -00018393 53.10029984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c30 -00018394 53.10030365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c30 -00018395 53.10033035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c40 -00018396 53.10033417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c40 -00018397 53.10035706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c50 -00018398 53.10036087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c50 -00018399 53.10038757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c60 -00018400 53.10039139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c60 -00018401 53.10041428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c70 -00018402 53.10041428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c70 -00018403 53.10044479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c80 -00018404 53.10044479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c80 -00018405 53.10047150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c90 -00018406 53.10047531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c90 -00018407 53.10049820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca0 -00018408 53.10050201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca0 -00018409 53.10052872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb0 -00018410 53.10053253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb0 -00018411 53.10055542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc0 -00018412 53.10055923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc0 -00018413 53.10058594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd0 -00018414 53.10058975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd0 -00018415 53.10061264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce0 -00018416 53.10061646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce0 -00018417 53.10064316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf0 -00018418 53.10064697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf0 -00018419 53.10067368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d00 -00018420 53.10067368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d00 -00018421 53.10069656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d10 -00018422 53.10070038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d10 -00018423 53.10072708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d20 -00018424 53.10073090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d20 -00018425 53.10075378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d30 -00018426 53.10075760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d30 -00018427 53.10078430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d40 -00018428 53.10078812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d40 -00018429 53.10081100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d50 -00018430 53.10081482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d50 -00018431 53.10084152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d60 -00018432 53.10084534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d60 -00018433 53.10087204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d70 -00018434 53.10087204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d70 -00018435 53.10089874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d80 -00018436 53.10089874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d80 -00018437 53.10092926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d90 -00018438 53.10092926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d90 -00018439 53.10095596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da0 -00018440 53.10095596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da0 -00018441 53.10098267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db0 -00018442 53.10098648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db0 -00018443 53.10100937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc0 -00018444 53.10101318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc0 -00018445 53.10103989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd0 -00018446 53.10104370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd0 -00018447 53.10107040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de0 -00018448 53.10107040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de0 -00018449 53.10109711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -00018450 53.10110092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -00018451 53.10112762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -00018452 53.10113144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -00018453 53.10115433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e10 -00018454 53.10115433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e10 -00018455 53.10118484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e20 -00018456 53.10118484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e20 -00018457 53.10120773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e30 -00018458 53.10121155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e30 -00018459 53.10123825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e40 -00018460 53.10124207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e40 -00018461 53.10126877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e50 -00018462 53.10126877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e50 -00018463 53.10129547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e60 -00018464 53.10129929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e60 -00018465 53.10132599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e70 -00018466 53.10132980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e70 -00018467 53.10135269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e80 -00018468 53.10135651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e80 -00018469 53.10138321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e90 -00018470 53.10138321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e90 -00018471 53.10140991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea0 -00018472 53.10140991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea0 -00018473 53.10143661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23eb0 -00018474 53.10144043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23eb0 -00018475 53.10146713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ec0 -00018476 53.10146713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ec0 -00018477 53.10149384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ed0 -00018478 53.10149765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ed0 -00018479 53.10152435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ee0 -00018480 53.10152817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ee0 -00018481 53.10155487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ef0 -00018482 53.10155487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ef0 -00018483 53.10158539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f00 -00018484 53.10158539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f00 -00018485 53.10160828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f10 -00018486 53.10161209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f10 -00018487 53.10163879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -00018488 53.10164261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -00018489 53.10166550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -00018490 53.10166931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -00018491 53.10169601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -00018492 53.10169983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -00018493 53.10172653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f50 -00018494 53.10172653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f50 -00018495 53.10175323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f60 -00018496 53.10175705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f60 -00018497 53.10178375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f70 -00018498 53.10178375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f70 -00018499 53.10181046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f80 -00018500 53.10181046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f80 -00018501 53.10183716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f90 -00018502 53.10184097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f90 -00018503 53.10186386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fa0 -00018504 53.10186768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fa0 -00018505 53.10189438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fb0 -00018506 53.10189819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fb0 -00018507 53.10192490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fc0 -00018508 53.10192490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fc0 -00018509 53.10195160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fd0 -00018510 53.10195541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fd0 -00018511 53.10198212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fe0 -00018512 53.10198212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fe0 -00018513 53.10200882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ff0 -00018514 53.10201263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ff0 -00018515 53.10203934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24000 -00018516 53.10204315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24000 -00018517 53.10206604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24010 -00018518 53.10206985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24010 -00018519 53.10209656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24020 -00018520 53.10209656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24020 -00018521 53.10212326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24030 -00018522 53.10212326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24030 -00018523 53.10214996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24040 -00018524 53.10215378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24040 -00018525 53.10218048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24050 -00018526 53.10218430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24050 -00018527 53.10220718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24060 -00018528 53.10221100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24060 -00018529 53.10223770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24070 -00018530 53.10224152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24070 -00018531 53.10226440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24080 -00018532 53.10226822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24080 -00018533 53.10229492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24090 -00018534 53.10229874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24090 -00018535 53.10232162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240a0 -00018536 53.10232544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240a0 -00018537 53.10235214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b0 -00018538 53.10235596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b0 -00018539 53.10238266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c0 -00018540 53.10238266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c0 -00018541 53.10240555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d0 -00018542 53.10240936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d0 -00018543 53.10243607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e0 -00018544 53.10243988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e0 -00018545 53.10246277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f0 -00018546 53.10246658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f0 -00018547 53.10249329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24100 -00018548 53.10249710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24100 -00018549 53.10251999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24110 -00018550 53.10252380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24110 -00018551 53.10255051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24120 -00018552 53.10255432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24120 -00018553 53.10258102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24130 -00018554 53.10258102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24130 -00018555 53.10260773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24140 -00018556 53.10261154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24140 -00018557 53.10263824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24150 -00018558 53.10263824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24150 -00018559 53.10266495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24160 -00018560 53.10266495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24160 -00018561 53.10269547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24170 -00018562 53.10269547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24170 -00018563 53.10271835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24180 -00018564 53.10272217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24180 -00018565 53.10274887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24190 -00018566 53.10275269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24190 -00018567 53.10277939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241a0 -00018568 53.10277939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241a0 -00018569 53.10280609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241b0 -00018570 53.10280991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241b0 -00018571 53.10283661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241c0 -00018572 53.10283661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241c0 -00018573 53.10286331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241d0 -00018574 53.10286713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241d0 -00018575 53.10289383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241e0 -00018576 53.10289764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241e0 -00018577 53.10292053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241f0 -00018578 53.10292435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x241f0 -00018579 53.10295105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24200 -00018580 53.10295105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24200 -00018581 53.10297775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24210 -00018582 53.10297775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24210 -00018583 53.10300446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24220 -00018584 53.10300827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24220 -00018585 53.10303497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24230 -00018586 53.10303497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24230 -00018587 53.10306168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24240 -00018588 53.10306549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24240 -00018589 53.10309219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24250 -00018590 53.10309601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24250 -00018591 53.10311890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24260 -00018592 53.10312271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24260 -00018593 53.10314941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24270 -00018594 53.10315323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24270 -00018595 53.10317612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24280 -00018596 53.10317993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24280 -00018597 53.10320663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24290 -00018598 53.10321045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24290 -00018599 53.10323334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242a0 -00018600 53.10323334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242a0 -00018601 53.10326385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242b0 -00018602 53.10326385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242b0 -00018603 53.10329056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c0 -00018604 53.10329437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c0 -00018605 53.10331726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d0 -00018606 53.10332108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d0 -00018607 53.10334778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e0 -00018608 53.10335159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e0 -00018609 53.10337448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f0 -00018610 53.10337830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f0 -00018611 53.10340500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24300 -00018612 53.10340881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24300 -00018613 53.10343170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24310 -00018614 53.10343552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24310 -00018615 53.10346222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24320 -00018616 53.10346603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24320 -00018617 53.10349274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24330 -00018618 53.10349274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24330 -00018619 53.10351944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24340 -00018620 53.10351944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24340 -00018621 53.10354614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24350 -00018622 53.10354996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24350 -00018623 53.10357285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24360 -00018624 53.10357666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24360 -00018625 53.10360336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24370 -00018626 53.10360718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24370 -00018627 53.10363388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24380 -00018628 53.10363388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24380 -00018629 53.10366058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24390 -00018630 53.10366440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24390 -00018631 53.10369110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a0 -00018632 53.10369110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a0 -00018633 53.10371780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b0 -00018634 53.10372162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b0 -00018635 53.10374832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c0 -00018636 53.10375214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c0 -00018637 53.10377502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d0 -00018638 53.10377884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d0 -00018639 53.10380554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e0 -00018640 53.10380936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e0 -00018641 53.10383224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f0 -00018642 53.10383224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f0 -00018643 53.10386276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24400 -00018644 53.10386276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24400 -00018645 53.10388947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24410 -00018646 53.10388947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24410 -00018647 53.10391617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24420 -00018648 53.10391998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24420 -00018649 53.10394669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24430 -00018650 53.10395050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24430 -00018651 53.10397339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24440 -00018652 53.10397720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24440 -00018653 53.10400391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24450 -00018654 53.10400772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24450 -00018655 53.10403061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24460 -00018656 53.10403442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24460 -00018657 53.10406113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24470 -00018658 53.10406494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24470 -00018659 53.10408783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24480 -00018660 53.10409164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24480 -00018661 53.10411835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24490 -00018662 53.10411835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24490 -00018663 53.10414886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244a0 -00018664 53.10414886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244a0 -00018665 53.10417175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244b0 -00018666 53.10417557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244b0 -00018667 53.10420227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244c0 -00018668 53.10420609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244c0 -00018669 53.10422897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244d0 -00018670 53.10423279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244d0 -00018671 53.10425949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244e0 -00018672 53.10426331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244e0 -00018673 53.10428619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244f0 -00018674 53.10429001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x244f0 -00018675 53.10431671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24500 -00018676 53.10432053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24500 -00018677 53.10434723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24510 -00018678 53.10434723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24510 -00018679 53.10437393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24520 -00018680 53.10437775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24520 -00018681 53.10440445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24530 -00018682 53.10440826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24530 -00018683 53.10443115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24540 -00018684 53.10443497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24540 -00018685 53.10446167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24550 -00018686 53.10446548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24550 -00018687 53.10449219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24560 -00018688 53.10449600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24560 -00018689 53.10452271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24570 -00018690 53.10452652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24570 -00018691 53.10454941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24580 -00018692 53.10455322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24580 -00018693 53.10457993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24590 -00018694 53.10458374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24590 -00018695 53.10460663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a0 -00018696 53.10461044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a0 -00018697 53.10463715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245b0 -00018698 53.10464096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245b0 -00018699 53.10466385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245c0 -00018700 53.10466766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245c0 -00018701 53.10469437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245d0 -00018702 53.10469818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245d0 -00018703 53.10472488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245e0 -00018704 53.10472488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245e0 -00018705 53.10475540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245f0 -00018706 53.10475922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x245f0 -00018707 53.10478210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24600 -00018708 53.10478592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24600 -00018709 53.10481262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24610 -00018710 53.10481644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24610 -00018711 53.10484314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24620 -00018712 53.10484314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24620 -00018713 53.10486984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24630 -00018714 53.10487366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24630 -00018715 53.10490036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24640 -00018716 53.10490417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24640 -00018717 53.10492706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24650 -00018718 53.10493088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24650 -00018719 53.10495758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24660 -00018720 53.10496140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24660 -00018721 53.10499191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24670 -00018722 53.10499573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24670 -00018723 53.10502243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24680 -00018724 53.10502243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24680 -00018725 53.10504913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24690 -00018726 53.10505295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24690 -00018727 53.10507965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a0 -00018728 53.10508347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a0 -00018729 53.10510635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b0 -00018730 53.10511017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b0 -00018731 53.10513687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c0 -00018732 53.10514069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c0 -00018733 53.10516357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d0 -00018734 53.10516739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d0 -00018735 53.10519409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e0 -00018736 53.10519791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e0 -00018737 53.10522079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f0 -00018738 53.10522461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f0 -00018739 53.10525131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24700 -00018740 53.10525513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24700 -00018741 53.10528183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24710 -00018742 53.10528183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24710 -00018743 53.10530853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24720 -00018744 53.10531235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24720 -00018745 53.10533905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24730 -00018746 53.10533905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24730 -00018747 53.10536575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24740 -00018748 53.10536575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24740 -00018749 53.10539627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24750 -00018750 53.10539627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24750 -00018751 53.10541916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24760 -00018752 53.10542297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24760 -00018753 53.10544968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24770 -00018754 53.10545349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24770 -00018755 53.10548019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24780 -00018756 53.10548019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24780 -00018757 53.10550690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24790 -00018758 53.10551071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24790 -00018759 53.10553741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a0 -00018760 53.10553741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a0 -00018761 53.10556412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b0 -00018762 53.10556793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b0 -00018763 53.10559464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c0 -00018764 53.10559845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c0 -00018765 53.10562134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d0 -00018766 53.10562515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d0 -00018767 53.10565186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e0 -00018768 53.10565186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e0 -00018769 53.10567856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f0 -00018770 53.10567856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f0 -00018771 53.10570526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24800 -00018772 53.10570908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24800 -00018773 53.10573578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24810 -00018774 53.10573578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24810 -00018775 53.10576248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24820 -00018776 53.10576630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24820 -00018777 53.10579300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24830 -00018778 53.10579681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24830 -00018779 53.10581970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24840 -00018780 53.10582352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24840 -00018781 53.10585022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24850 -00018782 53.10585403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24850 -00018783 53.10587692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24860 -00018784 53.10588074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24860 -00018785 53.10590744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24870 -00018786 53.10590744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24870 -00018787 53.10593414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24880 -00018788 53.10593414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24880 -00018789 53.10596466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24890 -00018790 53.10596466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24890 -00018791 53.10599136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248a0 -00018792 53.10599518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248a0 -00018793 53.10601807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248b0 -00018794 53.10602188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248b0 -00018795 53.10604858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248c0 -00018796 53.10605240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248c0 -00018797 53.10607529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248d0 -00018798 53.10607910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248d0 -00018799 53.10610580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248e0 -00018800 53.10610962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248e0 -00018801 53.10613251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248f0 -00018802 53.10613632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x248f0 -00018803 53.10616302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24900 -00018804 53.10616684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24900 -00018805 53.10619354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24910 -00018806 53.10619354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24910 -00018807 53.10621643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24920 -00018808 53.10622025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24920 -00018809 53.10624695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24930 -00018810 53.10625076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24930 -00018811 53.10627365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24940 -00018812 53.10627747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24940 -00018813 53.10630417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24950 -00018814 53.10630798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24950 -00018815 53.10633469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24960 -00018816 53.10633469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24960 -00018817 53.10636139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24970 -00018818 53.10636520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24970 -00018819 53.10639191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24980 -00018820 53.10639191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24980 -00018821 53.10641861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24990 -00018822 53.10642242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24990 -00018823 53.10644913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a0 -00018824 53.10645294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a0 -00018825 53.10647583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b0 -00018826 53.10647964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b0 -00018827 53.10650635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c0 -00018828 53.10651016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c0 -00018829 53.10653305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d0 -00018830 53.10653305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d0 -00018831 53.10656357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e0 -00018832 53.10656357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e0 -00018833 53.10659027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f0 -00018834 53.10659027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f0 -00018835 53.10661697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a00 -00018836 53.10662079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a00 -00018837 53.10664749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a10 -00018838 53.10665131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a10 -00018839 53.10667419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a20 -00018840 53.10667801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a20 -00018841 53.10670471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a30 -00018842 53.10670853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a30 -00018843 53.10673141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a40 -00018844 53.10673523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a40 -00018845 53.10676193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a50 -00018846 53.10676575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a50 -00018847 53.10678864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a60 -00018848 53.10679245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a60 -00018849 53.10681915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a70 -00018850 53.10681915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a70 -00018851 53.10684586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a80 -00018852 53.10684967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a80 -00018853 53.10687256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a90 -00018854 53.10687637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a90 -00018855 53.10690308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24aa0 -00018856 53.10690689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24aa0 -00018857 53.10692978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ab0 -00018858 53.10693359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ab0 -00018859 53.10696030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac0 -00018860 53.10696411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac0 -00018861 53.10698700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad0 -00018862 53.10699081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad0 -00018863 53.10701752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae0 -00018864 53.10702133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae0 -00018865 53.10704803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af0 -00018866 53.10704803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af0 -00018867 53.10707474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b00 -00018868 53.10707855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b00 -00018869 53.10710526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b10 -00018870 53.10710907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b10 -00018871 53.10713196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b20 -00018872 53.10713196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b20 -00018873 53.10716248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b30 -00018874 53.10716248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b30 -00018875 53.10718918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b40 -00018876 53.10718918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b40 -00018877 53.10721588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b50 -00018878 53.10721970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b50 -00018879 53.10724640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b60 -00018880 53.10724640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b60 -00018881 53.10727310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b70 -00018882 53.10727692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b70 -00018883 53.10730362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b80 -00018884 53.10730743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b80 -00018885 53.10733032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b90 -00018886 53.10733414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b90 -00018887 53.10736084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba0 -00018888 53.10736465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba0 -00018889 53.10738754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb0 -00018890 53.10739136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb0 -00018891 53.10741806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc0 -00018892 53.10741806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc0 -00018893 53.10744476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd0 -00018894 53.10744476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd0 -00018895 53.10747147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be0 -00018896 53.10747528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be0 -00018897 53.10750198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf0 -00018898 53.10750580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf0 -00018899 53.10752869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c00 -00018900 53.10753250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c00 -00018901 53.10755920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c10 -00018902 53.10756302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c10 -00018903 53.10758591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c20 -00018904 53.10758972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c20 -00018905 53.10761642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c30 -00018906 53.10762024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c30 -00018907 53.10764313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c40 -00018908 53.10764694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c40 -00018909 53.10767365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c50 -00018910 53.10767365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c50 -00018911 53.10770416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c60 -00018912 53.10770416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c60 -00018913 53.10772705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c70 -00018914 53.10773087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c70 -00018915 53.10775757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c80 -00018916 53.10776138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c80 -00018917 53.10778427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c90 -00018918 53.10778809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c90 -00018919 53.10781479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca0 -00018920 53.10781860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca0 -00018921 53.10784149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb0 -00018922 53.10784531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb0 -00018923 53.10787201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc0 -00018924 53.10787582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc0 -00018925 53.10790253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd0 -00018926 53.10790253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd0 -00018927 53.10792923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce0 -00018928 53.10793304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce0 -00018929 53.10795975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf0 -00018930 53.10795975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf0 -00018931 53.10798645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d00 -00018932 53.10798645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d00 -00018933 53.10801697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d10 -00018934 53.10801697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d10 -00018935 53.10803986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d20 -00018936 53.10804367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d20 -00018937 53.10807037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d30 -00018938 53.10807419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d30 -00018939 53.10810089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d40 -00018940 53.10810089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d40 -00018941 53.10812759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d50 -00018942 53.10813141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d50 -00018943 53.10815811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d60 -00018944 53.10815811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d60 -00018945 53.10818481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d70 -00018946 53.10818863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d70 -00018947 53.10821533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d80 -00018948 53.10821915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d80 -00018949 53.10824203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d90 -00018950 53.10824585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d90 -00018951 53.10827255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24da0 -00018952 53.10827637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24da0 -00018953 53.10829926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24db0 -00018954 53.10830307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24db0 -00018955 53.10832977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dc0 -00018956 53.10833359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dc0 -00018957 53.10836029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dd0 -00018958 53.10836029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dd0 -00018959 53.10838699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24de0 -00018960 53.10839081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24de0 -00018961 53.10841751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24df0 -00018962 53.10841751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24df0 -00018963 53.10844803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e00 -00018964 53.10844803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e00 -00018965 53.10847473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e10 -00018966 53.10847855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e10 -00018967 53.10850525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e20 -00018968 53.10850525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e20 -00018969 53.10853577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e30 -00018970 53.10853577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e30 -00018971 53.10856247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e40 -00018972 53.10856628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e40 -00018973 53.10859299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e50 -00018974 53.10859680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e50 -00018975 53.10861969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e60 -00018976 53.10862350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e60 -00018977 53.10865021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e70 -00018978 53.10865402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e70 -00018979 53.10867691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e80 -00018980 53.10868073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e80 -00018981 53.10870743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e90 -00018982 53.10871124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e90 -00018983 53.10873413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea0 -00018984 53.10873795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea0 -00018985 53.10876465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb0 -00018986 53.10876846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb0 -00018987 53.10879517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec0 -00018988 53.10879517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec0 -00018989 53.10882187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed0 -00018990 53.10882568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed0 -00018991 53.10885239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee0 -00018992 53.10885620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee0 -00018993 53.10887909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef0 -00018994 53.10888290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef0 -00018995 53.10890961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f00 -00018996 53.10891342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f00 -00018997 53.10893631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f10 -00018998 53.10894012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f10 -00018999 53.10896683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f20 -00019000 53.10897064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f20 -00019001 53.10899353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f30 -00019002 53.10899734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f30 -00019003 53.10902405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f40 -00019004 53.10902786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f40 -00019005 53.10905457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f50 -00019006 53.10905457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f50 -00019007 53.10908508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f60 -00019008 53.10908890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f60 -00019009 53.10911179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f70 -00019010 53.10911560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f70 -00019011 53.10914230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f80 -00019012 53.10914612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f80 -00019013 53.10917282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f90 -00019014 53.10917282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f90 -00019015 53.10919952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa0 -00019016 53.10920334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa0 -00019017 53.10923004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb0 -00019018 53.10923386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb0 -00019019 53.10925674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc0 -00019020 53.10926056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc0 -00019021 53.10928726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd0 -00019022 53.10929108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd0 -00019023 53.10931778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fe0 -00019024 53.10932159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fe0 -00019025 53.10934830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff0 -00019026 53.10935211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff0 -00019027 53.10937500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25000 -00019028 53.10937881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25000 -00019029 53.10940552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25010 -00019030 53.10940933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25010 -00019031 53.10943222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25020 -00019032 53.10943604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25020 -00019033 53.10946655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25030 -00019034 53.10946655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25030 -00019035 53.10948944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25040 -00019036 53.10949326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25040 -00019037 53.10952377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25050 -00019038 53.10952759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25050 -00019039 53.10955048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25060 -00019040 53.10955429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25060 -00019041 53.10958099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25070 -00019042 53.10958099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25070 -00019043 53.10960770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25080 -00019044 53.10961151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25080 -00019045 53.10963821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25090 -00019046 53.10964203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25090 -00019047 53.10966873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a0 -00019048 53.10967255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a0 -00019049 53.10969925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b0 -00019050 53.10970306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b0 -00019051 53.10972977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c0 -00019052 53.10972977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c0 -00019053 53.10976028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d0 -00019054 53.10976410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d0 -00019055 53.10978699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e0 -00019056 53.10979080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e0 -00019057 53.10981750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f0 -00019058 53.10982132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f0 -00019059 53.10984802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25100 -00019060 53.10984802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25100 -00019061 53.10987473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25110 -00019062 53.10987854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25110 -00019063 53.10990524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25120 -00019064 53.10990906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25120 -00019065 53.10993195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25130 -00019066 53.10993576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25130 -00019067 53.10996246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25140 -00019068 53.10996628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25140 -00019069 53.10998917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25150 -00019070 53.10999298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25150 -00019071 53.11001968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25160 -00019072 53.11002350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25160 -00019073 53.11004639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25170 -00019074 53.11005020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25170 -00019075 53.11007690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25180 -00019076 53.11008072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25180 -00019077 53.11010742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25190 -00019078 53.11011124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25190 -00019079 53.11013794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a0 -00019080 53.11014175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a0 -00019081 53.11016464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b0 -00019082 53.11016846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b0 -00019083 53.11019516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c0 -00019084 53.11019897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c0 -00019085 53.11022568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d0 -00019086 53.11022568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d0 -00019087 53.11025238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e0 -00019088 53.11025620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e0 -00019089 53.11028290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f0 -00019090 53.11028290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f0 -00019091 53.11030960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25200 -00019092 53.11031342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25200 -00019093 53.11034393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25210 -00019094 53.11034393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25210 -00019095 53.11037064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25220 -00019096 53.11037064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25220 -00019097 53.11040115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25230 -00019098 53.11040115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25230 -00019099 53.11042786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25240 -00019100 53.11043167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25240 -00019101 53.11045837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25250 -00019102 53.11046219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25250 -00019103 53.11048508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25260 -00019104 53.11048889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25260 -00019105 53.11051559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25270 -00019106 53.11051559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25270 -00019107 53.11054230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25280 -00019108 53.11054611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25280 -00019109 53.11057281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25290 -00019110 53.11057663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25290 -00019111 53.11060333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a0 -00019112 53.11060333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a0 -00019113 53.11063004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b0 -00019114 53.11063385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b0 -00019115 53.11066055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c0 -00019116 53.11066055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c0 -00019117 53.11068726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d0 -00019118 53.11069107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d0 -00019119 53.11071777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e0 -00019120 53.11072159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e0 -00019121 53.11074448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f0 -00019122 53.11074829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f0 -00019123 53.11077499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25300 -00019124 53.11077881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25300 -00019125 53.11080551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25310 -00019126 53.11080551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25310 -00019127 53.11083221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25320 -00019128 53.11083603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25320 -00019129 53.11085892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25330 -00019130 53.11086273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25330 -00019131 53.11088943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25340 -00019132 53.11089325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25340 -00019133 53.11091995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25350 -00019134 53.11091995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25350 -00019135 53.11095047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25360 -00019136 53.11095047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25360 -00019137 53.11098099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25370 -00019138 53.11098099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25370 -00019139 53.11100769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25380 -00019140 53.11101151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25380 -00019141 53.11103821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25390 -00019142 53.11103821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25390 -00019143 53.11106491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253a0 -00019144 53.11106873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253a0 -00019145 53.11109543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253b0 -00019146 53.11109924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253b0 -00019147 53.11112595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253c0 -00019148 53.11112595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253c0 -00019149 53.11115646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253d0 -00019150 53.11116028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253d0 -00019151 53.11118317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253e0 -00019152 53.11118698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253e0 -00019153 53.11121368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253f0 -00019154 53.11121368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x253f0 -00019155 53.11124039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25400 -00019156 53.11124420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25400 -00019157 53.11127090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25410 -00019158 53.11127472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25410 -00019159 53.11129761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25420 -00019160 53.11130142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25420 -00019161 53.11132813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25430 -00019162 53.11133194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25430 -00019163 53.11135864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25440 -00019164 53.11135864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25440 -00019165 53.11138916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25450 -00019166 53.11139297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25450 -00019167 53.11141586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25460 -00019168 53.11141968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25460 -00019169 53.11144638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25470 -00019170 53.11145020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25470 -00019171 53.11147690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25480 -00019172 53.11147690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25480 -00019173 53.11150360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25490 -00019174 53.11150742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25490 -00019175 53.11153412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254a0 -00019176 53.11153412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254a0 -00019177 53.11156464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254b0 -00019178 53.11156464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254b0 -00019179 53.11159515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254c0 -00019180 53.11159515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254c0 -00019181 53.11162186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d0 -00019182 53.11162567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d0 -00019183 53.11165237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e0 -00019184 53.11165619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e0 -00019185 53.11167908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f0 -00019186 53.11168289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f0 -00019187 53.11170959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25500 -00019188 53.11171341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25500 -00019189 53.11174011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25510 -00019190 53.11174393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25510 -00019191 53.11177063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25520 -00019192 53.11177444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25520 -00019193 53.11179733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25530 -00019194 53.11180115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25530 -00019195 53.11182785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25540 -00019196 53.11183167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25540 -00019197 53.11185455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25550 -00019198 53.11185837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25550 -00019199 53.11188507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25560 -00019200 53.11188889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25560 -00019201 53.11191177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25570 -00019202 53.11191559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25570 -00019203 53.11194229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25580 -00019204 53.11194611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25580 -00019205 53.11197281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25590 -00019206 53.11197281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25590 -00019207 53.11199951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a0 -00019208 53.11200333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a0 -00019209 53.11203003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b0 -00019210 53.11203384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b0 -00019211 53.11205673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c0 -00019212 53.11206055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c0 -00019213 53.11208725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255d0 -00019214 53.11209106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255d0 -00019215 53.11211395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255e0 -00019216 53.11211777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255e0 -00019217 53.11214447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255f0 -00019218 53.11214828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x255f0 -00019219 53.11217117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25600 -00019220 53.11217499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25600 -00019221 53.11220551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25610 -00019222 53.11220932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25610 -00019223 53.11223221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25620 -00019224 53.11223221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25620 -00019225 53.11226273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25630 -00019226 53.11226273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25630 -00019227 53.11228943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25640 -00019228 53.11228943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25640 -00019229 53.11231995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25650 -00019230 53.11231995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25650 -00019231 53.11235046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25660 -00019232 53.11235046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25660 -00019233 53.11237717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25670 -00019234 53.11237717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25670 -00019235 53.11240768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25680 -00019236 53.11241150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25680 -00019237 53.11243439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25690 -00019238 53.11243820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25690 -00019239 53.11246490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256a0 -00019240 53.11246872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256a0 -00019241 53.11249161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256b0 -00019242 53.11249542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256b0 -00019243 53.11252213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256c0 -00019244 53.11252594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256c0 -00019245 53.11254883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256d0 -00019246 53.11255264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256d0 -00019247 53.11257935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256e0 -00019248 53.11258316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256e0 -00019249 53.11260986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256f0 -00019250 53.11260986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256f0 -00019251 53.11263657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25700 -00019252 53.11264038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25700 -00019253 53.11266708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25710 -00019254 53.11267090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25710 -00019255 53.11269760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25720 -00019256 53.11270142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25720 -00019257 53.11272812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25730 -00019258 53.11272812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25730 -00019259 53.11275482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25740 -00019260 53.11275864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25740 -00019261 53.11278534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25750 -00019262 53.11278915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25750 -00019263 53.11281586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25760 -00019264 53.11281967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25760 -00019265 53.11284637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25770 -00019266 53.11284637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25770 -00019267 53.11287308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25780 -00019268 53.11287689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25780 -00019269 53.11290359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25790 -00019270 53.11290741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25790 -00019271 53.11293030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a0 -00019272 53.11293411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a0 -00019273 53.11296082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b0 -00019274 53.11296463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b0 -00019275 53.11298752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c0 -00019276 53.11299133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c0 -00019277 53.11301804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d0 -00019278 53.11302185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d0 -00019279 53.11304474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e0 -00019280 53.11304855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e0 -00019281 53.11307526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f0 -00019282 53.11307907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f0 -00019283 53.11310577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25800 -00019284 53.11310959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25800 -00019285 53.11313629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25810 -00019286 53.11314011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25810 -00019287 53.11316299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25820 -00019288 53.11316681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25820 -00019289 53.11319351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25830 -00019290 53.11319733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25830 -00019291 53.11322403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25840 -00019292 53.11322403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25840 -00019293 53.11325073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25850 -00019294 53.11325455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25850 -00019295 53.11328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25860 -00019296 53.11328506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25860 -00019297 53.11330795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25870 -00019298 53.11331177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25870 -00019299 53.11333847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25880 -00019300 53.11334229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25880 -00019301 53.11336517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25890 -00019302 53.11336899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25890 -00019303 53.11339569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a0 -00019304 53.11339951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a0 -00019305 53.11342621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b0 -00019306 53.11343002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b0 -00019307 53.11345673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c0 -00019308 53.11346054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c0 -00019309 53.11348343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d0 -00019310 53.11348343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d0 -00019311 53.11351395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e0 -00019312 53.11351395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e0 -00019313 53.11354065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f0 -00019314 53.11354446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f0 -00019315 53.11357117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25900 -00019316 53.11357498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25900 -00019317 53.11360168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25910 -00019318 53.11360168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25910 -00019319 53.11362839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25920 -00019320 53.11363220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25920 -00019321 53.11365891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25930 -00019322 53.11365891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25930 -00019323 53.11368561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25940 -00019324 53.11368942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25940 -00019325 53.11371613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25950 -00019326 53.11371994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25950 -00019327 53.11374283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25960 -00019328 53.11374664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25960 -00019329 53.11377335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25970 -00019330 53.11377716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25970 -00019331 53.11380005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -00019332 53.11380386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -00019333 53.11383057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -00019334 53.11383438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -00019335 53.11386108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -00019336 53.11386108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -00019337 53.11388779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -00019338 53.11389160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -00019339 53.11391830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -00019340 53.11391830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -00019341 53.11394882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -00019342 53.11395264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -00019343 53.11397934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -00019344 53.11397934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -00019345 53.11400604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -00019346 53.11400986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -00019347 53.11403656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -00019348 53.11403656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -00019349 53.11406326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -00019350 53.11406708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -00019351 53.11409378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a20 -00019352 53.11409760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a20 -00019353 53.11412048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a30 -00019354 53.11412430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a30 -00019355 53.11415100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a40 -00019356 53.11415482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a40 -00019357 53.11418152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a50 -00019358 53.11418152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a50 -00019359 53.11421204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a60 -00019360 53.11421585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a60 -00019361 53.11423874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a70 -00019362 53.11423874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a70 -00019363 53.11426926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a80 -00019364 53.11427307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a80 -00019365 53.11429596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a90 -00019366 53.11429977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a90 -00019367 53.11432648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -00019368 53.11433029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -00019369 53.11435699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -00019370 53.11435699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -00019371 53.11438370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -00019372 53.11438751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -00019373 53.11441422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -00019374 53.11441422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -00019375 53.11444092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -00019376 53.11444473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -00019377 53.11447144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -00019378 53.11447525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -00019379 53.11449814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -00019380 53.11450195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -00019381 53.11452866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -00019382 53.11453247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -00019383 53.11455917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -00019384 53.11456299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -00019385 53.11458969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -00019386 53.11459351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -00019387 53.11461639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -00019388 53.11462021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -00019389 53.11464691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -00019390 53.11465073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -00019391 53.11467361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -00019392 53.11467743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -00019393 53.11470795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -00019394 53.11470795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -00019395 53.11473465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -00019396 53.11473465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -00019397 53.11476517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -00019398 53.11476898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -00019399 53.11479187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -00019400 53.11479568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -00019401 53.11482239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -00019402 53.11482620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -00019403 53.11485291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -00019404 53.11485291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -00019405 53.11487961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -00019406 53.11488342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -00019407 53.11491013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -00019408 53.11491013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -00019409 53.11493683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -00019410 53.11494064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -00019411 53.11496735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -00019412 53.11497116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -00019413 53.11499405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c10 -00019414 53.11499786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c10 -00019415 53.11502457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c20 -00019416 53.11502838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c20 -00019417 53.11505127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c30 -00019418 53.11505508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c30 -00019419 53.11508179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c40 -00019420 53.11508560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c40 -00019421 53.11511230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c50 -00019422 53.11511230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c50 -00019423 53.11513901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c60 -00019424 53.11514282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c60 -00019425 53.11516953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c70 -00019426 53.11516953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c70 -00019427 53.11519623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c80 -00019428 53.11520004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c80 -00019429 53.11523056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c90 -00019430 53.11523056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c90 -00019431 53.11525726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ca0 -00019432 53.11525726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ca0 -00019433 53.11528397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cb0 -00019434 53.11528778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cb0 -00019435 53.11531448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cc0 -00019436 53.11531830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cc0 -00019437 53.11534500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cd0 -00019438 53.11534882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cd0 -00019439 53.11537170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ce0 -00019440 53.11537552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ce0 -00019441 53.11540222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cf0 -00019442 53.11540604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cf0 -00019443 53.11542892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d00 -00019444 53.11543274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d00 -00019445 53.11545944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d10 -00019446 53.11546326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d10 -00019447 53.11548615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d20 -00019448 53.11548996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d20 -00019449 53.11551666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d30 -00019450 53.11552048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d30 -00019451 53.11554718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d40 -00019452 53.11554718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d40 -00019453 53.11557770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d50 -00019454 53.11557770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d50 -00019455 53.11560822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d60 -00019456 53.11560822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d60 -00019457 53.11563492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d70 -00019458 53.11563492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d70 -00019459 53.11566544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d80 -00019460 53.11566544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d80 -00019461 53.11569214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d90 -00019462 53.11569595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d90 -00019463 53.11572266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25da0 -00019464 53.11572647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25da0 -00019465 53.11574936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25db0 -00019466 53.11575317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25db0 -00019467 53.11577988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dc0 -00019468 53.11578369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dc0 -00019469 53.11580658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dd0 -00019470 53.11581039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dd0 -00019471 53.11584091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25de0 -00019472 53.11584091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25de0 -00019473 53.11586761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df0 -00019474 53.11586761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df0 -00019475 53.11589813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e00 -00019476 53.11589813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e00 -00019477 53.11592484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e10 -00019478 53.11592865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e10 -00019479 53.11595535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e20 -00019480 53.11595917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e20 -00019481 53.11598587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e30 -00019482 53.11598587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e30 -00019483 53.11601257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e40 -00019484 53.11601639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e40 -00019485 53.11604309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e50 -00019486 53.11604309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e50 -00019487 53.11606979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e60 -00019488 53.11607361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e60 -00019489 53.11610031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -00019490 53.11610413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -00019491 53.11612701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -00019492 53.11613083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -00019493 53.11615753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -00019494 53.11616135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -00019495 53.11618423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -00019496 53.11618805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -00019497 53.11621475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -00019498 53.11621857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -00019499 53.11624146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -00019500 53.11624527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -00019501 53.11627197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -00019502 53.11627579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -00019503 53.11630249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -00019504 53.11630249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -00019505 53.11632919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -00019506 53.11633301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -00019507 53.11635971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -00019508 53.11636353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -00019509 53.11639023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -00019510 53.11639404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -00019511 53.11642075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -00019512 53.11642075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -00019513 53.11644745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -00019514 53.11644745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -00019515 53.11647797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -00019516 53.11648178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -00019517 53.11650467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -00019518 53.11650848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -00019519 53.11653519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -00019520 53.11653900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -00019521 53.11656570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -00019522 53.11656952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -00019523 53.11659622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -00019524 53.11660004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -00019525 53.11662292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -00019526 53.11662674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -00019527 53.11665344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa0 -00019528 53.11665726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa0 -00019529 53.11668015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb0 -00019530 53.11668396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb0 -00019531 53.11671448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc0 -00019532 53.11671829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc0 -00019533 53.11674118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd0 -00019534 53.11674500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd0 -00019535 53.11677170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe0 -00019536 53.11677551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe0 -00019537 53.11679840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff0 -00019538 53.11680222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff0 -00019539 53.11682892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26000 -00019540 53.11683273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26000 -00019541 53.11685944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26010 -00019542 53.11685944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26010 -00019543 53.11688614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26020 -00019544 53.11688995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26020 -00019545 53.11691666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26030 -00019546 53.11691666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26030 -00019547 53.11694336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26040 -00019548 53.11694717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26040 -00019549 53.11697388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26050 -00019550 53.11697769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26050 -00019551 53.11700058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26060 -00019552 53.11700439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26060 -00019553 53.11703110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26070 -00019554 53.11703491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26070 -00019555 53.11705780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26080 -00019556 53.11706161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26080 -00019557 53.11708832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26090 -00019558 53.11709213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26090 -00019559 53.11711502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a0 -00019560 53.11711884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a0 -00019561 53.11714554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b0 -00019562 53.11714935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b0 -00019563 53.11717606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c0 -00019564 53.11717987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c0 -00019565 53.11720657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d0 -00019566 53.11721039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d0 -00019567 53.11723709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e0 -00019568 53.11723709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e0 -00019569 53.11726379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f0 -00019570 53.11726761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f0 -00019571 53.11729431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26100 -00019572 53.11729431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26100 -00019573 53.11732101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26110 -00019574 53.11732483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26110 -00019575 53.11735153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26120 -00019576 53.11735535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26120 -00019577 53.11737823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26130 -00019578 53.11738205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26130 -00019579 53.11740875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26140 -00019580 53.11741257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26140 -00019581 53.11743546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26150 -00019582 53.11743927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26150 -00019583 53.11746597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26160 -00019584 53.11746979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26160 -00019585 53.11749268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26170 -00019586 53.11749649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26170 -00019587 53.11752319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26180 -00019588 53.11752701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26180 -00019589 53.11755371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26190 -00019590 53.11755371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26190 -00019591 53.11758041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a0 -00019592 53.11758423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a0 -00019593 53.11761093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b0 -00019594 53.11761093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b0 -00019595 53.11763763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c0 -00019596 53.11764145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c0 -00019597 53.11767197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d0 -00019598 53.11767197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d0 -00019599 53.11769867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e0 -00019600 53.11769867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e0 -00019601 53.11772919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f0 -00019602 53.11772919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f0 -00019603 53.11775589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26200 -00019604 53.11775970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26200 -00019605 53.11778641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26210 -00019606 53.11779022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26210 -00019607 53.11781311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26220 -00019608 53.11781693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26220 -00019609 53.11784363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26230 -00019610 53.11784744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26230 -00019611 53.11787415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26240 -00019612 53.11787796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26240 -00019613 53.11790466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26250 -00019614 53.11790848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26250 -00019615 53.11793137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26260 -00019616 53.11793518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26260 -00019617 53.11796188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26270 -00019618 53.11796570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26270 -00019619 53.11798859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26280 -00019620 53.11799240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26280 -00019621 53.11801910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26290 -00019622 53.11802292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26290 -00019623 53.11804962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a0 -00019624 53.11804962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a0 -00019625 53.11807632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b0 -00019626 53.11808014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b0 -00019627 53.11810684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c0 -00019628 53.11811066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c0 -00019629 53.11813354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d0 -00019630 53.11813736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d0 -00019631 53.11816406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e0 -00019632 53.11816788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e0 -00019633 53.11819077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f0 -00019634 53.11819458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f0 -00019635 53.11822128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26300 -00019636 53.11822510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26300 -00019637 53.11825180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26310 -00019638 53.11825180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26310 -00019639 53.11828232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26320 -00019640 53.11828232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26320 -00019641 53.11830902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26330 -00019642 53.11831284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26330 -00019643 53.11833954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26340 -00019644 53.11834335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26340 -00019645 53.11836624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26350 -00019646 53.11837006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26350 -00019647 53.11839676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26360 -00019648 53.11840057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26360 -00019649 53.11842728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26370 -00019650 53.11842728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26370 -00019651 53.11845398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26380 -00019652 53.11845779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26380 -00019653 53.11848450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26390 -00019654 53.11848450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26390 -00019655 53.11851120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a0 -00019656 53.11851501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a0 -00019657 53.11854172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b0 -00019658 53.11854553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b0 -00019659 53.11856842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c0 -00019660 53.11857224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c0 -00019661 53.11859894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d0 -00019662 53.11860275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d0 -00019663 53.11862564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263e0 -00019664 53.11862946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263e0 -00019665 53.11865616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263f0 -00019666 53.11865997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x263f0 -00019667 53.11868668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26400 -00019668 53.11868668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26400 -00019669 53.11871338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26410 -00019670 53.11872101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26410 -00019671 53.11874390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26420 -00019672 53.11874771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26420 -00019673 53.11877441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26430 -00019674 53.11877823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26430 -00019675 53.11880493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26440 -00019676 53.11880493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26440 -00019677 53.11883163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26450 -00019678 53.11883545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26450 -00019679 53.11886215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26460 -00019680 53.11886215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26460 -00019681 53.11888885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26470 -00019682 53.11889267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26470 -00019683 53.11891937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26480 -00019684 53.11892319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26480 -00019685 53.11894608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26490 -00019686 53.11894989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26490 -00019687 53.11897659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a0 -00019688 53.11898041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a0 -00019689 53.11900330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b0 -00019690 53.11900711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b0 -00019691 53.11903381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c0 -00019692 53.11903763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c0 -00019693 53.11906433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d0 -00019694 53.11906815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d0 -00019695 53.11909485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e0 -00019696 53.11909866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e0 -00019697 53.11912155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f0 -00019698 53.11912537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f0 -00019699 53.11915207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26500 -00019700 53.11915588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26500 -00019701 53.11918259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26510 -00019702 53.11918259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26510 -00019703 53.11920929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26520 -00019704 53.11921310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26520 -00019705 53.11923981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26530 -00019706 53.11923981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26530 -00019707 53.11926651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26540 -00019708 53.11927032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26540 -00019709 53.11930084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26550 -00019710 53.11930084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26550 -00019711 53.11932755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26560 -00019712 53.11933136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26560 -00019713 53.11935806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26570 -00019714 53.11936188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26570 -00019715 53.11938477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26580 -00019716 53.11938858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26580 -00019717 53.11941528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26590 -00019718 53.11941910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26590 -00019719 53.11944199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a0 -00019720 53.11944580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a0 -00019721 53.11947250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b0 -00019722 53.11947632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b0 -00019723 53.11949921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c0 -00019724 53.11950302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c0 -00019725 53.11952972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d0 -00019726 53.11953354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d0 -00019727 53.11956024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e0 -00019728 53.11956024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e0 -00019729 53.11958694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f0 -00019730 53.11959076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f0 -00019731 53.11961746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26600 -00019732 53.11961746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26600 -00019733 53.11964798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26610 -00019734 53.11964798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26610 -00019735 53.11967850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26620 -00019736 53.11967850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26620 -00019737 53.11970520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26630 -00019738 53.11970901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26630 -00019739 53.11973572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26640 -00019740 53.11973572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26640 -00019741 53.11976242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26650 -00019742 53.11976624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26650 -00019743 53.11979294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26660 -00019744 53.11979675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26660 -00019745 53.11981964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26670 -00019746 53.11982346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26670 -00019747 53.11985016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26680 -00019748 53.11985397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26680 -00019749 53.11987686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26690 -00019750 53.11988068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26690 -00019751 53.11990738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266a0 -00019752 53.11991119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266a0 -00019753 53.11993790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266b0 -00019754 53.11993790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266b0 -00019755 53.11996460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266c0 -00019756 53.11996841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266c0 -00019757 53.11999512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266d0 -00019758 53.11999512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266d0 -00019759 53.12002182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266e0 -00019760 53.12002563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266e0 -00019761 53.12005234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266f0 -00019762 53.12005615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x266f0 -00019763 53.12007904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26700 -00019764 53.12008286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26700 -00019765 53.12010956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26710 -00019766 53.12011337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26710 -00019767 53.12013626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26720 -00019768 53.12014008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26720 -00019769 53.12016678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26730 -00019770 53.12017059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26730 -00019771 53.12019348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26740 -00019772 53.12019730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26740 -00019773 53.12022400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26750 -00019774 53.12022781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26750 -00019775 53.12025452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26760 -00019776 53.12025452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26760 -00019777 53.12028122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26770 -00019778 53.12028503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26770 -00019779 53.12031174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26780 -00019780 53.12031555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26780 -00019781 53.12034225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26790 -00019782 53.12034607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26790 -00019783 53.12037277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267a0 -00019784 53.12037277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267a0 -00019785 53.12039948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267b0 -00019786 53.12040329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267b0 -00019787 53.12042999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267c0 -00019788 53.12043381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267c0 -00019789 53.12045670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267d0 -00019790 53.12046051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267d0 -00019791 53.12049103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267e0 -00019792 53.12049103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267e0 -00019793 53.12051773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267f0 -00019794 53.12051773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x267f0 -00019795 53.12054825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26800 -00019796 53.12054825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26800 -00019797 53.12057495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26810 -00019798 53.12057877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26810 -00019799 53.12060547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26820 -00019800 53.12060928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26820 -00019801 53.12063217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26830 -00019802 53.12063599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26830 -00019803 53.12066269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26840 -00019804 53.12066650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26840 -00019805 53.12068939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26850 -00019806 53.12069321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26850 -00019807 53.12071991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26860 -00019808 53.12072372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26860 -00019809 53.12075043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26870 -00019810 53.12075043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26870 -00019811 53.12077713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26880 -00019812 53.12078094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26880 -00019813 53.12080765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26890 -00019814 53.12081146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26890 -00019815 53.12083435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268a0 -00019816 53.12083817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268a0 -00019817 53.12086487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b0 -00019818 53.12086868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b0 -00019819 53.12089157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c0 -00019820 53.12089539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c0 -00019821 53.12092209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d0 -00019822 53.12092590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d0 -00019823 53.12094879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e0 -00019824 53.12095261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e0 -00019825 53.12097931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f0 -00019826 53.12098312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f0 -00019827 53.12100983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26900 -00019828 53.12100983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26900 -00019829 53.12104034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26910 -00019830 53.12104416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26910 -00019831 53.12106705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26920 -00019832 53.12107086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26920 -00019833 53.12109756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26930 -00019834 53.12110138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26930 -00019835 53.12112808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26940 -00019836 53.12112808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26940 -00019837 53.12115479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26950 -00019838 53.12115479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26950 -00019839 53.12118530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26960 -00019840 53.12118530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26960 -00019841 53.12121201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26970 -00019842 53.12121201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26970 -00019843 53.12124252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26980 -00019844 53.12124252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26980 -00019845 53.12126923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26990 -00019846 53.12127304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26990 -00019847 53.12129974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269a0 -00019848 53.12129974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269a0 -00019849 53.12132645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269b0 -00019850 53.12133026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269b0 -00019851 53.12135696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269c0 -00019852 53.12136078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269c0 -00019853 53.12138748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269d0 -00019854 53.12138748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269d0 -00019855 53.12141418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269e0 -00019856 53.12141800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269e0 -00019857 53.12144470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269f0 -00019858 53.12144470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x269f0 -00019859 53.12147141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a00 -00019860 53.12147522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a00 -00019861 53.12150192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a10 -00019862 53.12150574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a10 -00019863 53.12152863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a20 -00019864 53.12153244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a20 -00019865 53.12155914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a30 -00019866 53.12156296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a30 -00019867 53.12158585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a40 -00019868 53.12158966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a40 -00019869 53.12161636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a50 -00019870 53.12162018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a50 -00019871 53.12164307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a60 -00019872 53.12164688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a60 -00019873 53.12167358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a70 -00019874 53.12167740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a70 -00019875 53.12170410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a80 -00019876 53.12170410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a80 -00019877 53.12173462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a90 -00019878 53.12173462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a90 -00019879 53.12176132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26aa0 -00019880 53.12176132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26aa0 -00019881 53.12179184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ab0 -00019882 53.12179565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ab0 -00019883 53.12182236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ac0 -00019884 53.12182236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ac0 -00019885 53.12184906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ad0 -00019886 53.12185287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ad0 -00019887 53.12187958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ae0 -00019888 53.12188339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ae0 -00019889 53.12190628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26af0 -00019890 53.12191010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26af0 -00019891 53.12193680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b00 -00019892 53.12194061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b00 -00019893 53.12196350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b10 -00019894 53.12196732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b10 -00019895 53.12199402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b20 -00019896 53.12199783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b20 -00019897 53.12202072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b30 -00019898 53.12202454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b30 -00019899 53.12205505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b40 -00019900 53.12205505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b40 -00019901 53.12208176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b50 -00019902 53.12208176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b50 -00019903 53.12210846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b60 -00019904 53.12211227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b60 -00019905 53.12213898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b70 -00019906 53.12213898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b70 -00019907 53.12216949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b80 -00019908 53.12217331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b80 -00019909 53.12220001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b90 -00019910 53.12220001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b90 -00019911 53.12222672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ba0 -00019912 53.12223053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ba0 -00019913 53.12225723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bb0 -00019914 53.12226105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bb0 -00019915 53.12228394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bc0 -00019916 53.12228775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bc0 -00019917 53.12231445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bd0 -00019918 53.12231827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bd0 -00019919 53.12234116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26be0 -00019920 53.12234497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26be0 -00019921 53.12237549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bf0 -00019922 53.12237549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bf0 -00019923 53.12240219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c00 -00019924 53.12240219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c00 -00019925 53.12243271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c10 -00019926 53.12243271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c10 -00019927 53.12245941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c20 -00019928 53.12246323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c20 -00019929 53.12248993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c30 -00019930 53.12249374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c30 -00019931 53.12251663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c40 -00019932 53.12252045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c40 -00019933 53.12254715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c50 -00019934 53.12255096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c50 -00019935 53.12257767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c60 -00019936 53.12257767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c60 -00019937 53.12260437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c70 -00019938 53.12260818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c70 -00019939 53.12263489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c80 -00019940 53.12263870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c80 -00019941 53.12266159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c90 -00019942 53.12266541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c90 -00019943 53.12269211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ca0 -00019944 53.12269592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ca0 -00019945 53.12271881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cb0 -00019946 53.12272263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cb0 -00019947 53.12274933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cc0 -00019948 53.12275314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cc0 -00019949 53.12277603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cd0 -00019950 53.12277985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cd0 -00019951 53.12281036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ce0 -00019952 53.12281418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ce0 -00019953 53.12283707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cf0 -00019954 53.12284088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cf0 -00019955 53.12286758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d00 -00019956 53.12287140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d00 -00019957 53.12289429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d10 -00019958 53.12289810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d10 -00019959 53.12292480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d20 -00019960 53.12292862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d20 -00019961 53.12295532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d30 -00019962 53.12295532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d30 -00019963 53.12298203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d40 -00019964 53.12298203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d40 -00019965 53.12301254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d50 -00019966 53.12301254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d50 -00019967 53.12303925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d60 -00019968 53.12304306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d60 -00019969 53.12306976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d70 -00019970 53.12307358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d70 -00019971 53.12309647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d80 -00019972 53.12310028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d80 -00019973 53.12312698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d90 -00019974 53.12313080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d90 -00019975 53.12315369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da0 -00019976 53.12315750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da0 -00019977 53.12318420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db0 -00019978 53.12318802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db0 -00019979 53.12321091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dc0 -00019980 53.12321472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dc0 -00019981 53.12324142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd0 -00019982 53.12324524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd0 -00019983 53.12327194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de0 -00019984 53.12327194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de0 -00019985 53.12329865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df0 -00019986 53.12330246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df0 -00019987 53.12332916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e00 -00019988 53.12333298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e00 -00019989 53.12335587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e10 -00019990 53.12335968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e10 -00019991 53.12338638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e20 -00019992 53.12339020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e20 -00019993 53.12341690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e30 -00019994 53.12342072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e30 -00019995 53.12344742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e40 -00019996 53.12345123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e40 -00019997 53.12347412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e50 -00019998 53.12347794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e50 -00019999 53.12350464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e60 -00020000 53.12350845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e60 -00020001 53.12353134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e70 -00020002 53.12353516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e70 -00020003 53.12356186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e80 -00020004 53.12356567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e80 -00020005 53.12358856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e90 -00020006 53.12359238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e90 -00020007 53.12361908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea0 -00020008 53.12362289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea0 -00020009 53.12364960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb0 -00020010 53.12364960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb0 -00020011 53.12367630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec0 -00020012 53.12368011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec0 -00020013 53.12370682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed0 -00020014 53.12371063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed0 -00020015 53.12373352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee0 -00020016 53.12373734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee0 -00020017 53.12376785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef0 -00020018 53.12376785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef0 -00020019 53.12379456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f00 -00020020 53.12379456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f00 -00020021 53.12382507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f10 -00020022 53.12382507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f10 -00020023 53.12385178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f20 -00020024 53.12385178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f20 -00020025 53.12388229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f30 -00020026 53.12388611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f30 -00020027 53.12390900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f40 -00020028 53.12390900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f40 -00020029 53.12393951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f50 -00020030 53.12394333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f50 -00020031 53.12396622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f60 -00020032 53.12397003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f60 -00020033 53.12399673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f70 -00020034 53.12400055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f70 -00020035 53.12402725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f80 -00020036 53.12402725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f80 -00020037 53.12405396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f90 -00020038 53.12405777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f90 -00020039 53.12408447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fa0 -00020040 53.12408829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fa0 -00020041 53.12411118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fb0 -00020042 53.12411499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fb0 -00020043 53.12414169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fc0 -00020044 53.12414551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fc0 -00020045 53.12416840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fd0 -00020046 53.12417221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fd0 -00020047 53.12420273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fe0 -00020048 53.12420654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fe0 -00020049 53.12422943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ff0 -00020050 53.12422943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ff0 -00020051 53.12425613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27000 -00020052 53.12425995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27000 -00020053 53.12428665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -00020054 53.12428665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -00020055 53.12431717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -00020056 53.12432098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -00020057 53.12434387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -00020058 53.12434387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -00020059 53.12437439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -00020060 53.12437439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -00020061 53.12440491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -00020062 53.12440491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -00020063 53.12443161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -00020064 53.12443542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -00020065 53.12446213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -00020066 53.12446213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -00020067 53.12448883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27080 -00020068 53.12449265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27080 -00020069 53.12451935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27090 -00020070 53.12452316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27090 -00020071 53.12454605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a0 -00020072 53.12454987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a0 -00020073 53.12457657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b0 -00020074 53.12458038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b0 -00020075 53.12460327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -00020076 53.12460709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -00020077 53.12463379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -00020078 53.12463760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -00020079 53.12466431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -00020080 53.12466431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -00020081 53.12469482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -00020082 53.12469864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -00020083 53.12472153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -00020084 53.12472534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -00020085 53.12475204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -00020086 53.12475586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -00020087 53.12478256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -00020088 53.12478256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -00020089 53.12481308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -00020090 53.12481308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -00020091 53.12483978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -00020092 53.12483978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -00020093 53.12487030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -00020094 53.12487411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -00020095 53.12490082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -00020096 53.12490082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -00020097 53.12492752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -00020098 53.12492752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -00020099 53.12495804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -00020100 53.12496185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -00020101 53.12498474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -00020102 53.12498856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -00020103 53.12501526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -00020104 53.12501907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -00020105 53.12504196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -00020106 53.12504578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -00020107 53.12507248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -00020108 53.12507629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -00020109 53.12509918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -00020110 53.12510300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -00020111 53.12513351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -00020112 53.12513351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -00020113 53.12516022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271f0 -00020114 53.12516403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x271f0 -00020115 53.12519073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27200 -00020116 53.12519455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27200 -00020117 53.12521744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27210 -00020118 53.12522125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27210 -00020119 53.12524796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27220 -00020120 53.12525177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27220 -00020121 53.12527847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27230 -00020122 53.12527847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27230 -00020123 53.12530518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27240 -00020124 53.12530899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27240 -00020125 53.12533569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27250 -00020126 53.12533569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27250 -00020127 53.12536240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27260 -00020128 53.12536621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27260 -00020129 53.12539291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27270 -00020130 53.12539673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27270 -00020131 53.12541962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27280 -00020132 53.12542343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27280 -00020133 53.12545013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27290 -00020134 53.12545395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27290 -00020135 53.12548065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a0 -00020136 53.12548065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a0 -00020137 53.12551117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b0 -00020138 53.12551498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b0 -00020139 53.12554932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c0 -00020140 53.12555313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c0 -00020141 53.12557602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d0 -00020142 53.12557983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d0 -00020143 53.12560654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e0 -00020144 53.12561035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e0 -00020145 53.12563705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f0 -00020146 53.12563705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f0 -00020147 53.12566376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27300 -00020148 53.12566757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27300 -00020149 53.12569427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27310 -00020150 53.12569427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27310 -00020151 53.12572098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27320 -00020152 53.12572479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27320 -00020153 53.12575150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27330 -00020154 53.12575531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27330 -00020155 53.12577820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27340 -00020156 53.12578201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27340 -00020157 53.12580872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27350 -00020158 53.12581253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27350 -00020159 53.12583542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27360 -00020160 53.12583923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27360 -00020161 53.12586594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27370 -00020162 53.12586975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27370 -00020163 53.12589264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27380 -00020164 53.12589645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27380 -00020165 53.12592697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27390 -00020166 53.12593079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27390 -00020167 53.12595367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a0 -00020168 53.12595749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a0 -00020169 53.12598419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b0 -00020170 53.12598801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b0 -00020171 53.12601089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c0 -00020172 53.12601471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c0 -00020173 53.12604141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d0 -00020174 53.12604523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d0 -00020175 53.12607193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e0 -00020176 53.12607193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e0 -00020177 53.12609863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f0 -00020178 53.12610245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f0 -00020179 53.12612915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27400 -00020180 53.12613297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27400 -00020181 53.12615585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27410 -00020182 53.12615967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27410 -00020183 53.12618637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27420 -00020184 53.12619019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27420 -00020185 53.12621307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27430 -00020186 53.12621307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27430 -00020187 53.12624359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27440 -00020188 53.12624741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27440 -00020189 53.12627029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27450 -00020190 53.12627411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27450 -00020191 53.12630081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27460 -00020192 53.12630463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27460 -00020193 53.12633133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27470 -00020194 53.12633133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27470 -00020195 53.12635803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27480 -00020196 53.12636185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27480 -00020197 53.12638855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27490 -00020198 53.12638855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27490 -00020199 53.12641525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a0 -00020200 53.12641907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a0 -00020201 53.12644577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b0 -00020202 53.12644958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b0 -00020203 53.12647247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c0 -00020204 53.12647629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c0 -00020205 53.12650299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d0 -00020206 53.12650681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d0 -00020207 53.12652969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e0 -00020208 53.12653351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e0 -00020209 53.12656021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f0 -00020210 53.12656403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f0 -00020211 53.12658691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27500 -00020212 53.12659073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27500 -00020213 53.12662125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27510 -00020214 53.12662506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27510 -00020215 53.12664795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27520 -00020216 53.12665176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27520 -00020217 53.12667847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27530 -00020218 53.12668228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27530 -00020219 53.12670898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27540 -00020220 53.12670898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27540 -00020221 53.12673569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27550 -00020222 53.12673950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27550 -00020223 53.12676620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27560 -00020224 53.12676620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27560 -00020225 53.12679291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27570 -00020226 53.12679672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27570 -00020227 53.12682343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27580 -00020228 53.12682724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27580 -00020229 53.12685013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27590 -00020230 53.12685394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27590 -00020231 53.12688065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a0 -00020232 53.12688446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a0 -00020233 53.12690735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b0 -00020234 53.12691116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b0 -00020235 53.12693787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c0 -00020236 53.12694168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c0 -00020237 53.12696838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d0 -00020238 53.12696838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d0 -00020239 53.12699890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e0 -00020240 53.12700272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e0 -00020241 53.12702560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f0 -00020242 53.12702942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f0 -00020243 53.12705612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27600 -00020244 53.12705994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27600 -00020245 53.12708664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27610 -00020246 53.12708664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27610 -00020247 53.12711334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27620 -00020248 53.12711716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27620 -00020249 53.12714386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27630 -00020250 53.12714386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27630 -00020251 53.12717056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27640 -00020252 53.12717438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27640 -00020253 53.12720108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27650 -00020254 53.12720490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27650 -00020255 53.12722778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27660 -00020256 53.12723160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27660 -00020257 53.12725830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27670 -00020258 53.12726212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27670 -00020259 53.12728500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27680 -00020260 53.12728882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27680 -00020261 53.12731934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27690 -00020262 53.12732315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27690 -00020263 53.12734604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276a0 -00020264 53.12734985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276a0 -00020265 53.12737656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276b0 -00020266 53.12738037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276b0 -00020267 53.12740326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276c0 -00020268 53.12740707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276c0 -00020269 53.12743378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276d0 -00020270 53.12743759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276d0 -00020271 53.12746429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276e0 -00020272 53.12746429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276e0 -00020273 53.12749100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276f0 -00020274 53.12749481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x276f0 -00020275 53.12752151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27700 -00020276 53.12752151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27700 -00020277 53.12754822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27710 -00020278 53.12755203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27710 -00020279 53.12757874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27720 -00020280 53.12758255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27720 -00020281 53.12760544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27730 -00020282 53.12760925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27730 -00020283 53.12763596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27740 -00020284 53.12763977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27740 -00020285 53.12766266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27750 -00020286 53.12766647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27750 -00020287 53.12769318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27760 -00020288 53.12769699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27760 -00020289 53.12771988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27770 -00020290 53.12772369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27770 -00020291 53.12775040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27780 -00020292 53.12775421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27780 -00020293 53.12778091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27790 -00020294 53.12778091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27790 -00020295 53.12780762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a0 -00020296 53.12781143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a0 -00020297 53.12783813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b0 -00020298 53.12783813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b0 -00020299 53.12786865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c0 -00020300 53.12786865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c0 -00020301 53.12789917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277d0 -00020302 53.12789917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277d0 -00020303 53.12792587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277e0 -00020304 53.12792969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277e0 -00020305 53.12795639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277f0 -00020306 53.12796021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x277f0 -00020307 53.12798309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27800 -00020308 53.12798691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27800 -00020309 53.12801743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27810 -00020310 53.12801743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27810 -00020311 53.12804413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27820 -00020312 53.12804794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27820 -00020313 53.12807465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27830 -00020314 53.12807846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27830 -00020315 53.12810135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27840 -00020316 53.12810516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27840 -00020317 53.12813187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27850 -00020318 53.12813568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27850 -00020319 53.12815857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27860 -00020320 53.12816238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27860 -00020321 53.12818909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27870 -00020322 53.12819290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27870 -00020323 53.12821579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27880 -00020324 53.12821960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27880 -00020325 53.12825012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27890 -00020326 53.12825394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27890 -00020327 53.12827682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278a0 -00020328 53.12828064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278a0 -00020329 53.12830734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278b0 -00020330 53.12831116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278b0 -00020331 53.12833786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278c0 -00020332 53.12833786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278c0 -00020333 53.12836456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278d0 -00020334 53.12836838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278d0 -00020335 53.12839508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278e0 -00020336 53.12839508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278e0 -00020337 53.12842178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278f0 -00020338 53.12842560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x278f0 -00020339 53.12845230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27900 -00020340 53.12845612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27900 -00020341 53.12848282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27910 -00020342 53.12848282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27910 -00020343 53.12850952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27920 -00020344 53.12851334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27920 -00020345 53.12853622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27930 -00020346 53.12854004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27930 -00020347 53.12856674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27940 -00020348 53.12857056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27940 -00020349 53.12859344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27950 -00020350 53.12859726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27950 -00020351 53.12862396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27960 -00020352 53.12862778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27960 -00020353 53.12865448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27970 -00020354 53.12865448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27970 -00020355 53.12868500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27980 -00020356 53.12868881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27980 -00020357 53.12871170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27990 -00020358 53.12871552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27990 -00020359 53.12874222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279a0 -00020360 53.12874603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279a0 -00020361 53.12877274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279b0 -00020362 53.12877274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279b0 -00020363 53.12879944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279c0 -00020364 53.12880325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279c0 -00020365 53.12882996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279d0 -00020366 53.12883377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279d0 -00020367 53.12885666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279e0 -00020368 53.12886047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279e0 -00020369 53.12888718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279f0 -00020370 53.12889099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x279f0 -00020371 53.12891388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a00 -00020372 53.12891769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a00 -00020373 53.12894440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a10 -00020374 53.12894821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a10 -00020375 53.12897110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a20 -00020376 53.12897491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a20 -00020377 53.12900162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a30 -00020378 53.12900543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a30 -00020379 53.12903214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a40 -00020380 53.12903214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a40 -00020381 53.12906265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a50 -00020382 53.12906647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a50 -00020383 53.12908936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a60 -00020384 53.12909317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a60 -00020385 53.12911987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a70 -00020386 53.12912369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a70 -00020387 53.12915039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a80 -00020388 53.12915039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a80 -00020389 53.12917709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a90 -00020390 53.12918091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a90 -00020391 53.12920761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27aa0 -00020392 53.12921143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27aa0 -00020393 53.12923431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ab0 -00020394 53.12923813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ab0 -00020395 53.12926483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac0 -00020396 53.12926865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac0 -00020397 53.12929535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad0 -00020398 53.12929535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad0 -00020399 53.12932587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae0 -00020400 53.12932587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae0 -00020401 53.12935257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af0 -00020402 53.12935638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af0 -00020403 53.12938309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b00 -00020404 53.12938690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b00 -00020405 53.12940979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b10 -00020406 53.12941360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b10 -00020407 53.12944031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b20 -00020408 53.12944412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b20 -00020409 53.12946701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b30 -00020410 53.12947083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b30 -00020411 53.12949753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b40 -00020412 53.12950134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b40 -00020413 53.12952805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b50 -00020414 53.12952805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b50 -00020415 53.12955475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b60 -00020416 53.12955856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b60 -00020417 53.12958527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b70 -00020418 53.12958908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b70 -00020419 53.12961197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b80 -00020420 53.12961578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b80 -00020421 53.12964249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b90 -00020422 53.12964630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b90 -00020423 53.12966919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ba0 -00020424 53.12967300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ba0 -00020425 53.12970352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bb0 -00020426 53.12970352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bb0 -00020427 53.12972641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bc0 -00020428 53.12973022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bc0 -00020429 53.12976074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bd0 -00020430 53.12976074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bd0 -00020431 53.12978745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27be0 -00020432 53.12978745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27be0 -00020433 53.12981415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bf0 -00020434 53.12981796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bf0 -00020435 53.12984467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c00 -00020436 53.12984467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c00 -00020437 53.12987137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c10 -00020438 53.12987518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c10 -00020439 53.12990189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c20 -00020440 53.12990570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c20 -00020441 53.12993240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c30 -00020442 53.12993240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c30 -00020443 53.12995911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c40 -00020444 53.12996292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c40 -00020445 53.12998581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c50 -00020446 53.12998962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c50 -00020447 53.13001633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c60 -00020448 53.13002014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c60 -00020449 53.13004684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c70 -00020450 53.13005066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c70 -00020451 53.13007736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c80 -00020452 53.13008118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c80 -00020453 53.13010406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c90 -00020454 53.13010788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c90 -00020455 53.13013458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ca0 -00020456 53.13013840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ca0 -00020457 53.13016510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cb0 -00020458 53.13016510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cb0 -00020459 53.13019180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cc0 -00020460 53.13019562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cc0 -00020461 53.13022232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cd0 -00020462 53.13022232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cd0 -00020463 53.13024902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ce0 -00020464 53.13025284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ce0 -00020465 53.13027954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cf0 -00020466 53.13028336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cf0 -00020467 53.13030624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d00 -00020468 53.13031006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d00 -00020469 53.13034058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d10 -00020470 53.13034058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d10 -00020471 53.13036728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d20 -00020472 53.13036728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d20 -00020473 53.13039780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d30 -00020474 53.13040161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d30 -00020475 53.13042450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d40 -00020476 53.13042831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d40 -00020477 53.13045502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d50 -00020478 53.13045883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d50 -00020479 53.13048172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d60 -00020480 53.13048553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d60 -00020481 53.13051224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d70 -00020482 53.13051605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d70 -00020483 53.13053894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d80 -00020484 53.13054276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d80 -00020485 53.13056946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d90 -00020486 53.13057327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d90 -00020487 53.13059998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da0 -00020488 53.13059998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da0 -00020489 53.13062668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db0 -00020490 53.13063049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db0 -00020491 53.13065720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc0 -00020492 53.13066101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc0 -00020493 53.13068390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd0 -00020494 53.13068771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd0 -00020495 53.13071442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de0 -00020496 53.13071823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de0 -00020497 53.13074493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df0 -00020498 53.13074493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df0 -00020499 53.13077545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e00 -00020500 53.13077927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e00 -00020501 53.13080215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e10 -00020502 53.13080597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e10 -00020503 53.13083267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e20 -00020504 53.13083267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e20 -00020505 53.13085938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e30 -00020506 53.13086319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e30 -00020507 53.13088989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e40 -00020508 53.13089371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e40 -00020509 53.13091660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e50 -00020510 53.13092041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e50 -00020511 53.13094711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e60 -00020512 53.13095093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e60 -00020513 53.13097763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e70 -00020514 53.13097763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e70 -00020515 53.13100433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e80 -00020516 53.13100815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e80 -00020517 53.13103485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e90 -00020518 53.13103867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e90 -00020519 53.13106155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea0 -00020520 53.13106537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea0 -00020521 53.13109207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb0 -00020522 53.13109589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb0 -00020523 53.13111877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec0 -00020524 53.13112259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec0 -00020525 53.13114929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ed0 -00020526 53.13115311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ed0 -00020527 53.13117599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ee0 -00020528 53.13117981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ee0 -00020529 53.13121033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ef0 -00020530 53.13121414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ef0 -00020531 53.13123703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f00 -00020532 53.13124084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f00 -00020533 53.13126755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f10 -00020534 53.13127136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f10 -00020535 53.13129425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f20 -00020536 53.13129425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f20 -00020537 53.13132477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f30 -00020538 53.13132858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f30 -00020539 53.13135529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f40 -00020540 53.13135529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f40 -00020541 53.13138199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f50 -00020542 53.13138199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f50 -00020543 53.13141251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f60 -00020544 53.13141251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f60 -00020545 53.13143921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f70 -00020546 53.13144302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f70 -00020547 53.13146973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f80 -00020548 53.13147354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f80 -00020549 53.13149643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f90 -00020550 53.13150024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f90 -00020551 53.13152695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa0 -00020552 53.13153076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa0 -00020553 53.13155365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb0 -00020554 53.13155746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb0 -00020555 53.13158417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fc0 -00020556 53.13158798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fc0 -00020557 53.13161469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fd0 -00020558 53.13161469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fd0 -00020559 53.13164139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe0 -00020560 53.13164520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe0 -00020561 53.13167191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff0 -00020562 53.13167191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff0 -00020563 53.13169861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28000 -00020564 53.13170242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28000 -00020565 53.13172913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28010 -00020566 53.13173294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28010 -00020567 53.13175583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28020 -00020568 53.13175583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28020 -00020569 53.13178253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28030 -00020570 53.13178635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28030 -00020571 53.13181305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28040 -00020572 53.13181305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28040 -00020573 53.13183975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28050 -00020574 53.13184357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28050 -00020575 53.13187027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28060 -00020576 53.13187027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28060 -00020577 53.13189697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28070 -00020578 53.13190079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28070 -00020579 53.13192749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28080 -00020580 53.13193130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28080 -00020581 53.13196564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28090 -00020582 53.13196945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28090 -00020583 53.13200378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a0 -00020584 53.13201141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a0 -00020585 53.13204193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b0 -00020586 53.13204575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b0 -00020587 53.13208008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c0 -00020588 53.13208389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c0 -00020589 53.13212585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d0 -00020590 53.13212967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d0 -00020591 53.13216019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e0 -00020592 53.13216400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e0 -00020593 53.13219070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f0 -00020594 53.13219833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f0 -00020595 53.13222885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28100 -00020596 53.13223648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28100 -00020597 53.13227844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28110 -00020598 53.13228226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28110 -00020599 53.13232422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28120 -00020600 53.13232803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28120 -00020601 53.13236618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28130 -00020602 53.13237000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28130 -00020603 53.13241196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28140 -00020604 53.13241577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28140 -00020605 53.13245392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28150 -00020606 53.13246155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28150 -00020607 53.13249969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28160 -00020608 53.13250351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28160 -00020609 53.13254547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28170 -00020610 53.13254547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28170 -00020611 53.13258743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28180 -00020612 53.13258743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28180 -00020613 53.13262939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28190 -00020614 53.13263321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28190 -00020615 53.13267517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281a0 -00020616 53.13267899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281a0 -00020617 53.13271713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281b0 -00020618 53.13272476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281b0 -00020619 53.13276291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281c0 -00020620 53.13276672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281c0 -00020621 53.13280869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281d0 -00020622 53.13281250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281d0 -00020623 53.13285446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281e0 -00020624 53.13285828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281e0 -00020625 53.13289642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281f0 -00020626 53.13290405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x281f0 -00020627 53.13294220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28200 -00020628 53.13294220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28200 -00020629 53.13298416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28210 -00020630 53.13298798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28210 -00020631 53.13302612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28220 -00020632 53.13303375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28220 -00020633 53.13306808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28230 -00020634 53.13307190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28230 -00020635 53.13311005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28240 -00020636 53.13311768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28240 -00020637 53.13315582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28250 -00020638 53.13315964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28250 -00020639 53.13319778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28260 -00020640 53.13320160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28260 -00020641 53.13323975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28270 -00020642 53.13324356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28270 -00020643 53.13328552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28280 -00020644 53.13328934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28280 -00020645 53.13333130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28290 -00020646 53.13333511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28290 -00020647 53.13337326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282a0 -00020648 53.13337708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282a0 -00020649 53.13341904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282b0 -00020650 53.13341904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282b0 -00020651 53.13346100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282c0 -00020652 53.13346481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282c0 -00020653 53.13350677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282d0 -00020654 53.13351059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282d0 -00020655 53.13354874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282e0 -00020656 53.13355637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282e0 -00020657 53.13359451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282f0 -00020658 53.13359833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x282f0 -00020659 53.13364029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28300 -00020660 53.13364029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28300 -00020661 53.13367844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28310 -00020662 53.13368225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28310 -00020663 53.13372421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28320 -00020664 53.13372803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28320 -00020665 53.13376617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28330 -00020666 53.13376999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28330 -00020667 53.13381195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28340 -00020668 53.13381577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28340 -00020669 53.13385773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28350 -00020670 53.13386154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28350 -00020671 53.13389969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28360 -00020672 53.13390732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28360 -00020673 53.13394547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28370 -00020674 53.13394928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28370 -00020675 53.13399124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00020676 53.13399506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00020677 53.13403320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00020678 53.13403702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00020679 53.13407898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00020680 53.13408279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00020681 53.13412476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00020682 53.13412857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00020683 53.13417053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00020684 53.13417435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00020685 53.13421249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00020686 53.13422012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00020687 53.13426208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e0 -00020688 53.13426590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e0 -00020689 53.13430405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f0 -00020690 53.13431168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f0 -00020691 53.13434982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28400 -00020692 53.13435364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28400 -00020693 53.13439178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28410 -00020694 53.13439941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28410 -00020695 53.13443756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28420 -00020696 53.13444519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28420 -00020697 53.13448334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28430 -00020698 53.13448715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28430 -00020699 53.13452911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28440 -00020700 53.13453293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28440 -00020701 53.13457108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28450 -00020702 53.13457870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28450 -00020703 53.13462067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28460 -00020704 53.13462448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28460 -00020705 53.13466644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28470 -00020706 53.13467026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28470 -00020707 53.13471222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28480 -00020708 53.13471222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28480 -00020709 53.13475418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28490 -00020710 53.13475800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28490 -00020711 53.13479996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a0 -00020712 53.13480377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a0 -00020713 53.13484573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b0 -00020714 53.13484955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b0 -00020715 53.13488770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284c0 -00020716 53.13489151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284c0 -00020717 53.13492966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284d0 -00020718 53.13493729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284d0 -00020719 53.13497543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284e0 -00020720 53.13497925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284e0 -00020721 53.13502121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284f0 -00020722 53.13502502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x284f0 -00020723 53.13506699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28500 -00020724 53.13506699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28500 -00020725 53.13510895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28510 -00020726 53.13511276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28510 -00020727 53.13515091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28520 -00020728 53.13515854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28520 -00020729 53.13519669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28530 -00020730 53.13520432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28530 -00020731 53.13524246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28540 -00020732 53.13524628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28540 -00020733 53.13528061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28550 -00020734 53.13528442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28550 -00020735 53.13531113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28560 -00020736 53.13531494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28560 -00020737 53.13534164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28570 -00020738 53.13534546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28570 -00020739 53.13536835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28580 -00020740 53.13537216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28580 -00020741 53.13539886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28590 -00020742 53.13540268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28590 -00020743 53.13542557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285a0 -00020744 53.13542938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285a0 -00020745 53.13545609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285b0 -00020746 53.13545609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285b0 -00020747 53.13548279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285c0 -00020748 53.13548660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285c0 -00020749 53.13550949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285d0 -00020750 53.13551331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285d0 -00020751 53.13554001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285e0 -00020752 53.13554382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285e0 -00020753 53.13556671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f0 -00020754 53.13557053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f0 -00020755 53.13559723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28600 -00020756 53.13560104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28600 -00020757 53.13562393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28610 -00020758 53.13562775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28610 -00020759 53.13565445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28620 -00020760 53.13565826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28620 -00020761 53.13568497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28630 -00020762 53.13568497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28630 -00020763 53.13571167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28640 -00020764 53.13571167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28640 -00020765 53.13574219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28650 -00020766 53.13574219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28650 -00020767 53.13576508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28660 -00020768 53.13576889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28660 -00020769 53.13579559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28670 -00020770 53.13579941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28670 -00020771 53.13582230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28680 -00020772 53.13582611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28680 -00020773 53.13585281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28690 -00020774 53.13585663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28690 -00020775 53.13588333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286a0 -00020776 53.13588333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286a0 -00020777 53.13591003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286b0 -00020778 53.13591385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286b0 -00020779 53.13594055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286c0 -00020780 53.13594055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286c0 -00020781 53.13596725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286d0 -00020782 53.13596725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286d0 -00020783 53.13600159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286e0 -00020784 53.13600159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286e0 -00020785 53.13603973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286f0 -00020786 53.13603973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x286f0 -00020787 53.13608170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28700 -00020788 53.13608170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28700 -00020789 53.13612366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28710 -00020790 53.13612747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28710 -00020791 53.13616943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28720 -00020792 53.13617325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28720 -00020793 53.13621521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28730 -00020794 53.13621902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28730 -00020795 53.13625717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28740 -00020796 53.13626099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28740 -00020797 53.13629913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28750 -00020798 53.13629913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28750 -00020799 53.13634109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28760 -00020800 53.13634109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28760 -00020801 53.13637924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28770 -00020802 53.13638687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28770 -00020803 53.13642502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28780 -00020804 53.13642883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28780 -00020805 53.13645554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28790 -00020806 53.13645935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28790 -00020807 53.13648224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a0 -00020808 53.13648605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a0 -00020809 53.13651276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b0 -00020810 53.13651657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b0 -00020811 53.13653946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c0 -00020812 53.13654327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c0 -00020813 53.13656998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d0 -00020814 53.13657379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d0 -00020815 53.13659668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e0 -00020816 53.13660049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e0 -00020817 53.13662720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f0 -00020818 53.13663101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f0 -00020819 53.13665771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28800 -00020820 53.13665771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28800 -00020821 53.13668442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28810 -00020822 53.13668823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28810 -00020823 53.13671494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28820 -00020824 53.13671494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28820 -00020825 53.13674164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28830 -00020826 53.13674164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28830 -00020827 53.13677216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28840 -00020828 53.13677216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28840 -00020829 53.13679504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28850 -00020830 53.13679886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28850 -00020831 53.13682556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28860 -00020832 53.13682938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28860 -00020833 53.13685608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28870 -00020834 53.13685608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28870 -00020835 53.13688278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28880 -00020836 53.13688660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28880 -00020837 53.13691330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28890 -00020838 53.13691330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28890 -00020839 53.13694000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a0 -00020840 53.13694382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a0 -00020841 53.13697052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b0 -00020842 53.13697433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b0 -00020843 53.13699722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c0 -00020844 53.13700104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c0 -00020845 53.13702774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d0 -00020846 53.13702774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d0 -00020847 53.13705444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e0 -00020848 53.13705444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e0 -00020849 53.13708115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f0 -00020850 53.13708496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f0 -00020851 53.13711166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28900 -00020852 53.13711548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28900 -00020853 53.13713837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28910 -00020854 53.13714218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28910 -00020855 53.13716888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28920 -00020856 53.13717270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28920 -00020857 53.13719559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28930 -00020858 53.13719940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28930 -00020859 53.13722610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28940 -00020860 53.13722992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28940 -00020861 53.13725281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28950 -00020862 53.13725662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28950 -00020863 53.13728333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28960 -00020864 53.13728714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28960 -00020865 53.13731384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28970 -00020866 53.13731384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28970 -00020867 53.13733673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28980 -00020868 53.13734055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28980 -00020869 53.13736725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28990 -00020870 53.13737106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28990 -00020871 53.13739395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a0 -00020872 53.13739777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a0 -00020873 53.13742447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b0 -00020874 53.13742828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b0 -00020875 53.13745117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c0 -00020876 53.13745499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c0 -00020877 53.13748169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d0 -00020878 53.13748550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d0 -00020879 53.13751221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -00020880 53.13751221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -00020881 53.13753891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -00020882 53.13754272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -00020883 53.13756943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -00020884 53.13756943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -00020885 53.13759613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -00020886 53.13759995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -00020887 53.13762665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -00020888 53.13763046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -00020889 53.13765335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -00020890 53.13765717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -00020891 53.13768387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -00020892 53.13768768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -00020893 53.13771057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -00020894 53.13771057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -00020895 53.13774109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a60 -00020896 53.13774109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a60 -00020897 53.13776779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a70 -00020898 53.13776779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a70 -00020899 53.13779449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a80 -00020900 53.13779831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a80 -00020901 53.13782501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a90 -00020902 53.13782883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a90 -00020903 53.13785172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28aa0 -00020904 53.13785553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28aa0 -00020905 53.13788605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ab0 -00020906 53.13788986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ab0 -00020907 53.13791656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ac0 -00020908 53.13791656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ac0 -00020909 53.13794327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ad0 -00020910 53.13794708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ad0 -00020911 53.13796997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ae0 -00020912 53.13797379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ae0 -00020913 53.13800049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28af0 -00020914 53.13800430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28af0 -00020915 53.13802719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b00 -00020916 53.13803101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b00 -00020917 53.13805771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b10 -00020918 53.13806152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b10 -00020919 53.13808823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b20 -00020920 53.13808823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b20 -00020921 53.13811493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b30 -00020922 53.13811874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b30 -00020923 53.13814545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b40 -00020924 53.13814545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b40 -00020925 53.13817215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b50 -00020926 53.13817215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b50 -00020927 53.13819885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b60 -00020928 53.13820267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b60 -00020929 53.13822556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b70 -00020930 53.13822937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b70 -00020931 53.13825607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b80 -00020932 53.13825989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b80 -00020933 53.13828659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b90 -00020934 53.13828659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b90 -00020935 53.13831329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ba0 -00020936 53.13831711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ba0 -00020937 53.13834381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bb0 -00020938 53.13834381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bb0 -00020939 53.13837051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bc0 -00020940 53.13837051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bc0 -00020941 53.13839722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bd0 -00020942 53.13840103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bd0 -00020943 53.13842392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28be0 -00020944 53.13842773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28be0 -00020945 53.13845444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bf0 -00020946 53.13845825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bf0 -00020947 53.13848495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c00 -00020948 53.13848495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c00 -00020949 53.13851166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c10 -00020950 53.13851547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c10 -00020951 53.13854218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c20 -00020952 53.13854218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c20 -00020953 53.13856888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c30 -00020954 53.13857269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c30 -00020955 53.13859940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c40 -00020956 53.13860321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c40 -00020957 53.13862610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c50 -00020958 53.13862991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c50 -00020959 53.13865662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c60 -00020960 53.13866043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c60 -00020961 53.13868332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c70 -00020962 53.13868332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c70 -00020963 53.13871384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c80 -00020964 53.13871384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c80 -00020965 53.13874054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c90 -00020966 53.13874054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c90 -00020967 53.13876724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca0 -00020968 53.13877106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca0 -00020969 53.13879776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb0 -00020970 53.13880157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb0 -00020971 53.13882446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc0 -00020972 53.13882828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc0 -00020973 53.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd0 -00020974 53.13885880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd0 -00020975 53.13888168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ce0 -00020976 53.13888550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ce0 -00020977 53.13891983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cf0 -00020978 53.13892365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cf0 -00020979 53.13895035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d00 -00020980 53.13895416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d00 -00020981 53.13898087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d10 -00020982 53.13898087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d10 -00020983 53.13900375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d20 -00020984 53.13900757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d20 -00020985 53.13903427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d30 -00020986 53.13903809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d30 -00020987 53.13906479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d40 -00020988 53.13906860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d40 -00020989 53.13909531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d50 -00020990 53.13909912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d50 -00020991 53.13912201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d60 -00020992 53.13912582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d60 -00020993 53.13915253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d70 -00020994 53.13915634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d70 -00020995 53.13917923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d80 -00020996 53.13918304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d80 -00020997 53.13920975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d90 -00020998 53.13921356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d90 -00020999 53.13924026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28da0 -00021000 53.13924026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28da0 -00021001 53.13926697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28db0 -00021002 53.13927078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28db0 -00021003 53.13929749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc0 -00021004 53.13929749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc0 -00021005 53.13932419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dd0 -00021006 53.13932800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dd0 -00021007 53.13935471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28de0 -00021008 53.13935852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28de0 -00021009 53.13938141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28df0 -00021010 53.13938141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28df0 -00021011 53.13941193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e00 -00021012 53.13941193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e00 -00021013 53.13943863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e10 -00021014 53.13944244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e10 -00021015 53.13946915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e20 -00021016 53.13946915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e20 -00021017 53.13949585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e30 -00021018 53.13949966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e30 -00021019 53.13952637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e40 -00021020 53.13953018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e40 -00021021 53.13955688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e50 -00021022 53.13956070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e50 -00021023 53.13958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e60 -00021024 53.13959122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e60 -00021025 53.13961411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e70 -00021026 53.13961792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e70 -00021027 53.13964844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e80 -00021028 53.13965225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e80 -00021029 53.13967514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e90 -00021030 53.13967896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e90 -00021031 53.13970566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea0 -00021032 53.13970947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea0 -00021033 53.13973618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb0 -00021034 53.13973999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb0 -00021035 53.13976669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec0 -00021036 53.13977051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec0 -00021037 53.13979721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed0 -00021038 53.13979721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed0 -00021039 53.13982773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee0 -00021040 53.13982773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee0 -00021041 53.13985443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef0 -00021042 53.13985443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef0 -00021043 53.13988113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f00 -00021044 53.13988495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f00 -00021045 53.13991165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f10 -00021046 53.13991547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f10 -00021047 53.13993835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f20 -00021048 53.13994217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f20 -00021049 53.13996887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f30 -00021050 53.13997269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f30 -00021051 53.13999557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f40 -00021052 53.13999939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f40 -00021053 53.14002609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f50 -00021054 53.14002991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f50 -00021055 53.14005280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f60 -00021056 53.14005661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f60 -00021057 53.14008331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f70 -00021058 53.14008713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f70 -00021059 53.14011383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f80 -00021060 53.14011383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f80 -00021061 53.14014053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f90 -00021062 53.14014435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f90 -00021063 53.14017105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa0 -00021064 53.14017105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa0 -00021065 53.14019775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb0 -00021066 53.14020157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb0 -00021067 53.14022827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc0 -00021068 53.14022827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc0 -00021069 53.14025497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fd0 -00021070 53.14025497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fd0 -00021071 53.14028168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fe0 -00021072 53.14028549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fe0 -00021073 53.14031219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -00021074 53.14031219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -00021075 53.14033890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -00021076 53.14034271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -00021077 53.14036942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -00021078 53.14036942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -00021079 53.14039612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -00021080 53.14039993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -00021081 53.14042664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -00021082 53.14043045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -00021083 53.14045334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -00021084 53.14045715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -00021085 53.14048386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -00021086 53.14048767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -00021087 53.14051056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -00021088 53.14051437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -00021089 53.14054108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -00021090 53.14054489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -00021091 53.14056778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -00021092 53.14057159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -00021093 53.14059830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -00021094 53.14060211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -00021095 53.14062881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -00021096 53.14062881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -00021097 53.14065170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290b0 -00021098 53.14065552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290b0 -00021099 53.14068222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290c0 -00021100 53.14068604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290c0 -00021101 53.14070892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290d0 -00021102 53.14071274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290d0 -00021103 53.14073944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290e0 -00021104 53.14074326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290e0 -00021105 53.14076614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290f0 -00021106 53.14076996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x290f0 -00021107 53.14079666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29100 -00021108 53.14080048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29100 -00021109 53.14082718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29110 -00021110 53.14082718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29110 -00021111 53.14085388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29120 -00021112 53.14085770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29120 -00021113 53.14088440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29130 -00021114 53.14088440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29130 -00021115 53.14091110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29140 -00021116 53.14091110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29140 -00021117 53.14094162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29150 -00021118 53.14094162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29150 -00021119 53.14096451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29160 -00021120 53.14096832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29160 -00021121 53.14099503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29170 -00021122 53.14099884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29170 -00021123 53.14102554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29180 -00021124 53.14102554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29180 -00021125 53.14105225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29190 -00021126 53.14105606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29190 -00021127 53.14108276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291a0 -00021128 53.14108658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291a0 -00021129 53.14110947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b0 -00021130 53.14111328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b0 -00021131 53.14113998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c0 -00021132 53.14114380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c0 -00021133 53.14116669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d0 -00021134 53.14117050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d0 -00021135 53.14119720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291e0 -00021136 53.14119720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291e0 -00021137 53.14122391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f0 -00021138 53.14122391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f0 -00021139 53.14125061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29200 -00021140 53.14125443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29200 -00021141 53.14128113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29210 -00021142 53.14128494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29210 -00021143 53.14130783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29220 -00021144 53.14131165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29220 -00021145 53.14133835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29230 -00021146 53.14134216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29230 -00021147 53.14136505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29240 -00021148 53.14136887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29240 -00021149 53.14139557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29250 -00021150 53.14139938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29250 -00021151 53.14142227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29260 -00021152 53.14142609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29260 -00021153 53.14145279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29270 -00021154 53.14145660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29270 -00021155 53.14148331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29280 -00021156 53.14148331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29280 -00021157 53.14151001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29290 -00021158 53.14151001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29290 -00021159 53.14153671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292a0 -00021160 53.14154053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292a0 -00021161 53.14156723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292b0 -00021162 53.14156723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292b0 -00021163 53.14159393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c0 -00021164 53.14159775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c0 -00021165 53.14162064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d0 -00021166 53.14162445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d0 -00021167 53.14165115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e0 -00021168 53.14165497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e0 -00021169 53.14168167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f0 -00021170 53.14168167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f0 -00021171 53.14170837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29300 -00021172 53.14171219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29300 -00021173 53.14173889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29310 -00021174 53.14174271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29310 -00021175 53.14176559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29320 -00021176 53.14176941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29320 -00021177 53.14179611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29330 -00021178 53.14179611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29330 -00021179 53.14181900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29340 -00021180 53.14182281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29340 -00021181 53.14184952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29350 -00021182 53.14185333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29350 -00021183 53.14188004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29360 -00021184 53.14188004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29360 -00021185 53.14190674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29370 -00021186 53.14191055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29370 -00021187 53.14193726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29380 -00021188 53.14194107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29380 -00021189 53.14196396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29390 -00021190 53.14196777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29390 -00021191 53.14199448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a0 -00021192 53.14199829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a0 -00021193 53.14202118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b0 -00021194 53.14202499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b0 -00021195 53.14205170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c0 -00021196 53.14205551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c0 -00021197 53.14207840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d0 -00021198 53.14208221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d0 -00021199 53.14210892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e0 -00021200 53.14210892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e0 -00021201 53.14213562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f0 -00021202 53.14213943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f0 -00021203 53.14216232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29400 -00021204 53.14216614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29400 -00021205 53.14219284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29410 -00021206 53.14219666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29410 -00021207 53.14221954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29420 -00021208 53.14222336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29420 -00021209 53.14225006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29430 -00021210 53.14225388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29430 -00021211 53.14227676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29440 -00021212 53.14228058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29440 -00021213 53.14230728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29450 -00021214 53.14231110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29450 -00021215 53.14233780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29460 -00021216 53.14233780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29460 -00021217 53.14236450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29470 -00021218 53.14236832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29470 -00021219 53.14239502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29480 -00021220 53.14239502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29480 -00021221 53.14242172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29490 -00021222 53.14242172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29490 -00021223 53.14245224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a0 -00021224 53.14245224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a0 -00021225 53.14247513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b0 -00021226 53.14247894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b0 -00021227 53.14250565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c0 -00021228 53.14250946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c0 -00021229 53.14253616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d0 -00021230 53.14253616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d0 -00021231 53.14256287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e0 -00021232 53.14256668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e0 -00021233 53.14259338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f0 -00021234 53.14259338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f0 -00021235 53.14262009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29500 -00021236 53.14262390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29500 -00021237 53.14265060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29510 -00021238 53.14265442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29510 -00021239 53.14267731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29520 -00021240 53.14268112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29520 -00021241 53.14270782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29530 -00021242 53.14271164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29530 -00021243 53.14273453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29540 -00021244 53.14273834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29540 -00021245 53.14276505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29550 -00021246 53.14276886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29550 -00021247 53.14279175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29560 -00021248 53.14279556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29560 -00021249 53.14282227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29570 -00021250 53.14282608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29570 -00021251 53.14285278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29580 -00021252 53.14285278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29580 -00021253 53.14287949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29590 -00021254 53.14287949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29590 -00021255 53.14290619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a0 -00021256 53.14291000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a0 -00021257 53.14293289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b0 -00021258 53.14293671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b0 -00021259 53.14296341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c0 -00021260 53.14296722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c0 -00021261 53.14299011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d0 -00021262 53.14299393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d0 -00021263 53.14302063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e0 -00021264 53.14302444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e0 -00021265 53.14305115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f0 -00021266 53.14305115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f0 -00021267 53.14307785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29600 -00021268 53.14308167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29600 -00021269 53.14310837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29610 -00021270 53.14310837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29610 -00021271 53.14313507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29620 -00021272 53.14313507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29620 -00021273 53.14316177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29630 -00021274 53.14316559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29630 -00021275 53.14319229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29640 -00021276 53.14319229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29640 -00021277 53.14321899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29650 -00021278 53.14322281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29650 -00021279 53.14324951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29660 -00021280 53.14324951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29660 -00021281 53.14327621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29670 -00021282 53.14328003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29670 -00021283 53.14330673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29680 -00021284 53.14331055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29680 -00021285 53.14333344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29690 -00021286 53.14333725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29690 -00021287 53.14336395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296a0 -00021288 53.14336777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296a0 -00021289 53.14339066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296b0 -00021290 53.14339447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296b0 -00021291 53.14342117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296c0 -00021292 53.14342499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296c0 -00021293 53.14344788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296d0 -00021294 53.14345169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296d0 -00021295 53.14347839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296e0 -00021296 53.14348221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296e0 -00021297 53.14350891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296f0 -00021298 53.14350891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x296f0 -00021299 53.14353561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29700 -00021300 53.14353943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29700 -00021301 53.14356613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29710 -00021302 53.14356613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29710 -00021303 53.14359283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29720 -00021304 53.14359665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29720 -00021305 53.14362335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29730 -00021306 53.14362335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29730 -00021307 53.14365005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29740 -00021308 53.14365005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29740 -00021309 53.14368057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29750 -00021310 53.14368057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29750 -00021311 53.14370728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29760 -00021312 53.14370728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29760 -00021313 53.14373779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29770 -00021314 53.14373779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29770 -00021315 53.14376450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29780 -00021316 53.14376450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29780 -00021317 53.14379120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29790 -00021318 53.14379501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29790 -00021319 53.14382172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a0 -00021320 53.14382553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a0 -00021321 53.14385223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b0 -00021322 53.14385223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b0 -00021323 53.14387894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c0 -00021324 53.14388275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c0 -00021325 53.14390564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297d0 -00021326 53.14390945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297d0 -00021327 53.14393616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297e0 -00021328 53.14393997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297e0 -00021329 53.14396667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297f0 -00021330 53.14396667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x297f0 -00021331 53.14399338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29800 -00021332 53.14399719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29800 -00021333 53.14402390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29810 -00021334 53.14402390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29810 -00021335 53.14405060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29820 -00021336 53.14405441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29820 -00021337 53.14408112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29830 -00021338 53.14408493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29830 -00021339 53.14410782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29840 -00021340 53.14411163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29840 -00021341 53.14413834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29850 -00021342 53.14414215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29850 -00021343 53.14416504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29860 -00021344 53.14416504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29860 -00021345 53.14419556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29870 -00021346 53.14419556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29870 -00021347 53.14422226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29880 -00021348 53.14422226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29880 -00021349 53.14424896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29890 -00021350 53.14425278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29890 -00021351 53.14427948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a0 -00021352 53.14428329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a0 -00021353 53.14430618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b0 -00021354 53.14431000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b0 -00021355 53.14433670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c0 -00021356 53.14434052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c0 -00021357 53.14436340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d0 -00021358 53.14436722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d0 -00021359 53.14439392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e0 -00021360 53.14439774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e0 -00021361 53.14442062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f0 -00021362 53.14442062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f0 -00021363 53.14445114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29900 -00021364 53.14445114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29900 -00021365 53.14447784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29910 -00021366 53.14448166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29910 -00021367 53.14450455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29920 -00021368 53.14450836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29920 -00021369 53.14453506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29930 -00021370 53.14453888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29930 -00021371 53.14456177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29940 -00021372 53.14456558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29940 -00021373 53.14459229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29950 -00021374 53.14459610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29950 -00021375 53.14461899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -00021376 53.14462280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -00021377 53.14464951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -00021378 53.14465332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -00021379 53.14468002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -00021380 53.14468002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -00021381 53.14470673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -00021382 53.14471054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -00021383 53.14473724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -00021384 53.14474106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -00021385 53.14476395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -00021386 53.14476395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -00021387 53.14479446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -00021388 53.14479446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -00021389 53.14481735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -00021390 53.14482117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -00021391 53.14484787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -00021392 53.14485168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -00021393 53.14487839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -00021394 53.14487839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -00021395 53.14490509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -00021396 53.14490891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -00021397 53.14493561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a10 -00021398 53.14493942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a10 -00021399 53.14496231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a20 -00021400 53.14496613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a20 -00021401 53.14499283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a30 -00021402 53.14499283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a30 -00021403 53.14501953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a40 -00021404 53.14501953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a40 -00021405 53.14504623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a50 -00021406 53.14505005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a50 -00021407 53.14507675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a60 -00021408 53.14507675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a60 -00021409 53.14510345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a70 -00021410 53.14510727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a70 -00021411 53.14513397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a80 -00021412 53.14513779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a80 -00021413 53.14516068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a90 -00021414 53.14516449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a90 -00021415 53.14519119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa0 -00021416 53.14519501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa0 -00021417 53.14521790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab0 -00021418 53.14522171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab0 -00021419 53.14524841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac0 -00021420 53.14525223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac0 -00021421 53.14527512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad0 -00021422 53.14527893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad0 -00021423 53.14530563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ae0 -00021424 53.14530945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ae0 -00021425 53.14533615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29af0 -00021426 53.14533615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29af0 -00021427 53.14536285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b00 -00021428 53.14536667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b00 -00021429 53.14539337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b10 -00021430 53.14539337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b10 -00021431 53.14542007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b20 -00021432 53.14542007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b20 -00021433 53.14544678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b30 -00021434 53.14545059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b30 -00021435 53.14547348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b40 -00021436 53.14547729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b40 -00021437 53.14553452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b50 -00021438 53.14553452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b50 -00021439 53.14556122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b60 -00021440 53.14556503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b60 -00021441 53.14559174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b70 -00021442 53.14559174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b70 -00021443 53.14561844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b80 -00021444 53.14561844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b80 -00021445 53.14564514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b90 -00021446 53.14564896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b90 -00021447 53.14567184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ba0 -00021448 53.14567566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ba0 -00021449 53.14570236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bb0 -00021450 53.14570618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bb0 -00021451 53.14573288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bc0 -00021452 53.14573288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bc0 -00021453 53.14575958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bd0 -00021454 53.14576340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bd0 -00021455 53.14579010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29be0 -00021456 53.14579010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29be0 -00021457 53.14581680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bf0 -00021458 53.14582062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bf0 -00021459 53.14584732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c00 -00021460 53.14585114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c00 -00021461 53.14587402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c10 -00021462 53.14587402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c10 -00021463 53.14590454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c20 -00021464 53.14590454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c20 -00021465 53.14593506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c30 -00021466 53.14593887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c30 -00021467 53.14596939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c40 -00021468 53.14597321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c40 -00021469 53.14599991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c50 -00021470 53.14600372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c50 -00021471 53.14603043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c60 -00021472 53.14603043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c60 -00021473 53.14605331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c70 -00021474 53.14605713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c70 -00021475 53.14608383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c80 -00021476 53.14608765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c80 -00021477 53.14611053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c90 -00021478 53.14611435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c90 -00021479 53.14614105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ca0 -00021480 53.14614487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ca0 -00021481 53.14616776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cb0 -00021482 53.14617157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cb0 -00021483 53.14619827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cc0 -00021484 53.14620209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cc0 -00021485 53.14622879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cd0 -00021486 53.14622879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cd0 -00021487 53.14625549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce0 -00021488 53.14625931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce0 -00021489 53.14628601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf0 -00021490 53.14628983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf0 -00021491 53.14631271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d00 -00021492 53.14631653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d00 -00021493 53.14634323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d10 -00021494 53.14634705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d10 -00021495 53.14636993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d20 -00021496 53.14637375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d20 -00021497 53.14640045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d30 -00021498 53.14640045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d30 -00021499 53.14642715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d40 -00021500 53.14642715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d40 -00021501 53.14645386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d50 -00021502 53.14645767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d50 -00021503 53.14648438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d60 -00021504 53.14648819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d60 -00021505 53.14651108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d70 -00021506 53.14651489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d70 -00021507 53.14654160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d80 -00021508 53.14654541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d80 -00021509 53.14656830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d90 -00021510 53.14657211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d90 -00021511 53.14659882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29da0 -00021512 53.14660263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29da0 -00021513 53.14662552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29db0 -00021514 53.14662933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29db0 -00021515 53.14665604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dc0 -00021516 53.14665985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dc0 -00021517 53.14668655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dd0 -00021518 53.14668655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dd0 -00021519 53.14671326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29de0 -00021520 53.14671707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29de0 -00021521 53.14674377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29df0 -00021522 53.14674377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29df0 -00021523 53.14677048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e00 -00021524 53.14677429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e00 -00021525 53.14680099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e10 -00021526 53.14680481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e10 -00021527 53.14682770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e20 -00021528 53.14682770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e20 -00021529 53.14685822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e30 -00021530 53.14685822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e30 -00021531 53.14688492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e40 -00021532 53.14688492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e40 -00021533 53.14691162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e50 -00021534 53.14691544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e50 -00021535 53.14694214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e60 -00021536 53.14694214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e60 -00021537 53.14696884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e70 -00021538 53.14697266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e70 -00021539 53.14699936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e80 -00021540 53.14700317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e80 -00021541 53.14702606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e90 -00021542 53.14702988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e90 -00021543 53.14705658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ea0 -00021544 53.14706039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ea0 -00021545 53.14708328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29eb0 -00021546 53.14708710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29eb0 -00021547 53.14711380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ec0 -00021548 53.14711380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ec0 -00021549 53.14714050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ed0 -00021550 53.14714050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ed0 -00021551 53.14717102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ee0 -00021552 53.14717484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ee0 -00021553 53.14720154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ef0 -00021554 53.14720154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ef0 -00021555 53.14722824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f00 -00021556 53.14722824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f00 -00021557 53.14725494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f10 -00021558 53.14725876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f10 -00021559 53.14728165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f20 -00021560 53.14728546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f20 -00021561 53.14731216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f30 -00021562 53.14731598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f30 -00021563 53.14734268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f40 -00021564 53.14734268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f40 -00021565 53.14736938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f50 -00021566 53.14737320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f50 -00021567 53.14739990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f60 -00021568 53.14739990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f60 -00021569 53.14742661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f70 -00021570 53.14743042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f70 -00021571 53.14745712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f80 -00021572 53.14745712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f80 -00021573 53.14748383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f90 -00021574 53.14748383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f90 -00021575 53.14751053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fa0 -00021576 53.14751434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fa0 -00021577 53.14754105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fb0 -00021578 53.14754105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fb0 -00021579 53.14756775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fc0 -00021580 53.14757156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fc0 -00021581 53.14759827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fd0 -00021582 53.14759827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fd0 -00021583 53.14762497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fe0 -00021584 53.14762878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fe0 -00021585 53.14765549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ff0 -00021586 53.14765549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ff0 -00021587 53.14768219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a000 -00021588 53.14768219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a000 -00021589 53.14771271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a010 -00021590 53.14771271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a010 -00021591 53.14773941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a020 -00021592 53.14773941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a020 -00021593 53.14776611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a030 -00021594 53.14776993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a030 -00021595 53.14779663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a040 -00021596 53.14779663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a040 -00021597 53.14782333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a050 -00021598 53.14782715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a050 -00021599 53.14785385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a060 -00021600 53.14785767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a060 -00021601 53.14788055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a070 -00021602 53.14788437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a070 -00021603 53.14791107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a080 -00021604 53.14791489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a080 -00021605 53.14793777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a090 -00021606 53.14793777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a090 -00021607 53.14796829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0a0 -00021608 53.14796829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0a0 -00021609 53.14799500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0b0 -00021610 53.14799500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0b0 -00021611 53.14802170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0c0 -00021612 53.14802551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0c0 -00021613 53.14805222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0d0 -00021614 53.14805603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0d0 -00021615 53.14807892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0e0 -00021616 53.14808273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0e0 -00021617 53.14810944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0f0 -00021618 53.14811325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0f0 -00021619 53.14813614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a100 -00021620 53.14813995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a100 -00021621 53.14816666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a110 -00021622 53.14817047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a110 -00021623 53.14819336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a120 -00021624 53.14819336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a120 -00021625 53.14822388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a130 -00021626 53.14822388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a130 -00021627 53.14825058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a140 -00021628 53.14825439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a140 -00021629 53.14827728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a150 -00021630 53.14828110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a150 -00021631 53.14830780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a160 -00021632 53.14831161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a160 -00021633 53.14833450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a170 -00021634 53.14833832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a170 -00021635 53.14836502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a180 -00021636 53.14836884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a180 -00021637 53.14839172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a190 -00021638 53.14839554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a190 -00021639 53.14842224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a0 -00021640 53.14842606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a0 -00021641 53.14845276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b0 -00021642 53.14845276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b0 -00021643 53.14847946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c0 -00021644 53.14847946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c0 -00021645 53.14850616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d0 -00021646 53.14850998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d0 -00021647 53.14853287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e0 -00021648 53.14853668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e0 -00021649 53.14856339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f0 -00021650 53.14856720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f0 -00021651 53.14859390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a200 -00021652 53.14859390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a200 -00021653 53.14862061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a210 -00021654 53.14862442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a210 -00021655 53.14865112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a220 -00021656 53.14865112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a220 -00021657 53.14867783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a230 -00021658 53.14868164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a230 -00021659 53.14870834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a240 -00021660 53.14871216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a240 -00021661 53.14873505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a250 -00021662 53.14873886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a250 -00021663 53.14876556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a260 -00021664 53.14876938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a260 -00021665 53.14879227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a270 -00021666 53.14879608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a270 -00021667 53.14882278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a280 -00021668 53.14882278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a280 -00021669 53.14884949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a290 -00021670 53.14884949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a290 -00021671 53.14887619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2a0 -00021672 53.14888000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2a0 -00021673 53.14890671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2b0 -00021674 53.14891052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2b0 -00021675 53.14893341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2c0 -00021676 53.14893723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2c0 -00021677 53.14896393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2d0 -00021678 53.14896774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2d0 -00021679 53.14899063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2e0 -00021680 53.14899445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2e0 -00021681 53.14902115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f0 -00021682 53.14902496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f0 -00021683 53.14904785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a300 -00021684 53.14905167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a300 -00021685 53.14907837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a310 -00021686 53.14908218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a310 -00021687 53.14910889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a320 -00021688 53.14910889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a320 -00021689 53.14913559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a330 -00021690 53.14913940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a330 -00021691 53.14916611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a340 -00021692 53.14916611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a340 -00021693 53.14919662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a350 -00021694 53.14919662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a350 -00021695 53.14922333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a360 -00021696 53.14922714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a360 -00021697 53.14925003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a370 -00021698 53.14925385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a370 -00021699 53.14928055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a380 -00021700 53.14928436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a380 -00021701 53.14930725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a390 -00021702 53.14931107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a390 -00021703 53.14933777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a0 -00021704 53.14934158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a0 -00021705 53.14936829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b0 -00021706 53.14936829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b0 -00021707 53.14939499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c0 -00021708 53.14939880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c0 -00021709 53.14942551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d0 -00021710 53.14942551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d0 -00021711 53.14945221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e0 -00021712 53.14945602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e0 -00021713 53.14948273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f0 -00021714 53.14948654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f0 -00021715 53.14950943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a400 -00021716 53.14950943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a400 -00021717 53.14953995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a410 -00021718 53.14953995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a410 -00021719 53.14956665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a420 -00021720 53.14956665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a420 -00021721 53.14959717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a430 -00021722 53.14959717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a430 -00021723 53.14962387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a440 -00021724 53.14962387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a440 -00021725 53.14965057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a450 -00021726 53.14965439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a450 -00021727 53.14968491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a460 -00021728 53.14968491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a460 -00021729 53.14970779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a470 -00021730 53.14971161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a470 -00021731 53.14973831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a480 -00021732 53.14974213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a480 -00021733 53.14976501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a490 -00021734 53.14976883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a490 -00021735 53.14979553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a0 -00021736 53.14979935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a0 -00021737 53.14982224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b0 -00021738 53.14982605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b0 -00021739 53.14985275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c0 -00021740 53.14985657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c0 -00021741 53.14988327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d0 -00021742 53.14988327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d0 -00021743 53.14990997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e0 -00021744 53.14990997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e0 -00021745 53.14994049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f0 -00021746 53.14994049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f0 -00021747 53.14996719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a500 -00021748 53.14996719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a500 -00021749 53.14999771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a510 -00021750 53.14999771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a510 -00021751 53.15002441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a520 -00021752 53.15002441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a520 -00021753 53.15005493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a530 -00021754 53.15005493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a530 -00021755 53.15008163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a540 -00021756 53.15008163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a540 -00021757 53.15010834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a550 -00021758 53.15011215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a550 -00021759 53.15013885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a560 -00021760 53.15014267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a560 -00021761 53.15016556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a570 -00021762 53.15016937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a570 -00021763 53.15019608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a580 -00021764 53.15019989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a580 -00021765 53.15022278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a590 -00021766 53.15022659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a590 -00021767 53.15025330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a0 -00021768 53.15025711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a0 -00021769 53.15028381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b0 -00021770 53.15028381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b0 -00021771 53.15031433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c0 -00021772 53.15031815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c0 -00021773 53.15034103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5d0 -00021774 53.15034485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5d0 -00021775 53.15037155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5e0 -00021776 53.15037537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5e0 -00021777 53.15039825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5f0 -00021778 53.15039825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5f0 -00021779 53.15042496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a600 -00021780 53.15042877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a600 -00021781 53.15045547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a610 -00021782 53.15045929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a610 -00021783 53.15048218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a620 -00021784 53.15048599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a620 -00021785 53.15051270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a630 -00021786 53.15051651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a630 -00021787 53.15053940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a640 -00021788 53.15054321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a640 -00021789 53.15056992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a650 -00021790 53.15057373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a650 -00021791 53.15059662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a660 -00021792 53.15060043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a660 -00021793 53.15062714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a670 -00021794 53.15063095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a670 -00021795 53.15065765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a680 -00021796 53.15065765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a680 -00021797 53.15068436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a690 -00021798 53.15068817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a690 -00021799 53.15071487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6a0 -00021800 53.15071869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6a0 -00021801 53.15074158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6b0 -00021802 53.15074539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6b0 -00021803 53.15077209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6c0 -00021804 53.15077591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6c0 -00021805 53.15079880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6d0 -00021806 53.15080261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6d0 -00021807 53.15082932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6e0 -00021808 53.15082932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6e0 -00021809 53.15085602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6f0 -00021810 53.15085602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6f0 -00021811 53.15088654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a700 -00021812 53.15088654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a700 -00021813 53.15091324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a710 -00021814 53.15091705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a710 -00021815 53.15094376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a720 -00021816 53.15094376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a720 -00021817 53.15097427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a730 -00021818 53.15097427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a730 -00021819 53.15100098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a740 -00021820 53.15100098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a740 -00021821 53.15102768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a750 -00021822 53.15103149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a750 -00021823 53.15105438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a760 -00021824 53.15105820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a760 -00021825 53.15108490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a770 -00021826 53.15108871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a770 -00021827 53.15111542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a780 -00021828 53.15111542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a780 -00021829 53.15114212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a790 -00021830 53.15114594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a790 -00021831 53.15117264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a0 -00021832 53.15117264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a0 -00021833 53.15119934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -00021834 53.15120316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -00021835 53.15122986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -00021836 53.15123367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -00021837 53.15125656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -00021838 53.15126038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -00021839 53.15129089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -00021840 53.15129089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -00021841 53.15131378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -00021842 53.15131760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -00021843 53.15134811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -00021844 53.15134811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -00021845 53.15137482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -00021846 53.15137863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -00021847 53.15140533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -00021848 53.15140533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -00021849 53.15143204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -00021850 53.15143204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -00021851 53.15146255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -00021852 53.15146255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -00021853 53.15149307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -00021854 53.15149307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -00021855 53.15151596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -00021856 53.15151978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -00021857 53.15155029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -00021858 53.15155029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -00021859 53.15157700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -00021860 53.15157700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -00021861 53.15160751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -00021862 53.15161133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -00021863 53.15163422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a0 -00021864 53.15163803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a0 -00021865 53.15166473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b0 -00021866 53.15166855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b0 -00021867 53.15169144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c0 -00021868 53.15169525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c0 -00021869 53.15172195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d0 -00021870 53.15172577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d0 -00021871 53.15174866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e0 -00021872 53.15175247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e0 -00021873 53.15177917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f0 -00021874 53.15178299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f0 -00021875 53.15180969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a900 -00021876 53.15180969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a900 -00021877 53.15183640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a910 -00021878 53.15184021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a910 -00021879 53.15186691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a920 -00021880 53.15186691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a920 -00021881 53.15189362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a930 -00021882 53.15189743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a930 -00021883 53.15192413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a940 -00021884 53.15192795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a940 -00021885 53.15195084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a950 -00021886 53.15195465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a950 -00021887 53.15198135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a960 -00021888 53.15198517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a960 -00021889 53.15200806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a970 -00021890 53.15201187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a970 -00021891 53.15203857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a980 -00021892 53.15203857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a980 -00021893 53.15206909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a990 -00021894 53.15206909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a990 -00021895 53.15209198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a0 -00021896 53.15209579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a0 -00021897 53.15212250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9b0 -00021898 53.15212631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9b0 -00021899 53.15214920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9c0 -00021900 53.15215302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9c0 -00021901 53.15217972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9d0 -00021902 53.15218353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9d0 -00021903 53.15220642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e0 -00021904 53.15221024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e0 -00021905 53.15223694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f0 -00021906 53.15224075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f0 -00021907 53.15226746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa00 -00021908 53.15226746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa00 -00021909 53.15229797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa10 -00021910 53.15230179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa10 -00021911 53.15232468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa20 -00021912 53.15232849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa20 -00021913 53.15235519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa30 -00021914 53.15235901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa30 -00021915 53.15238571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa40 -00021916 53.15238571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa40 -00021917 53.15241241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa50 -00021918 53.15241623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa50 -00021919 53.15244293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa60 -00021920 53.15244293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa60 -00021921 53.15246964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa70 -00021922 53.15246964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa70 -00021923 53.15250015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa80 -00021924 53.15250015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa80 -00021925 53.15252686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa90 -00021926 53.15252686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa90 -00021927 53.15255737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaa0 -00021928 53.15255737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaa0 -00021929 53.15258408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aab0 -00021930 53.15258408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aab0 -00021931 53.15261459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aac0 -00021932 53.15261459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aac0 -00021933 53.15264130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aad0 -00021934 53.15264130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aad0 -00021935 53.15267181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae0 -00021936 53.15267181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae0 -00021937 53.15269852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf0 -00021938 53.15270233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf0 -00021939 53.15272522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab00 -00021940 53.15272903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab00 -00021941 53.15275574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab10 -00021942 53.15275955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab10 -00021943 53.15278244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab20 -00021944 53.15278625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab20 -00021945 53.15281296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab30 -00021946 53.15281677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab30 -00021947 53.15284348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab40 -00021948 53.15284348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab40 -00021949 53.15288162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab50 -00021950 53.15288162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab50 -00021951 53.15290833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab60 -00021952 53.15291214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab60 -00021953 53.15293884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab70 -00021954 53.15293884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab70 -00021955 53.15296555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab80 -00021956 53.15296555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab80 -00021957 53.15299606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab90 -00021958 53.15299606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab90 -00021959 53.15301895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aba0 -00021960 53.15302277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aba0 -00021961 53.15304947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abb0 -00021962 53.15305328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abb0 -00021963 53.15307999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abc0 -00021964 53.15307999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abc0 -00021965 53.15310669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abd0 -00021966 53.15311050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abd0 -00021967 53.15313721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abe0 -00021968 53.15314102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abe0 -00021969 53.15316391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abf0 -00021970 53.15316772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abf0 -00021971 53.15319443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac00 -00021972 53.15319824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac00 -00021973 53.15322113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac10 -00021974 53.15322495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac10 -00021975 53.15325165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac20 -00021976 53.15325546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac20 -00021977 53.15327835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac30 -00021978 53.15328217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac30 -00021979 53.15330887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac40 -00021980 53.15331268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac40 -00021981 53.15333939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac50 -00021982 53.15333939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac50 -00021983 53.15336227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac60 -00021984 53.15336609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac60 -00021985 53.15339279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac70 -00021986 53.15339661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac70 -00021987 53.15341949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac80 -00021988 53.15342331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac80 -00021989 53.15345001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -00021990 53.15345383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -00021991 53.15347672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -00021992 53.15348053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -00021993 53.15350723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -00021994 53.15351105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -00021995 53.15353775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -00021996 53.15353775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -00021997 53.15356445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -00021998 53.15356827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -00021999 53.15359497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -00022000 53.15359497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -00022001 53.15362167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -00022002 53.15362549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -00022003 53.15365219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -00022004 53.15365601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -00022005 53.15367889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -00022006 53.15367889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -00022007 53.15370560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -00022008 53.15370941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -00022009 53.15373611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -00022010 53.15373611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -00022011 53.15376282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -00022012 53.15376663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -00022013 53.15379333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -00022014 53.15379333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -00022015 53.15382004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad60 -00022016 53.15382385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad60 -00022017 53.15385056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad70 -00022018 53.15385437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad70 -00022019 53.15387726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad80 -00022020 53.15388107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad80 -00022021 53.15390778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad90 -00022022 53.15390778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad90 -00022023 53.15393448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada0 -00022024 53.15393448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada0 -00022025 53.15396118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb0 -00022026 53.15396500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb0 -00022027 53.15399170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc0 -00022028 53.15399170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc0 -00022029 53.15401840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add0 -00022030 53.15402222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add0 -00022031 53.15404892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -00022032 53.15405273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -00022033 53.15407562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf0 -00022034 53.15407944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf0 -00022035 53.15410614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae00 -00022036 53.15410995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae00 -00022037 53.15413284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae10 -00022038 53.15413666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae10 -00022039 53.15416336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae20 -00022040 53.15416718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae20 -00022041 53.15419388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -00022042 53.15419388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -00022043 53.15422058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -00022044 53.15422058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -00022045 53.15424728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -00022046 53.15425110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -00022047 53.15427399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -00022048 53.15427780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -00022049 53.15430450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -00022050 53.15430832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -00022051 53.15433121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -00022052 53.15433502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -00022053 53.15436172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -00022054 53.15436554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -00022055 53.15439224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -00022056 53.15439224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -00022057 53.15441895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -00022058 53.15442276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -00022059 53.15444946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -00022060 53.15444946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -00022061 53.15447617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -00022062 53.15447998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -00022063 53.15450668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -00022064 53.15451050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -00022065 53.15453339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -00022066 53.15453339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -00022067 53.15456390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -00022068 53.15456390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -00022069 53.15459061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -00022070 53.15459061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -00022071 53.15461731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -00022072 53.15462112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -00022073 53.15464783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -00022074 53.15464783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -00022075 53.15467453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -00022076 53.15467834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -00022077 53.15470505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -00022078 53.15470886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -00022079 53.15473175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -00022080 53.15473557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -00022081 53.15476227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -00022082 53.15476608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -00022083 53.15478897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af80 -00022084 53.15479279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af80 -00022085 53.15481949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af90 -00022086 53.15481949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af90 -00022087 53.15484619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa0 -00022088 53.15485001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa0 -00022089 53.15487671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb0 -00022090 53.15488052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb0 -00022091 53.15490723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc0 -00022092 53.15490723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc0 -00022093 53.15493393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd0 -00022094 53.15493774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd0 -00022095 53.15496445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe0 -00022096 53.15496826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe0 -00022097 53.15499115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff0 -00022098 53.15499496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff0 -00022099 53.15502167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b000 -00022100 53.15502548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b000 -00022101 53.15504837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b010 -00022102 53.15505219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b010 -00022103 53.15507889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b020 -00022104 53.15508270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b020 -00022105 53.15510559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b030 -00022106 53.15510559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b030 -00022107 53.15513611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b040 -00022108 53.15513611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b040 -00022109 53.15516281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b050 -00022110 53.15516663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b050 -00022111 53.15518951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b060 -00022112 53.15519333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b060 -00022113 53.15522003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b070 -00022114 53.15522385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b070 -00022115 53.15524673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b080 -00022116 53.15525055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b080 -00022117 53.15527725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b090 -00022118 53.15528107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b090 -00022119 53.15530396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a0 -00022120 53.15530777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a0 -00022121 53.15533447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b0 -00022122 53.15533829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b0 -00022123 53.15536499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c0 -00022124 53.15536499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c0 -00022125 53.15539169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d0 -00022126 53.15539551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d0 -00022127 53.15542221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e0 -00022128 53.15542221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e0 -00022129 53.15544891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f0 -00022130 53.15544891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f0 -00022131 53.15547562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b100 -00022132 53.15547943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b100 -00022133 53.15550232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b110 -00022134 53.15550613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b110 -00022135 53.15553284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b120 -00022136 53.15553665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b120 -00022137 53.15556335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b130 -00022138 53.15556335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b130 -00022139 53.15559006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b140 -00022140 53.15559387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b140 -00022141 53.15562057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b150 -00022142 53.15562057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b150 -00022143 53.15564728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b160 -00022144 53.15565109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b160 -00022145 53.15567780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b170 -00022146 53.15568161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b170 -00022147 53.15570450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b180 -00022148 53.15570831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b180 -00022149 53.15573502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b190 -00022150 53.15573883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b190 -00022151 53.15576172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a0 -00022152 53.15576553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a0 -00022153 53.15579224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b0 -00022154 53.15579605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b0 -00022155 53.15581894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c0 -00022156 53.15581894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c0 -00022157 53.15584946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d0 -00022158 53.15584946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d0 -00022159 53.15587616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e0 -00022160 53.15587997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e0 -00022161 53.15590286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f0 -00022162 53.15590668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f0 -00022163 53.15593338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b200 -00022164 53.15593719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b200 -00022165 53.15596008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b210 -00022166 53.15596390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b210 -00022167 53.15599060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b220 -00022168 53.15599442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b220 -00022169 53.15601730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b230 -00022170 53.15602112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b230 -00022171 53.15604782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b240 -00022172 53.15605164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b240 -00022173 53.15607834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b250 -00022174 53.15607834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b250 -00022175 53.15610504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b260 -00022176 53.15610886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b260 -00022177 53.15613556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b270 -00022178 53.15613937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b270 -00022179 53.15616226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b280 -00022180 53.15616608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b280 -00022181 53.15619278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b290 -00022182 53.15619278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b290 -00022183 53.15621948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a0 -00022184 53.15622330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a0 -00022185 53.15625000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2b0 -00022186 53.15625381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2b0 -00022187 53.15627670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2c0 -00022188 53.15628052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2c0 -00022189 53.15630722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2d0 -00022190 53.15630722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2d0 -00022191 53.15633774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2e0 -00022192 53.15633774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2e0 -00022193 53.15636444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f0 -00022194 53.15636444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f0 -00022195 53.15639114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b300 -00022196 53.15639496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b300 -00022197 53.15641785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b310 -00022198 53.15642166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b310 -00022199 53.15644836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b320 -00022200 53.15645218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b320 -00022201 53.15647507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b330 -00022202 53.15647888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b330 -00022203 53.15650558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b340 -00022204 53.15650940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b340 -00022205 53.15653610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b350 -00022206 53.15653610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b350 -00022207 53.15656281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b360 -00022208 53.15656662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b360 -00022209 53.15659332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b370 -00022210 53.15659332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b370 -00022211 53.15662003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b380 -00022212 53.15662384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b380 -00022213 53.15665054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b390 -00022214 53.15665436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b390 -00022215 53.15667725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a0 -00022216 53.15667725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a0 -00022217 53.15670776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b0 -00022218 53.15670776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b0 -00022219 53.15673447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c0 -00022220 53.15673447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c0 -00022221 53.15676117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d0 -00022222 53.15676498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d0 -00022223 53.15679169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e0 -00022224 53.15679550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e0 -00022225 53.15681839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f0 -00022226 53.15682220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f0 -00022227 53.15684891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b400 -00022228 53.15685272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b400 -00022229 53.15687561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b410 -00022230 53.15687943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b410 -00022231 53.15690613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b420 -00022232 53.15690994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b420 -00022233 53.15693283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b430 -00022234 53.15693665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b430 -00022235 53.15696335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b440 -00022236 53.15696716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b440 -00022237 53.15699387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b450 -00022238 53.15699387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b450 -00022239 53.15701675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b460 -00022240 53.15702057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b460 -00022241 53.15704727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b470 -00022242 53.15705109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b470 -00022243 53.15707397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b480 -00022244 53.15707779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b480 -00022245 53.15710449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b490 -00022246 53.15710831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b490 -00022247 53.15713120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a0 -00022248 53.15713501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a0 -00022249 53.15716171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b0 -00022250 53.15716553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b0 -00022251 53.15719223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c0 -00022252 53.15719223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c0 -00022253 53.15721893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d0 -00022254 53.15722275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d0 -00022255 53.15724945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e0 -00022256 53.15724945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e0 -00022257 53.15727234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f0 -00022258 53.15727615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f0 -00022259 53.15730286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b500 -00022260 53.15730667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b500 -00022261 53.15732956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b510 -00022262 53.15733337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b510 -00022263 53.15736008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b520 -00022264 53.15736389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b520 -00022265 53.15739059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b530 -00022266 53.15739059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b530 -00022267 53.15741730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b540 -00022268 53.15742111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b540 -00022269 53.15744781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b550 -00022270 53.15744781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b550 -00022271 53.15747452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b560 -00022272 53.15747452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b560 -00022273 53.15750504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b570 -00022274 53.15750504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b570 -00022275 53.15753174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b580 -00022276 53.15753555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b580 -00022277 53.15756226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b590 -00022278 53.15756607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b590 -00022279 53.15758896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a0 -00022280 53.15759277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a0 -00022281 53.15761948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b0 -00022282 53.15761948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b0 -00022283 53.15764618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c0 -00022284 53.15764618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c0 -00022285 53.15767288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d0 -00022286 53.15767670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d0 -00022287 53.15770340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5e0 -00022288 53.15770721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5e0 -00022289 53.15773010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5f0 -00022290 53.15773392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5f0 -00022291 53.15776062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b600 -00022292 53.15776443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b600 -00022293 53.15778732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b610 -00022294 53.15779114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b610 -00022295 53.15781784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b620 -00022296 53.15782166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b620 -00022297 53.15784454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b630 -00022298 53.15784836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b630 -00022299 53.15787506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b640 -00022300 53.15787888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b640 -00022301 53.15790558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b650 -00022302 53.15790558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b650 -00022303 53.15793228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b660 -00022304 53.15793228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b660 -00022305 53.15795898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b670 -00022306 53.15796280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b670 -00022307 53.15798569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b680 -00022308 53.15798950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b680 -00022309 53.15801620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b690 -00022310 53.15802002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b690 -00022311 53.15804291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6a0 -00022312 53.15804672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6a0 -00022313 53.15807343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6b0 -00022314 53.15807724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6b0 -00022315 53.15810394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6c0 -00022316 53.15810394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6c0 -00022317 53.15813065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6d0 -00022318 53.15813446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6d0 -00022319 53.15816116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6e0 -00022320 53.15816498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6e0 -00022321 53.15818787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6f0 -00022322 53.15819168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6f0 -00022323 53.15821838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b700 -00022324 53.15821838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b700 -00022325 53.15824509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b710 -00022326 53.15824509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b710 -00022327 53.15827179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b720 -00022328 53.15827560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b720 -00022329 53.15830231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b730 -00022330 53.15830231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b730 -00022331 53.15832901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b740 -00022332 53.15833282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b740 -00022333 53.15835953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b750 -00022334 53.15836334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b750 -00022335 53.15838623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b760 -00022336 53.15839005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b760 -00022337 53.15841675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b770 -00022338 53.15842056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b770 -00022339 53.15844345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b780 -00022340 53.15844727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b780 -00022341 53.15847397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b790 -00022342 53.15847778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b790 -00022343 53.15850067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7a0 -00022344 53.15850067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7a0 -00022345 53.15853119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7b0 -00022346 53.15853119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7b0 -00022347 53.15855789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7c0 -00022348 53.15856171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7c0 -00022349 53.15858459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7d0 -00022350 53.15858841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7d0 -00022351 53.15861511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7e0 -00022352 53.15861893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7e0 -00022353 53.15864182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7f0 -00022354 53.15864563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7f0 -00022355 53.15867233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b800 -00022356 53.15867615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b800 -00022357 53.15869904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b810 -00022358 53.15870285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b810 -00022359 53.15872955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b820 -00022360 53.15873337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b820 -00022361 53.15876007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b830 -00022362 53.15876007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b830 -00022363 53.15878677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b840 -00022364 53.15879059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b840 -00022365 53.15881729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b850 -00022366 53.15881729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b850 -00022367 53.15884399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b860 -00022368 53.15884399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b860 -00022369 53.15887451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b870 -00022370 53.15887451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b870 -00022371 53.15889740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b880 -00022372 53.15890121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b880 -00022373 53.15892792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b890 -00022374 53.15893173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b890 -00022375 53.15895844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a0 -00022376 53.15895844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a0 -00022377 53.15898514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b0 -00022378 53.15898895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b0 -00022379 53.15901566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c0 -00022380 53.15901947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c0 -00022381 53.15904236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d0 -00022382 53.15904617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d0 -00022383 53.15907288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e0 -00022384 53.15907669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e0 -00022385 53.15909958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8f0 -00022386 53.15910339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8f0 -00022387 53.15913010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b900 -00022388 53.15913391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b900 -00022389 53.15915680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b910 -00022390 53.15916061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b910 -00022391 53.15918732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b920 -00022392 53.15919113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b920 -00022393 53.15921783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b930 -00022394 53.15921783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b930 -00022395 53.15924072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b940 -00022396 53.15924454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b940 -00022397 53.15927124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b950 -00022398 53.15927505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b950 -00022399 53.15929794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b960 -00022400 53.15930176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b960 -00022401 53.15932846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b970 -00022402 53.15933228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b970 -00022403 53.15935516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b980 -00022404 53.15935898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b980 -00022405 53.15938568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b990 -00022406 53.15938950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b990 -00022407 53.15941620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9a0 -00022408 53.15941620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9a0 -00022409 53.15944290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9b0 -00022410 53.15944672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9b0 -00022411 53.15947342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9c0 -00022412 53.15947342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9c0 -00022413 53.15950012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9d0 -00022414 53.15950012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9d0 -00022415 53.15952682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9e0 -00022416 53.15953064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9e0 -00022417 53.15955353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9f0 -00022418 53.15955734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9f0 -00022419 53.15958405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba00 -00022420 53.15958786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba00 -00022421 53.15961456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba10 -00022422 53.15961456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba10 -00022423 53.15964127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba20 -00022424 53.15964508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba20 -00022425 53.15967178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba30 -00022426 53.15967178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba30 -00022427 53.15970230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba40 -00022428 53.15970612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba40 -00022429 53.15973282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba50 -00022430 53.15973282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba50 -00022431 53.15975952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba60 -00022432 53.15975952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba60 -00022433 53.15978622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba70 -00022434 53.15979004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba70 -00022435 53.15981293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba80 -00022436 53.15981674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba80 -00022437 53.15984344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba90 -00022438 53.15984726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba90 -00022439 53.15987015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baa0 -00022440 53.15987396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baa0 -00022441 53.15990067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bab0 -00022442 53.15990448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bab0 -00022443 53.15993118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bac0 -00022444 53.15993118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bac0 -00022445 53.15995789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bad0 -00022446 53.15996170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bad0 -00022447 53.15998840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bae0 -00022448 53.15999222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bae0 -00022449 53.16001511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baf0 -00022450 53.16001892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baf0 -00022451 53.16004562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb00 -00022452 53.16004562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb00 -00022453 53.16007233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb10 -00022454 53.16007233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb10 -00022455 53.16010284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb20 -00022456 53.16010284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb20 -00022457 53.16012955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb30 -00022458 53.16012955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb30 -00022459 53.16015625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb40 -00022460 53.16016006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb40 -00022461 53.16018677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb50 -00022462 53.16019058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb50 -00022463 53.16021347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb60 -00022464 53.16021729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb60 -00022465 53.16024399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb70 -00022466 53.16024780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb70 -00022467 53.16027069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb80 -00022468 53.16027451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb80 -00022469 53.16030121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb90 -00022470 53.16030502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb90 -00022471 53.16032791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bba0 -00022472 53.16033173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bba0 -00022473 53.16035843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbb0 -00022474 53.16036224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbb0 -00022475 53.16038895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbc0 -00022476 53.16038895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbc0 -00022477 53.16041565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbd0 -00022478 53.16041946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbd0 -00022479 53.16044617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbe0 -00022480 53.16044617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbe0 -00022481 53.16046906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbf0 -00022482 53.16047287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbf0 -00022483 53.16049957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc00 -00022484 53.16050339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc00 -00022485 53.16052628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc10 -00022486 53.16053009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc10 -00022487 53.16055679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc20 -00022488 53.16056061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc20 -00022489 53.16058731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc30 -00022490 53.16058731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc30 -00022491 53.16061401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc40 -00022492 53.16061783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc40 -00022493 53.16064453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc50 -00022494 53.16064453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc50 -00022495 53.16067123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc60 -00022496 53.16067123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc60 -00022497 53.16070175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc70 -00022498 53.16070175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc70 -00022499 53.16072464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc80 -00022500 53.16072845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc80 -00022501 53.16075516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc90 -00022502 53.16075897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc90 -00022503 53.16078568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bca0 -00022504 53.16078568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bca0 -00022505 53.16081238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcb0 -00022506 53.16081619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcb0 -00022507 53.16084290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcc0 -00022508 53.16084290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcc0 -00022509 53.16086960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcd0 -00022510 53.16087341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcd0 -00022511 53.16090012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bce0 -00022512 53.16090393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bce0 -00022513 53.16093063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcf0 -00022514 53.16093445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcf0 -00022515 53.16096115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd00 -00022516 53.16096497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd00 -00022517 53.16098785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd10 -00022518 53.16099167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd10 -00022519 53.16101837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd20 -00022520 53.16102219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd20 -00022521 53.16104507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd30 -00022522 53.16104507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd30 -00022523 53.16107559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd40 -00022524 53.16107559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd40 -00022525 53.16110229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd50 -00022526 53.16110611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd50 -00022527 53.16113281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd60 -00022528 53.16113663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd60 -00022529 53.16116333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd70 -00022530 53.16116333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd70 -00022531 53.16119003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd80 -00022532 53.16119385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd80 -00022533 53.16122055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd90 -00022534 53.16122055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd90 -00022535 53.16124725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda0 -00022536 53.16124725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda0 -00022537 53.16127777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb0 -00022538 53.16128159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb0 -00022539 53.16130447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc0 -00022540 53.16130829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc0 -00022541 53.16133499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd0 -00022542 53.16133881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd0 -00022543 53.16136169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde0 -00022544 53.16136551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde0 -00022545 53.16139221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf0 -00022546 53.16139603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf0 -00022547 53.16141891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be00 -00022548 53.16142273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be00 -00022549 53.16144943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be10 -00022550 53.16145325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be10 -00022551 53.16147995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be20 -00022552 53.16147995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be20 -00022553 53.16150665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be30 -00022554 53.16150665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be30 -00022555 53.16153717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be40 -00022556 53.16154099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be40 -00022557 53.16156387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be50 -00022558 53.16156769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be50 -00022559 53.16159439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be60 -00022560 53.16159821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be60 -00022561 53.16162109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be70 -00022562 53.16162491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be70 -00022563 53.16165161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be80 -00022564 53.16165543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be80 -00022565 53.16167831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be90 -00022566 53.16168213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be90 -00022567 53.16170883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bea0 -00022568 53.16171265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bea0 -00022569 53.16173935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2beb0 -00022570 53.16173935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2beb0 -00022571 53.16176605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bec0 -00022572 53.16176987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bec0 -00022573 53.16179657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bed0 -00022574 53.16179657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bed0 -00022575 53.16182327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bee0 -00022576 53.16182709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bee0 -00022577 53.16185379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bef0 -00022578 53.16185760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bef0 -00022579 53.16188049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf00 -00022580 53.16188431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf00 -00022581 53.16191101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf10 -00022582 53.16191483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf10 -00022583 53.16193771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf20 -00022584 53.16194153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf20 -00022585 53.16196823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf30 -00022586 53.16197205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf30 -00022587 53.16199493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf40 -00022588 53.16199875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf40 -00022589 53.16202545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf50 -00022590 53.16202927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf50 -00022591 53.16205597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf60 -00022592 53.16205597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf60 -00022593 53.16208267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf70 -00022594 53.16208649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf70 -00022595 53.16211319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf80 -00022596 53.16211319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf80 -00022597 53.16213989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf90 -00022598 53.16214371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf90 -00022599 53.16217041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfa0 -00022600 53.16217422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfa0 -00022601 53.16219711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfb0 -00022602 53.16219711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfb0 -00022603 53.16222763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfc0 -00022604 53.16222763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfc0 -00022605 53.16225433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfd0 -00022606 53.16225433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfd0 -00022607 53.16228104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfe0 -00022608 53.16228485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfe0 -00022609 53.16231155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff0 -00022610 53.16231537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff0 -00022611 53.16233826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c000 -00022612 53.16234207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c000 -00022613 53.16236877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c010 -00022614 53.16237259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c010 -00022615 53.16239548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c020 -00022616 53.16239929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c020 -00022617 53.16242599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c030 -00022618 53.16242981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c030 -00022619 53.16245270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c040 -00022620 53.16245651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c040 -00022621 53.16248322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c050 -00022622 53.16248703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c050 -00022623 53.16251373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c060 -00022624 53.16251373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c060 -00022625 53.16254044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c070 -00022626 53.16254425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c070 -00022627 53.16257095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c080 -00022628 53.16257095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c080 -00022629 53.16259766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c090 -00022630 53.16259766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c090 -00022631 53.16262817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a0 -00022632 53.16262817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a0 -00022633 53.16265488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b0 -00022634 53.16265869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b0 -00022635 53.16268539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c0 -00022636 53.16268921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c0 -00022637 53.16271210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d0 -00022638 53.16271591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d0 -00022639 53.16274261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e0 -00022640 53.16274643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e0 -00022641 53.16276932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f0 -00022642 53.16277313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f0 -00022643 53.16279984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c100 -00022644 53.16280365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c100 -00022645 53.16283035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c110 -00022646 53.16283035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c110 -00022647 53.16285706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c120 -00022648 53.16286087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c120 -00022649 53.16288757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c130 -00022650 53.16289139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c130 -00022651 53.16291428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c140 -00022652 53.16291809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c140 -00022653 53.16294479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c150 -00022654 53.16294479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c150 -00022655 53.16297150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c160 -00022656 53.16297150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c160 -00022657 53.16300201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c170 -00022658 53.16300201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c170 -00022659 53.16302872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c180 -00022660 53.16302872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c180 -00022661 53.16305542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c190 -00022662 53.16305923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c190 -00022663 53.16308594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a0 -00022664 53.16308975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a0 -00022665 53.16311264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b0 -00022666 53.16311646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b0 -00022667 53.16314316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c0 -00022668 53.16314697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c0 -00022669 53.16316986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d0 -00022670 53.16317368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d0 -00022671 53.16320038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e0 -00022672 53.16320419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e0 -00022673 53.16322708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f0 -00022674 53.16323090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f0 -00022675 53.16325760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c200 -00022676 53.16326141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c200 -00022677 53.16328812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c210 -00022678 53.16328812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c210 -00022679 53.16331482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c220 -00022680 53.16331863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c220 -00022681 53.16334534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c230 -00022682 53.16334534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c230 -00022683 53.16337204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c240 -00022684 53.16337204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c240 -00022685 53.16340256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c250 -00022686 53.16340256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c250 -00022687 53.16342926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c260 -00022688 53.16343307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c260 -00022689 53.16345978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c270 -00022690 53.16346359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c270 -00022691 53.16348648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c280 -00022692 53.16348648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c280 -00022693 53.16351700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c290 -00022694 53.16351700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c290 -00022695 53.16354370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a0 -00022696 53.16354370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a0 -00022697 53.16357040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b0 -00022698 53.16357422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b0 -00022699 53.16360092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c0 -00022700 53.16360474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c0 -00022701 53.16362762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d0 -00022702 53.16363144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d0 -00022703 53.16365814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e0 -00022704 53.16366196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e0 -00022705 53.16368484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f0 -00022706 53.16368866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f0 -00022707 53.16371536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c300 -00022708 53.16371918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c300 -00022709 53.16374588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c310 -00022710 53.16374588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c310 -00022711 53.16377258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c320 -00022712 53.16377640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c320 -00022713 53.16380310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c330 -00022714 53.16380310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c330 -00022715 53.16382980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c340 -00022716 53.16383362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c340 -00022717 53.16386032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c350 -00022718 53.16386414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c350 -00022719 53.16388702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c360 -00022720 53.16389084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c360 -00022721 53.16391754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c370 -00022722 53.16392136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c370 -00022723 53.16394424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c380 -00022724 53.16394806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c380 -00022725 53.16397476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c390 -00022726 53.16397858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c390 -00022727 53.16400146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a0 -00022728 53.16400528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a0 -00022729 53.16403198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3b0 -00022730 53.16403580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3b0 -00022731 53.16406250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3c0 -00022732 53.16406250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3c0 -00022733 53.16408920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d0 -00022734 53.16409302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d0 -00022735 53.16411972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e0 -00022736 53.16411972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e0 -00022737 53.16414642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f0 -00022738 53.16415024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f0 -00022739 53.16417694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c400 -00022740 53.16418076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c400 -00022741 53.16420364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c410 -00022742 53.16420746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c410 -00022743 53.16423416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c420 -00022744 53.16423798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c420 -00022745 53.16426086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c430 -00022746 53.16426468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c430 -00022747 53.16429138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c440 -00022748 53.16429520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c440 -00022749 53.16432190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c450 -00022750 53.16432190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c450 -00022751 53.16434860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c460 -00022752 53.16435242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c460 -00022753 53.16437912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c470 -00022754 53.16437912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c470 -00022755 53.16440582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c480 -00022756 53.16440582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c480 -00022757 53.16443634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c490 -00022758 53.16443634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c490 -00022759 53.16446304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a0 -00022760 53.16446304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a0 -00022761 53.16449356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b0 -00022762 53.16449356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b0 -00022763 53.16452026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c0 -00022764 53.16452408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c0 -00022765 53.16455078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d0 -00022766 53.16455460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d0 -00022767 53.16457748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e0 -00022768 53.16458130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e0 -00022769 53.16460800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f0 -00022770 53.16461182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f0 -00022771 53.16463852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c500 -00022772 53.16463852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c500 -00022773 53.16466522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c510 -00022774 53.16466904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c510 -00022775 53.16469574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c520 -00022776 53.16469574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c520 -00022777 53.16472244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c530 -00022778 53.16472626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c530 -00022779 53.16475296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c540 -00022780 53.16475677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c540 -00022781 53.16477966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c550 -00022782 53.16478348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c550 -00022783 53.16481018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c560 -00022784 53.16481400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c560 -00022785 53.16483688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c570 -00022786 53.16483688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c570 -00022787 53.16486359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c580 -00022788 53.16486740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c580 -00022789 53.16489410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c590 -00022790 53.16489410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c590 -00022791 53.16492081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a0 -00022792 53.16492462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a0 -00022793 53.16495132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b0 -00022794 53.16495514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b0 -00022795 53.16497803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c0 -00022796 53.16498184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c0 -00022797 53.16500854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d0 -00022798 53.16501236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d0 -00022799 53.16503525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e0 -00022800 53.16503906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e0 -00022801 53.16506577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f0 -00022802 53.16506958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f0 -00022803 53.16509628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c600 -00022804 53.16509628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c600 -00022805 53.16512299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c610 -00022806 53.16512680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c610 -00022807 53.16515350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c620 -00022808 53.16515350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c620 -00022809 53.16518021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c630 -00022810 53.16518021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c630 -00022811 53.16520691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c640 -00022812 53.16521072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c640 -00022813 53.16523361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c650 -00022814 53.16523743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c650 -00022815 53.16526413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c660 -00022816 53.16526794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c660 -00022817 53.16529465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c670 -00022818 53.16529465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c670 -00022819 53.16532135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c680 -00022820 53.16532516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c680 -00022821 53.16535187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c690 -00022822 53.16535187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c690 -00022823 53.16537857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6a0 -00022824 53.16538239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6a0 -00022825 53.16540909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6b0 -00022826 53.16541290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6b0 -00022827 53.16543579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6c0 -00022828 53.16543961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6c0 -00022829 53.16546631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6d0 -00022830 53.16547012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6d0 -00022831 53.16549301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6e0 -00022832 53.16549683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6e0 -00022833 53.16552353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6f0 -00022834 53.16552734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6f0 -00022835 53.16555023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c700 -00022836 53.16555405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c700 -00022837 53.16558075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c710 -00022838 53.16558075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c710 -00022839 53.16561127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c720 -00022840 53.16561127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c720 -00022841 53.16563797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c730 -00022842 53.16564178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c730 -00022843 53.16566849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c740 -00022844 53.16567230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c740 -00022845 53.16569519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c750 -00022846 53.16569901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c750 -00022847 53.16572571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c760 -00022848 53.16572571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c760 -00022849 53.16575241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c770 -00022850 53.16575241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c770 -00022851 53.16577911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c780 -00022852 53.16578293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c780 -00022853 53.16580963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c790 -00022854 53.16580963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c790 -00022855 53.16583633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a0 -00022856 53.16584015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a0 -00022857 53.16586685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b0 -00022858 53.16587067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b0 -00022859 53.16589355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c0 -00022860 53.16589737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c0 -00022861 53.16592407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d0 -00022862 53.16592789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d0 -00022863 53.16595078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e0 -00022864 53.16595459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e0 -00022865 53.16598129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7f0 -00022866 53.16598511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7f0 -00022867 53.16600800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c800 -00022868 53.16601181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c800 -00022869 53.16603851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c810 -00022870 53.16604233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c810 -00022871 53.16606903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c820 -00022872 53.16606903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c820 -00022873 53.16609573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c830 -00022874 53.16609955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c830 -00022875 53.16612625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c840 -00022876 53.16612625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c840 -00022877 53.16615295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c850 -00022878 53.16615677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c850 -00022879 53.16618347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c860 -00022880 53.16618729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c860 -00022881 53.16621017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c870 -00022882 53.16621017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c870 -00022883 53.16623688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c880 -00022884 53.16624069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c880 -00022885 53.16626740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c890 -00022886 53.16626740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c890 -00022887 53.16629410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a0 -00022888 53.16629791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a0 -00022889 53.16632462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b0 -00022890 53.16632462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b0 -00022891 53.16635132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c0 -00022892 53.16635513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c0 -00022893 53.16638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d0 -00022894 53.16638565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d0 -00022895 53.16640854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e0 -00022896 53.16641235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e0 -00022897 53.16643906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f0 -00022898 53.16644287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f0 -00022899 53.16646576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c900 -00022900 53.16646957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c900 -00022901 53.16649628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c910 -00022902 53.16649628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c910 -00022903 53.16652298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c920 -00022904 53.16652298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c920 -00022905 53.16654968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c930 -00022906 53.16655350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c930 -00022907 53.16658020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c940 -00022908 53.16658401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c940 -00022909 53.16660690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c950 -00022910 53.16661072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c950 -00022911 53.16663742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c960 -00022912 53.16664124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c960 -00022913 53.16666794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c970 -00022914 53.16667175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c970 -00022915 53.16669846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c980 -00022916 53.16670227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c980 -00022917 53.16672516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c990 -00022918 53.16672897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c990 -00022919 53.16675568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a0 -00022920 53.16675949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a0 -00022921 53.16678238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b0 -00022922 53.16678619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b0 -00022923 53.16681290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c0 -00022924 53.16681290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c0 -00022925 53.16684341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d0 -00022926 53.16684341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d0 -00022927 53.16687012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e0 -00022928 53.16687012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e0 -00022929 53.16690063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f0 -00022930 53.16690063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f0 -00022931 53.16692734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca00 -00022932 53.16692734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca00 -00022933 53.16695786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca10 -00022934 53.16695786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca10 -00022935 53.16698074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca20 -00022936 53.16698456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca20 -00022937 53.16701126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca30 -00022938 53.16701508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca30 -00022939 53.16704178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca40 -00022940 53.16704178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca40 -00022941 53.16706848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca50 -00022942 53.16707230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca50 -00022943 53.16709900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca60 -00022944 53.16709900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca60 -00022945 53.16712570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca70 -00022946 53.16712952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca70 -00022947 53.16715622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca80 -00022948 53.16716003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca80 -00022949 53.16718292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca90 -00022950 53.16718674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca90 -00022951 53.16721344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa0 -00022952 53.16721725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa0 -00022953 53.16724014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab0 -00022954 53.16724396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab0 -00022955 53.16727066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac0 -00022956 53.16727448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac0 -00022957 53.16729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad0 -00022958 53.16730118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad0 -00022959 53.16732788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae0 -00022960 53.16733170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae0 -00022961 53.16735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf0 -00022962 53.16735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf0 -00022963 53.16739655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb00 -00022964 53.16740036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb00 -00022965 53.16742706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb10 -00022966 53.16743088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb10 -00022967 53.16745758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb20 -00022968 53.16745758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb20 -00022969 53.16748428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb30 -00022970 53.16748428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb30 -00022971 53.16751099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb40 -00022972 53.16751480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb40 -00022973 53.16753769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb50 -00022974 53.16754150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb50 -00022975 53.16756821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb60 -00022976 53.16757202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb60 -00022977 53.16759491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb70 -00022978 53.16759872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb70 -00022979 53.16762543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb80 -00022980 53.16762924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb80 -00022981 53.16765594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb90 -00022982 53.16765594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb90 -00022983 53.16768265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cba0 -00022984 53.16768646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cba0 -00022985 53.16771317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbb0 -00022986 53.16771698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbb0 -00022987 53.16773987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbc0 -00022988 53.16774368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbc0 -00022989 53.16777039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbd0 -00022990 53.16777039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbd0 -00022991 53.16779709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbe0 -00022992 53.16779709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbe0 -00022993 53.16782379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbf0 -00022994 53.16782761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbf0 -00022995 53.16785431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc00 -00022996 53.16785431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc00 -00022997 53.16789246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc10 -00022998 53.16789627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc10 -00022999 53.16791916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc20 -00023000 53.16792297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc20 -00023001 53.16795349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc30 -00023002 53.16795349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc30 -00023003 53.16798401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc40 -00023004 53.16798782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc40 -00023005 53.16801453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc50 -00023006 53.16801453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc50 -00023007 53.16804123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc60 -00023008 53.16804504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc60 -00023009 53.16807175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc70 -00023010 53.16807175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc70 -00023011 53.16809845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc80 -00023012 53.16810226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc80 -00023013 53.16812897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc90 -00023014 53.16812897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc90 -00023015 53.16815567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca0 -00023016 53.16815567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca0 -00023017 53.16818619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb0 -00023018 53.16818619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb0 -00023019 53.16821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc0 -00023020 53.16821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc0 -00023021 53.16823959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd0 -00023022 53.16824341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd0 -00023023 53.16827011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce0 -00023024 53.16827011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce0 -00023025 53.16829681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf0 -00023026 53.16830063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf0 -00023027 53.16832733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd00 -00023028 53.16833115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd00 -00023029 53.16835403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd10 -00023030 53.16835785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd10 -00023031 53.16838455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd20 -00023032 53.16838837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd20 -00023033 53.16841125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd30 -00023034 53.16841507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd30 -00023035 53.16844177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd40 -00023036 53.16844559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd40 -00023037 53.16847229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd50 -00023038 53.16847229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd50 -00023039 53.16849899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd60 -00023040 53.16850281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd60 -00023041 53.16852951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd70 -00023042 53.16852951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd70 -00023043 53.16855621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd80 -00023044 53.16856003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd80 -00023045 53.16858673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd90 -00023046 53.16859055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd90 -00023047 53.16861343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda0 -00023048 53.16861725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda0 -00023049 53.16864395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb0 -00023050 53.16864777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb0 -00023051 53.16867065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc0 -00023052 53.16867447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc0 -00023053 53.16870117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd0 -00023054 53.16870499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd0 -00023055 53.16872787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde0 -00023056 53.16873169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde0 -00023057 53.16875839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf0 -00023058 53.16876221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf0 -00023059 53.16878891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce00 -00023060 53.16878891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce00 -00023061 53.16881561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce10 -00023062 53.16881943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce10 -00023063 53.16884613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce20 -00023064 53.16884613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce20 -00023065 53.16887283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce30 -00023066 53.16887283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce30 -00023067 53.16890335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce40 -00023068 53.16890335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce40 -00023069 53.16893005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce50 -00023070 53.16893005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce50 -00023071 53.16896057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce60 -00023072 53.16896057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce60 -00023073 53.16898727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce70 -00023074 53.16898727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce70 -00023075 53.16901398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce80 -00023076 53.16901779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce80 -00023077 53.16904449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce90 -00023078 53.16904449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce90 -00023079 53.16907120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea0 -00023080 53.16907501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea0 -00023081 53.16910172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb0 -00023082 53.16910553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb0 -00023083 53.16913223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec0 -00023084 53.16913605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec0 -00023085 53.16917038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced0 -00023086 53.16917419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced0 -00023087 53.16920853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee0 -00023088 53.16921616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee0 -00023089 53.16925812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef0 -00023090 53.16926193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef0 -00023091 53.16928864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf00 -00023092 53.16929245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf00 -00023093 53.16932297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf10 -00023094 53.16932297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf10 -00023095 53.16934967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf20 -00023096 53.16935349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf20 -00023097 53.16938019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf30 -00023098 53.16938400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf30 -00023099 53.16940689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf40 -00023100 53.16941452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf40 -00023101 53.16944122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf50 -00023102 53.16944504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf50 -00023103 53.16946793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf60 -00023104 53.16947174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf60 -00023105 53.16950226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf70 -00023106 53.16950226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf70 -00023107 53.16952896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf80 -00023108 53.16953278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf80 -00023109 53.16955948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf90 -00023110 53.16956329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf90 -00023111 53.16958618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfa0 -00023112 53.16959000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfa0 -00023113 53.16961670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfb0 -00023114 53.16962051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfb0 -00023115 53.16964340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfc0 -00023116 53.16964722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfc0 -00023117 53.16967392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfd0 -00023118 53.16967773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfd0 -00023119 53.16970062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfe0 -00023120 53.16970444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfe0 -00023121 53.16973114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cff0 -00023122 53.16973495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cff0 -00023123 53.16976166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d000 -00023124 53.16976547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d000 -00023125 53.16979218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d010 -00023126 53.16979599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d010 -00023127 53.16982269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d020 -00023128 53.16982269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d020 -00023129 53.16984940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d030 -00023130 53.16984940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d030 -00023131 53.16987991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d040 -00023132 53.16987991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d040 -00023133 53.16990662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d050 -00023134 53.16990662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d050 -00023135 53.16993713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d060 -00023136 53.16993713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d060 -00023137 53.16996002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d070 -00023138 53.16996384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d070 -00023139 53.16999054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d080 -00023140 53.16999435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d080 -00023141 53.17002106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d090 -00023142 53.17002106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d090 -00023143 53.17004776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0a0 -00023144 53.17005157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0a0 -00023145 53.17007828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0b0 -00023146 53.17007828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0b0 -00023147 53.17010498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0c0 -00023148 53.17010880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0c0 -00023149 53.17013550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0d0 -00023150 53.17013931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0d0 -00023151 53.17016220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0e0 -00023152 53.17016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0e0 -00023153 53.17019272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0f0 -00023154 53.17019653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0f0 -00023155 53.17021942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d100 -00023156 53.17022324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d100 -00023157 53.17024994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d110 -00023158 53.17025375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d110 -00023159 53.17027664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d120 -00023160 53.17028046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d120 -00023161 53.17030716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d130 -00023162 53.17031097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d130 -00023163 53.17033768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d140 -00023164 53.17033768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d140 -00023165 53.17036819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d150 -00023166 53.17036819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d150 -00023167 53.17039490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d160 -00023168 53.17039490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d160 -00023169 53.17042542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d170 -00023170 53.17042542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d170 -00023171 53.17045593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d180 -00023172 53.17045593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d180 -00023173 53.17048264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d190 -00023174 53.17048645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d190 -00023175 53.17051315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a0 -00023176 53.17051697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a0 -00023177 53.17053986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b0 -00023178 53.17054367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b0 -00023179 53.17057037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c0 -00023180 53.17057419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c0 -00023181 53.17059708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d0 -00023182 53.17060089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d0 -00023183 53.17062759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e0 -00023184 53.17063141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e0 -00023185 53.17065430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f0 -00023186 53.17065811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f0 -00023187 53.17068481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d200 -00023188 53.17068863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d200 -00023189 53.17071533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d210 -00023190 53.17071533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d210 -00023191 53.17074203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d220 -00023192 53.17074585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d220 -00023193 53.17077255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d230 -00023194 53.17077255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d230 -00023195 53.17079926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d240 -00023196 53.17080307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d240 -00023197 53.17083359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d250 -00023198 53.17083359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d250 -00023199 53.17086029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d260 -00023200 53.17086411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d260 -00023201 53.17089081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d270 -00023202 53.17089081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d270 -00023203 53.17091751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d280 -00023204 53.17092133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d280 -00023205 53.17094803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d290 -00023206 53.17095184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d290 -00023207 53.17097473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a0 -00023208 53.17097473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a0 -00023209 53.17100525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b0 -00023210 53.17100906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b0 -00023211 53.17103195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c0 -00023212 53.17103577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c0 -00023213 53.17106247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d0 -00023214 53.17106628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d0 -00023215 53.17109299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e0 -00023216 53.17109299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e0 -00023217 53.17111969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f0 -00023218 53.17112350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f0 -00023219 53.17115021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d300 -00023220 53.17115021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d300 -00023221 53.17117691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d310 -00023222 53.17118073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d310 -00023223 53.17120743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d320 -00023224 53.17121124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d320 -00023225 53.17123413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d330 -00023226 53.17123795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d330 -00023227 53.17126465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d340 -00023228 53.17126846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d340 -00023229 53.17129135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d350 -00023230 53.17129517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d350 -00023231 53.17132187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d360 -00023232 53.17132187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d360 -00023233 53.17134857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d370 -00023234 53.17134857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d370 -00023235 53.17137527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d380 -00023236 53.17137909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d380 -00023237 53.17140579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d390 -00023238 53.17140961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d390 -00023239 53.17143250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a0 -00023240 53.17143631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a0 -00023241 53.17146301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b0 -00023242 53.17146683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b0 -00023243 53.17148972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c0 -00023244 53.17149353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c0 -00023245 53.17152023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d0 -00023246 53.17152405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d0 -00023247 53.17155075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e0 -00023248 53.17155075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e0 -00023249 53.17158127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f0 -00023250 53.17158127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f0 -00023251 53.17160797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d400 -00023252 53.17161179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d400 -00023253 53.17163849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d410 -00023254 53.17164230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d410 -00023255 53.17166901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d420 -00023256 53.17166901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d420 -00023257 53.17169571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d430 -00023258 53.17169571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d430 -00023259 53.17172623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d440 -00023260 53.17172623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d440 -00023261 53.17174911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d450 -00023262 53.17175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d450 -00023263 53.17177963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d460 -00023264 53.17178345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d460 -00023265 53.17180634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d470 -00023266 53.17181015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d470 -00023267 53.17183685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d480 -00023268 53.17184067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d480 -00023269 53.17186737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d490 -00023270 53.17186737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d490 -00023271 53.17189407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a0 -00023272 53.17189789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a0 -00023273 53.17192459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b0 -00023274 53.17192459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b0 -00023275 53.17195129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c0 -00023276 53.17195511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c0 -00023277 53.17198181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d0 -00023278 53.17198181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d0 -00023279 53.17200851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e0 -00023280 53.17200851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e0 -00023281 53.17203522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f0 -00023282 53.17203903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f0 -00023283 53.17206573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d500 -00023284 53.17206573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d500 -00023285 53.17209244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d510 -00023286 53.17209625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d510 -00023287 53.17212296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d520 -00023288 53.17212296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d520 -00023289 53.17214966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d530 -00023290 53.17215347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d530 -00023291 53.17218018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d540 -00023292 53.17218399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d540 -00023293 53.17220688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d550 -00023294 53.17221069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d550 -00023295 53.17223740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -00023296 53.17224121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -00023297 53.17226410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -00023298 53.17226791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -00023299 53.17229462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -00023300 53.17229843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -00023301 53.17232132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -00023302 53.17232132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -00023303 53.17234802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -00023304 53.17235184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -00023305 53.17237854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -00023306 53.17238235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -00023307 53.17240524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -00023308 53.17240906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -00023309 53.17243576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -00023310 53.17243958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -00023311 53.17246246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -00023312 53.17246628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -00023313 53.17249298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -00023314 53.17249680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -00023315 53.17252350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -00023316 53.17252350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -00023317 53.17255020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d610 -00023318 53.17255020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d610 -00023319 53.17257690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d620 -00023320 53.17258072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d620 -00023321 53.17260361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d630 -00023322 53.17260742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d630 -00023323 53.17263412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d640 -00023324 53.17263794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d640 -00023325 53.17266083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d650 -00023326 53.17266464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d650 -00023327 53.17269135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d660 -00023328 53.17269516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d660 -00023329 53.17272186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d670 -00023330 53.17272186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d670 -00023331 53.17274857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d680 -00023332 53.17275238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d680 -00023333 53.17277908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d690 -00023334 53.17277908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d690 -00023335 53.17280579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a0 -00023336 53.17280960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a0 -00023337 53.17283630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b0 -00023338 53.17284012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b0 -00023339 53.17286301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c0 -00023340 53.17286682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c0 -00023341 53.17289352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d0 -00023342 53.17289734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d0 -00023343 53.17292023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e0 -00023344 53.17292404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e0 -00023345 53.17295074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f0 -00023346 53.17295456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f0 -00023347 53.17297745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d700 -00023348 53.17298126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d700 -00023349 53.17300797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d710 -00023350 53.17301178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d710 -00023351 53.17303848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d720 -00023352 53.17303848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d720 -00023353 53.17306519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d730 -00023354 53.17306900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d730 -00023355 53.17309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d740 -00023356 53.17309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d740 -00023357 53.17311859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d750 -00023358 53.17312241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d750 -00023359 53.17314911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d760 -00023360 53.17315292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d760 -00023361 53.17317581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d770 -00023362 53.17317963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d770 -00023363 53.17320633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d780 -00023364 53.17321014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d780 -00023365 53.17323685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d790 -00023366 53.17323685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d790 -00023367 53.17326355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a0 -00023368 53.17326736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a0 -00023369 53.17329407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7b0 -00023370 53.17329788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7b0 -00023371 53.17332077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7c0 -00023372 53.17332458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7c0 -00023373 53.17335129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7d0 -00023374 53.17335510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7d0 -00023375 53.17337799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7e0 -00023376 53.17338181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7e0 -00023377 53.17340851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7f0 -00023378 53.17340851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7f0 -00023379 53.17343521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d800 -00023380 53.17343521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d800 -00023381 53.17346191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d810 -00023382 53.17346573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d810 -00023383 53.17349243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d820 -00023384 53.17349625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d820 -00023385 53.17351913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d830 -00023386 53.17352295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d830 -00023387 53.17354965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d840 -00023388 53.17355347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d840 -00023389 53.17357635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d850 -00023390 53.17358017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d850 -00023391 53.17360687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d860 -00023392 53.17361069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d860 -00023393 53.17363739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d870 -00023394 53.17364120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d870 -00023395 53.17366791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d880 -00023396 53.17367172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d880 -00023397 53.17369461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d890 -00023398 53.17369843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d890 -00023399 53.17372513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a0 -00023400 53.17372513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a0 -00023401 53.17375183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b0 -00023402 53.17375183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b0 -00023403 53.17378235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c0 -00023404 53.17378616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c0 -00023405 53.17381287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d0 -00023406 53.17381287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d0 -00023407 53.17383957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e0 -00023408 53.17384338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e0 -00023409 53.17387009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f0 -00023410 53.17387390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f0 -00023411 53.17389679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d900 -00023412 53.17390060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d900 -00023413 53.17392731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d910 -00023414 53.17393112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d910 -00023415 53.17395401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d920 -00023416 53.17395782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d920 -00023417 53.17398453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d930 -00023418 53.17398834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d930 -00023419 53.17401505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d940 -00023420 53.17401505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d940 -00023421 53.17404556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d950 -00023422 53.17404556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d950 -00023423 53.17407227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d960 -00023424 53.17407227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d960 -00023425 53.17409897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d970 -00023426 53.17410660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d970 -00023427 53.17412949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d980 -00023428 53.17413330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d980 -00023429 53.17416000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d990 -00023430 53.17416000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d990 -00023431 53.17419052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a0 -00023432 53.17419052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a0 -00023433 53.17421341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b0 -00023434 53.17421722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b0 -00023435 53.17424393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c0 -00023436 53.17424774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c0 -00023437 53.17427063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d0 -00023438 53.17427444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d0 -00023439 53.17430496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e0 -00023440 53.17430496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e0 -00023441 53.17433548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f0 -00023442 53.17433929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f0 -00023443 53.17437363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da00 -00023444 53.17437744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da00 -00023445 53.17440414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da10 -00023446 53.17440796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da10 -00023447 53.17443085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -00023448 53.17443466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -00023449 53.17446136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -00023450 53.17446518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -00023451 53.17448807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -00023452 53.17449188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -00023453 53.17451859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -00023454 53.17452240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -00023455 53.17454910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -00023456 53.17454910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -00023457 53.17457581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -00023458 53.17457962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -00023459 53.17460632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -00023460 53.17460632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -00023461 53.17463303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -00023462 53.17463684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -00023463 53.17466354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -00023464 53.17466736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -00023465 53.17469025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -00023466 53.17469406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -00023467 53.17472076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -00023468 53.17472076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -00023469 53.17474747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -00023470 53.17475128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -00023471 53.17477798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -00023472 53.17478180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -00023473 53.17480469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -00023474 53.17480850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -00023475 53.17483521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -00023476 53.17483521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -00023477 53.17486572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -00023478 53.17486572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -00023479 53.17488861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -00023480 53.17489243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -00023481 53.17491913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db30 -00023482 53.17492294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db30 -00023483 53.17494583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db40 -00023484 53.17494965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db40 -00023485 53.17497635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db50 -00023486 53.17498016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db50 -00023487 53.17500305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db60 -00023488 53.17500687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db60 -00023489 53.17503357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db70 -00023490 53.17503357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db70 -00023491 53.17506409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db80 -00023492 53.17506409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db80 -00023493 53.17508698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db90 -00023494 53.17509079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db90 -00023495 53.17511749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba0 -00023496 53.17512131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba0 -00023497 53.17514420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb0 -00023498 53.17514801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb0 -00023499 53.17517471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc0 -00023500 53.17517853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc0 -00023501 53.17520142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd0 -00023502 53.17520523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd0 -00023503 53.17523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe0 -00023504 53.17523575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe0 -00023505 53.17526245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf0 -00023506 53.17526245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf0 -00023507 53.17528915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc00 -00023508 53.17529297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc00 -00023509 53.17531967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc10 -00023510 53.17532349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc10 -00023511 53.17534637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc20 -00023512 53.17535019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc20 -00023513 53.17537689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc30 -00023514 53.17538071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc30 -00023515 53.17540359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc40 -00023516 53.17540741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc40 -00023517 53.17543411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc50 -00023518 53.17543793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc50 -00023519 53.17546082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc60 -00023520 53.17546082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc60 -00023521 53.17548752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc70 -00023522 53.17549133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc70 -00023523 53.17551804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc80 -00023524 53.17552185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc80 -00023525 53.17554474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc90 -00023526 53.17554855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc90 -00023527 53.17557526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca0 -00023528 53.17557907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca0 -00023529 53.17560196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb0 -00023530 53.17560577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb0 -00023531 53.17563248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc0 -00023532 53.17563629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc0 -00023533 53.17565918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd0 -00023534 53.17566299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd0 -00023535 53.17568970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dce0 -00023536 53.17569351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dce0 -00023537 53.17572021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf0 -00023538 53.17572021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf0 -00023539 53.17574310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd00 -00023540 53.17574692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd00 -00023541 53.17577362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd10 -00023542 53.17577744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd10 -00023543 53.17580032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd20 -00023544 53.17580414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd20 -00023545 53.17583084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd30 -00023546 53.17583466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd30 -00023547 53.17585754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd40 -00023548 53.17586136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd40 -00023549 53.17588806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd50 -00023550 53.17589188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd50 -00023551 53.17591858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd60 -00023552 53.17591858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd60 -00023553 53.17594528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd70 -00023554 53.17594910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd70 -00023555 53.17597580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd80 -00023556 53.17597580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd80 -00023557 53.17600250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd90 -00023558 53.17600632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd90 -00023559 53.17603302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda0 -00023560 53.17603683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda0 -00023561 53.17605972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb0 -00023562 53.17606354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb0 -00023563 53.17609024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc0 -00023564 53.17609406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc0 -00023565 53.17611694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd0 -00023566 53.17611694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd0 -00023567 53.17614746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde0 -00023568 53.17614746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde0 -00023569 53.17617416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddf0 -00023570 53.17617416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddf0 -00023571 53.17620087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de00 -00023572 53.17620468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de00 -00023573 53.17623520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de10 -00023574 53.17623520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de10 -00023575 53.17626190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de20 -00023576 53.17626190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de20 -00023577 53.17628860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de30 -00023578 53.17629242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de30 -00023579 53.17631531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de40 -00023580 53.17631912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de40 -00023581 53.17634583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de50 -00023582 53.17634964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de50 -00023583 53.17637253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de60 -00023584 53.17637634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de60 -00023585 53.17640305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de70 -00023586 53.17640686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de70 -00023587 53.17643356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de80 -00023588 53.17643356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de80 -00023589 53.17646027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de90 -00023590 53.17646408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de90 -00023591 53.17649078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea0 -00023592 53.17649460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea0 -00023593 53.17651749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb0 -00023594 53.17652130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb0 -00023595 53.17654800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec0 -00023596 53.17655182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec0 -00023597 53.17657471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded0 -00023598 53.17657471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded0 -00023599 53.17660522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee0 -00023600 53.17660522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee0 -00023601 53.17663193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2def0 -00023602 53.17663193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2def0 -00023603 53.17665863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df00 -00023604 53.17666245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df00 -00023605 53.17668915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df10 -00023606 53.17669296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df10 -00023607 53.17671585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df20 -00023608 53.17671967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df20 -00023609 53.17674637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df30 -00023610 53.17675018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df30 -00023611 53.17677307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df40 -00023612 53.17677689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df40 -00023613 53.17680359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df50 -00023614 53.17680359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df50 -00023615 53.17683029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df60 -00023616 53.17683029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df60 -00023617 53.17685699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df70 -00023618 53.17686081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df70 -00023619 53.17688751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df80 -00023620 53.17689133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df80 -00023621 53.17691422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df90 -00023622 53.17691803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df90 -00023623 53.17694473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfa0 -00023624 53.17694855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfa0 -00023625 53.17697144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfb0 -00023626 53.17697525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfb0 -00023627 53.17700195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfc0 -00023628 53.17700577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfc0 -00023629 53.17702866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfd0 -00023630 53.17702866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfd0 -00023631 53.17705536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe0 -00023632 53.17705917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe0 -00023633 53.17708588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff0 -00023634 53.17708969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff0 -00023635 53.17711258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e000 -00023636 53.17711639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e000 -00023637 53.17714310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e010 -00023638 53.17714691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e010 -00023639 53.17716980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e020 -00023640 53.17717361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e020 -00023641 53.17720032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e030 -00023642 53.17720413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e030 -00023643 53.17722702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e040 -00023644 53.17723083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e040 -00023645 53.17725754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e050 -00023646 53.17726135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e050 -00023647 53.17728806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e060 -00023648 53.17728806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e060 -00023649 53.17731476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e070 -00023650 53.17731476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e070 -00023651 53.17734146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e080 -00023652 53.17734528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e080 -00023653 53.17736816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e090 -00023654 53.17737198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e090 -00023655 53.17739868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a0 -00023656 53.17740250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a0 -00023657 53.17742538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b0 -00023658 53.17742920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b0 -00023659 53.17745590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c0 -00023660 53.17745972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c0 -00023661 53.17748642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d0 -00023662 53.17748642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d0 -00023663 53.17751312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e0 -00023664 53.17751312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e0 -00023665 53.17753983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f0 -00023666 53.17754364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f0 -00023667 53.17756653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e100 -00023668 53.17757034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e100 -00023669 53.17759705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e110 -00023670 53.17760086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e110 -00023671 53.17762375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e120 -00023672 53.17762756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e120 -00023673 53.17765427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e130 -00023674 53.17765808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e130 -00023675 53.17768478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e140 -00023676 53.17768478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e140 -00023677 53.17771149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e150 -00023678 53.17771149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e150 -00023679 53.17774200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e160 -00023680 53.17774200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e160 -00023681 53.17776871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e170 -00023682 53.17776871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e170 -00023683 53.17779922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e180 -00023684 53.17779922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e180 -00023685 53.17782211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e190 -00023686 53.17782593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e190 -00023687 53.17785263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -00023688 53.17785645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -00023689 53.17788315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -00023690 53.17788315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -00023691 53.17790985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -00023692 53.17791367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -00023693 53.17794037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -00023694 53.17794418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -00023695 53.17796707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -00023696 53.17797089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -00023697 53.17799759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1f0 -00023698 53.17799759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1f0 -00023699 53.17802429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e200 -00023700 53.17802429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e200 -00023701 53.17805099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e210 -00023702 53.17805481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e210 -00023703 53.17808151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e220 -00023704 53.17808151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e220 -00023705 53.17810822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e230 -00023706 53.17811203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e230 -00023707 53.17813873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e240 -00023708 53.17814255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e240 -00023709 53.17816544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e250 -00023710 53.17816925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e250 -00023711 53.17819595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e260 -00023712 53.17819977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e260 -00023713 53.17822266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e270 -00023714 53.17822647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e270 -00023715 53.17825317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e280 -00023716 53.17825317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e280 -00023717 53.17827988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e290 -00023718 53.17827988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e290 -00023719 53.17830658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a0 -00023720 53.17831039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a0 -00023721 53.17833710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2b0 -00023722 53.17834091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2b0 -00023723 53.17836380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2c0 -00023724 53.17836761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2c0 -00023725 53.17839432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2d0 -00023726 53.17839813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2d0 -00023727 53.17842102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2e0 -00023728 53.17842484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2e0 -00023729 53.17845154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2f0 -00023730 53.17845535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2f0 -00023731 53.17847824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e300 -00023732 53.17848206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e300 -00023733 53.17850876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e310 -00023734 53.17850876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e310 -00023735 53.17853546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e320 -00023736 53.17853928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e320 -00023737 53.17856216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e330 -00023738 53.17856598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e330 -00023739 53.17859268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e340 -00023740 53.17859650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e340 -00023741 53.17861938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e350 -00023742 53.17862320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e350 -00023743 53.17864990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e360 -00023744 53.17865372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e360 -00023745 53.17867661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e370 -00023746 53.17868042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e370 -00023747 53.17870712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e380 -00023748 53.17870712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e380 -00023749 53.17873383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e390 -00023750 53.17873764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e390 -00023751 53.17876053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3a0 -00023752 53.17876434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3a0 -00023753 53.17879105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3b0 -00023754 53.17879486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3b0 -00023755 53.17881775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3c0 -00023756 53.17882156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3c0 -00023757 53.17884827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3d0 -00023758 53.17885208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3d0 -00023759 53.17887497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3e0 -00023760 53.17887878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3e0 -00023761 53.17890549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3f0 -00023762 53.17890930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3f0 -00023763 53.17893600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e400 -00023764 53.17893600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e400 -00023765 53.17895889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e410 -00023766 53.17896271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e410 -00023767 53.17898941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e420 -00023768 53.17899323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e420 -00023769 53.17901993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e430 -00023770 53.17902374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e430 -00023771 53.17905045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e440 -00023772 53.17905045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e440 -00023773 53.17907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e450 -00023774 53.17907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e450 -00023775 53.17910385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e460 -00023776 53.17910767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e460 -00023777 53.17913437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e470 -00023778 53.17913437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e470 -00023779 53.17916107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e480 -00023780 53.17916489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e480 -00023781 53.17919159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e490 -00023782 53.17919540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e490 -00023783 53.17921829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a0 -00023784 53.17922211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a0 -00023785 53.17924881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b0 -00023786 53.17925262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b0 -00023787 53.17927551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c0 -00023788 53.17927551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c0 -00023789 53.17930222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d0 -00023790 53.17930603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d0 -00023791 53.17933273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e0 -00023792 53.17933273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e0 -00023793 53.17935944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f0 -00023794 53.17936325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f0 -00023795 53.17938995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e500 -00023796 53.17939377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e500 -00023797 53.17941666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e510 -00023798 53.17942047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e510 -00023799 53.17944717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e520 -00023800 53.17945099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e520 -00023801 53.17947388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e530 -00023802 53.17947388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e530 -00023803 53.17950058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e540 -00023804 53.17950439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e540 -00023805 53.17953110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e550 -00023806 53.17953110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e550 -00023807 53.17955780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e560 -00023808 53.17956161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e560 -00023809 53.17958832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e570 -00023810 53.17959213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e570 -00023811 53.17961502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e580 -00023812 53.17961884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e580 -00023813 53.17964554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e590 -00023814 53.17964935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e590 -00023815 53.17967224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a0 -00023816 53.17967606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a0 -00023817 53.17970276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b0 -00023818 53.17970657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b0 -00023819 53.17972946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c0 -00023820 53.17973328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c0 -00023821 53.17975998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d0 -00023822 53.17975998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d0 -00023823 53.17978668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e0 -00023824 53.17979050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e0 -00023825 53.17981339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f0 -00023826 53.17981720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f0 -00023827 53.17984390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e600 -00023828 53.17984772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e600 -00023829 53.17987061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e610 -00023830 53.17987442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e610 -00023831 53.17990112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e620 -00023832 53.17990494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e620 -00023833 53.17992783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e630 -00023834 53.17993164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e630 -00023835 53.17995834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e640 -00023836 53.17996216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e640 -00023837 53.17998886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e650 -00023838 53.17998886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e650 -00023839 53.18001175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e660 -00023840 53.18001556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e660 -00023841 53.18004227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e670 -00023842 53.18004608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e670 -00023843 53.18006897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e680 -00023844 53.18007278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e680 -00023845 53.18009949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e690 -00023846 53.18010330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e690 -00023847 53.18012619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6a0 -00023848 53.18013000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6a0 -00023849 53.18015671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b0 -00023850 53.18016052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b0 -00023851 53.18018723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c0 -00023852 53.18018723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c0 -00023853 53.18021011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d0 -00023854 53.18021393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d0 -00023855 53.18024063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e0 -00023856 53.18024445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e0 -00023857 53.18026733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6f0 -00023858 53.18027115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6f0 -00023859 53.18029785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e700 -00023860 53.18030167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e700 -00023861 53.18032455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e710 -00023862 53.18032837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e710 -00023863 53.18035507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e720 -00023864 53.18035889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e720 -00023865 53.18038559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e730 -00023866 53.18038559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e730 -00023867 53.18041229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e740 -00023868 53.18041611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e740 -00023869 53.18044281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e750 -00023870 53.18044281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e750 -00023871 53.18046570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e760 -00023872 53.18046951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e760 -00023873 53.18049622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e770 -00023874 53.18050003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e770 -00023875 53.18052292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e780 -00023876 53.18052673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e780 -00023877 53.18055344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e790 -00023878 53.18055725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e790 -00023879 53.18058395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a0 -00023880 53.18058395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a0 -00023881 53.18061066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b0 -00023882 53.18061447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b0 -00023883 53.18064117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c0 -00023884 53.18064499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c0 -00023885 53.18066788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d0 -00023886 53.18066788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d0 -00023887 53.18069458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7e0 -00023888 53.18069839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7e0 -00023889 53.18072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7f0 -00023890 53.18072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7f0 -00023891 53.18075180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e800 -00023892 53.18075562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e800 -00023893 53.18078232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e810 -00023894 53.18078232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e810 -00023895 53.18080902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e820 -00023896 53.18081284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e820 -00023897 53.18083954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e830 -00023898 53.18084335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e830 -00023899 53.18086624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e840 -00023900 53.18086624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e840 -00023901 53.18089676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e850 -00023902 53.18090057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e850 -00023903 53.18092346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e860 -00023904 53.18092346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e860 -00023905 53.18095398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e870 -00023906 53.18095398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e870 -00023907 53.18098068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e880 -00023908 53.18098068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e880 -00023909 53.18100739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e890 -00023910 53.18101120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e890 -00023911 53.18103790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8a0 -00023912 53.18104172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8a0 -00023913 53.18106461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8b0 -00023914 53.18106842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8b0 -00023915 53.18109512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8c0 -00023916 53.18109894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8c0 -00023917 53.18112183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8d0 -00023918 53.18112564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8d0 -00023919 53.18115234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8e0 -00023920 53.18115616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8e0 -00023921 53.18117905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8f0 -00023922 53.18117905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8f0 -00023923 53.18120575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e900 -00023924 53.18120956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e900 -00023925 53.18123627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e910 -00023926 53.18124008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e910 -00023927 53.18126297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e920 -00023928 53.18126678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e920 -00023929 53.18129349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e930 -00023930 53.18129730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e930 -00023931 53.18132019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e940 -00023932 53.18132401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e940 -00023933 53.18135071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e950 -00023934 53.18135452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e950 -00023935 53.18137741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e960 -00023936 53.18138123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e960 -00023937 53.18140793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e970 -00023938 53.18140793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e970 -00023939 53.18143463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e980 -00023940 53.18143845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e980 -00023941 53.18146133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e990 -00023942 53.18146515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e990 -00023943 53.18149185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a0 -00023944 53.18149567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a0 -00023945 53.18151855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b0 -00023946 53.18152237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b0 -00023947 53.18154907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c0 -00023948 53.18155289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c0 -00023949 53.18157578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d0 -00023950 53.18157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d0 -00023951 53.18160629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e0 -00023952 53.18161011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e0 -00023953 53.18163681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f0 -00023954 53.18163681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f0 -00023955 53.18166351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea00 -00023956 53.18166351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea00 -00023957 53.18169022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea10 -00023958 53.18169403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea10 -00023959 53.18171692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea20 -00023960 53.18172073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea20 -00023961 53.18174744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea30 -00023962 53.18175125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea30 -00023963 53.18177414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea40 -00023964 53.18177795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea40 -00023965 53.18180466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea50 -00023966 53.18180847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea50 -00023967 53.18183517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea60 -00023968 53.18183517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea60 -00023969 53.18186188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea70 -00023970 53.18186188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea70 -00023971 53.18189240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea80 -00023972 53.18189240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea80 -00023973 53.18191528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea90 -00023974 53.18191910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea90 -00023975 53.18194580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa0 -00023976 53.18194962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa0 -00023977 53.18197250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab0 -00023978 53.18197632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab0 -00023979 53.18200302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac0 -00023980 53.18200684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac0 -00023981 53.18203354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead0 -00023982 53.18203354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead0 -00023983 53.18206024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae0 -00023984 53.18206406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae0 -00023985 53.18209076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf0 -00023986 53.18209076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf0 -00023987 53.18211365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb00 -00023988 53.18211746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb00 -00023989 53.18214798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb10 -00023990 53.18214798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb10 -00023991 53.18217468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb20 -00023992 53.18217468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb20 -00023993 53.18220139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb30 -00023994 53.18220520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb30 -00023995 53.18223190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb40 -00023996 53.18223190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb40 -00023997 53.18225861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb50 -00023998 53.18226242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb50 -00023999 53.18228912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb60 -00024000 53.18229294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb60 -00024001 53.18231583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb70 -00024002 53.18231964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb70 -00024003 53.18234634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb80 -00024004 53.18235016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb80 -00024005 53.18237305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb90 -00024006 53.18237305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb90 -00024007 53.18239975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eba0 -00024008 53.18240356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eba0 -00024009 53.18243027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebb0 -00024010 53.18243027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebb0 -00024011 53.18245697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebc0 -00024012 53.18246078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebc0 -00024013 53.18248749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebd0 -00024014 53.18249130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebd0 -00024015 53.18251419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebe0 -00024016 53.18251801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebe0 -00024017 53.18254471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebf0 -00024018 53.18254852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebf0 -00024019 53.18257141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec00 -00024020 53.18257141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec00 -00024021 53.18260193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec10 -00024022 53.18260193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec10 -00024023 53.18262863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec20 -00024024 53.18262863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec20 -00024025 53.18265533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec30 -00024026 53.18265915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec30 -00024027 53.18268585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec40 -00024028 53.18268967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec40 -00024029 53.18271255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec50 -00024030 53.18271637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec50 -00024031 53.18274307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec60 -00024032 53.18274689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec60 -00024033 53.18276978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec70 -00024034 53.18277359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec70 -00024035 53.18280029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec80 -00024036 53.18280411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec80 -00024037 53.18282700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec90 -00024038 53.18283081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec90 -00024039 53.18285751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eca0 -00024040 53.18286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eca0 -00024041 53.18288803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecb0 -00024042 53.18288803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecb0 -00024043 53.18291092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecc0 -00024044 53.18291473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecc0 -00024045 53.18294144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecd0 -00024046 53.18294525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecd0 -00024047 53.18296814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ece0 -00024048 53.18297195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ece0 -00024049 53.18299866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecf0 -00024050 53.18300247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecf0 -00024051 53.18302536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed00 -00024052 53.18302917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed00 -00024053 53.18305588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed10 -00024054 53.18305969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed10 -00024055 53.18308640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed20 -00024056 53.18308640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed20 -00024057 53.18310928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed30 -00024058 53.18311310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed30 -00024059 53.18313980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed40 -00024060 53.18314362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed40 -00024061 53.18316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed50 -00024062 53.18317032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed50 -00024063 53.18319702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed60 -00024064 53.18320084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed60 -00024065 53.18322372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed70 -00024066 53.18322754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed70 -00024067 53.18325424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed80 -00024068 53.18325806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed80 -00024069 53.18328476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed90 -00024070 53.18328476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed90 -00024071 53.18331146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eda0 -00024072 53.18331146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eda0 -00024073 53.18333817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edb0 -00024074 53.18334198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edb0 -00024075 53.18336487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edc0 -00024076 53.18336868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edc0 -00024077 53.18339539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edd0 -00024078 53.18339920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edd0 -00024079 53.18342590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ede0 -00024080 53.18342590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ede0 -00024081 53.18345261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edf0 -00024082 53.18345642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edf0 -00024083 53.18348312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee00 -00024084 53.18348312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee00 -00024085 53.18350983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee10 -00024086 53.18351364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee10 -00024087 53.18354034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee20 -00024088 53.18354416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee20 -00024089 53.18356705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee30 -00024090 53.18356705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee30 -00024091 53.18359375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee40 -00024092 53.18359756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee40 -00024093 53.18362427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -00024094 53.18362427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -00024095 53.18365097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -00024096 53.18365479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -00024097 53.18368912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -00024098 53.18369293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -00024099 53.18372345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -00024100 53.18372726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -00024101 53.18375397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -00024102 53.18375778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -00024103 53.18378067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -00024104 53.18378448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -00024105 53.18381119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -00024106 53.18381500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -00024107 53.18384171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -00024108 53.18384171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -00024109 53.18386841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -00024110 53.18387222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -00024111 53.18389893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -00024112 53.18389893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -00024113 53.18392563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -00024114 53.18392563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -00024115 53.18395233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -00024116 53.18395615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -00024117 53.18397903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -00024118 53.18398285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -00024119 53.18400955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -00024120 53.18401337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -00024121 53.18404007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -00024122 53.18404007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -00024123 53.18406677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -00024124 53.18407059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -00024125 53.18409729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -00024126 53.18410110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -00024127 53.18412399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef60 -00024128 53.18412781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef60 -00024129 53.18415451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef70 -00024130 53.18415833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef70 -00024131 53.18418121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef80 -00024132 53.18418503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef80 -00024133 53.18421173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef90 -00024134 53.18421555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef90 -00024135 53.18423843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa0 -00024136 53.18423843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa0 -00024137 53.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb0 -00024138 53.18426895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb0 -00024139 53.18429565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc0 -00024140 53.18429947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc0 -00024141 53.18432236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efd0 -00024142 53.18432617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efd0 -00024143 53.18435287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efe0 -00024144 53.18435669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efe0 -00024145 53.18437958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eff0 -00024146 53.18438339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eff0 -00024147 53.18441010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f000 -00024148 53.18441391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f000 -00024149 53.18443680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f010 -00024150 53.18443680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f010 -00024151 53.18446732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f020 -00024152 53.18446732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f020 -00024153 53.18449402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f030 -00024154 53.18449783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f030 -00024155 53.18452072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f040 -00024156 53.18452454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f040 -00024157 53.18455124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f050 -00024158 53.18455505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f050 -00024159 53.18457794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f060 -00024160 53.18458176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f060 -00024161 53.18460846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f070 -00024162 53.18461227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f070 -00024163 53.18463516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f080 -00024164 53.18463898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f080 -00024165 53.18466949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f090 -00024166 53.18467331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f090 -00024167 53.18469620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0a0 -00024168 53.18470001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0a0 -00024169 53.18472672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b0 -00024170 53.18473053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b0 -00024171 53.18475342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c0 -00024172 53.18475342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c0 -00024173 53.18478012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d0 -00024174 53.18478394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d0 -00024175 53.18481064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e0 -00024176 53.18481445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e0 -00024177 53.18483734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f0 -00024178 53.18484116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f0 -00024179 53.18486786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f100 -00024180 53.18487167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f100 -00024181 53.18489456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f110 -00024182 53.18489838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f110 -00024183 53.18492508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f120 -00024184 53.18492889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f120 -00024185 53.18495178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f130 -00024186 53.18495178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f130 -00024187 53.18497849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f140 -00024188 53.18498230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f140 -00024189 53.18500900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f150 -00024190 53.18501282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f150 -00024191 53.18503571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f160 -00024192 53.18503952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f160 -00024193 53.18506622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f170 -00024194 53.18507004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f170 -00024195 53.18509293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f180 -00024196 53.18509674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f180 -00024197 53.18512344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f190 -00024198 53.18512726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f190 -00024199 53.18515015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a0 -00024200 53.18515015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a0 -00024201 53.18518066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b0 -00024202 53.18518066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b0 -00024203 53.18520737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c0 -00024204 53.18521118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c0 -00024205 53.18523407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d0 -00024206 53.18523788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d0 -00024207 53.18526459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e0 -00024208 53.18526840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e0 -00024209 53.18529129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f0 -00024210 53.18529510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f0 -00024211 53.18532181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f200 -00024212 53.18532562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f200 -00024213 53.18534851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f210 -00024214 53.18535233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f210 -00024215 53.18537903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f220 -00024216 53.18538284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f220 -00024217 53.18540955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f230 -00024218 53.18540955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f230 -00024219 53.18543625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f240 -00024220 53.18544006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f240 -00024221 53.18546677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f250 -00024222 53.18547058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f250 -00024223 53.18549347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f260 -00024224 53.18549728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f260 -00024225 53.18552399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f270 -00024226 53.18552399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f270 -00024227 53.18555069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f280 -00024228 53.18555069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f280 -00024229 53.18557739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f290 -00024230 53.18558121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f290 -00024231 53.18560791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a0 -00024232 53.18560791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a0 -00024233 53.18563461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b0 -00024234 53.18563843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b0 -00024235 53.18566513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c0 -00024236 53.18566895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c0 -00024237 53.18569183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d0 -00024238 53.18569565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d0 -00024239 53.18572235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e0 -00024240 53.18572235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e0 -00024241 53.18574905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f0 -00024242 53.18574905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f0 -00024243 53.18577576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f300 -00024244 53.18577957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f300 -00024245 53.18580627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f310 -00024246 53.18580627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f310 -00024247 53.18583298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f320 -00024248 53.18583679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f320 -00024249 53.18586349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f330 -00024250 53.18586731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f330 -00024251 53.18589020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f340 -00024252 53.18589401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f340 -00024253 53.18592072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f350 -00024254 53.18592453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f350 -00024255 53.18594742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f360 -00024256 53.18595123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f360 -00024257 53.18597794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f370 -00024258 53.18598175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f370 -00024259 53.18600464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f380 -00024260 53.18600845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f380 -00024261 53.18603516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f390 -00024262 53.18603516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f390 -00024263 53.18606186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a0 -00024264 53.18606567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a0 -00024265 53.18608856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b0 -00024266 53.18609238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b0 -00024267 53.18611908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c0 -00024268 53.18612289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c0 -00024269 53.18614578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d0 -00024270 53.18614960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d0 -00024271 53.18617630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e0 -00024272 53.18618011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e0 -00024273 53.18620300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f0 -00024274 53.18620682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f0 -00024275 53.18623352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f400 -00024276 53.18623352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f400 -00024277 53.18626022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f410 -00024278 53.18626404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f410 -00024279 53.18628693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f420 -00024280 53.18629074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f420 -00024281 53.18631744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f430 -00024282 53.18632126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f430 -00024283 53.18634415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f440 -00024284 53.18634796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f440 -00024285 53.18637466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f450 -00024286 53.18637848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f450 -00024287 53.18640137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f460 -00024288 53.18640518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f460 -00024289 53.18643188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f470 -00024290 53.18643188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f470 -00024291 53.18646240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f480 -00024292 53.18646240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f480 -00024293 53.18648529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f490 -00024294 53.18648911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f490 -00024295 53.18651581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a0 -00024296 53.18651962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a0 -00024297 53.18654251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -00024298 53.18654633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -00024299 53.18657303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -00024300 53.18657684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -00024301 53.18659973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -00024302 53.18660355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -00024303 53.18663025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4e0 -00024304 53.18663406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4e0 -00024305 53.18666077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4f0 -00024306 53.18666077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4f0 -00024307 53.18668747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f500 -00024308 53.18669128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f500 -00024309 53.18671799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f510 -00024310 53.18672180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f510 -00024311 53.18674469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f520 -00024312 53.18674850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f520 -00024313 53.18677521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f530 -00024314 53.18677521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f530 -00024315 53.18680191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f540 -00024316 53.18680191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f540 -00024317 53.18682861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f550 -00024318 53.18683243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f550 -00024319 53.18685913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f560 -00024320 53.18685913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f560 -00024321 53.18688583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f570 -00024322 53.18688965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f570 -00024323 53.18691635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f580 -00024324 53.18692017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f580 -00024325 53.18694305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -00024326 53.18694687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -00024327 53.18697357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -00024328 53.18697739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -00024329 53.18700027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -00024330 53.18700027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -00024331 53.18702698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -00024332 53.18703079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -00024333 53.18705750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -00024334 53.18705750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -00024335 53.18708420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -00024336 53.18708801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -00024337 53.18711472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -00024338 53.18711853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -00024339 53.18714142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -00024340 53.18714523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -00024341 53.18717194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f610 -00024342 53.18717575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f610 -00024343 53.18719864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f620 -00024344 53.18720245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f620 -00024345 53.18722916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f630 -00024346 53.18723297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f630 -00024347 53.18725586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f640 -00024348 53.18725967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f640 -00024349 53.18728638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f650 -00024350 53.18728638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f650 -00024351 53.18731308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f660 -00024352 53.18731689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f660 -00024353 53.18733978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f670 -00024354 53.18734360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f670 -00024355 53.18737030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f680 -00024356 53.18737411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f680 -00024357 53.18739700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f690 -00024358 53.18740082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f690 -00024359 53.18742752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a0 -00024360 53.18743134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a0 -00024361 53.18745422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b0 -00024362 53.18745804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b0 -00024363 53.18748474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c0 -00024364 53.18748856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c0 -00024365 53.18751526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d0 -00024366 53.18751526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d0 -00024367 53.18754578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e0 -00024368 53.18755341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e0 -00024369 53.18757629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6f0 -00024370 53.18758011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6f0 -00024371 53.18760681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f700 -00024372 53.18761063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f700 -00024373 53.18763351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f710 -00024374 53.18763733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f710 -00024375 53.18766403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f720 -00024376 53.18766785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f720 -00024377 53.18769455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f730 -00024378 53.18769455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f730 -00024379 53.18772125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f740 -00024380 53.18772125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f740 -00024381 53.18775177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f750 -00024382 53.18775177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f750 -00024383 53.18777847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f760 -00024384 53.18778229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f760 -00024385 53.18780899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f770 -00024386 53.18780899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f770 -00024387 53.18783569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f780 -00024388 53.18783569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f780 -00024389 53.18786240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f790 -00024390 53.18786621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f790 -00024391 53.18789291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a0 -00024392 53.18789291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a0 -00024393 53.18791962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b0 -00024394 53.18792343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b0 -00024395 53.18795013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c0 -00024396 53.18795013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c0 -00024397 53.18797684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d0 -00024398 53.18798065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d0 -00024399 53.18800735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e0 -00024400 53.18800735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e0 -00024401 53.18803406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f0 -00024402 53.18803406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f0 -00024403 53.18806076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f800 -00024404 53.18806458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f800 -00024405 53.18809128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f810 -00024406 53.18809128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f810 -00024407 53.18811798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f820 -00024408 53.18812180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f820 -00024409 53.18814850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f830 -00024410 53.18814850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f830 -00024411 53.18817520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f840 -00024412 53.18817902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f840 -00024413 53.18820572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f850 -00024414 53.18820953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f850 -00024415 53.18823242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f860 -00024416 53.18823242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f860 -00024417 53.18825912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f870 -00024418 53.18826294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f870 -00024419 53.18828964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f880 -00024420 53.18828964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f880 -00024421 53.18831635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f890 -00024422 53.18832016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f890 -00024423 53.18834686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a0 -00024424 53.18835068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a0 -00024425 53.18837357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b0 -00024426 53.18837738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b0 -00024427 53.18840408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c0 -00024428 53.18840790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c0 -00024429 53.18843079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d0 -00024430 53.18843460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d0 -00024431 53.18846130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e0 -00024432 53.18846130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e0 -00024433 53.18848801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f0 -00024434 53.18848801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f0 -00024435 53.18851471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f900 -00024436 53.18851852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f900 -00024437 53.18854523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f910 -00024438 53.18854904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f910 -00024439 53.18857193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f920 -00024440 53.18857574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f920 -00024441 53.18860245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f930 -00024442 53.18860626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f930 -00024443 53.18862915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f940 -00024444 53.18863297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f940 -00024445 53.18865967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f950 -00024446 53.18866348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f950 -00024447 53.18868637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f960 -00024448 53.18868637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f960 -00024449 53.18871689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f970 -00024450 53.18871689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f970 -00024451 53.18874359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f980 -00024452 53.18874741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f980 -00024453 53.18877029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f990 -00024454 53.18877411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f990 -00024455 53.18880081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a0 -00024456 53.18880463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a0 -00024457 53.18882751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b0 -00024458 53.18883133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b0 -00024459 53.18885803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9c0 -00024460 53.18886185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9c0 -00024461 53.18888474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9d0 -00024462 53.18888474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9d0 -00024463 53.18891525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e0 -00024464 53.18891525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e0 -00024465 53.18894196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f0 -00024466 53.18894577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f0 -00024467 53.18896866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa00 -00024468 53.18897247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa00 -00024469 53.18899918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa10 -00024470 53.18900299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa10 -00024471 53.18902588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa20 -00024472 53.18902969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa20 -00024473 53.18905640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa30 -00024474 53.18906021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa30 -00024475 53.18908310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa40 -00024476 53.18908691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa40 -00024477 53.18911362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa50 -00024478 53.18911743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa50 -00024479 53.18914413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa60 -00024480 53.18914413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa60 -00024481 53.18917084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa70 -00024482 53.18917084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa70 -00024483 53.18919754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa80 -00024484 53.18920135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa80 -00024485 53.18922424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa90 -00024486 53.18922806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa90 -00024487 53.18925476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa0 -00024488 53.18925858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa0 -00024489 53.18928146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fab0 -00024490 53.18928528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fab0 -00024491 53.18931198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fac0 -00024492 53.18931580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fac0 -00024493 53.18934250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fad0 -00024494 53.18934250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fad0 -00024495 53.18936920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fae0 -00024496 53.18936920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fae0 -00024497 53.18939590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faf0 -00024498 53.18939972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faf0 -00024499 53.18942261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb00 -00024500 53.18942642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb00 -00024501 53.18945313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb10 -00024502 53.18945694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb10 -00024503 53.18947983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb20 -00024504 53.18948364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb20 -00024505 53.18951035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb30 -00024506 53.18951416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb30 -00024507 53.18954086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb40 -00024508 53.18954086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb40 -00024509 53.18956757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb50 -00024510 53.18956757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb50 -00024511 53.18959427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb60 -00024512 53.18959808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb60 -00024513 53.18962097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb70 -00024514 53.18962479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb70 -00024515 53.18965149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb80 -00024516 53.18965530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb80 -00024517 53.18967819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb90 -00024518 53.18968201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb90 -00024519 53.18970871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba0 -00024520 53.18971252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba0 -00024521 53.18973923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb0 -00024522 53.18973923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb0 -00024523 53.18976593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc0 -00024524 53.18976974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc0 -00024525 53.18979645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd0 -00024526 53.18980026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd0 -00024527 53.18982315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe0 -00024528 53.18982697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe0 -00024529 53.18985367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf0 -00024530 53.18985367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf0 -00024531 53.18988037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc00 -00024532 53.18988037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc00 -00024533 53.18990707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc10 -00024534 53.18991089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc10 -00024535 53.18993759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc20 -00024536 53.18993759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc20 -00024537 53.18996429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc30 -00024538 53.18996811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc30 -00024539 53.18999481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc40 -00024540 53.18999863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc40 -00024541 53.19002151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc50 -00024542 53.19002533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc50 -00024543 53.19005203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc60 -00024544 53.19005203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc60 -00024545 53.19007874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc70 -00024546 53.19007874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc70 -00024547 53.19010544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc80 -00024548 53.19010925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc80 -00024549 53.19013596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc90 -00024550 53.19013596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc90 -00024551 53.19016266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca0 -00024552 53.19016647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca0 -00024553 53.19019318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb0 -00024554 53.19019699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb0 -00024555 53.19021988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcc0 -00024556 53.19022369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcc0 -00024557 53.19025040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcd0 -00024558 53.19025421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcd0 -00024559 53.19027710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fce0 -00024560 53.19028091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fce0 -00024561 53.19030762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcf0 -00024562 53.19031143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcf0 -00024563 53.19033432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd00 -00024564 53.19033432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd00 -00024565 53.19036484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd10 -00024566 53.19036484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd10 -00024567 53.19039154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd20 -00024568 53.19039536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd20 -00024569 53.19041824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd30 -00024570 53.19042206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd30 -00024571 53.19044876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd40 -00024572 53.19045258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd40 -00024573 53.19047546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd50 -00024574 53.19047928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd50 -00024575 53.19050598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd60 -00024576 53.19050980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd60 -00024577 53.19053268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd70 -00024578 53.19053650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd70 -00024579 53.19056320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd80 -00024580 53.19056702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd80 -00024581 53.19059372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd90 -00024582 53.19059372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd90 -00024583 53.19061661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fda0 -00024584 53.19062042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fda0 -00024585 53.19064713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdb0 -00024586 53.19065094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdb0 -00024587 53.19067383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdc0 -00024588 53.19067764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdc0 -00024589 53.19070435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdd0 -00024590 53.19070816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdd0 -00024591 53.19073105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fde0 -00024592 53.19073486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fde0 -00024593 53.19076157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdf0 -00024594 53.19076538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdf0 -00024595 53.19079208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe00 -00024596 53.19079208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe00 -00024597 53.19081497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe10 -00024598 53.19081879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe10 -00024599 53.19084549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe20 -00024600 53.19084930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe20 -00024601 53.19087219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe30 -00024602 53.19087601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe30 -00024603 53.19090271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe40 -00024604 53.19090652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe40 -00024605 53.19092941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe50 -00024606 53.19093323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe50 -00024607 53.19095993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe60 -00024608 53.19096375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe60 -00024609 53.19099045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe70 -00024610 53.19099045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe70 -00024611 53.19101715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe80 -00024612 53.19102097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe80 -00024613 53.19104767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe90 -00024614 53.19105148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe90 -00024615 53.19107437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea0 -00024616 53.19107819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea0 -00024617 53.19110489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb0 -00024618 53.19110489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb0 -00024619 53.19112778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec0 -00024620 53.19113159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec0 -00024621 53.19115829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed0 -00024622 53.19116211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed0 -00024623 53.19118881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee0 -00024624 53.19118881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee0 -00024625 53.19121552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef0 -00024626 53.19121933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef0 -00024627 53.19124603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff00 -00024628 53.19124985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff00 -00024629 53.19127274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff10 -00024630 53.19127655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff10 -00024631 53.19130325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff20 -00024632 53.19130325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff20 -00024633 53.19132996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff30 -00024634 53.19132996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff30 -00024635 53.19135666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff40 -00024636 53.19136047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff40 -00024637 53.19138718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff50 -00024638 53.19138718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff50 -00024639 53.19141388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff60 -00024640 53.19141769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff60 -00024641 53.19144440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff70 -00024642 53.19144821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff70 -00024643 53.19147110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff80 -00024644 53.19147491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff80 -00024645 53.19150162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff90 -00024646 53.19150543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff90 -00024647 53.19152832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa0 -00024648 53.19153214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa0 -00024649 53.19155884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb0 -00024650 53.19156265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb0 -00024651 53.19158554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc0 -00024652 53.19158936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc0 -00024653 53.19161606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd0 -00024654 53.19161606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd0 -00024655 53.19164658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe0 -00024656 53.19164658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe0 -00024657 53.19167328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff0 -00024658 53.19167328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff0 -00024659 53.19169998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30000 -00024660 53.19170380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30000 -00024661 53.19172668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30010 -00024662 53.19173050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30010 -00024663 53.19175720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30020 -00024664 53.19176102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30020 -00024665 53.19178391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30030 -00024666 53.19178772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30030 -00024667 53.19181442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30040 -00024668 53.19181824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30040 -00024669 53.19184494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30050 -00024670 53.19184494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30050 -00024671 53.19187164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30060 -00024672 53.19187164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30060 -00024673 53.19189835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30070 -00024674 53.19190216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30070 -00024675 53.19192505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30080 -00024676 53.19192886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30080 -00024677 53.19195557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30090 -00024678 53.19195938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30090 -00024679 53.19198227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300a0 -00024680 53.19198608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300a0 -00024681 53.19201279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300b0 -00024682 53.19201660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300b0 -00024683 53.19204330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300c0 -00024684 53.19204330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300c0 -00024685 53.19207001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300d0 -00024686 53.19207001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300d0 -00024687 53.19210052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300e0 -00024688 53.19210052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300e0 -00024689 53.19212341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300f0 -00024690 53.19212723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x300f0 -00024691 53.19215393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30100 -00024692 53.19215775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30100 -00024693 53.19218063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30110 -00024694 53.19218445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30110 -00024695 53.19221115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30120 -00024696 53.19221497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30120 -00024697 53.19224167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30130 -00024698 53.19224167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30130 -00024699 53.19226837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30140 -00024700 53.19227219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30140 -00024701 53.19229889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30150 -00024702 53.19230270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30150 -00024703 53.19232559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30160 -00024704 53.19232941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30160 -00024705 53.19235611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30170 -00024706 53.19235611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30170 -00024707 53.19237900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30180 -00024708 53.19238281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30180 -00024709 53.19240952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30190 -00024710 53.19241333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30190 -00024711 53.19244003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a0 -00024712 53.19244003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a0 -00024713 53.19246674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b0 -00024714 53.19247055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b0 -00024715 53.19249725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c0 -00024716 53.19250107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c0 -00024717 53.19252396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d0 -00024718 53.19252777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d0 -00024719 53.19255447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e0 -00024720 53.19255447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e0 -00024721 53.19258118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f0 -00024722 53.19258118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f0 -00024723 53.19260788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30200 -00024724 53.19261169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30200 -00024725 53.19263840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30210 -00024726 53.19263840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30210 -00024727 53.19266510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30220 -00024728 53.19266891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30220 -00024729 53.19269562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30230 -00024730 53.19269943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30230 -00024731 53.19272232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30240 -00024732 53.19272614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30240 -00024733 53.19275284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30250 -00024734 53.19275284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30250 -00024735 53.19277954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30260 -00024736 53.19278336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30260 -00024737 53.19281006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30270 -00024738 53.19281387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30270 -00024739 53.19283676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30280 -00024740 53.19283676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30280 -00024741 53.19286346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30290 -00024742 53.19286728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30290 -00024743 53.19289398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a0 -00024744 53.19289780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a0 -00024745 53.19292068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b0 -00024746 53.19292450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b0 -00024747 53.19295120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c0 -00024748 53.19295502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c0 -00024749 53.19297791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d0 -00024750 53.19298172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d0 -00024751 53.19300842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e0 -00024752 53.19301224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e0 -00024753 53.19303513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f0 -00024754 53.19303513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f0 -00024755 53.19306183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30300 -00024756 53.19306564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30300 -00024757 53.19309235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30310 -00024758 53.19309616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30310 -00024759 53.19311905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30320 -00024760 53.19312286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30320 -00024761 53.19314957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30330 -00024762 53.19315338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30330 -00024763 53.19317627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30340 -00024764 53.19318008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30340 -00024765 53.19320679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30350 -00024766 53.19321060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30350 -00024767 53.19323349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30360 -00024768 53.19323349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30360 -00024769 53.19326019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30370 -00024770 53.19326401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30370 -00024771 53.19329071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30380 -00024772 53.19329453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30380 -00024773 53.19331741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30390 -00024774 53.19332123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30390 -00024775 53.19334793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303a0 -00024776 53.19335175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303a0 -00024777 53.19337463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303b0 -00024778 53.19337845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303b0 -00024779 53.19340515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303c0 -00024780 53.19340897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303c0 -00024781 53.19343185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303d0 -00024782 53.19343567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303d0 -00024783 53.19346237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303e0 -00024784 53.19346619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303e0 -00024785 53.19349289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303f0 -00024786 53.19349289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x303f0 -00024787 53.19351578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30400 -00024788 53.19351959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30400 -00024789 53.19354630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30410 -00024790 53.19355011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30410 -00024791 53.19357300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30420 -00024792 53.19357681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30420 -00024793 53.19360352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30430 -00024794 53.19360733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30430 -00024795 53.19363022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -00024796 53.19363403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -00024797 53.19366074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -00024798 53.19366455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -00024799 53.19369125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -00024800 53.19369125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -00024801 53.19371414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -00024802 53.19371796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -00024803 53.19374466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -00024804 53.19374847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -00024805 53.19377136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -00024806 53.19377518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -00024807 53.19380188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -00024808 53.19380569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -00024809 53.19382858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -00024810 53.19383240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -00024811 53.19385910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -00024812 53.19386292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -00024813 53.19388962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -00024814 53.19388962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -00024815 53.19391632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -00024816 53.19391632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -00024817 53.19394302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -00024818 53.19394684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -00024819 53.19396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -00024820 53.19397354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -00024821 53.19400024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -00024822 53.19400406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -00024823 53.19402695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -00024824 53.19403076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -00024825 53.19405746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -00024826 53.19406128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -00024827 53.19408798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -00024828 53.19408798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -00024829 53.19411469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -00024830 53.19411850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -00024831 53.19414520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -00024832 53.19414902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -00024833 53.19417191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -00024834 53.19417191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -00024835 53.19419861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -00024836 53.19420242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -00024837 53.19422531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30590 -00024838 53.19422913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30590 -00024839 53.19425583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a0 -00024840 53.19425964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a0 -00024841 53.19428635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b0 -00024842 53.19428635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b0 -00024843 53.19431305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c0 -00024844 53.19431686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c0 -00024845 53.19434357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d0 -00024846 53.19434738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d0 -00024847 53.19437027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e0 -00024848 53.19437408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e0 -00024849 53.19440079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f0 -00024850 53.19440079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f0 -00024851 53.19442749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30600 -00024852 53.19442749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30600 -00024853 53.19445419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30610 -00024854 53.19445801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30610 -00024855 53.19448471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30620 -00024856 53.19448471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30620 -00024857 53.19451141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30630 -00024858 53.19451523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30630 -00024859 53.19454193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30640 -00024860 53.19454575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30640 -00024861 53.19456863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30650 -00024862 53.19457245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30650 -00024863 53.19459915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30660 -00024864 53.19459915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30660 -00024865 53.19462585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30670 -00024866 53.19462585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30670 -00024867 53.19465256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30680 -00024868 53.19465637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30680 -00024869 53.19468307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30690 -00024870 53.19468307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30690 -00024871 53.19470978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306a0 -00024872 53.19471359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306a0 -00024873 53.19474030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306b0 -00024874 53.19474411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306b0 -00024875 53.19476700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306c0 -00024876 53.19477081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306c0 -00024877 53.19479752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306d0 -00024878 53.19480133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306d0 -00024879 53.19482422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306e0 -00024880 53.19482803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306e0 -00024881 53.19485474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306f0 -00024882 53.19485474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x306f0 -00024883 53.19488144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30700 -00024884 53.19488144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30700 -00024885 53.19490814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30710 -00024886 53.19491196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30710 -00024887 53.19493866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30720 -00024888 53.19494247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30720 -00024889 53.19496536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30730 -00024890 53.19496918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30730 -00024891 53.19499588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30740 -00024892 53.19499969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30740 -00024893 53.19502258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30750 -00024894 53.19502640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30750 -00024895 53.19505310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30760 -00024896 53.19505692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30760 -00024897 53.19507980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30770 -00024898 53.19507980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30770 -00024899 53.19510651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30780 -00024900 53.19511032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30780 -00024901 53.19513702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30790 -00024902 53.19514084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30790 -00024903 53.19516373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307a0 -00024904 53.19516754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307a0 -00024905 53.19519424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307b0 -00024906 53.19519806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307b0 -00024907 53.19522095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307c0 -00024908 53.19522476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307c0 -00024909 53.19525146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307d0 -00024910 53.19525528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307d0 -00024911 53.19527817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307e0 -00024912 53.19528198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307e0 -00024913 53.19530869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307f0 -00024914 53.19531250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x307f0 -00024915 53.19533920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30800 -00024916 53.19533920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30800 -00024917 53.19536591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30810 -00024918 53.19536591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30810 -00024919 53.19539642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30820 -00024920 53.19539642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30820 -00024921 53.19541931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30830 -00024922 53.19542313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30830 -00024923 53.19544983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30840 -00024924 53.19545364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30840 -00024925 53.19547653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30850 -00024926 53.19548035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30850 -00024927 53.19550705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30860 -00024928 53.19551086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30860 -00024929 53.19553757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30870 -00024930 53.19553757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30870 -00024931 53.19556427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30880 -00024932 53.19556808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30880 -00024933 53.19559479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30890 -00024934 53.19559479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30890 -00024935 53.19561768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308a0 -00024936 53.19562149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308a0 -00024937 53.19564819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308b0 -00024938 53.19565201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308b0 -00024939 53.19567490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308c0 -00024940 53.19567871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308c0 -00024941 53.19570541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308d0 -00024942 53.19570923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308d0 -00024943 53.19573593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308e0 -00024944 53.19573593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308e0 -00024945 53.19576263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308f0 -00024946 53.19576645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x308f0 -00024947 53.19579315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30900 -00024948 53.19579697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30900 -00024949 53.19581985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30910 -00024950 53.19581985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30910 -00024951 53.19584656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30920 -00024952 53.19585037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30920 -00024953 53.19587708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30930 -00024954 53.19587708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30930 -00024955 53.19590378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30940 -00024956 53.19590759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30940 -00024957 53.19593430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30950 -00024958 53.19593430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30950 -00024959 53.19596100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30960 -00024960 53.19596481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30960 -00024961 53.19599152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30970 -00024962 53.19599533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30970 -00024963 53.19601822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30980 -00024964 53.19602203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30980 -00024965 53.19604874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30990 -00024966 53.19605255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30990 -00024967 53.19607544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309a0 -00024968 53.19607544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309a0 -00024969 53.19610596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309b0 -00024970 53.19610596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309b0 -00024971 53.19613266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309c0 -00024972 53.19613266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309c0 -00024973 53.19615936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309d0 -00024974 53.19616318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309d0 -00024975 53.19618988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309e0 -00024976 53.19619370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309e0 -00024977 53.19621658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309f0 -00024978 53.19622040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x309f0 -00024979 53.19624710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a00 -00024980 53.19625092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a00 -00024981 53.19627380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a10 -00024982 53.19627762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a10 -00024983 53.19630432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a20 -00024984 53.19630814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a20 -00024985 53.19633102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a30 -00024986 53.19633484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a30 -00024987 53.19636154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a40 -00024988 53.19636536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a40 -00024989 53.19639206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a50 -00024990 53.19639206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a50 -00024991 53.19641876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a60 -00024992 53.19641876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a60 -00024993 53.19644547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a70 -00024994 53.19644928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a70 -00024995 53.19647217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a80 -00024996 53.19647598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a80 -00024997 53.19650269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a90 -00024998 53.19650650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a90 -00024999 53.19652939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30aa0 -00025000 53.19653320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30aa0 -00025001 53.19655991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ab0 -00025002 53.19656372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ab0 -00025003 53.19659042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ac0 -00025004 53.19659042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ac0 -00025005 53.19661713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ad0 -00025006 53.19662094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ad0 -00025007 53.19664764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -00025008 53.19665146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -00025009 53.19667435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -00025010 53.19667816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -00025011 53.19670486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -00025012 53.19670486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -00025013 53.19672775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -00025014 53.19673157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -00025015 53.19675827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -00025016 53.19676208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -00025017 53.19678879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -00025018 53.19678879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -00025019 53.19681549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -00025020 53.19681931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -00025021 53.19684601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -00025022 53.19684982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -00025023 53.19687271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -00025024 53.19687653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -00025025 53.19690323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -00025026 53.19690323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -00025027 53.19692612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -00025028 53.19692993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -00025029 53.19695663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -00025030 53.19696045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -00025031 53.19698715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -00025032 53.19698715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -00025033 53.19701385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -00025034 53.19701767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -00025035 53.19704437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -00025036 53.19704819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -00025037 53.19707108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -00025038 53.19707489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -00025039 53.19710159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be0 -00025040 53.19710159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be0 -00025041 53.19712830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf0 -00025042 53.19712830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf0 -00025043 53.19715500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c00 -00025044 53.19715881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c00 -00025045 53.19718552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c10 -00025046 53.19718552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c10 -00025047 53.19721222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c20 -00025048 53.19721603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c20 -00025049 53.19724274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c30 -00025050 53.19724655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c30 -00025051 53.19726944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c40 -00025052 53.19727325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c40 -00025053 53.19729996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c50 -00025054 53.19730377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c50 -00025055 53.19732666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c60 -00025056 53.19733047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c60 -00025057 53.19735718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c70 -00025058 53.19735718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c70 -00025059 53.19738388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c80 -00025060 53.19738388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c80 -00025061 53.19741058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c90 -00025062 53.19741440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c90 -00025063 53.19744110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca0 -00025064 53.19744492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca0 -00025065 53.19746780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb0 -00025066 53.19747162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb0 -00025067 53.19749832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc0 -00025068 53.19750214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc0 -00025069 53.19752502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd0 -00025070 53.19752884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd0 -00025071 53.19755554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce0 -00025072 53.19755936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce0 -00025073 53.19758224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf0 -00025074 53.19758224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf0 -00025075 53.19760895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d00 -00025076 53.19761276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d00 -00025077 53.19763947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d10 -00025078 53.19764328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d10 -00025079 53.19766617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d20 -00025080 53.19766998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d20 -00025081 53.19769669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d30 -00025082 53.19770050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d30 -00025083 53.19772339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d40 -00025084 53.19772720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d40 -00025085 53.19775391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d50 -00025086 53.19775772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d50 -00025087 53.19778061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d60 -00025088 53.19778442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d60 -00025089 53.19781113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d70 -00025090 53.19781494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d70 -00025091 53.19784164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d80 -00025092 53.19784164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d80 -00025093 53.19786835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d90 -00025094 53.19786835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d90 -00025095 53.19789886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da0 -00025096 53.19789886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da0 -00025097 53.19792175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db0 -00025098 53.19792557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db0 -00025099 53.19795227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -00025100 53.19795609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -00025101 53.19797897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -00025102 53.19798279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -00025103 53.19800949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -00025104 53.19801331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -00025105 53.19804001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -00025106 53.19804001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -00025107 53.19806671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -00025108 53.19807053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -00025109 53.19809723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -00025110 53.19809723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -00025111 53.19812393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -00025112 53.19812393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -00025113 53.19815063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -00025114 53.19815445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -00025115 53.19817734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -00025116 53.19818115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -00025117 53.19820786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -00025118 53.19821167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -00025119 53.19823837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -00025120 53.19823837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -00025121 53.19826508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -00025122 53.19826889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -00025123 53.19829559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -00025124 53.19829941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -00025125 53.19832230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -00025126 53.19832230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -00025127 53.19834900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -00025128 53.19835281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -00025129 53.19837570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -00025130 53.19837952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -00025131 53.19840622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -00025132 53.19841003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -00025133 53.19843674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -00025134 53.19843674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -00025135 53.19846344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -00025136 53.19846725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -00025137 53.19849396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -00025138 53.19849777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -00025139 53.19852066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -00025140 53.19852448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -00025141 53.19855118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -00025142 53.19855499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -00025143 53.19857788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -00025144 53.19857788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -00025145 53.19860458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -00025146 53.19860840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -00025147 53.19863510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -00025148 53.19863510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -00025149 53.19866180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -00025150 53.19866562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -00025151 53.19869232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f60 -00025152 53.19869614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f60 -00025153 53.19871902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -00025154 53.19872284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -00025155 53.19874954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -00025156 53.19875336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -00025157 53.19877625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -00025158 53.19877625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -00025159 53.19880676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -00025160 53.19880676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -00025161 53.19883347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -00025162 53.19883347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -00025163 53.19886017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -00025164 53.19886398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -00025165 53.19889069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -00025166 53.19889450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -00025167 53.19891739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -00025168 53.19892120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -00025169 53.19894791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -00025170 53.19895172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -00025171 53.19897461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31000 -00025172 53.19897842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31000 -00025173 53.19900513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31010 -00025174 53.19900513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31010 -00025175 53.19903183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31020 -00025176 53.19903183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31020 -00025177 53.19906235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31030 -00025178 53.19906235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31030 -00025179 53.19909286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31040 -00025180 53.19909286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31040 -00025181 53.19911957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31050 -00025182 53.19911957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31050 -00025183 53.19914627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31060 -00025184 53.19915009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31060 -00025185 53.19917297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31070 -00025186 53.19917679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31070 -00025187 53.19920349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31080 -00025188 53.19920731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31080 -00025189 53.19923019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31090 -00025190 53.19923401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31090 -00025191 53.19926071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a0 -00025192 53.19926453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a0 -00025193 53.19929123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b0 -00025194 53.19929123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b0 -00025195 53.19931793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c0 -00025196 53.19931793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c0 -00025197 53.19934845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d0 -00025198 53.19934845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d0 -00025199 53.19937134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e0 -00025200 53.19937515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e0 -00025201 53.19940186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f0 -00025202 53.19940567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f0 -00025203 53.19942856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31100 -00025204 53.19943237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31100 -00025205 53.19945908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31110 -00025206 53.19946289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31110 -00025207 53.19948959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31120 -00025208 53.19948959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31120 -00025209 53.19951630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31130 -00025210 53.19952011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31130 -00025211 53.19954681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -00025212 53.19955063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -00025213 53.19957352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -00025214 53.19957352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -00025215 53.19960403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -00025216 53.19960403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -00025217 53.19962692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -00025218 53.19963074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -00025219 53.19965744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -00025220 53.19966125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -00025221 53.19968796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -00025222 53.19968796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -00025223 53.19971848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -00025224 53.19972229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -00025225 53.19974899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -00025226 53.19974899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -00025227 53.19977570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -00025228 53.19977951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -00025229 53.19980621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -00025230 53.19980621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -00025231 53.19983292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -00025232 53.19983292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -00025233 53.19985962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -00025234 53.19986343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -00025235 53.19988632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -00025236 53.19989014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -00025237 53.19991684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -00025238 53.19992065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -00025239 53.19994736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -00025240 53.19994736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -00025241 53.19997406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -00025242 53.19997787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -00025243 53.20000458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -00025244 53.20000458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -00025245 53.20003128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -00025246 53.20003510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -00025247 53.20006180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -00025248 53.20006561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -00025249 53.20008850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -00025250 53.20008850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -00025251 53.20011520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -00025252 53.20011902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -00025253 53.20014572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -00025254 53.20014572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -00025255 53.20017242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a0 -00025256 53.20017624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a0 -00025257 53.20020294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b0 -00025258 53.20020294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b0 -00025259 53.20022964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c0 -00025260 53.20023346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c0 -00025261 53.20026016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d0 -00025262 53.20026398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d0 -00025263 53.20028687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e0 -00025264 53.20029068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e0 -00025265 53.20031738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f0 -00025266 53.20031738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f0 -00025267 53.20034409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31300 -00025268 53.20034790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31300 -00025269 53.20037460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31310 -00025270 53.20037842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31310 -00025271 53.20040131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31320 -00025272 53.20040512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31320 -00025273 53.20043182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31330 -00025274 53.20043182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31330 -00025275 53.20045853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31340 -00025276 53.20046234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31340 -00025277 53.20048523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31350 -00025278 53.20048904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31350 -00025279 53.20051575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31360 -00025280 53.20051956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31360 -00025281 53.20054245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31370 -00025282 53.20054626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31370 -00025283 53.20057297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31380 -00025284 53.20057678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31380 -00025285 53.20060349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31390 -00025286 53.20060349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31390 -00025287 53.20063019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313a0 -00025288 53.20063019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313a0 -00025289 53.20066071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313b0 -00025290 53.20066071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313b0 -00025291 53.20068359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313c0 -00025292 53.20068741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313c0 -00025293 53.20071411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313d0 -00025294 53.20071793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313d0 -00025295 53.20074081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313e0 -00025296 53.20074463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313e0 -00025297 53.20077133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313f0 -00025298 53.20077515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x313f0 -00025299 53.20080185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31400 -00025300 53.20080185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31400 -00025301 53.20082855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31410 -00025302 53.20083237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31410 -00025303 53.20085907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31420 -00025304 53.20085907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31420 -00025305 53.20088577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31430 -00025306 53.20088577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31430 -00025307 53.20091629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31440 -00025308 53.20091629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31440 -00025309 53.20094299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31450 -00025310 53.20094299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31450 -00025311 53.20097351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31460 -00025312 53.20097351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31460 -00025313 53.20100021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31470 -00025314 53.20100021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31470 -00025315 53.20102692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31480 -00025316 53.20103073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31480 -00025317 53.20105743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31490 -00025318 53.20105743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31490 -00025319 53.20108414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314a0 -00025320 53.20108795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314a0 -00025321 53.20111465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314b0 -00025322 53.20111847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314b0 -00025323 53.20114136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314c0 -00025324 53.20114517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314c0 -00025325 53.20117188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314d0 -00025326 53.20117569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314d0 -00025327 53.20119858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314e0 -00025328 53.20120239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314e0 -00025329 53.20122910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314f0 -00025330 53.20122910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x314f0 -00025331 53.20125580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31500 -00025332 53.20125580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31500 -00025333 53.20128250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31510 -00025334 53.20128632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31510 -00025335 53.20131302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31520 -00025336 53.20131683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31520 -00025337 53.20133972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31530 -00025338 53.20134354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31530 -00025339 53.20137024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31540 -00025340 53.20137405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31540 -00025341 53.20139694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31550 -00025342 53.20140076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31550 -00025343 53.20142746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31560 -00025344 53.20142746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31560 -00025345 53.20145416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31570 -00025346 53.20145416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31570 -00025347 53.20148087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31580 -00025348 53.20148468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31580 -00025349 53.20151138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31590 -00025350 53.20151520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31590 -00025351 53.20153809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a0 -00025352 53.20154190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a0 -00025353 53.20156860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b0 -00025354 53.20157242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b0 -00025355 53.20159531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c0 -00025356 53.20159912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c0 -00025357 53.20162582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d0 -00025358 53.20162964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d0 -00025359 53.20165253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e0 -00025360 53.20165634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e0 -00025361 53.20168304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f0 -00025362 53.20168686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f0 -00025363 53.20171356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31600 -00025364 53.20171356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31600 -00025365 53.20174026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31610 -00025366 53.20174408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31610 -00025367 53.20177078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31620 -00025368 53.20177460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31620 -00025369 53.20179749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31630 -00025370 53.20180130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31630 -00025371 53.20182800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31640 -00025372 53.20183182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31640 -00025373 53.20185471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31650 -00025374 53.20185852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31650 -00025375 53.20188522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31660 -00025376 53.20188904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31660 -00025377 53.20191193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31670 -00025378 53.20191574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31670 -00025379 53.20194244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31680 -00025380 53.20194626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31680 -00025381 53.20197296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31690 -00025382 53.20197296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31690 -00025383 53.20199966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316a0 -00025384 53.20200348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316a0 -00025385 53.20203018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316b0 -00025386 53.20203018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316b0 -00025387 53.20205688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c0 -00025388 53.20205688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c0 -00025389 53.20208740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d0 -00025390 53.20208740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d0 -00025391 53.20211029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e0 -00025392 53.20211411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e0 -00025393 53.20214081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f0 -00025394 53.20214462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f0 -00025395 53.20217133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31700 -00025396 53.20217133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31700 -00025397 53.20220184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31710 -00025398 53.20220184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31710 -00025399 53.20222855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31720 -00025400 53.20222855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31720 -00025401 53.20225525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31730 -00025402 53.20225906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31730 -00025403 53.20228577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31740 -00025404 53.20228958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31740 -00025405 53.20231247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31750 -00025406 53.20231628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31750 -00025407 53.20234299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31760 -00025408 53.20234680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31760 -00025409 53.20236969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31770 -00025410 53.20237350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31770 -00025411 53.20240021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31780 -00025412 53.20240402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31780 -00025413 53.20242691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31790 -00025414 53.20243073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31790 -00025415 53.20245743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a0 -00025416 53.20246124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a0 -00025417 53.20248795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b0 -00025418 53.20248795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b0 -00025419 53.20251465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c0 -00025420 53.20251846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c0 -00025421 53.20254517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d0 -00025422 53.20254898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d0 -00025423 53.20257568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e0 -00025424 53.20257568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e0 -00025425 53.20260239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f0 -00025426 53.20260620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f0 -00025427 53.20262909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31800 -00025428 53.20263290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31800 -00025429 53.20265961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31810 -00025430 53.20266342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31810 -00025431 53.20268631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31820 -00025432 53.20269012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31820 -00025433 53.20271683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31830 -00025434 53.20272064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31830 -00025435 53.20274734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31840 -00025436 53.20274734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31840 -00025437 53.20277405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31850 -00025438 53.20277786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31850 -00025439 53.20280457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31860 -00025440 53.20280457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31860 -00025441 53.20283127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31870 -00025442 53.20283508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31870 -00025443 53.20286179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31880 -00025444 53.20286560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31880 -00025445 53.20288849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31890 -00025446 53.20289230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31890 -00025447 53.20291901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318a0 -00025448 53.20292282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318a0 -00025449 53.20294571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318b0 -00025450 53.20294952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318b0 -00025451 53.20297623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318c0 -00025452 53.20298004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318c0 -00025453 53.20300293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318d0 -00025454 53.20300674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318d0 -00025455 53.20303345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318e0 -00025456 53.20303726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318e0 -00025457 53.20306396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318f0 -00025458 53.20306396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x318f0 -00025459 53.20309067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31900 -00025460 53.20309448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31900 -00025461 53.20312119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31910 -00025462 53.20312500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31910 -00025463 53.20314789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31920 -00025464 53.20315170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31920 -00025465 53.20317841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31930 -00025466 53.20318222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31930 -00025467 53.20320511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31940 -00025468 53.20320892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31940 -00025469 53.20323563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31950 -00025470 53.20323944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31950 -00025471 53.20326996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31960 -00025472 53.20327377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31960 -00025473 53.20330048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31970 -00025474 53.20330429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31970 -00025475 53.20332718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31980 -00025476 53.20333099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31980 -00025477 53.20335770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31990 -00025478 53.20336151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31990 -00025479 53.20338440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319a0 -00025480 53.20338440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319a0 -00025481 53.20341492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319b0 -00025482 53.20341873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319b0 -00025483 53.20344162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319c0 -00025484 53.20344543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319c0 -00025485 53.20347595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319d0 -00025486 53.20347977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319d0 -00025487 53.20350266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319e0 -00025488 53.20350647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319e0 -00025489 53.20353317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319f0 -00025490 53.20353699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x319f0 -00025491 53.20355988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a00 -00025492 53.20356369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a00 -00025493 53.20359039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a10 -00025494 53.20359421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a10 -00025495 53.20362091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a20 -00025496 53.20362091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a20 -00025497 53.20364380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a30 -00025498 53.20364761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a30 -00025499 53.20367432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a40 -00025500 53.20367813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a40 -00025501 53.20370102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a50 -00025502 53.20370483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a50 -00025503 53.20373154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a60 -00025504 53.20373535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a60 -00025505 53.20375824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a70 -00025506 53.20376205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a70 -00025507 53.20378876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a80 -00025508 53.20379257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a80 -00025509 53.20381927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a90 -00025510 53.20381927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a90 -00025511 53.20384598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa0 -00025512 53.20384598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa0 -00025513 53.20387650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab0 -00025514 53.20387650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab0 -00025515 53.20389938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac0 -00025516 53.20390320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac0 -00025517 53.20392990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad0 -00025518 53.20393372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad0 -00025519 53.20395660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae0 -00025520 53.20396042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae0 -00025521 53.20398712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af0 -00025522 53.20399094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af0 -00025523 53.20401764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b00 -00025524 53.20401764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b00 -00025525 53.20404434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b10 -00025526 53.20404816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b10 -00025527 53.20407486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b20 -00025528 53.20407486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b20 -00025529 53.20410156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b30 -00025530 53.20410538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b30 -00025531 53.20413208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b40 -00025532 53.20413589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b40 -00025533 53.20415878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b50 -00025534 53.20416260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b50 -00025535 53.20418930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b60 -00025536 53.20419312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b60 -00025537 53.20421600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b70 -00025538 53.20421600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b70 -00025539 53.20424271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b80 -00025540 53.20424652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b80 -00025541 53.20427322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b90 -00025542 53.20427704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b90 -00025543 53.20429993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ba0 -00025544 53.20430374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ba0 -00025545 53.20433044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bb0 -00025546 53.20433426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bb0 -00025547 53.20435715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bc0 -00025548 53.20436096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bc0 -00025549 53.20438766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bd0 -00025550 53.20439148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bd0 -00025551 53.20441437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31be0 -00025552 53.20441437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31be0 -00025553 53.20444489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bf0 -00025554 53.20444489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bf0 -00025555 53.20447159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c00 -00025556 53.20447540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c00 -00025557 53.20449829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c10 -00025558 53.20450211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c10 -00025559 53.20452881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c20 -00025560 53.20453262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c20 -00025561 53.20455551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c30 -00025562 53.20455933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c30 -00025563 53.20458603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c40 -00025564 53.20458984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c40 -00025565 53.20461273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c50 -00025566 53.20461655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c50 -00025567 53.20464325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c60 -00025568 53.20464325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c60 -00025569 53.20467377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c70 -00025570 53.20467377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c70 -00025571 53.20470047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c80 -00025572 53.20470428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c80 -00025573 53.20473099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c90 -00025574 53.20473099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c90 -00025575 53.20475769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ca0 -00025576 53.20476151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ca0 -00025577 53.20478821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cb0 -00025578 53.20478821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cb0 -00025579 53.20481110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cc0 -00025580 53.20481491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cc0 -00025581 53.20484161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cd0 -00025582 53.20484543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cd0 -00025583 53.20487213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ce0 -00025584 53.20487213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ce0 -00025585 53.20489883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cf0 -00025586 53.20490265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cf0 -00025587 53.20492935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d00 -00025588 53.20492935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d00 -00025589 53.20495605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d10 -00025590 53.20495987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d10 -00025591 53.20498657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d20 -00025592 53.20499039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d20 -00025593 53.20501328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d30 -00025594 53.20501328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d30 -00025595 53.20504379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d40 -00025596 53.20504379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d40 -00025597 53.20507050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d50 -00025598 53.20507050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d50 -00025599 53.20509720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d60 -00025600 53.20510101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d60 -00025601 53.20512772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d70 -00025602 53.20512772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d70 -00025603 53.20515442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d80 -00025604 53.20515823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d80 -00025605 53.20518494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d90 -00025606 53.20518875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d90 -00025607 53.20521164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31da0 -00025608 53.20521545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31da0 -00025609 53.20524216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31db0 -00025610 53.20524597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31db0 -00025611 53.20526886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dc0 -00025612 53.20526886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dc0 -00025613 53.20529938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dd0 -00025614 53.20529938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dd0 -00025615 53.20532608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31de0 -00025616 53.20532990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31de0 -00025617 53.20535278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31df0 -00025618 53.20535660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31df0 -00025619 53.20538330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e00 -00025620 53.20538712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e00 -00025621 53.20541000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e10 -00025622 53.20541382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e10 -00025623 53.20544052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e20 -00025624 53.20544434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e20 -00025625 53.20546722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e30 -00025626 53.20547104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e30 -00025627 53.20549774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e40 -00025628 53.20550156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e40 -00025629 53.20552826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e50 -00025630 53.20552826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e50 -00025631 53.20555496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e60 -00025632 53.20555878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e60 -00025633 53.20558548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e70 -00025634 53.20558548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e70 -00025635 53.20561218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e80 -00025636 53.20561218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e80 -00025637 53.20563889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e90 -00025638 53.20564270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e90 -00025639 53.20566559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ea0 -00025640 53.20566940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ea0 -00025641 53.20569611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31eb0 -00025642 53.20569992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31eb0 -00025643 53.20572662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ec0 -00025644 53.20572662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ec0 -00025645 53.20575333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ed0 -00025646 53.20575714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ed0 -00025647 53.20578384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ee0 -00025648 53.20578384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ee0 -00025649 53.20581055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ef0 -00025650 53.20581436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ef0 -00025651 53.20584106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f00 -00025652 53.20584488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f00 -00025653 53.20586777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f10 -00025654 53.20587158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f10 -00025655 53.20589828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f20 -00025656 53.20590210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f20 -00025657 53.20592499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f30 -00025658 53.20592880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f30 -00025659 53.20595551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f40 -00025660 53.20595551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f40 -00025661 53.20598221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f50 -00025662 53.20598221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f50 -00025663 53.20601273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f60 -00025664 53.20601273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f60 -00025665 53.20604324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f70 -00025666 53.20604324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f70 -00025667 53.20606613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f80 -00025668 53.20606995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f80 -00025669 53.20609665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f90 -00025670 53.20610046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f90 -00025671 53.20612335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fa0 -00025672 53.20612717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fa0 -00025673 53.20615387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fb0 -00025674 53.20615768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fb0 -00025675 53.20618057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fc0 -00025676 53.20618439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fc0 -00025677 53.20621109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fd0 -00025678 53.20621490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fd0 -00025679 53.20624161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fe0 -00025680 53.20624161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fe0 -00025681 53.20626831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ff0 -00025682 53.20627213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ff0 -00025683 53.20629883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32000 -00025684 53.20629883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32000 -00025685 53.20632553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32010 -00025686 53.20632553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32010 -00025687 53.20635223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32020 -00025688 53.20635605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32020 -00025689 53.20637894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32030 -00025690 53.20638275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32030 -00025691 53.20640945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32040 -00025692 53.20641327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32040 -00025693 53.20643997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32050 -00025694 53.20643997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32050 -00025695 53.20646667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32060 -00025696 53.20647049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32060 -00025697 53.20649719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32070 -00025698 53.20650101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32070 -00025699 53.20652390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32080 -00025700 53.20652771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32080 -00025701 53.20655441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32090 -00025702 53.20655441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32090 -00025703 53.20657730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a0 -00025704 53.20658112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a0 -00025705 53.20660782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320b0 -00025706 53.20661163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320b0 -00025707 53.20663834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c0 -00025708 53.20663834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c0 -00025709 53.20666504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d0 -00025710 53.20666885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d0 -00025711 53.20669556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e0 -00025712 53.20669937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e0 -00025713 53.20672226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f0 -00025714 53.20672607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f0 -00025715 53.20675278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32100 -00025716 53.20675659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32100 -00025717 53.20677948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32110 -00025718 53.20678329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32110 -00025719 53.20681000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32120 -00025720 53.20681381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32120 -00025721 53.20683670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32130 -00025722 53.20684052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32130 -00025723 53.20686722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32140 -00025724 53.20687103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32140 -00025725 53.20689774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32150 -00025726 53.20689774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32150 -00025727 53.20692062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32160 -00025728 53.20692444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32160 -00025729 53.20695114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32170 -00025730 53.20695496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32170 -00025731 53.20697784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32180 -00025732 53.20698166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32180 -00025733 53.20700836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32190 -00025734 53.20701218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32190 -00025735 53.20703506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a0 -00025736 53.20703888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a0 -00025737 53.20706558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b0 -00025738 53.20706940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b0 -00025739 53.20709610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c0 -00025740 53.20709610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c0 -00025741 53.20712280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d0 -00025742 53.20712280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d0 -00025743 53.20714951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e0 -00025744 53.20715332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e0 -00025745 53.20717621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f0 -00025746 53.20718002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f0 -00025747 53.20720673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32200 -00025748 53.20721054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32200 -00025749 53.20723343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32210 -00025750 53.20723724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32210 -00025751 53.20726395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32220 -00025752 53.20726776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32220 -00025753 53.20729446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32230 -00025754 53.20729446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32230 -00025755 53.20732117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32240 -00025756 53.20732498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32240 -00025757 53.20735168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32250 -00025758 53.20735550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32250 -00025759 53.20737839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32260 -00025760 53.20738220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32260 -00025761 53.20740891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32270 -00025762 53.20741272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32270 -00025763 53.20743561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32280 -00025764 53.20743561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32280 -00025765 53.20746613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32290 -00025766 53.20746613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32290 -00025767 53.20749283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a0 -00025768 53.20749283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a0 -00025769 53.20751953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b0 -00025770 53.20752335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b0 -00025771 53.20755005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c0 -00025772 53.20755386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c0 -00025773 53.20757675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d0 -00025774 53.20758057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d0 -00025775 53.20760727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e0 -00025776 53.20761108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e0 -00025777 53.20763397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f0 -00025778 53.20763779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f0 -00025779 53.20766449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32300 -00025780 53.20766830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32300 -00025781 53.20769119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32310 -00025782 53.20769119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32310 -00025783 53.20771790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32320 -00025784 53.20772171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32320 -00025785 53.20774841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32330 -00025786 53.20775223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32330 -00025787 53.20777512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32340 -00025788 53.20777893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32340 -00025789 53.20780563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32350 -00025790 53.20780945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32350 -00025791 53.20783234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32360 -00025792 53.20783615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32360 -00025793 53.20786285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32370 -00025794 53.20786667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32370 -00025795 53.20788956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32380 -00025796 53.20789337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32380 -00025797 53.20792007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32390 -00025798 53.20792389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32390 -00025799 53.20795059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323a0 -00025800 53.20795059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323a0 -00025801 53.20797729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323b0 -00025802 53.20798111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323b0 -00025803 53.20800781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323c0 -00025804 53.20800781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323c0 -00025805 53.20803452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d0 -00025806 53.20803833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d0 -00025807 53.20806503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e0 -00025808 53.20806503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e0 -00025809 53.20808792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f0 -00025810 53.20809174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f0 -00025811 53.20811844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -00025812 53.20812225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -00025813 53.20814896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -00025814 53.20814896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -00025815 53.20817566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -00025816 53.20817947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -00025817 53.20820618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00025818 53.20820618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00025819 53.20823288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00025820 53.20823669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00025821 53.20826340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00025822 53.20826721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00025823 53.20829010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00025824 53.20829010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00025825 53.20831680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00025826 53.20832062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00025827 53.20834732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -00025828 53.20834732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -00025829 53.20837402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -00025830 53.20837784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -00025831 53.20840454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a0 -00025832 53.20840454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a0 -00025833 53.20843124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b0 -00025834 53.20843506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b0 -00025835 53.20846176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c0 -00025836 53.20846558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c0 -00025837 53.20848846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d0 -00025838 53.20849228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d0 -00025839 53.20851898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e0 -00025840 53.20852280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e0 -00025841 53.20854568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f0 -00025842 53.20854950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f0 -00025843 53.20857620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32500 -00025844 53.20858002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32500 -00025845 53.20860672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32510 -00025846 53.20861053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32510 -00025847 53.20863724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32520 -00025848 53.20864105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32520 -00025849 53.20866394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32530 -00025850 53.20866776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32530 -00025851 53.20869446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32540 -00025852 53.20869827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32540 -00025853 53.20872498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32550 -00025854 53.20872498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32550 -00025855 53.20875168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32560 -00025856 53.20875549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32560 -00025857 53.20878220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32570 -00025858 53.20878601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32570 -00025859 53.20881271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32580 -00025860 53.20881653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32580 -00025861 53.20884323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32590 -00025862 53.20884323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32590 -00025863 53.20886993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a0 -00025864 53.20886993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a0 -00025865 53.20889664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b0 -00025866 53.20890045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b0 -00025867 53.20892334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c0 -00025868 53.20892715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c0 -00025869 53.20895386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d0 -00025870 53.20895767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d0 -00025871 53.20898056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e0 -00025872 53.20898438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e0 -00025873 53.20901489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f0 -00025874 53.20901871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f0 -00025875 53.20904160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32600 -00025876 53.20904541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32600 -00025877 53.20907211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32610 -00025878 53.20907593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32610 -00025879 53.20910263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32620 -00025880 53.20910263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32620 -00025881 53.20912933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32630 -00025882 53.20913315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32630 -00025883 53.20915985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32640 -00025884 53.20916367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32640 -00025885 53.20919037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32650 -00025886 53.20919418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32650 -00025887 53.20922089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32660 -00025888 53.20922089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32660 -00025889 53.20924759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32670 -00025890 53.20925140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32670 -00025891 53.20927811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32680 -00025892 53.20927811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32680 -00025893 53.20931244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32690 -00025894 53.20931625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32690 -00025895 53.20934296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326a0 -00025896 53.20934677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326a0 -00025897 53.20938110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326b0 -00025898 53.20938110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326b0 -00025899 53.20940781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326c0 -00025900 53.20941162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326c0 -00025901 53.20943832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d0 -00025902 53.20943832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d0 -00025903 53.20946503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e0 -00025904 53.20946884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e0 -00025905 53.20949554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f0 -00025906 53.20949936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f0 -00025907 53.20952225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32700 -00025908 53.20952606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32700 -00025909 53.20955276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32710 -00025910 53.20955658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32710 -00025911 53.20957947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32720 -00025912 53.20958328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32720 -00025913 53.20960999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32730 -00025914 53.20961380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32730 -00025915 53.20963669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32740 -00025916 53.20964050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32740 -00025917 53.20966721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32750 -00025918 53.20966721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32750 -00025919 53.20969772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32760 -00025920 53.20969772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32760 -00025921 53.20972061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32770 -00025922 53.20972443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32770 -00025923 53.20975113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32780 -00025924 53.20975494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32780 -00025925 53.20977783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32790 -00025926 53.20978165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32790 -00025927 53.20980835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a0 -00025928 53.20981216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a0 -00025929 53.20983505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b0 -00025930 53.20983887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b0 -00025931 53.20986557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c0 -00025932 53.20986938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c0 -00025933 53.20989609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -00025934 53.20989609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -00025935 53.20992279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -00025936 53.20992661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -00025937 53.20995331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -00025938 53.20995331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -00025939 53.20998001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -00025940 53.20998383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -00025941 53.21001053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -00025942 53.21001434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -00025943 53.21003723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -00025944 53.21004105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -00025945 53.21006775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -00025946 53.21006775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -00025947 53.21009445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -00025948 53.21009445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -00025949 53.21012115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -00025950 53.21012497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -00025951 53.21015167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -00025952 53.21015549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -00025953 53.21017838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -00025954 53.21018219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -00025955 53.21020889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -00025956 53.21021271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -00025957 53.21023560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -00025958 53.21023941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -00025959 53.21026611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328a0 -00025960 53.21026611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328a0 -00025961 53.21029282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328b0 -00025962 53.21029282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328b0 -00025963 53.21031952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328c0 -00025964 53.21032333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328c0 -00025965 53.21035004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328d0 -00025966 53.21035385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328d0 -00025967 53.21037674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328e0 -00025968 53.21038055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328e0 -00025969 53.21040726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328f0 -00025970 53.21041107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328f0 -00025971 53.21043396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32900 -00025972 53.21043777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32900 -00025973 53.21046448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32910 -00025974 53.21046829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32910 -00025975 53.21049118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -00025976 53.21049500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -00025977 53.21052170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32930 -00025978 53.21052170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32930 -00025979 53.21055222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32940 -00025980 53.21055222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32940 -00025981 53.21057892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32950 -00025982 53.21058273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32950 -00025983 53.21060944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32960 -00025984 53.21060944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32960 -00025985 53.21063614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32970 -00025986 53.21063995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32970 -00025987 53.21066666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -00025988 53.21066666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -00025989 53.21069336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -00025990 53.21069336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -00025991 53.21072006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -00025992 53.21072388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -00025993 53.21075058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -00025994 53.21075058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -00025995 53.21077728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -00025996 53.21078110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -00025997 53.21080780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -00025998 53.21080780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -00025999 53.21083450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -00026000 53.21083832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -00026001 53.21086502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -00026002 53.21086884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -00026003 53.21089172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -00026004 53.21089172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -00026005 53.21092224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -00026006 53.21092224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -00026007 53.21094894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -00026008 53.21094894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -00026009 53.21097565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -00026010 53.21097946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -00026011 53.21100616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -00026012 53.21100616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -00026013 53.21103287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -00026014 53.21103668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -00026015 53.21106339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -00026016 53.21106720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -00026017 53.21109009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -00026018 53.21109390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -00026019 53.21112061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -00026020 53.21112442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -00026021 53.21114731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -00026022 53.21114731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -00026023 53.21117401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -00026024 53.21117783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -00026025 53.21120453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -00026026 53.21120453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -00026027 53.21123123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -00026028 53.21123505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -00026029 53.21126175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -00026030 53.21126556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -00026031 53.21128845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae0 -00026032 53.21129227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae0 -00026033 53.21131897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af0 -00026034 53.21132278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af0 -00026035 53.21134567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b00 -00026036 53.21134567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b00 -00026037 53.21137619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b10 -00026038 53.21137619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b10 -00026039 53.21140289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b20 -00026040 53.21140289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b20 -00026041 53.21142960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b30 -00026042 53.21143341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b30 -00026043 53.21146011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -00026044 53.21146393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -00026045 53.21148682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -00026046 53.21149063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -00026047 53.21151733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -00026048 53.21152115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -00026049 53.21154404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -00026050 53.21154785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -00026051 53.21157455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -00026052 53.21157455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -00026053 53.21160507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -00026054 53.21160507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -00026055 53.21162796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -00026056 53.21163177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -00026057 53.21165848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -00026058 53.21166229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -00026059 53.21168518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc0 -00026060 53.21168900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc0 -00026061 53.21171570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd0 -00026062 53.21171951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd0 -00026063 53.21174240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be0 -00026064 53.21174622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be0 -00026065 53.21177292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bf0 -00026066 53.21177673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bf0 -00026067 53.21180344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c00 -00026068 53.21180344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c00 -00026069 53.21183014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c10 -00026070 53.21183395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c10 -00026071 53.21186066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c20 -00026072 53.21186066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c20 -00026073 53.21188736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c30 -00026074 53.21188736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c30 -00026075 53.21191406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c40 -00026076 53.21191788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c40 -00026077 53.21194077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c50 -00026078 53.21194458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c50 -00026079 53.21197128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c60 -00026080 53.21197510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c60 -00026081 53.21200180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c70 -00026082 53.21200180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c70 -00026083 53.21202850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c80 -00026084 53.21203232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c80 -00026085 53.21205902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c90 -00026086 53.21205902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c90 -00026087 53.21208572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ca0 -00026088 53.21208954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ca0 -00026089 53.21211624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cb0 -00026090 53.21211624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cb0 -00026091 53.21213913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cc0 -00026092 53.21214294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cc0 -00026093 53.21216965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cd0 -00026094 53.21217346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cd0 -00026095 53.21220016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ce0 -00026096 53.21220016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ce0 -00026097 53.21222687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cf0 -00026098 53.21223068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cf0 -00026099 53.21225739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d00 -00026100 53.21225739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d00 -00026101 53.21228409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d10 -00026102 53.21228790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d10 -00026103 53.21231461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d20 -00026104 53.21231842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d20 -00026105 53.21234131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d30 -00026106 53.21234131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d30 -00026107 53.21237183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d40 -00026108 53.21237183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d40 -00026109 53.21239853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d50 -00026110 53.21239853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d50 -00026111 53.21242905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d60 -00026112 53.21242905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d60 -00026113 53.21245575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d70 -00026114 53.21245575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d70 -00026115 53.21248245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d80 -00026116 53.21248627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d80 -00026117 53.21251297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d90 -00026118 53.21251678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d90 -00026119 53.21253967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32da0 -00026120 53.21254349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32da0 -00026121 53.21257019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32db0 -00026122 53.21257401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32db0 -00026123 53.21259689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dc0 -00026124 53.21260071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dc0 -00026125 53.21262741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dd0 -00026126 53.21262741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dd0 -00026127 53.21265411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de0 -00026128 53.21265411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de0 -00026129 53.21268082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df0 -00026130 53.21268463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df0 -00026131 53.21271133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e00 -00026132 53.21271515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e00 -00026133 53.21273804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e10 -00026134 53.21274185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e10 -00026135 53.21276855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e20 -00026136 53.21277237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e20 -00026137 53.21279526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e30 -00026138 53.21279907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e30 -00026139 53.21282578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e40 -00026140 53.21282959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e40 -00026141 53.21285629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e50 -00026142 53.21285629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e50 -00026143 53.21287918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e60 -00026144 53.21288300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e60 -00026145 53.21290970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e70 -00026146 53.21291351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e70 -00026147 53.21293640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e80 -00026148 53.21294022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e80 -00026149 53.21296692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -00026150 53.21297073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -00026151 53.21299362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -00026152 53.21299744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -00026153 53.21302414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -00026154 53.21302795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -00026155 53.21305466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -00026156 53.21305466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -00026157 53.21308136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -00026158 53.21308517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -00026159 53.21311188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -00026160 53.21311188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -00026161 53.21313858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -00026162 53.21313858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -00026163 53.21316528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -00026164 53.21316910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -00026165 53.21319199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -00026166 53.21319580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -00026167 53.21322250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -00026168 53.21322632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -00026169 53.21325302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -00026170 53.21325302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -00026171 53.21327972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -00026172 53.21328354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -00026173 53.21331024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -00026174 53.21331024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -00026175 53.21333694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -00026176 53.21334076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -00026177 53.21336746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -00026178 53.21336746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -00026179 53.21339035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -00026180 53.21339417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -00026181 53.21342087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -00026182 53.21342468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -00026183 53.21345139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -00026184 53.21345139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -00026185 53.21347809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -00026186 53.21348190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -00026187 53.21350861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -00026188 53.21350861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -00026189 53.21353531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -00026190 53.21353912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -00026191 53.21356583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe0 -00026192 53.21356964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe0 -00026193 53.21359253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff0 -00026194 53.21359253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff0 -00026195 53.21362305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33000 -00026196 53.21362305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33000 -00026197 53.21364975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33010 -00026198 53.21364975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33010 -00026199 53.21367645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33020 -00026200 53.21368027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33020 -00026201 53.21370697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33030 -00026202 53.21370697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33030 -00026203 53.21373367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33040 -00026204 53.21373749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33040 -00026205 53.21376419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33050 -00026206 53.21376801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33050 -00026207 53.21379089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33060 -00026208 53.21379471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33060 -00026209 53.21382141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33070 -00026210 53.21382523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33070 -00026211 53.21384811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33080 -00026212 53.21384811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33080 -00026213 53.21387482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33090 -00026214 53.21387863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33090 -00026215 53.21390533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330a0 -00026216 53.21390533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330a0 -00026217 53.21393204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330b0 -00026218 53.21393585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330b0 -00026219 53.21396255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330c0 -00026220 53.21396637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330c0 -00026221 53.21398926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330d0 -00026222 53.21399307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330d0 -00026223 53.21401978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330e0 -00026224 53.21402359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330e0 -00026225 53.21404648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330f0 -00026226 53.21405029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x330f0 -00026227 53.21407700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33100 -00026228 53.21407700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33100 -00026229 53.21410370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33110 -00026230 53.21410370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33110 -00026231 53.21413040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33120 -00026232 53.21413422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33120 -00026233 53.21416092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33130 -00026234 53.21416473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33130 -00026235 53.21418762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33140 -00026236 53.21419144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33140 -00026237 53.21421814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33150 -00026238 53.21422195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33150 -00026239 53.21424484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33160 -00026240 53.21424866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33160 -00026241 53.21427536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33170 -00026242 53.21427917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33170 -00026243 53.21430588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33180 -00026244 53.21430588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33180 -00026245 53.21433258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33190 -00026246 53.21433258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33190 -00026247 53.21436310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a0 -00026248 53.21436310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a0 -00026249 53.21438599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b0 -00026250 53.21438980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b0 -00026251 53.21441650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c0 -00026252 53.21442032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c0 -00026253 53.21444321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d0 -00026254 53.21444702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d0 -00026255 53.21447372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e0 -00026256 53.21447754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e0 -00026257 53.21450424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f0 -00026258 53.21450424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f0 -00026259 53.21453094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33200 -00026260 53.21453476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33200 -00026261 53.21456146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33210 -00026262 53.21456146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33210 -00026263 53.21458435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33220 -00026264 53.21458817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33220 -00026265 53.21461487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33230 -00026266 53.21461868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33230 -00026267 53.21464157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33240 -00026268 53.21464539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33240 -00026269 53.21467209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33250 -00026270 53.21467590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33250 -00026271 53.21470261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33260 -00026272 53.21470261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33260 -00026273 53.21472931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33270 -00026274 53.21473312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33270 -00026275 53.21475983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33280 -00026276 53.21475983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33280 -00026277 53.21478653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33290 -00026278 53.21479034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33290 -00026279 53.21481705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a0 -00026280 53.21482086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a0 -00026281 53.21484375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b0 -00026282 53.21484375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b0 -00026283 53.21487427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c0 -00026284 53.21487427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c0 -00026285 53.21490097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d0 -00026286 53.21490479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d0 -00026287 53.21493149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e0 -00026288 53.21493530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e0 -00026289 53.21495819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f0 -00026290 53.21496201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f0 -00026291 53.21498871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33300 -00026292 53.21499252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33300 -00026293 53.21501923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33310 -00026294 53.21501923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33310 -00026295 53.21504593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33320 -00026296 53.21504974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33320 -00026297 53.21507645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33330 -00026298 53.21508026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33330 -00026299 53.21510315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33340 -00026300 53.21510696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33340 -00026301 53.21513367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33350 -00026302 53.21513367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33350 -00026303 53.21515656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33360 -00026304 53.21516037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33360 -00026305 53.21518707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33370 -00026306 53.21519089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33370 -00026307 53.21521759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33380 -00026308 53.21521759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33380 -00026309 53.21524429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33390 -00026310 53.21524811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33390 -00026311 53.21527863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333a0 -00026312 53.21527863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333a0 -00026313 53.21530151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333b0 -00026314 53.21530533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333b0 -00026315 53.21533203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333c0 -00026316 53.21533585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333c0 -00026317 53.21535873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333d0 -00026318 53.21536255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333d0 -00026319 53.21538925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333e0 -00026320 53.21539307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333e0 -00026321 53.21541595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333f0 -00026322 53.21541977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x333f0 -00026323 53.21544647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33400 -00026324 53.21545029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33400 -00026325 53.21547699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33410 -00026326 53.21547699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33410 -00026327 53.21550369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33420 -00026328 53.21550751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33420 -00026329 53.21553421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33430 -00026330 53.21553421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33430 -00026331 53.21556091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33440 -00026332 53.21556473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33440 -00026333 53.21559143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33450 -00026334 53.21559525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33450 -00026335 53.21561813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33460 -00026336 53.21562195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33460 -00026337 53.21564865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33470 -00026338 53.21565247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33470 -00026339 53.21567535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33480 -00026340 53.21567535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33480 -00026341 53.21570587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33490 -00026342 53.21570587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33490 -00026343 53.21573257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334a0 -00026344 53.21573257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334a0 -00026345 53.21575928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334b0 -00026346 53.21576309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334b0 -00026347 53.21578979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334c0 -00026348 53.21579361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334c0 -00026349 53.21581650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334d0 -00026350 53.21582031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334d0 -00026351 53.21584702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334e0 -00026352 53.21585083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334e0 -00026353 53.21587372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334f0 -00026354 53.21587753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x334f0 -00026355 53.21590424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33500 -00026356 53.21590805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33500 -00026357 53.21593094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33510 -00026358 53.21593475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33510 -00026359 53.21596146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33520 -00026360 53.21596527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33520 -00026361 53.21599197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33530 -00026362 53.21599197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33530 -00026363 53.21601486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33540 -00026364 53.21601868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33540 -00026365 53.21604538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33550 -00026366 53.21604919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33550 -00026367 53.21607208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33560 -00026368 53.21607590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33560 -00026369 53.21610260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33570 -00026370 53.21610641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33570 -00026371 53.21612930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33580 -00026372 53.21613312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33580 -00026373 53.21615982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33590 -00026374 53.21616364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33590 -00026375 53.21619034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335a0 -00026376 53.21619034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335a0 -00026377 53.21621704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335b0 -00026378 53.21622086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335b0 -00026379 53.21624756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335c0 -00026380 53.21625137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335c0 -00026381 53.21627426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335d0 -00026382 53.21627808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335d0 -00026383 53.21630478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335e0 -00026384 53.21630478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335e0 -00026385 53.21633148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335f0 -00026386 53.21633148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x335f0 -00026387 53.21635818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33600 -00026388 53.21636200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33600 -00026389 53.21638870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33610 -00026390 53.21638870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33610 -00026391 53.21641541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33620 -00026392 53.21641922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33620 -00026393 53.21644592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33630 -00026394 53.21644974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33630 -00026395 53.21647263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33640 -00026396 53.21647644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33640 -00026397 53.21650314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33650 -00026398 53.21650696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33650 -00026399 53.21652985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33660 -00026400 53.21652985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33660 -00026401 53.21655655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33670 -00026402 53.21656036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33670 -00026403 53.21658707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33680 -00026404 53.21658707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33680 -00026405 53.21661377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33690 -00026406 53.21661758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33690 -00026407 53.21664429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a0 -00026408 53.21664810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a0 -00026409 53.21667099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b0 -00026410 53.21667480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b0 -00026411 53.21670151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c0 -00026412 53.21670532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c0 -00026413 53.21672821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -00026414 53.21673203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -00026415 53.21675873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -00026416 53.21676254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -00026417 53.21678543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -00026418 53.21678925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -00026419 53.21681595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -00026420 53.21681976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -00026421 53.21684647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -00026422 53.21684647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -00026423 53.21687317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -00026424 53.21687317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -00026425 53.21689987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -00026426 53.21690369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -00026427 53.21692657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -00026428 53.21693039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -00026429 53.21695709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -00026430 53.21696091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -00026431 53.21698380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -00026432 53.21698761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -00026433 53.21701431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33770 -00026434 53.21701813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33770 -00026435 53.21704483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33780 -00026436 53.21704483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33780 -00026437 53.21707153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33790 -00026438 53.21707153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33790 -00026439 53.21710205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a0 -00026440 53.21710205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a0 -00026441 53.21712494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b0 -00026442 53.21712875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b0 -00026443 53.21715546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337c0 -00026444 53.21715927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337c0 -00026445 53.21718216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337d0 -00026446 53.21718597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337d0 -00026447 53.21721268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337e0 -00026448 53.21721649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337e0 -00026449 53.21724319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337f0 -00026450 53.21724319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x337f0 -00026451 53.21726990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33800 -00026452 53.21727371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33800 -00026453 53.21730042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33810 -00026454 53.21730423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33810 -00026455 53.21732712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33820 -00026456 53.21733093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33820 -00026457 53.21735764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33830 -00026458 53.21736145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33830 -00026459 53.21738434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33840 -00026460 53.21738815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33840 -00026461 53.21741486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33850 -00026462 53.21741486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33850 -00026463 53.21744156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33860 -00026464 53.21744156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33860 -00026465 53.21746826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33870 -00026466 53.21747208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33870 -00026467 53.21749878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33880 -00026468 53.21750259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33880 -00026469 53.21752548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33890 -00026470 53.21752930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33890 -00026471 53.21755600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338a0 -00026472 53.21755981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338a0 -00026473 53.21758270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b0 -00026474 53.21758652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b0 -00026475 53.21761322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c0 -00026476 53.21761703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c0 -00026477 53.21763992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d0 -00026478 53.21763992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d0 -00026479 53.21766663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e0 -00026480 53.21767044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e0 -00026481 53.21769714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f0 -00026482 53.21770096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f0 -00026483 53.21772385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33900 -00026484 53.21772766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33900 -00026485 53.21775436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33910 -00026486 53.21775818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33910 -00026487 53.21778107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33920 -00026488 53.21778488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33920 -00026489 53.21781158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33930 -00026490 53.21781540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33930 -00026491 53.21783829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33940 -00026492 53.21783829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33940 -00026493 53.21786880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33950 -00026494 53.21786880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33950 -00026495 53.21789551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33960 -00026496 53.21789932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33960 -00026497 53.21792221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33970 -00026498 53.21792603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33970 -00026499 53.21795273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33980 -00026500 53.21795654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33980 -00026501 53.21797943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33990 -00026502 53.21798325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33990 -00026503 53.21800995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a0 -00026504 53.21801376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a0 -00026505 53.21803665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b0 -00026506 53.21804047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b0 -00026507 53.21806717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c0 -00026508 53.21807098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c0 -00026509 53.21809769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d0 -00026510 53.21809769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d0 -00026511 53.21812439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e0 -00026512 53.21812439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e0 -00026513 53.21815109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f0 -00026514 53.21815491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f0 -00026515 53.21817780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a00 -00026516 53.21818161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a00 -00026517 53.21820831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a10 -00026518 53.21821213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a10 -00026519 53.21823502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a20 -00026520 53.21823883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a20 -00026521 53.21826553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a30 -00026522 53.21826935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a30 -00026523 53.21829605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a40 -00026524 53.21829605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a40 -00026525 53.21832275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a50 -00026526 53.21832275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a50 -00026527 53.21834946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a60 -00026528 53.21835327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a60 -00026529 53.21837616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a70 -00026530 53.21837997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a70 -00026531 53.21840668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a80 -00026532 53.21841049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a80 -00026533 53.21843338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a90 -00026534 53.21843719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a90 -00026535 53.21846390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa0 -00026536 53.21846771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa0 -00026537 53.21849442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab0 -00026538 53.21849442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab0 -00026539 53.21852112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac0 -00026540 53.21852112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac0 -00026541 53.21855164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad0 -00026542 53.21855164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad0 -00026543 53.21857452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae0 -00026544 53.21857834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae0 -00026545 53.21860504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af0 -00026546 53.21860886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af0 -00026547 53.21863174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b00 -00026548 53.21863556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b00 -00026549 53.21866226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b10 -00026550 53.21866608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b10 -00026551 53.21869278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b20 -00026552 53.21869278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b20 -00026553 53.21871948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b30 -00026554 53.21872330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b30 -00026555 53.21875000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b40 -00026556 53.21875381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b40 -00026557 53.21877670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b50 -00026558 53.21877670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b50 -00026559 53.21880722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b60 -00026560 53.21880722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b60 -00026561 53.21883011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b70 -00026562 53.21883392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b70 -00026563 53.21886063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b80 -00026564 53.21886444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b80 -00026565 53.21889114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b90 -00026566 53.21889114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b90 -00026567 53.21891785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba0 -00026568 53.21892166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba0 -00026569 53.21894836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb0 -00026570 53.21895218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb0 -00026571 53.21897507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc0 -00026572 53.21897888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc0 -00026573 53.21900558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd0 -00026574 53.21900558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd0 -00026575 53.21903229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be0 -00026576 53.21903229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be0 -00026577 53.21905899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf0 -00026578 53.21906281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf0 -00026579 53.21908951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c00 -00026580 53.21908951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c00 -00026581 53.21911621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c10 -00026582 53.21912003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c10 -00026583 53.21914673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c20 -00026584 53.21915054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c20 -00026585 53.21917343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c30 -00026586 53.21917725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c30 -00026587 53.21920395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c40 -00026588 53.21920776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c40 -00026589 53.21923065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c50 -00026590 53.21923447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c50 -00026591 53.21926117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c60 -00026592 53.21926117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c60 -00026593 53.21928787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c70 -00026594 53.21928787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c70 -00026595 53.21931458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c80 -00026596 53.21931839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c80 -00026597 53.21934509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c90 -00026598 53.21934891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c90 -00026599 53.21937180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ca0 -00026600 53.21937561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ca0 -00026601 53.21940231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cb0 -00026602 53.21940613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cb0 -00026603 53.21942902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cc0 -00026604 53.21943283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cc0 -00026605 53.21945953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cd0 -00026606 53.21945953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cd0 -00026607 53.21948624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ce0 -00026608 53.21948624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ce0 -00026609 53.21951294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cf0 -00026610 53.21951675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cf0 -00026611 53.21954346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d00 -00026612 53.21954727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d00 -00026613 53.21957016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d10 -00026614 53.21957397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d10 -00026615 53.21960068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d20 -00026616 53.21960449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d20 -00026617 53.21962738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d30 -00026618 53.21963120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d30 -00026619 53.21965790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d40 -00026620 53.21965790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d40 -00026621 53.21968460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -00026622 53.21968460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -00026623 53.21971130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -00026624 53.21971512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -00026625 53.21974182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -00026626 53.21974564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -00026627 53.21976852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -00026628 53.21977234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -00026629 53.21979904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -00026630 53.21980286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -00026631 53.21982574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -00026632 53.21982956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -00026633 53.21985626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -00026634 53.21986008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -00026635 53.21988297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -00026636 53.21988678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -00026637 53.21991348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -00026638 53.21991730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -00026639 53.21994400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -00026640 53.21994400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -00026641 53.21996689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -00026642 53.21997070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -00026643 53.21999741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -00026644 53.22000122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -00026645 53.22002411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -00026646 53.22002792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -00026647 53.22005463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -00026648 53.22005844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -00026649 53.22008133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -00026650 53.22008514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -00026651 53.22011185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -00026652 53.22011566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -00026653 53.22014236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -00026654 53.22014236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -00026655 53.22016525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -00026656 53.22016907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -00026657 53.22019577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -00026658 53.22019958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -00026659 53.22022247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -00026660 53.22022629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -00026661 53.22025299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -00026662 53.22025681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -00026663 53.22027969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -00026664 53.22028351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -00026665 53.22031021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -00026666 53.22031403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -00026667 53.22034073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -00026668 53.22034073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -00026669 53.22036362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -00026670 53.22036743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -00026671 53.22039413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -00026672 53.22039795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -00026673 53.22042084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -00026674 53.22042465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -00026675 53.22045135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -00026676 53.22045517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -00026677 53.22048187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -00026678 53.22048187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -00026679 53.22050858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -00026680 53.22051239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -00026681 53.22053909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -00026682 53.22053909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -00026683 53.22056580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -00026684 53.22056961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -00026685 53.22059631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -00026686 53.22060013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -00026687 53.22062302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -00026688 53.22062302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -00026689 53.22064972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -00026690 53.22065353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -00026691 53.22068024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -00026692 53.22068024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -00026693 53.22070694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -00026694 53.22071075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -00026695 53.22073746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -00026696 53.22073746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -00026697 53.22076416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -00026698 53.22076797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -00026699 53.22079468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -00026700 53.22079849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -00026701 53.22082138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -00026702 53.22082138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -00026703 53.22084808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -00026704 53.22085190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -00026705 53.22087860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -00026706 53.22087860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -00026707 53.22090530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -00026708 53.22090912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -00026709 53.22093582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -00026710 53.22093582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -00026711 53.22096252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -00026712 53.22096634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -00026713 53.22099304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -00026714 53.22099686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -00026715 53.22101974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -00026716 53.22102356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -00026717 53.22105026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -00026718 53.22105026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -00026719 53.22107697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -00026720 53.22107697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -00026721 53.22110748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34070 -00026722 53.22110748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34070 -00026723 53.22113419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34080 -00026724 53.22113419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34080 -00026725 53.22116089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34090 -00026726 53.22116470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34090 -00026727 53.22119141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a0 -00026728 53.22119522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a0 -00026729 53.22121811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b0 -00026730 53.22122192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b0 -00026731 53.22124863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c0 -00026732 53.22125244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c0 -00026733 53.22127533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d0 -00026734 53.22127914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d0 -00026735 53.22130585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340e0 -00026736 53.22130585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340e0 -00026737 53.22133255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340f0 -00026738 53.22133255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x340f0 -00026739 53.22135925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34100 -00026740 53.22136307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34100 -00026741 53.22138977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34110 -00026742 53.22139359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34110 -00026743 53.22141647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34120 -00026744 53.22142029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34120 -00026745 53.22144699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34130 -00026746 53.22145081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34130 -00026747 53.22147369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34140 -00026748 53.22147751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34140 -00026749 53.22150421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34150 -00026750 53.22150421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34150 -00026751 53.22153091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34160 -00026752 53.22153091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34160 -00026753 53.22155762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34170 -00026754 53.22156143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34170 -00026755 53.22158813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34180 -00026756 53.22159195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34180 -00026757 53.22161484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34190 -00026758 53.22161865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34190 -00026759 53.22164536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a0 -00026760 53.22164917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a0 -00026761 53.22167206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b0 -00026762 53.22167587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b0 -00026763 53.22170258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c0 -00026764 53.22170639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c0 -00026765 53.22173309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d0 -00026766 53.22173309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d0 -00026767 53.22175980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e0 -00026768 53.22175980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e0 -00026769 53.22178650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f0 -00026770 53.22179031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f0 -00026771 53.22181320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34200 -00026772 53.22181702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34200 -00026773 53.22184372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34210 -00026774 53.22184753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34210 -00026775 53.22187042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34220 -00026776 53.22187424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34220 -00026777 53.22190094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34230 -00026778 53.22190475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34230 -00026779 53.22193146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34240 -00026780 53.22193146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34240 -00026781 53.22195816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34250 -00026782 53.22195816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34250 -00026783 53.22198868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34260 -00026784 53.22198868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34260 -00026785 53.22201157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34270 -00026786 53.22201538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34270 -00026787 53.22204208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34280 -00026788 53.22204590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34280 -00026789 53.22206879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34290 -00026790 53.22207260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34290 -00026791 53.22209930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a0 -00026792 53.22210312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a0 -00026793 53.22212982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b0 -00026794 53.22212982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b0 -00026795 53.22215652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c0 -00026796 53.22216034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c0 -00026797 53.22218704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d0 -00026798 53.22218704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d0 -00026799 53.22220993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e0 -00026800 53.22221375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e0 -00026801 53.22224426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f0 -00026802 53.22224808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f0 -00026803 53.22227859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34300 -00026804 53.22228241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34300 -00026805 53.22230530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34310 -00026806 53.22230911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34310 -00026807 53.22233582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34320 -00026808 53.22233963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34320 -00026809 53.22236633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34330 -00026810 53.22236633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34330 -00026811 53.22239304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34340 -00026812 53.22239685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34340 -00026813 53.22242355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34350 -00026814 53.22242737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34350 -00026815 53.22245026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34360 -00026816 53.22245407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34360 -00026817 53.22248077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34370 -00026818 53.22248459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34370 -00026819 53.22250748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34380 -00026820 53.22251129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34380 -00026821 53.22253799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34390 -00026822 53.22254181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34390 -00026823 53.22256470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343a0 -00026824 53.22256851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343a0 -00026825 53.22259521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343b0 -00026826 53.22259903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343b0 -00026827 53.22262573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343c0 -00026828 53.22262573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343c0 -00026829 53.22264862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343d0 -00026830 53.22265244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343d0 -00026831 53.22267914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343e0 -00026832 53.22268295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343e0 -00026833 53.22270584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343f0 -00026834 53.22270966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343f0 -00026835 53.22273636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34400 -00026836 53.22274017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34400 -00026837 53.22276306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34410 -00026838 53.22276688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34410 -00026839 53.22279358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34420 -00026840 53.22279739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34420 -00026841 53.22282410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34430 -00026842 53.22282410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34430 -00026843 53.22284698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34440 -00026844 53.22285080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34440 -00026845 53.22287750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34450 -00026846 53.22288132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34450 -00026847 53.22290421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34460 -00026848 53.22290802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34460 -00026849 53.22293472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34470 -00026850 53.22293854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34470 -00026851 53.22296143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34480 -00026852 53.22296524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34480 -00026853 53.22299194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34490 -00026854 53.22299576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34490 -00026855 53.22302246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344a0 -00026856 53.22302246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344a0 -00026857 53.22304916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344b0 -00026858 53.22305298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344b0 -00026859 53.22307968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344c0 -00026860 53.22307968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344c0 -00026861 53.22310638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344d0 -00026862 53.22310638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344d0 -00026863 53.22313309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344e0 -00026864 53.22313690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344e0 -00026865 53.22315979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344f0 -00026866 53.22316360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x344f0 -00026867 53.22319031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34500 -00026868 53.22319412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34500 -00026869 53.22322083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34510 -00026870 53.22322083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34510 -00026871 53.22324753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34520 -00026872 53.22325134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34520 -00026873 53.22327805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34530 -00026874 53.22328186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34530 -00026875 53.22330475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34540 -00026876 53.22330475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34540 -00026877 53.22333145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34550 -00026878 53.22333527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34550 -00026879 53.22335815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34560 -00026880 53.22336197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34560 -00026881 53.22338867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34570 -00026882 53.22339249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34570 -00026883 53.22341919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34580 -00026884 53.22341919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34580 -00026885 53.22344589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34590 -00026886 53.22344971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34590 -00026887 53.22347641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a0 -00026888 53.22348022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a0 -00026889 53.22350311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b0 -00026890 53.22350693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b0 -00026891 53.22353363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c0 -00026892 53.22353363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c0 -00026893 53.22355652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d0 -00026894 53.22356033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d0 -00026895 53.22358704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e0 -00026896 53.22359085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e0 -00026897 53.22361755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f0 -00026898 53.22361755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f0 -00026899 53.22364426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34600 -00026900 53.22364807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34600 -00026901 53.22367477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34610 -00026902 53.22367859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34610 -00026903 53.22370148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34620 -00026904 53.22370529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34620 -00026905 53.22373199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34630 -00026906 53.22373581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34630 -00026907 53.22375870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34640 -00026908 53.22376251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34640 -00026909 53.22378922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34650 -00026910 53.22378922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34650 -00026911 53.22381592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34660 -00026912 53.22381592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34660 -00026913 53.22384262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34670 -00026914 53.22384644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34670 -00026915 53.22387314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34680 -00026916 53.22387695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34680 -00026917 53.22389984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34690 -00026918 53.22390366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34690 -00026919 53.22393036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a0 -00026920 53.22393417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a0 -00026921 53.22395706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b0 -00026922 53.22396088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b0 -00026923 53.22398758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c0 -00026924 53.22398758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c0 -00026925 53.22401428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d0 -00026926 53.22401428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d0 -00026927 53.22404099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e0 -00026928 53.22404480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e0 -00026929 53.22407150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f0 -00026930 53.22407532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f0 -00026931 53.22409821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34700 -00026932 53.22410202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34700 -00026933 53.22412872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34710 -00026934 53.22413254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34710 -00026935 53.22415543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34720 -00026936 53.22415924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34720 -00026937 53.22418594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34730 -00026938 53.22418976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34730 -00026939 53.22421265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34740 -00026940 53.22421646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34740 -00026941 53.22424316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34750 -00026942 53.22424698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34750 -00026943 53.22427368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34760 -00026944 53.22427368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34760 -00026945 53.22430038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34770 -00026946 53.22430038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34770 -00026947 53.22432709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34780 -00026948 53.22433090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34780 -00026949 53.22435379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34790 -00026950 53.22435760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34790 -00026951 53.22438431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a0 -00026952 53.22438812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a0 -00026953 53.22441101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b0 -00026954 53.22441483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b0 -00026955 53.22444153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c0 -00026956 53.22444534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c0 -00026957 53.22447205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d0 -00026958 53.22447205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d0 -00026959 53.22449875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e0 -00026960 53.22449875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e0 -00026961 53.22452545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f0 -00026962 53.22452927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f0 -00026963 53.22455215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34800 -00026964 53.22455597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34800 -00026965 53.22458267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34810 -00026966 53.22458649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34810 -00026967 53.22460938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34820 -00026968 53.22461319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34820 -00026969 53.22463989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34830 -00026970 53.22464371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34830 -00026971 53.22467041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34840 -00026972 53.22467041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34840 -00026973 53.22469711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34850 -00026974 53.22469711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34850 -00026975 53.22472763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34860 -00026976 53.22472763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34860 -00026977 53.22475052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34870 -00026978 53.22475433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34870 -00026979 53.22478104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34880 -00026980 53.22478485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34880 -00026981 53.22480774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34890 -00026982 53.22481155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34890 -00026983 53.22483826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a0 -00026984 53.22484207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a0 -00026985 53.22486877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b0 -00026986 53.22486877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b0 -00026987 53.22489548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c0 -00026988 53.22489929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c0 -00026989 53.22492599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d0 -00026990 53.22492981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d0 -00026991 53.22495270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e0 -00026992 53.22495651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e0 -00026993 53.22498322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f0 -00026994 53.22498703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f0 -00026995 53.22500992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34900 -00026996 53.22500992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34900 -00026997 53.22503662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34910 -00026998 53.22504044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34910 -00026999 53.22506714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34920 -00027000 53.22506714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34920 -00027001 53.22509384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34930 -00027002 53.22509766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34930 -00027003 53.22512436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34940 -00027004 53.22512817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34940 -00027005 53.22515106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34950 -00027006 53.22515488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34950 -00027007 53.22518158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34960 -00027008 53.22518539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34960 -00027009 53.22520828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34970 -00027010 53.22521210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34970 -00027011 53.22523880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34980 -00027012 53.22523880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34980 -00027013 53.22526550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34990 -00027014 53.22526550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34990 -00027015 53.22529221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349a0 -00027016 53.22529602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349a0 -00027017 53.22532272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349b0 -00027018 53.22532654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349b0 -00027019 53.22534943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349c0 -00027020 53.22535324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349c0 -00027021 53.22537994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349d0 -00027022 53.22538376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349d0 -00027023 53.22540665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349e0 -00027024 53.22541046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349e0 -00027025 53.22543716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349f0 -00027026 53.22544098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x349f0 -00027027 53.22546387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a00 -00027028 53.22546768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a00 -00027029 53.22549438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a10 -00027030 53.22549438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a10 -00027031 53.22552490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a20 -00027032 53.22552490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a20 -00027033 53.22554779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a30 -00027034 53.22555161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a30 -00027035 53.22557831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a40 -00027036 53.22558212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a40 -00027037 53.22560501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a50 -00027038 53.22560883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a50 -00027039 53.22563553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a60 -00027040 53.22563934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a60 -00027041 53.22566223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a70 -00027042 53.22566605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a70 -00027043 53.22569275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a80 -00027044 53.22569656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a80 -00027045 53.22572327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a90 -00027046 53.22572327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a90 -00027047 53.22574615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34aa0 -00027048 53.22574997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34aa0 -00027049 53.22577667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ab0 -00027050 53.22578049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ab0 -00027051 53.22580338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ac0 -00027052 53.22580719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ac0 -00027053 53.22583389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ad0 -00027054 53.22583771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ad0 -00027055 53.22586060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ae0 -00027056 53.22586441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ae0 -00027057 53.22589111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34af0 -00027058 53.22589493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34af0 -00027059 53.22592163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b00 -00027060 53.22592163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b00 -00027061 53.22594833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b10 -00027062 53.22594833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b10 -00027063 53.22597504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b20 -00027064 53.22597885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b20 -00027065 53.22600174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b30 -00027066 53.22600555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b30 -00027067 53.22603226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b40 -00027068 53.22603607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b40 -00027069 53.22605896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b50 -00027070 53.22606277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b50 -00027071 53.22608948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b60 -00027072 53.22609329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b60 -00027073 53.22612000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b70 -00027074 53.22612000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b70 -00027075 53.22614670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b80 -00027076 53.22615051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b80 -00027077 53.22617722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b90 -00027078 53.22617722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b90 -00027079 53.22620392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ba0 -00027080 53.22620392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ba0 -00027081 53.22623062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bb0 -00027082 53.22623444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bb0 -00027083 53.22625732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bc0 -00027084 53.22626114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bc0 -00027085 53.22628784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bd0 -00027086 53.22629166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bd0 -00027087 53.22631836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34be0 -00027088 53.22631836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34be0 -00027089 53.22634506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf0 -00027090 53.22634888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf0 -00027091 53.22637558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c00 -00027092 53.22637939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c00 -00027093 53.22640228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c10 -00027094 53.22640228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c10 -00027095 53.22643280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c20 -00027096 53.22643280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c20 -00027097 53.22645950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c30 -00027098 53.22645950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c30 -00027099 53.22648621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c40 -00027100 53.22649002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c40 -00027101 53.22651672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c50 -00027102 53.22651672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c50 -00027103 53.22654343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c60 -00027104 53.22654724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c60 -00027105 53.22657394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c70 -00027106 53.22657776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c70 -00027107 53.22660065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c80 -00027108 53.22660446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c80 -00027109 53.22663116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c90 -00027110 53.22663116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c90 -00027111 53.22665787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca0 -00027112 53.22665787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca0 -00027113 53.22668457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb0 -00027114 53.22668839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb0 -00027115 53.22671509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc0 -00027116 53.22671509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc0 -00027117 53.22674179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd0 -00027118 53.22674561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd0 -00027119 53.22677231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce0 -00027120 53.22677612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce0 -00027121 53.22679901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf0 -00027122 53.22680283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf0 -00027123 53.22682953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d00 -00027124 53.22683334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d00 -00027125 53.22685623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d10 -00027126 53.22686005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d10 -00027127 53.22688675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d20 -00027128 53.22688675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d20 -00027129 53.22691345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d30 -00027130 53.22691345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d30 -00027131 53.22694016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d40 -00027132 53.22694397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d40 -00027133 53.22697067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d50 -00027134 53.22697449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d50 -00027135 53.22699738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d60 -00027136 53.22700119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d60 -00027137 53.22702789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d70 -00027138 53.22703171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d70 -00027139 53.22705460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d80 -00027140 53.22705841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d80 -00027141 53.22708511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d90 -00027142 53.22708893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d90 -00027143 53.22711182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da0 -00027144 53.22711182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da0 -00027145 53.22713852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db0 -00027146 53.22714233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db0 -00027147 53.22716904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc0 -00027148 53.22717285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc0 -00027149 53.22719574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd0 -00027150 53.22719955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd0 -00027151 53.22722626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de0 -00027152 53.22723007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de0 -00027153 53.22725296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df0 -00027154 53.22725677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df0 -00027155 53.22728348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e00 -00027156 53.22728729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e00 -00027157 53.22731018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e10 -00027158 53.22731400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e10 -00027159 53.22734070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e20 -00027160 53.22734451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e20 -00027161 53.22737122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e30 -00027162 53.22737122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e30 -00027163 53.22739792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e40 -00027164 53.22739792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e40 -00027165 53.22742462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e50 -00027166 53.22742844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e50 -00027167 53.22745132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e60 -00027168 53.22745514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e60 -00027169 53.22748184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e70 -00027170 53.22748566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e70 -00027171 53.22750854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e80 -00027172 53.22751236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e80 -00027173 53.22753906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e90 -00027174 53.22754288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e90 -00027175 53.22756958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea0 -00027176 53.22756958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea0 -00027177 53.22759628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb0 -00027178 53.22759628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb0 -00027179 53.22762680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec0 -00027180 53.22762680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec0 -00027181 53.22764969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed0 -00027182 53.22765350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed0 -00027183 53.22768021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee0 -00027184 53.22768402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee0 -00027185 53.22770691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef0 -00027186 53.22771072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef0 -00027187 53.22773743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f00 -00027188 53.22774124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f00 -00027189 53.22776794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f10 -00027190 53.22776794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f10 -00027191 53.22779465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f20 -00027192 53.22779846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f20 -00027193 53.22782516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f30 -00027194 53.22782898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f30 -00027195 53.22785187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f40 -00027196 53.22785187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f40 -00027197 53.22787857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f50 -00027198 53.22788239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f50 -00027199 53.22790909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f60 -00027200 53.22790909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f60 -00027201 53.22793579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f70 -00027202 53.22793961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f70 -00027203 53.22796631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f80 -00027204 53.22796631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f80 -00027205 53.22799301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f90 -00027206 53.22799683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f90 -00027207 53.22802353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa0 -00027208 53.22802734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa0 -00027209 53.22805023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb0 -00027210 53.22805405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb0 -00027211 53.22808075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc0 -00027212 53.22808456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc0 -00027213 53.22810745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd0 -00027214 53.22811127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd0 -00027215 53.22813797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe0 -00027216 53.22814178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe0 -00027217 53.22816467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ff0 -00027218 53.22816467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ff0 -00027219 53.22819519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35000 -00027220 53.22819519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35000 -00027221 53.22822189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35010 -00027222 53.22822571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35010 -00027223 53.22824860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35020 -00027224 53.22825241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35020 -00027225 53.22827911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35030 -00027226 53.22828293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35030 -00027227 53.22830582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35040 -00027228 53.22830963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35040 -00027229 53.22833633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35050 -00027230 53.22834015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35050 -00027231 53.22836304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35060 -00027232 53.22836685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35060 -00027233 53.22839355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35070 -00027234 53.22839355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35070 -00027235 53.22842407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35080 -00027236 53.22842407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35080 -00027237 53.22844696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35090 -00027238 53.22845078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35090 -00027239 53.22847748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350a0 -00027240 53.22848129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350a0 -00027241 53.22850418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350b0 -00027242 53.22850800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350b0 -00027243 53.22853470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350c0 -00027244 53.22853851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350c0 -00027245 53.22856140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350d0 -00027246 53.22856522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350d0 -00027247 53.22859192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350e0 -00027248 53.22859573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350e0 -00027249 53.22862244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350f0 -00027250 53.22862244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350f0 -00027251 53.22864914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35100 -00027252 53.22865295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35100 -00027253 53.22867966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35110 -00027254 53.22867966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35110 -00027255 53.22870636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35120 -00027256 53.22870636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35120 -00027257 53.22873306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35130 -00027258 53.22873688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35130 -00027259 53.22875977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35140 -00027260 53.22876358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35140 -00027261 53.22879028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35150 -00027262 53.22879410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35150 -00027263 53.22882080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35160 -00027264 53.22882080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35160 -00027265 53.22884750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35170 -00027266 53.22885132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35170 -00027267 53.22887802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35180 -00027268 53.22888184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35180 -00027269 53.22890472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35190 -00027270 53.22890854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35190 -00027271 53.22893524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351a0 -00027272 53.22893524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351a0 -00027273 53.22895813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351b0 -00027274 53.22896194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351b0 -00027275 53.22898865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351c0 -00027276 53.22899246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351c0 -00027277 53.22901917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351d0 -00027278 53.22901917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351d0 -00027279 53.22904587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351e0 -00027280 53.22904968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351e0 -00027281 53.22907639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351f0 -00027282 53.22908020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351f0 -00027283 53.22910309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35200 -00027284 53.22910690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35200 -00027285 53.22913361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35210 -00027286 53.22913361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35210 -00027287 53.22916031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35220 -00027288 53.22916031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35220 -00027289 53.22918701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35230 -00027290 53.22919083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35230 -00027291 53.22921753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35240 -00027292 53.22921753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35240 -00027293 53.22924423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35250 -00027294 53.22924805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35250 -00027295 53.22927856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35260 -00027296 53.22928619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35260 -00027297 53.22932816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35270 -00027298 53.22933197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35270 -00027299 53.22935867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35280 -00027300 53.22935867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35280 -00027301 53.22938538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35290 -00027302 53.22938919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35290 -00027303 53.22941589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a0 -00027304 53.22941589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a0 -00027305 53.22944260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b0 -00027306 53.22944641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b0 -00027307 53.22947311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c0 -00027308 53.22947693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c0 -00027309 53.22949982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d0 -00027310 53.22950363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d0 -00027311 53.22953033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e0 -00027312 53.22953033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e0 -00027313 53.22955704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f0 -00027314 53.22955704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f0 -00027315 53.22958374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35300 -00027316 53.22958755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35300 -00027317 53.22961426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35310 -00027318 53.22961426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35310 -00027319 53.22964096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35320 -00027320 53.22964478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35320 -00027321 53.22967148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35330 -00027322 53.22967529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35330 -00027323 53.22969818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35340 -00027324 53.22970200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35340 -00027325 53.22972870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35350 -00027326 53.22972870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35350 -00027327 53.22975540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35360 -00027328 53.22975540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35360 -00027329 53.22978210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35370 -00027330 53.22978592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35370 -00027331 53.22981262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35380 -00027332 53.22981262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35380 -00027333 53.22983932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35390 -00027334 53.22984314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35390 -00027335 53.22987366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a0 -00027336 53.22987366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a0 -00027337 53.22990036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b0 -00027338 53.22990417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b0 -00027339 53.22993088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c0 -00027340 53.22993469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c0 -00027341 53.22995758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d0 -00027342 53.22996140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d0 -00027343 53.22998810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e0 -00027344 53.22999191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e0 -00027345 53.23001480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f0 -00027346 53.23001480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f0 -00027347 53.23004532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35400 -00027348 53.23004532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35400 -00027349 53.23007202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35410 -00027350 53.23007202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35410 -00027351 53.23009872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35420 -00027352 53.23010254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35420 -00027353 53.23012924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35430 -00027354 53.23013306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35430 -00027355 53.23015594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35440 -00027356 53.23015976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35440 -00027357 53.23018646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35450 -00027358 53.23019028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35450 -00027359 53.23021317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35460 -00027360 53.23021698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35460 -00027361 53.23024368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35470 -00027362 53.23024750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35470 -00027363 53.23027039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35480 -00027364 53.23027039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35480 -00027365 53.23029709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35490 -00027366 53.23030090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35490 -00027367 53.23032761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a0 -00027368 53.23033142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a0 -00027369 53.23035431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b0 -00027370 53.23035812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b0 -00027371 53.23038483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c0 -00027372 53.23038864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c0 -00027373 53.23041153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d0 -00027374 53.23041534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d0 -00027375 53.23044205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e0 -00027376 53.23044586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e0 -00027377 53.23046875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f0 -00027378 53.23047256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f0 -00027379 53.23049927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35500 -00027380 53.23050308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35500 -00027381 53.23052979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35510 -00027382 53.23052979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35510 -00027383 53.23055649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35520 -00027384 53.23056030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35520 -00027385 53.23058701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35530 -00027386 53.23058701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35530 -00027387 53.23061371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35540 -00027388 53.23061371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35540 -00027389 53.23064041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35550 -00027390 53.23064423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35550 -00027391 53.23066711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35560 -00027392 53.23067093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35560 -00027393 53.23069763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35570 -00027394 53.23070145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35570 -00027395 53.23072815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35580 -00027396 53.23072815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35580 -00027397 53.23075485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35590 -00027398 53.23075867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35590 -00027399 53.23078537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a0 -00027400 53.23078537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a0 -00027401 53.23081207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355b0 -00027402 53.23081207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355b0 -00027403 53.23084259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355c0 -00027404 53.23084259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355c0 -00027405 53.23086548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355d0 -00027406 53.23086929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355d0 -00027407 53.23089600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355e0 -00027408 53.23089981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355e0 -00027409 53.23092651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355f0 -00027410 53.23092651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x355f0 -00027411 53.23095322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35600 -00027412 53.23095703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35600 -00027413 53.23098373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35610 -00027414 53.23098373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35610 -00027415 53.23101044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35620 -00027416 53.23101425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35620 -00027417 53.23104095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35630 -00027418 53.23104095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35630 -00027419 53.23106384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35640 -00027420 53.23106766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35640 -00027421 53.23109818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35650 -00027422 53.23109818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35650 -00027423 53.23112488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35660 -00027424 53.23112488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35660 -00027425 53.23115158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35670 -00027426 53.23115540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35670 -00027427 53.23118210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35680 -00027428 53.23118210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35680 -00027429 53.23120880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35690 -00027430 53.23121262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35690 -00027431 53.23123932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a0 -00027432 53.23124313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a0 -00027433 53.23126602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b0 -00027434 53.23126984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b0 -00027435 53.23129654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c0 -00027436 53.23130035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c0 -00027437 53.23132324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d0 -00027438 53.23132706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d0 -00027439 53.23135376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e0 -00027440 53.23135376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e0 -00027441 53.23138046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f0 -00027442 53.23138428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f0 -00027443 53.23140717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35700 -00027444 53.23141098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35700 -00027445 53.23143768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35710 -00027446 53.23144150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35710 -00027447 53.23146439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35720 -00027448 53.23146820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35720 -00027449 53.23149490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35730 -00027450 53.23149872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35730 -00027451 53.23152161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35740 -00027452 53.23152542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35740 -00027453 53.23155212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35750 -00027454 53.23155594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35750 -00027455 53.23158264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35760 -00027456 53.23158264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35760 -00027457 53.23160553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35770 -00027458 53.23160934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35770 -00027459 53.23163605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35780 -00027460 53.23163986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35780 -00027461 53.23166275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35790 -00027462 53.23166656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35790 -00027463 53.23169327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357a0 -00027464 53.23169708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357a0 -00027465 53.23171997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357b0 -00027466 53.23172379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357b0 -00027467 53.23175049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357c0 -00027468 53.23175430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357c0 -00027469 53.23178101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357d0 -00027470 53.23178101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357d0 -00027471 53.23180771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357e0 -00027472 53.23181152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357e0 -00027473 53.23183823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357f0 -00027474 53.23183823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x357f0 -00027475 53.23186493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35800 -00027476 53.23186874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35800 -00027477 53.23189545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35810 -00027478 53.23189926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35810 -00027479 53.23192215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35820 -00027480 53.23192596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35820 -00027481 53.23195267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35830 -00027482 53.23195267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35830 -00027483 53.23197937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35840 -00027484 53.23197937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35840 -00027485 53.23200607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35850 -00027486 53.23200989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35850 -00027487 53.23203659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35860 -00027488 53.23203659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35860 -00027489 53.23206329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35870 -00027490 53.23206711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35870 -00027491 53.23209381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35880 -00027492 53.23209763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35880 -00027493 53.23212051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35890 -00027494 53.23212433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35890 -00027495 53.23215103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358a0 -00027496 53.23215103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358a0 -00027497 53.23217773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358b0 -00027498 53.23217773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358b0 -00027499 53.23220444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358c0 -00027500 53.23220825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358c0 -00027501 53.23223495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358d0 -00027502 53.23223495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358d0 -00027503 53.23226166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358e0 -00027504 53.23226547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358e0 -00027505 53.23229218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358f0 -00027506 53.23229599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x358f0 -00027507 53.23231888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35900 -00027508 53.23232269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35900 -00027509 53.23234940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35910 -00027510 53.23235321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35910 -00027511 53.23237610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35920 -00027512 53.23237991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35920 -00027513 53.23240662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35930 -00027514 53.23241043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35930 -00027515 53.23243332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35940 -00027516 53.23243713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35940 -00027517 53.23246384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35950 -00027518 53.23246765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35950 -00027519 53.23249435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35960 -00027520 53.23249435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35960 -00027521 53.23251724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35970 -00027522 53.23252106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35970 -00027523 53.23254776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35980 -00027524 53.23255157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35980 -00027525 53.23257446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35990 -00027526 53.23257828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35990 -00027527 53.23260498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359a0 -00027528 53.23260880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359a0 -00027529 53.23263550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359b0 -00027530 53.23263550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359b0 -00027531 53.23266220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359c0 -00027532 53.23266602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359c0 -00027533 53.23269272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d0 -00027534 53.23269272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d0 -00027535 53.23271942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e0 -00027536 53.23272324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e0 -00027537 53.23274994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f0 -00027538 53.23274994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f0 -00027539 53.23277283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a00 -00027540 53.23277664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a00 -00027541 53.23280334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a10 -00027542 53.23280716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a10 -00027543 53.23283386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a20 -00027544 53.23283386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a20 -00027545 53.23286057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a30 -00027546 53.23286438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a30 -00027547 53.23289108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a40 -00027548 53.23289108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a40 -00027549 53.23291779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a50 -00027550 53.23292160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a50 -00027551 53.23294830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a60 -00027552 53.23295212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a60 -00027553 53.23297501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a70 -00027554 53.23297882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a70 -00027555 53.23300552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a80 -00027556 53.23300934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a80 -00027557 53.23303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a90 -00027558 53.23303604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a90 -00027559 53.23306274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa0 -00027560 53.23306656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa0 -00027561 53.23308945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab0 -00027562 53.23309326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab0 -00027563 53.23311996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac0 -00027564 53.23311996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac0 -00027565 53.23315048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad0 -00027566 53.23315048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad0 -00027567 53.23317337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae0 -00027568 53.23317719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae0 -00027569 53.23320389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af0 -00027570 53.23320770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af0 -00027571 53.23323059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b00 -00027572 53.23323441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b00 -00027573 53.23326111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b10 -00027574 53.23326492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b10 -00027575 53.23328781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b20 -00027576 53.23329163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b20 -00027577 53.23331833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b30 -00027578 53.23332214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b30 -00027579 53.23334885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b40 -00027580 53.23334885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b40 -00027581 53.23337555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b50 -00027582 53.23337555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b50 -00027583 53.23340225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b60 -00027584 53.23340607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b60 -00027585 53.23342896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b70 -00027586 53.23343277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b70 -00027587 53.23345947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b80 -00027588 53.23346329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b80 -00027589 53.23348618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b90 -00027590 53.23348999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b90 -00027591 53.23351669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ba0 -00027592 53.23352051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ba0 -00027593 53.23354721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bb0 -00027594 53.23354721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bb0 -00027595 53.23357391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bc0 -00027596 53.23357391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bc0 -00027597 53.23360443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bd0 -00027598 53.23360825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bd0 -00027599 53.23363113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35be0 -00027600 53.23363113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35be0 -00027601 53.23366165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bf0 -00027602 53.23366165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bf0 -00027603 53.23368835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c00 -00027604 53.23368835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c00 -00027605 53.23371506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c10 -00027606 53.23371887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c10 -00027607 53.23374557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c20 -00027608 53.23374557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c20 -00027609 53.23377228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c30 -00027610 53.23377609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c30 -00027611 53.23380280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c40 -00027612 53.23380661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c40 -00027613 53.23382950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c50 -00027614 53.23383331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c50 -00027615 53.23386002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c60 -00027616 53.23386383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c60 -00027617 53.23388672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c70 -00027618 53.23388672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c70 -00027619 53.23391342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c80 -00027620 53.23391724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c80 -00027621 53.23394394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c90 -00027622 53.23394394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c90 -00027623 53.23397064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca0 -00027624 53.23397446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca0 -00027625 53.23400116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb0 -00027626 53.23400497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb0 -00027627 53.23402786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc0 -00027628 53.23403168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc0 -00027629 53.23405838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd0 -00027630 53.23406219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd0 -00027631 53.23408508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce0 -00027632 53.23408890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce0 -00027633 53.23411560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf0 -00027634 53.23411942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf0 -00027635 53.23414230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d00 -00027636 53.23414230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d00 -00027637 53.23416901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d10 -00027638 53.23417282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d10 -00027639 53.23419952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d20 -00027640 53.23420334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d20 -00027641 53.23422623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d30 -00027642 53.23423004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d30 -00027643 53.23425674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d40 -00027644 53.23426056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d40 -00027645 53.23428345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d50 -00027646 53.23428726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d50 -00027647 53.23431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d60 -00027648 53.23431778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d60 -00027649 53.23434067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d70 -00027650 53.23434448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d70 -00027651 53.23437119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d80 -00027652 53.23437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d80 -00027653 53.23440170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d90 -00027654 53.23440170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d90 -00027655 53.23442459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da0 -00027656 53.23442841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da0 -00027657 53.23445511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db0 -00027658 53.23445892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db0 -00027659 53.23448181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc0 -00027660 53.23448563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc0 -00027661 53.23451233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd0 -00027662 53.23451614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd0 -00027663 53.23453903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35de0 -00027664 53.23454285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35de0 -00027665 53.23456955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35df0 -00027666 53.23457336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35df0 -00027667 53.23460007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e00 -00027668 53.23460007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e00 -00027669 53.23462677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e10 -00027670 53.23462677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e10 -00027671 53.23465347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e20 -00027672 53.23465729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e20 -00027673 53.23468018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e30 -00027674 53.23468399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e30 -00027675 53.23471069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e40 -00027676 53.23471451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e40 -00027677 53.23473740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e50 -00027678 53.23474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e50 -00027679 53.23476791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e60 -00027680 53.23477173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e60 -00027681 53.23479843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e70 -00027682 53.23479843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e70 -00027683 53.23482513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e80 -00027684 53.23482895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e80 -00027685 53.23485565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e90 -00027686 53.23485947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e90 -00027687 53.23488235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea0 -00027688 53.23488617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea0 -00027689 53.23491287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb0 -00027690 53.23491287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb0 -00027691 53.23493576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec0 -00027692 53.23493958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec0 -00027693 53.23496628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed0 -00027694 53.23497009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed0 -00027695 53.23499680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee0 -00027696 53.23499680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee0 -00027697 53.23502350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef0 -00027698 53.23502731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef0 -00027699 53.23505402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f00 -00027700 53.23505783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f00 -00027701 53.23508072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f10 -00027702 53.23508453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f10 -00027703 53.23511124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f20 -00027704 53.23511124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f20 -00027705 53.23513794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f30 -00027706 53.23513794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f30 -00027707 53.23516464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f40 -00027708 53.23516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f40 -00027709 53.23519516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f50 -00027710 53.23519516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f50 -00027711 53.23522186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f60 -00027712 53.23522568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f60 -00027713 53.23525238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f70 -00027714 53.23525620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f70 -00027715 53.23527908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f80 -00027716 53.23528290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f80 -00027717 53.23530960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f90 -00027718 53.23531342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f90 -00027719 53.23533630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fa0 -00027720 53.23533630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fa0 -00027721 53.23536682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fb0 -00027722 53.23536682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fb0 -00027723 53.23539352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fc0 -00027724 53.23539352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fc0 -00027725 53.23542023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fd0 -00027726 53.23542404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fd0 -00027727 53.23545074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fe0 -00027728 53.23545456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fe0 -00027729 53.23547745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ff0 -00027730 53.23548126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ff0 -00027731 53.23550797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36000 -00027732 53.23551178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36000 -00027733 53.23553467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36010 -00027734 53.23553848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36010 -00027735 53.23556519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36020 -00027736 53.23556900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36020 -00027737 53.23559189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36030 -00027738 53.23559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36030 -00027739 53.23562241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36040 -00027740 53.23562622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36040 -00027741 53.23565292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36050 -00027742 53.23565292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36050 -00027743 53.23567963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36060 -00027744 53.23568344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36060 -00027745 53.23571014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36070 -00027746 53.23571014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36070 -00027747 53.23573685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36080 -00027748 53.23574066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36080 -00027749 53.23576736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36090 -00027750 53.23577118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36090 -00027751 53.23579407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360a0 -00027752 53.23579788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360a0 -00027753 53.23582458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360b0 -00027754 53.23582840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360b0 -00027755 53.23585129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360c0 -00027756 53.23585129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360c0 -00027757 53.23587799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360d0 -00027758 53.23588181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360d0 -00027759 53.23590851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360e0 -00027760 53.23590851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360e0 -00027761 53.23593521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f0 -00027762 53.23593903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f0 -00027763 53.23596573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36100 -00027764 53.23596954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36100 -00027765 53.23599243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36110 -00027766 53.23599625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36110 -00027767 53.23602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36120 -00027768 53.23602676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36120 -00027769 53.23604965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36130 -00027770 53.23604965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36130 -00027771 53.23608017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36140 -00027772 53.23608017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36140 -00027773 53.23611069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36150 -00027774 53.23611069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36150 -00027775 53.23613739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36160 -00027776 53.23613739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36160 -00027777 53.23616409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36170 -00027778 53.23616791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36170 -00027779 53.23620224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36180 -00027780 53.23620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36180 -00027781 53.23622894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36190 -00027782 53.23623276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36190 -00027783 53.23625946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a0 -00027784 53.23626328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a0 -00027785 53.23628616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b0 -00027786 53.23628998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b0 -00027787 53.23631668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c0 -00027788 53.23632050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c0 -00027789 53.23634720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d0 -00027790 53.23634720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d0 -00027791 53.23637390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e0 -00027792 53.23637772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e0 -00027793 53.23640442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f0 -00027794 53.23640823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f0 -00027795 53.23643112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36200 -00027796 53.23643494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36200 -00027797 53.23646164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36210 -00027798 53.23646545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36210 -00027799 53.23648834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36220 -00027800 53.23649216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36220 -00027801 53.23651886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36230 -00027802 53.23652267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36230 -00027803 53.23654556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36240 -00027804 53.23654938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36240 -00027805 53.23657608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36250 -00027806 53.23657990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36250 -00027807 53.23660660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36260 -00027808 53.23660660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36260 -00027809 53.23663330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36270 -00027810 53.23663712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36270 -00027811 53.23666382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36280 -00027812 53.23666382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36280 -00027813 53.23669052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36290 -00027814 53.23669434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36290 -00027815 53.23672104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362a0 -00027816 53.23672485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362a0 -00027817 53.23674774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362b0 -00027818 53.23675156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362b0 -00027819 53.23677826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362c0 -00027820 53.23678207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362c0 -00027821 53.23680496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362d0 -00027822 53.23680878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362d0 -00027823 53.23683548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362e0 -00027824 53.23683929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362e0 -00027825 53.23686218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362f0 -00027826 53.23686600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x362f0 -00027827 53.23689270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36300 -00027828 53.23689651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36300 -00027829 53.23692322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36310 -00027830 53.23692322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36310 -00027831 53.23694992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36320 -00027832 53.23695374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36320 -00027833 53.23698044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36330 -00027834 53.23698425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36330 -00027835 53.23700714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36340 -00027836 53.23701096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36340 -00027837 53.23703766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36350 -00027838 53.23704147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36350 -00027839 53.23706436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36360 -00027840 53.23706818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36360 -00027841 53.23709488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36370 -00027842 53.23709869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36370 -00027843 53.23712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36380 -00027844 53.23712540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36380 -00027845 53.23715210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36390 -00027846 53.23715210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36390 -00027847 53.23718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a0 -00027848 53.23718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a0 -00027849 53.23720932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b0 -00027850 53.23720932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b0 -00027851 53.23723602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c0 -00027852 53.23723984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c0 -00027853 53.23726273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d0 -00027854 53.23726654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d0 -00027855 53.23729324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e0 -00027856 53.23729706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e0 -00027857 53.23731995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f0 -00027858 53.23732376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f0 -00027859 53.23735046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36400 -00027860 53.23735428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36400 -00027861 53.23738098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36410 -00027862 53.23738098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36410 -00027863 53.23740768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36420 -00027864 53.23741150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36420 -00027865 53.23743820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36430 -00027866 53.23743820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36430 -00027867 53.23746490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36440 -00027868 53.23746872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36440 -00027869 53.23749542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36450 -00027870 53.23749924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36450 -00027871 53.23752213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36460 -00027872 53.23752594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36460 -00027873 53.23755264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36470 -00027874 53.23755646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36470 -00027875 53.23757935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36480 -00027876 53.23758316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36480 -00027877 53.23760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36490 -00027878 53.23760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36490 -00027879 53.23763657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364a0 -00027880 53.23763657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364a0 -00027881 53.23766327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364b0 -00027882 53.23766708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364b0 -00027883 53.23769379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364c0 -00027884 53.23769760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364c0 -00027885 53.23772049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d0 -00027886 53.23772430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d0 -00027887 53.23775101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364e0 -00027888 53.23775482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364e0 -00027889 53.23777771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364f0 -00027890 53.23778152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x364f0 -00027891 53.23780823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36500 -00027892 53.23781204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36500 -00027893 53.23783493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36510 -00027894 53.23783875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36510 -00027895 53.23786545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36520 -00027896 53.23786926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36520 -00027897 53.23789597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36530 -00027898 53.23789597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36530 -00027899 53.23792267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36540 -00027900 53.23792267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36540 -00027901 53.23795319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36550 -00027902 53.23795319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36550 -00027903 53.23797989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36560 -00027904 53.23797989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36560 -00027905 53.23801041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36570 -00027906 53.23801041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36570 -00027907 53.23803329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36580 -00027908 53.23803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36580 -00027909 53.23806381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36590 -00027910 53.23806763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36590 -00027911 53.23809433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365a0 -00027912 53.23809433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365a0 -00027913 53.23812103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365b0 -00027914 53.23812485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365b0 -00027915 53.23815155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365c0 -00027916 53.23815536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365c0 -00027917 53.23817825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365d0 -00027918 53.23818207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365d0 -00027919 53.23820877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e0 -00027920 53.23820877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e0 -00027921 53.23823547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f0 -00027922 53.23823547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f0 -00027923 53.23826218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36600 -00027924 53.23826599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36600 -00027925 53.23829269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36610 -00027926 53.23829269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36610 -00027927 53.23831940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36620 -00027928 53.23832321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36620 -00027929 53.23834991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36630 -00027930 53.23835373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36630 -00027931 53.23837662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36640 -00027932 53.23838043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36640 -00027933 53.23840714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36650 -00027934 53.23841095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36650 -00027935 53.23843384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36660 -00027936 53.23843765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36660 -00027937 53.23846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36670 -00027938 53.23846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36670 -00027939 53.23849106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36680 -00027940 53.23849106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36680 -00027941 53.23851776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36690 -00027942 53.23852158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36690 -00027943 53.23854828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366a0 -00027944 53.23855209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366a0 -00027945 53.23857498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366b0 -00027946 53.23857880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366b0 -00027947 53.23860550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366c0 -00027948 53.23860931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366c0 -00027949 53.23863220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366d0 -00027950 53.23863602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366d0 -00027951 53.23866272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366e0 -00027952 53.23866653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366e0 -00027953 53.23868942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366f0 -00027954 53.23869324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x366f0 -00027955 53.23871994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36700 -00027956 53.23872375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36700 -00027957 53.23875046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36710 -00027958 53.23875046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36710 -00027959 53.23877716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36720 -00027960 53.23878098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36720 -00027961 53.23880768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36730 -00027962 53.23881149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36730 -00027963 53.23883438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36740 -00027964 53.23883438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36740 -00027965 53.23886490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36750 -00027966 53.23886490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36750 -00027967 53.23888779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36760 -00027968 53.23889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36760 -00027969 53.23891830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36770 -00027970 53.23892212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36770 -00027971 53.23894882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36780 -00027972 53.23894882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36780 -00027973 53.23897552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36790 -00027974 53.23897934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36790 -00027975 53.23900604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a0 -00027976 53.23900986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a0 -00027977 53.23903275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b0 -00027978 53.23903656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b0 -00027979 53.23906326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c0 -00027980 53.23906708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c0 -00027981 53.23908997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d0 -00027982 53.23908997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d0 -00027983 53.23911667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e0 -00027984 53.23912048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e0 -00027985 53.23914719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f0 -00027986 53.23914719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f0 -00027987 53.23917389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36800 -00027988 53.23917770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36800 -00027989 53.23920441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36810 -00027990 53.23920822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36810 -00027991 53.23923111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36820 -00027992 53.23923492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36820 -00027993 53.23926163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36830 -00027994 53.23926544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36830 -00027995 53.23928833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36840 -00027996 53.23929214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36840 -00027997 53.23931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36850 -00027998 53.23932266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36850 -00027999 53.23934555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36860 -00028000 53.23934937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36860 -00028001 53.23937607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36870 -00028002 53.23937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36870 -00028003 53.23940659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36880 -00028004 53.23940659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36880 -00028005 53.23943329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36890 -00028006 53.23943710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36890 -00028007 53.23946381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a0 -00028008 53.23946381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a0 -00028009 53.23948669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b0 -00028010 53.23949051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b0 -00028011 53.23951721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c0 -00028012 53.23952103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c0 -00028013 53.23954391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d0 -00028014 53.23954773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d0 -00028015 53.23957443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e0 -00028016 53.23957825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e0 -00028017 53.23960495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f0 -00028018 53.23960495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f0 -00028019 53.23963165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36900 -00028020 53.23963547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36900 -00028021 53.23966217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36910 -00028022 53.23966217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36910 -00028023 53.23968887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36920 -00028024 53.23968887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36920 -00028025 53.23971939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36930 -00028026 53.23971939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36930 -00028027 53.23974228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36940 -00028028 53.23974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36940 -00028029 53.23977280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36950 -00028030 53.23977661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36950 -00028031 53.23980331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36960 -00028032 53.23980331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36960 -00028033 53.23983002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36970 -00028034 53.23983383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36970 -00028035 53.23986053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36980 -00028036 53.23986053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36980 -00028037 53.23988724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36990 -00028038 53.23989105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36990 -00028039 53.23991776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369a0 -00028040 53.23992157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369a0 -00028041 53.23994446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369b0 -00028042 53.23994827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369b0 -00028043 53.23997498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369c0 -00028044 53.23997879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369c0 -00028045 53.24000168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369d0 -00028046 53.24000549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369d0 -00028047 53.24003220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369e0 -00028048 53.24003220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369e0 -00028049 53.24005890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369f0 -00028050 53.24005890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x369f0 -00028051 53.24008560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a00 -00028052 53.24008942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a00 -00028053 53.24011612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a10 -00028054 53.24011993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a10 -00028055 53.24014282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a20 -00028056 53.24014664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a20 -00028057 53.24017334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a30 -00028058 53.24017715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a30 -00028059 53.24020004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a40 -00028060 53.24020386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a40 -00028061 53.24023056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a50 -00028062 53.24023056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a50 -00028063 53.24026108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a60 -00028064 53.24026108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a60 -00028065 53.24028397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a70 -00028066 53.24028778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a70 -00028067 53.24031448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a80 -00028068 53.24031830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a80 -00028069 53.24034119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a90 -00028070 53.24034500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a90 -00028071 53.24037170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36aa0 -00028072 53.24037552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36aa0 -00028073 53.24039841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ab0 -00028074 53.24040222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ab0 -00028075 53.24042892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ac0 -00028076 53.24043274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ac0 -00028077 53.24045944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ad0 -00028078 53.24045944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ad0 -00028079 53.24048615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae0 -00028080 53.24048996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae0 -00028081 53.24051666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af0 -00028082 53.24051666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af0 -00028083 53.24054337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b00 -00028084 53.24054337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b00 -00028085 53.24057388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b10 -00028086 53.24057388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b10 -00028087 53.24059677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b20 -00028088 53.24060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b20 -00028089 53.24062729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b30 -00028090 53.24063110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b30 -00028091 53.24065781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b40 -00028092 53.24065781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b40 -00028093 53.24068451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b50 -00028094 53.24068832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b50 -00028095 53.24071503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b60 -00028096 53.24071503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b60 -00028097 53.24074173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b70 -00028098 53.24074554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b70 -00028099 53.24077225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b80 -00028100 53.24077606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b80 -00028101 53.24079895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b90 -00028102 53.24079895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b90 -00028103 53.24082565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ba0 -00028104 53.24082947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ba0 -00028105 53.24085617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bb0 -00028106 53.24085617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bb0 -00028107 53.24088287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bc0 -00028108 53.24088669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bc0 -00028109 53.24091339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bd0 -00028110 53.24091339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bd0 -00028111 53.24094009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36be0 -00028112 53.24094391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36be0 -00028113 53.24097061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bf0 -00028114 53.24097443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bf0 -00028115 53.24099731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c00 -00028116 53.24100113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c00 -00028117 53.24102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c10 -00028118 53.24103165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c10 -00028119 53.24105453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c20 -00028120 53.24105453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c20 -00028121 53.24108505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c30 -00028122 53.24108505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c30 -00028123 53.24111176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c40 -00028124 53.24111176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c40 -00028125 53.24113846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c50 -00028126 53.24114227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c50 -00028127 53.24116898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c60 -00028128 53.24117279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c60 -00028129 53.24119568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c70 -00028130 53.24119949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c70 -00028131 53.24122620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c80 -00028132 53.24123001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c80 -00028133 53.24125290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c90 -00028134 53.24125671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c90 -00028135 53.24128342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ca0 -00028136 53.24128723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ca0 -00028137 53.24131012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cb0 -00028138 53.24131393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cb0 -00028139 53.24134064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cc0 -00028140 53.24134445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cc0 -00028141 53.24137115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cd0 -00028142 53.24137115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cd0 -00028143 53.24139404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ce0 -00028144 53.24139786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ce0 -00028145 53.24142456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cf0 -00028146 53.24142838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cf0 -00028147 53.24145126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d00 -00028148 53.24145508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d00 -00028149 53.24148178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d10 -00028150 53.24148560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d10 -00028151 53.24151230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d20 -00028152 53.24151230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d20 -00028153 53.24153900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d30 -00028154 53.24154282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d30 -00028155 53.24156952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d40 -00028156 53.24156952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d40 -00028157 53.24159622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d50 -00028158 53.24159622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d50 -00028159 53.24162292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d60 -00028160 53.24162674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d60 -00028161 53.24164963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d70 -00028162 53.24165344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d70 -00028163 53.24168015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d80 -00028164 53.24168396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d80 -00028165 53.24171066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d90 -00028166 53.24171066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d90 -00028167 53.24173737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36da0 -00028168 53.24174118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36da0 -00028169 53.24176788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36db0 -00028170 53.24176788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36db0 -00028171 53.24179459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dc0 -00028172 53.24179840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dc0 -00028173 53.24182510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dd0 -00028174 53.24182892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dd0 -00028175 53.24185181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36de0 -00028176 53.24185562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36de0 -00028177 53.24188232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36df0 -00028178 53.24188232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36df0 -00028179 53.24190903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e00 -00028180 53.24190903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e00 -00028181 53.24193573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e10 -00028182 53.24193954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e10 -00028183 53.24196625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e20 -00028184 53.24196625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e20 -00028185 53.24199295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e30 -00028186 53.24199677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e30 -00028187 53.24202347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e40 -00028188 53.24202728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e40 -00028189 53.24205017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e50 -00028190 53.24205399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e50 -00028191 53.24208069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e60 -00028192 53.24208450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e60 -00028193 53.24210739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e70 -00028194 53.24210739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e70 -00028195 53.24213409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e80 -00028196 53.24213791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e80 -00028197 53.24216461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e90 -00028198 53.24216461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e90 -00028199 53.24219131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ea0 -00028200 53.24219513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ea0 -00028201 53.24222183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36eb0 -00028202 53.24222565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36eb0 -00028203 53.24224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ec0 -00028204 53.24225235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ec0 -00028205 53.24227905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ed0 -00028206 53.24228287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ed0 -00028207 53.24230576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ee0 -00028208 53.24230957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ee0 -00028209 53.24233627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ef0 -00028210 53.24234009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ef0 -00028211 53.24236298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f00 -00028212 53.24236679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f00 -00028213 53.24239349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f10 -00028214 53.24239731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f10 -00028215 53.24242401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f20 -00028216 53.24242401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f20 -00028217 53.24245071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f30 -00028218 53.24245071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f30 -00028219 53.24248123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f40 -00028220 53.24248123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f40 -00028221 53.24250412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f50 -00028222 53.24250793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f50 -00028223 53.24253464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f60 -00028224 53.24253845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f60 -00028225 53.24256134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f70 -00028226 53.24256516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f70 -00028227 53.24259186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f80 -00028228 53.24259567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f80 -00028229 53.24262238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f90 -00028230 53.24262238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f90 -00028231 53.24264908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fa0 -00028232 53.24265289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fa0 -00028233 53.24267960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fb0 -00028234 53.24267960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fb0 -00028235 53.24270630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc0 -00028236 53.24270630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc0 -00028237 53.24273300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd0 -00028238 53.24273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd0 -00028239 53.24275970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe0 -00028240 53.24276352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe0 -00028241 53.24279022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff0 -00028242 53.24279404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff0 -00028243 53.24282074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37000 -00028244 53.24282074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37000 -00028245 53.24284744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37010 -00028246 53.24285126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37010 -00028247 53.24287796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37020 -00028248 53.24288177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37020 -00028249 53.24290466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37030 -00028250 53.24290848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37030 -00028251 53.24293518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37040 -00028252 53.24293518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37040 -00028253 53.24296188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37050 -00028254 53.24296188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37050 -00028255 53.24299240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37060 -00028256 53.24299240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37060 -00028257 53.24301910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37070 -00028258 53.24301910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37070 -00028259 53.24304581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37080 -00028260 53.24305344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37080 -00028261 53.24308395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37090 -00028262 53.24309158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37090 -00028263 53.24311829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a0 -00028264 53.24311829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a0 -00028265 53.24314499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b0 -00028266 53.24314880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b0 -00028267 53.24317551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c0 -00028268 53.24317932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c0 -00028269 53.24320221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d0 -00028270 53.24320602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d0 -00028271 53.24323273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e0 -00028272 53.24323654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e0 -00028273 53.24325943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f0 -00028274 53.24326324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f0 -00028275 53.24328995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37100 -00028276 53.24328995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37100 -00028277 53.24331665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37110 -00028278 53.24331665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37110 -00028279 53.24334335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37120 -00028280 53.24334717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37120 -00028281 53.24337387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37130 -00028282 53.24337769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37130 -00028283 53.24340057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37140 -00028284 53.24340439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37140 -00028285 53.24343109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37150 -00028286 53.24343491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37150 -00028287 53.24345779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37160 -00028288 53.24346161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37160 -00028289 53.24348831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37170 -00028290 53.24349213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37170 -00028291 53.24351501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37180 -00028292 53.24351883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37180 -00028293 53.24354553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37190 -00028294 53.24354935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37190 -00028295 53.24357605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a0 -00028296 53.24357605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a0 -00028297 53.24360275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b0 -00028298 53.24360657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b0 -00028299 53.24363327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c0 -00028300 53.24363708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c0 -00028301 53.24365997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d0 -00028302 53.24366379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d0 -00028303 53.24369049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e0 -00028304 53.24369431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e0 -00028305 53.24371719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f0 -00028306 53.24372101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f0 -00028307 53.24374771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37200 -00028308 53.24375153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37200 -00028309 53.24377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37210 -00028310 53.24377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37210 -00028311 53.24380112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37220 -00028312 53.24380493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37220 -00028313 53.24383163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37230 -00028314 53.24383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37230 -00028315 53.24385834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37240 -00028316 53.24386215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37240 -00028317 53.24388885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37250 -00028318 53.24389267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37250 -00028319 53.24391556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37260 -00028320 53.24391937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37260 -00028321 53.24394608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37270 -00028322 53.24394989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37270 -00028323 53.24397278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37280 -00028324 53.24397659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37280 -00028325 53.24400330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37290 -00028326 53.24400330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37290 -00028327 53.24403381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a0 -00028328 53.24403381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a0 -00028329 53.24405670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b0 -00028330 53.24406052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b0 -00028331 53.24408722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c0 -00028332 53.24409103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c0 -00028333 53.24411392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d0 -00028334 53.24411774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d0 -00028335 53.24414444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e0 -00028336 53.24414825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e0 -00028337 53.24417114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f0 -00028338 53.24417496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f0 -00028339 53.24420166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37300 -00028340 53.24420547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37300 -00028341 53.24423218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37310 -00028342 53.24423218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37310 -00028343 53.24425888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37320 -00028344 53.24426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37320 -00028345 53.24428940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37330 -00028346 53.24428940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37330 -00028347 53.24431610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37340 -00028348 53.24431992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37340 -00028349 53.24434662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37350 -00028350 53.24434662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37350 -00028351 53.24437332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37360 -00028352 53.24437714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37360 -00028353 53.24440384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37370 -00028354 53.24440384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37370 -00028355 53.24443054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37380 -00028356 53.24443054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37380 -00028357 53.24445724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37390 -00028358 53.24446106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37390 -00028359 53.24448776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373a0 -00028360 53.24448776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373a0 -00028361 53.24451447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373b0 -00028362 53.24451828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373b0 -00028363 53.24454498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373c0 -00028364 53.24454880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373c0 -00028365 53.24457169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373d0 -00028366 53.24457550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373d0 -00028367 53.24460220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373e0 -00028368 53.24460602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373e0 -00028369 53.24462891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373f0 -00028370 53.24462891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x373f0 -00028371 53.24465942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37400 -00028372 53.24465942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37400 -00028373 53.24468613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37410 -00028374 53.24468613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37410 -00028375 53.24471283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37420 -00028376 53.24471664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37420 -00028377 53.24474335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37430 -00028378 53.24474716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37430 -00028379 53.24477005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37440 -00028380 53.24477386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37440 -00028381 53.24480057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37450 -00028382 53.24480438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37450 -00028383 53.24482727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37460 -00028384 53.24483109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37460 -00028385 53.24485779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37470 -00028386 53.24486542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37470 -00028387 53.24488831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37480 -00028388 53.24488831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37480 -00028389 53.24491882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37490 -00028390 53.24491882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37490 -00028391 53.24494553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a0 -00028392 53.24494553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a0 -00028393 53.24497223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b0 -00028394 53.24497604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b0 -00028395 53.24500275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c0 -00028396 53.24500656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c0 -00028397 53.24502945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d0 -00028398 53.24503326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d0 -00028399 53.24505997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e0 -00028400 53.24506378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e0 -00028401 53.24508667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374f0 -00028402 53.24509048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x374f0 -00028403 53.24511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37500 -00028404 53.24512100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37500 -00028405 53.24514389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37510 -00028406 53.24514389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37510 -00028407 53.24517059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37520 -00028408 53.24517441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37520 -00028409 53.24520111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37530 -00028410 53.24520493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37530 -00028411 53.24522781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37540 -00028412 53.24523163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37540 -00028413 53.24525833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37550 -00028414 53.24526215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37550 -00028415 53.24528503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37560 -00028416 53.24528885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37560 -00028417 53.24531555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37570 -00028418 53.24531937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37570 -00028419 53.24534225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37580 -00028420 53.24534225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37580 -00028421 53.24536896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37590 -00028422 53.24537277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37590 -00028423 53.24539948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375a0 -00028424 53.24540329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375a0 -00028425 53.24542618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375b0 -00028426 53.24542999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375b0 -00028427 53.24545670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375c0 -00028428 53.24546051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375c0 -00028429 53.24548340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375d0 -00028430 53.24548721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375d0 -00028431 53.24551392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375e0 -00028432 53.24551773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375e0 -00028433 53.24554062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375f0 -00028434 53.24554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x375f0 -00028435 53.24557114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37600 -00028436 53.24557495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37600 -00028437 53.24560165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37610 -00028438 53.24560165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37610 -00028439 53.24562836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37620 -00028440 53.24563217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37620 -00028441 53.24565887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37630 -00028442 53.24566269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37630 -00028443 53.24568558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37640 -00028444 53.24568939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37640 -00028445 53.24571609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37650 -00028446 53.24571609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37650 -00028447 53.24573898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37660 -00028448 53.24574280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37660 -00028449 53.24576950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37670 -00028450 53.24577332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37670 -00028451 53.24580002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37680 -00028452 53.24580002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37680 -00028453 53.24582672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37690 -00028454 53.24583054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37690 -00028455 53.24585724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376a0 -00028456 53.24586105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376a0 -00028457 53.24588394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b0 -00028458 53.24588776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b0 -00028459 53.24591446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c0 -00028460 53.24591827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c0 -00028461 53.24594116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d0 -00028462 53.24594116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d0 -00028463 53.24596786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376e0 -00028464 53.24597168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376e0 -00028465 53.24599838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376f0 -00028466 53.24599838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x376f0 -00028467 53.24602509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37700 -00028468 53.24602890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37700 -00028469 53.24605560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37710 -00028470 53.24605942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37710 -00028471 53.24608231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37720 -00028472 53.24608612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37720 -00028473 53.24611282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37730 -00028474 53.24611664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37730 -00028475 53.24613953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37740 -00028476 53.24614334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37740 -00028477 53.24617004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37750 -00028478 53.24617386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37750 -00028479 53.24619675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37760 -00028480 53.24620056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37760 -00028481 53.24622726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37770 -00028482 53.24623108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37770 -00028483 53.24625778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37780 -00028484 53.24625778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37780 -00028485 53.24628448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37790 -00028486 53.24628448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37790 -00028487 53.24631119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a0 -00028488 53.24631500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a0 -00028489 53.24633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b0 -00028490 53.24634171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b0 -00028491 53.24636841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c0 -00028492 53.24637222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c0 -00028493 53.24639511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d0 -00028494 53.24639893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d0 -00028495 53.24642563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e0 -00028496 53.24642944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e0 -00028497 53.24645615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377f0 -00028498 53.24645615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x377f0 -00028499 53.24648285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37800 -00028500 53.24648285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37800 -00028501 53.24650955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37810 -00028502 53.24651337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37810 -00028503 53.24653625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37820 -00028504 53.24654007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37820 -00028505 53.24656677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37830 -00028506 53.24657059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37830 -00028507 53.24659348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37840 -00028508 53.24659729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37840 -00028509 53.24662399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37850 -00028510 53.24662781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37850 -00028511 53.24665451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37860 -00028512 53.24665451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37860 -00028513 53.24668121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37870 -00028514 53.24668121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37870 -00028515 53.24671173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37880 -00028516 53.24671173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37880 -00028517 53.24673843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37890 -00028518 53.24673843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37890 -00028519 53.24676514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a0 -00028520 53.24676895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a0 -00028521 53.24679184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b0 -00028522 53.24679565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b0 -00028523 53.24682236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c0 -00028524 53.24682617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c0 -00028525 53.24685287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d0 -00028526 53.24685287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d0 -00028527 53.24687958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e0 -00028528 53.24688339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e0 -00028529 53.24691010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f0 -00028530 53.24691010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f0 -00028531 53.24693680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37900 -00028532 53.24693680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37900 -00028533 53.24696732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37910 -00028534 53.24696732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37910 -00028535 53.24699402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37920 -00028536 53.24699402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37920 -00028537 53.24702072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37930 -00028538 53.24702454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37930 -00028539 53.24705124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37940 -00028540 53.24705124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37940 -00028541 53.24707794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37950 -00028542 53.24708176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37950 -00028543 53.24710846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37960 -00028544 53.24711227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37960 -00028545 53.24713516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37970 -00028546 53.24713898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37970 -00028547 53.24716568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37980 -00028548 53.24716949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37980 -00028549 53.24719238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37990 -00028550 53.24719620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37990 -00028551 53.24722290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a0 -00028552 53.24722290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a0 -00028553 53.24724960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -00028554 53.24724960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -00028555 53.24727631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -00028556 53.24728012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -00028557 53.24730682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -00028558 53.24731064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -00028559 53.24733353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -00028560 53.24733734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -00028561 53.24736404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -00028562 53.24736786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -00028563 53.24739075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -00028564 53.24739456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -00028565 53.24742126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -00028566 53.24742508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -00028567 53.24744797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -00028568 53.24745178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -00028569 53.24747849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -00028570 53.24747849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -00028571 53.24750900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -00028572 53.24750900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -00028573 53.24753189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -00028574 53.24753571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -00028575 53.24756241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -00028576 53.24756622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -00028577 53.24758911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -00028578 53.24759293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -00028579 53.24761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a80 -00028580 53.24762344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a80 -00028581 53.24764633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a90 -00028582 53.24765015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a90 -00028583 53.24767685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa0 -00028584 53.24768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa0 -00028585 53.24770737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab0 -00028586 53.24770737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab0 -00028587 53.24773026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac0 -00028588 53.24773407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac0 -00028589 53.24776077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad0 -00028590 53.24776459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad0 -00028591 53.24778748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae0 -00028592 53.24779129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae0 -00028593 53.24781799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af0 -00028594 53.24782181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af0 -00028595 53.24784470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b00 -00028596 53.24784851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b00 -00028597 53.24787521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b10 -00028598 53.24787903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b10 -00028599 53.24790573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b20 -00028600 53.24790573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b20 -00028601 53.24793243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b30 -00028602 53.24793625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b30 -00028603 53.24796295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b40 -00028604 53.24796295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b40 -00028605 53.24798965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b50 -00028606 53.24798965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b50 -00028607 53.24801636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b60 -00028608 53.24802017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b60 -00028609 53.24804306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b70 -00028610 53.24804688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b70 -00028611 53.24807358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b80 -00028612 53.24807739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b80 -00028613 53.24810410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b90 -00028614 53.24810410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b90 -00028615 53.24813080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba0 -00028616 53.24813461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba0 -00028617 53.24816132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb0 -00028618 53.24816132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb0 -00028619 53.24818802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc0 -00028620 53.24819183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc0 -00028621 53.24821854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd0 -00028622 53.24821854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd0 -00028623 53.24824142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be0 -00028624 53.24824524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be0 -00028625 53.24827194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -00028626 53.24827576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -00028627 53.24830246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -00028628 53.24830246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -00028629 53.24832916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -00028630 53.24833298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -00028631 53.24835968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -00028632 53.24836349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -00028633 53.24838638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -00028634 53.24839020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -00028635 53.24841690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -00028636 53.24841690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -00028637 53.24844360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -00028638 53.24844742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -00028639 53.24847412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -00028640 53.24847412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -00028641 53.24850082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -00028642 53.24850082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -00028643 53.24852753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -00028644 53.24853134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -00028645 53.24855804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -00028646 53.24856186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -00028647 53.24858475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -00028648 53.24858856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -00028649 53.24861526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -00028650 53.24861908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -00028651 53.24864197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -00028652 53.24864578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -00028653 53.24867249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -00028654 53.24867630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -00028655 53.24869919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -00028656 53.24870300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -00028657 53.24872971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf0 -00028658 53.24872971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf0 -00028659 53.24876022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d00 -00028660 53.24876022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d00 -00028661 53.24878311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d10 -00028662 53.24878693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d10 -00028663 53.24881363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d20 -00028664 53.24881744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d20 -00028665 53.24884033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d30 -00028666 53.24884415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d30 -00028667 53.24887085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d40 -00028668 53.24887466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d40 -00028669 53.24889755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d50 -00028670 53.24890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d50 -00028671 53.24892807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d60 -00028672 53.24893188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d60 -00028673 53.24895859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d70 -00028674 53.24895859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d70 -00028675 53.24898148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d80 -00028676 53.24898529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d80 -00028677 53.24901199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d90 -00028678 53.24901581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d90 -00028679 53.24903870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37da0 -00028680 53.24904251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37da0 -00028681 53.24906921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37db0 -00028682 53.24907303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37db0 -00028683 53.24909592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dc0 -00028684 53.24909973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dc0 -00028685 53.24912643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dd0 -00028686 53.24913025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dd0 -00028687 53.24915695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37de0 -00028688 53.24915695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37de0 -00028689 53.24918365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37df0 -00028690 53.24918365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37df0 -00028691 53.24921417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e00 -00028692 53.24921417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e00 -00028693 53.24923706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e10 -00028694 53.24924088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e10 -00028695 53.24926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e20 -00028696 53.24927139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e20 -00028697 53.24929428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e30 -00028698 53.24929810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e30 -00028699 53.24932480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e40 -00028700 53.24932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e40 -00028701 53.24935532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e50 -00028702 53.24935532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e50 -00028703 53.24938202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e60 -00028704 53.24938583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e60 -00028705 53.24941254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e70 -00028706 53.24941254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e70 -00028707 53.24943924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e80 -00028708 53.24943924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e80 -00028709 53.24946594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e90 -00028710 53.24946976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e90 -00028711 53.24949265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ea0 -00028712 53.24949646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ea0 -00028713 53.24952316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37eb0 -00028714 53.24952698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37eb0 -00028715 53.24955368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ec0 -00028716 53.24955368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ec0 -00028717 53.24958038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ed0 -00028718 53.24958420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ed0 -00028719 53.24961090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee0 -00028720 53.24961090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee0 -00028721 53.24963760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef0 -00028722 53.24964142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef0 -00028723 53.24966812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f00 -00028724 53.24966812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f00 -00028725 53.24969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f10 -00028726 53.24969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f10 -00028727 53.24972153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f20 -00028728 53.24972534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f20 -00028729 53.24975204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f30 -00028730 53.24975204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f30 -00028731 53.24977875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f40 -00028732 53.24978256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f40 -00028733 53.24980927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f50 -00028734 53.24981308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f50 -00028735 53.24983597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f60 -00028736 53.24983978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f60 -00028737 53.24986649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f70 -00028738 53.24987030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f70 -00028739 53.24989319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f80 -00028740 53.24989700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f80 -00028741 53.24992371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f90 -00028742 53.24992371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f90 -00028743 53.24995041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa0 -00028744 53.24995041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa0 -00028745 53.24997711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb0 -00028746 53.24998093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb0 -00028747 53.25000763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc0 -00028748 53.25001144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc0 -00028749 53.25003433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd0 -00028750 53.25003815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd0 -00028751 53.25006485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe0 -00028752 53.25006866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe0 -00028753 53.25009155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff0 -00028754 53.25009537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff0 -00028755 53.25012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38000 -00028756 53.25012589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38000 -00028757 53.25014877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38010 -00028758 53.25015259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38010 -00028759 53.25017929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38020 -00028760 53.25017929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38020 -00028761 53.25020599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38030 -00028762 53.25020981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38030 -00028763 53.25023270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38040 -00028764 53.25023651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38040 -00028765 53.25026321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38050 -00028766 53.25026703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38050 -00028767 53.25028992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38060 -00028768 53.25029373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38060 -00028769 53.25032043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38070 -00028770 53.25032425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38070 -00028771 53.25034714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38080 -00028772 53.25035095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38080 -00028773 53.25037766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38090 -00028774 53.25038147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38090 -00028775 53.25040817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380a0 -00028776 53.25040817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380a0 -00028777 53.25043106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380b0 -00028778 53.25043488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380b0 -00028779 53.25046158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380c0 -00028780 53.25046539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380c0 -00028781 53.25048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380d0 -00028782 53.25049210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380d0 -00028783 53.25051880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380e0 -00028784 53.25052261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380e0 -00028785 53.25054550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380f0 -00028786 53.25054932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x380f0 -00028787 53.25057602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38100 -00028788 53.25057983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38100 -00028789 53.25060654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38110 -00028790 53.25060654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38110 -00028791 53.25063324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38120 -00028792 53.25063705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38120 -00028793 53.25066376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38130 -00028794 53.25066376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38130 -00028795 53.25069046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38140 -00028796 53.25069046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38140 -00028797 53.25071716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38150 -00028798 53.25072098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38150 -00028799 53.25074387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38160 -00028800 53.25074768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38160 -00028801 53.25077438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38170 -00028802 53.25077820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38170 -00028803 53.25080490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38180 -00028804 53.25080490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38180 -00028805 53.25083160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38190 -00028806 53.25083542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38190 -00028807 53.25086212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a0 -00028808 53.25086212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a0 -00028809 53.25088882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b0 -00028810 53.25088882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b0 -00028811 53.25091934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c0 -00028812 53.25091934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c0 -00028813 53.25094223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d0 -00028814 53.25094604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d0 -00028815 53.25097275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e0 -00028816 53.25097656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e0 -00028817 53.25100327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f0 -00028818 53.25100327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f0 -00028819 53.25102997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38200 -00028820 53.25103378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38200 -00028821 53.25106049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38210 -00028822 53.25106430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38210 -00028823 53.25108719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38220 -00028824 53.25109100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38220 -00028825 53.25111771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38230 -00028826 53.25112152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38230 -00028827 53.25114441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38240 -00028828 53.25114822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38240 -00028829 53.25117493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38250 -00028830 53.25117493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38250 -00028831 53.25120163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38260 -00028832 53.25120163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38260 -00028833 53.25122833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38270 -00028834 53.25123215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38270 -00028835 53.25125885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38280 -00028836 53.25126266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38280 -00028837 53.25128555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38290 -00028838 53.25128937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38290 -00028839 53.25131607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382a0 -00028840 53.25131989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382a0 -00028841 53.25134277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382b0 -00028842 53.25134659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382b0 -00028843 53.25137329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382c0 -00028844 53.25137329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382c0 -00028845 53.25139999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382d0 -00028846 53.25139999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382d0 -00028847 53.25142670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382e0 -00028848 53.25143051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382e0 -00028849 53.25145721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382f0 -00028850 53.25146103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x382f0 -00028851 53.25148392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38300 -00028852 53.25148773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38300 -00028853 53.25151443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38310 -00028854 53.25151825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38310 -00028855 53.25154114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38320 -00028856 53.25154495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38320 -00028857 53.25157166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38330 -00028858 53.25157547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38330 -00028859 53.25159836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38340 -00028860 53.25159836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38340 -00028861 53.25162888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38350 -00028862 53.25162888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38350 -00028863 53.25165558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38360 -00028864 53.25165939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38360 -00028865 53.25168228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38370 -00028866 53.25168610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38370 -00028867 53.25171280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38380 -00028868 53.25171661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38380 -00028869 53.25173950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38390 -00028870 53.25174332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38390 -00028871 53.25177002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a0 -00028872 53.25177383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a0 -00028873 53.25179672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b0 -00028874 53.25180054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b0 -00028875 53.25182724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c0 -00028876 53.25183105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c0 -00028877 53.25185776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d0 -00028878 53.25185776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d0 -00028879 53.25188446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e0 -00028880 53.25188446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e0 -00028881 53.25191116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f0 -00028882 53.25191498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f0 -00028883 53.25193787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38400 -00028884 53.25194168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38400 -00028885 53.25196838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38410 -00028886 53.25197220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38410 -00028887 53.25199509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38420 -00028888 53.25199890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38420 -00028889 53.25202560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38430 -00028890 53.25202942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38430 -00028891 53.25205612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38440 -00028892 53.25205612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38440 -00028893 53.25208282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38450 -00028894 53.25208282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38450 -00028895 53.25210953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38460 -00028896 53.25211334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38460 -00028897 53.25213623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38470 -00028898 53.25214005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38470 -00028899 53.25216675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38480 -00028900 53.25217056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38480 -00028901 53.25219345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38490 -00028902 53.25219727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38490 -00028903 53.25222397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a0 -00028904 53.25222778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a0 -00028905 53.25225449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b0 -00028906 53.25225449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b0 -00028907 53.25228119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c0 -00028908 53.25228119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c0 -00028909 53.25231171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d0 -00028910 53.25231171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d0 -00028911 53.25233841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e0 -00028912 53.25233841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e0 -00028913 53.25236511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384f0 -00028914 53.25236893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x384f0 -00028915 53.25239182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38500 -00028916 53.25239563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38500 -00028917 53.25242233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38510 -00028918 53.25242615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38510 -00028919 53.25245285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38520 -00028920 53.25245285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38520 -00028921 53.25247955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38530 -00028922 53.25248337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38530 -00028923 53.25251007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38540 -00028924 53.25251389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38540 -00028925 53.25253677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38550 -00028926 53.25254059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38550 -00028927 53.25256729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38560 -00028928 53.25256729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38560 -00028929 53.25259018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38570 -00028930 53.25259399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38570 -00028931 53.25262070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38580 -00028932 53.25262451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38580 -00028933 53.25265121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38590 -00028934 53.25265121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38590 -00028935 53.25267792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385a0 -00028936 53.25268173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385a0 -00028937 53.25270844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385b0 -00028938 53.25271225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385b0 -00028939 53.25273514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385c0 -00028940 53.25273895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385c0 -00028941 53.25276566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385d0 -00028942 53.25276947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385d0 -00028943 53.25279236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385e0 -00028944 53.25279236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385e0 -00028945 53.25281906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385f0 -00028946 53.25282288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x385f0 -00028947 53.25284958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38600 -00028948 53.25284958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38600 -00028949 53.25287628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38610 -00028950 53.25288010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38610 -00028951 53.25290680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38620 -00028952 53.25291061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38620 -00028953 53.25293350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38630 -00028954 53.25293732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38630 -00028955 53.25296402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38640 -00028956 53.25296783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38640 -00028957 53.25299072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38650 -00028958 53.25299454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38650 -00028959 53.25302124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38660 -00028960 53.25302505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38660 -00028961 53.25304794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -00028962 53.25305176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -00028963 53.25307846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -00028964 53.25307846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -00028965 53.25310516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -00028966 53.25310898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -00028967 53.25313187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -00028968 53.25313568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -00028969 53.25316238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -00028970 53.25316620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -00028971 53.25318909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -00028972 53.25319290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -00028973 53.25321960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -00028974 53.25322342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -00028975 53.25324631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -00028976 53.25325012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -00028977 53.25327682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -00028978 53.25328064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -00028979 53.25330734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -00028980 53.25330734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -00028981 53.25333405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -00028982 53.25333405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -00028983 53.25336075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -00028984 53.25336456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -00028985 53.25338745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -00028986 53.25339127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -00028987 53.25341797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -00028988 53.25342178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -00028989 53.25344467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38750 -00028990 53.25344849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38750 -00028991 53.25347519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38760 -00028992 53.25347900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38760 -00028993 53.25350571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38770 -00028994 53.25350571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38770 -00028995 53.25353241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38780 -00028996 53.25353241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38780 -00028997 53.25356293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38790 -00028998 53.25356293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38790 -00028999 53.25358963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387a0 -00029000 53.25358963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387a0 -00029001 53.25361633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387b0 -00029002 53.25362015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387b0 -00029003 53.25364304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387c0 -00029004 53.25364685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387c0 -00029005 53.25367355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387d0 -00029006 53.25367737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387d0 -00029007 53.25370407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387e0 -00029008 53.25370407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387e0 -00029009 53.25373077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387f0 -00029010 53.25373459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x387f0 -00029011 53.25376129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38800 -00029012 53.25376511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38800 -00029013 53.25378799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38810 -00029014 53.25378799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38810 -00029015 53.25381851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38820 -00029016 53.25381851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38820 -00029017 53.25384140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38830 -00029018 53.25384521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38830 -00029019 53.25387192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38840 -00029020 53.25387573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38840 -00029021 53.25390244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38850 -00029022 53.25390244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38850 -00029023 53.25392914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38860 -00029024 53.25393295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38860 -00029025 53.25395966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38870 -00029026 53.25396347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38870 -00029027 53.25398636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38880 -00029028 53.25399017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38880 -00029029 53.25401688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38890 -00029030 53.25401688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38890 -00029031 53.25403976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388a0 -00029032 53.25404358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388a0 -00029033 53.25407028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388b0 -00029034 53.25407410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388b0 -00029035 53.25410080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388c0 -00029036 53.25410080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388c0 -00029037 53.25412750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d0 -00029038 53.25413132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d0 -00029039 53.25415802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e0 -00029040 53.25416183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e0 -00029041 53.25418472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f0 -00029042 53.25418854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f0 -00029043 53.25421524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38900 -00029044 53.25421906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38900 -00029045 53.25424194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38910 -00029046 53.25424194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38910 -00029047 53.25427246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38920 -00029048 53.25427246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38920 -00029049 53.25429916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38930 -00029050 53.25429916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38930 -00029051 53.25432587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38940 -00029052 53.25432968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38940 -00029053 53.25435638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38950 -00029054 53.25436020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38950 -00029055 53.25438309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38960 -00029056 53.25438690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38960 -00029057 53.25441360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38970 -00029058 53.25441742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38970 -00029059 53.25444031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -00029060 53.25444412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -00029061 53.25447083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -00029062 53.25447083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -00029063 53.25449753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -00029064 53.25449753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -00029065 53.25452805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -00029066 53.25452805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -00029067 53.25455475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -00029068 53.25455856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -00029069 53.25458145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -00029070 53.25458527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -00029071 53.25461197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -00029072 53.25461578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -00029073 53.25463867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -00029074 53.25464249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -00029075 53.25466919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -00029076 53.25467300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -00029077 53.25469589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -00029078 53.25469971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -00029079 53.25472641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -00029080 53.25472641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -00029081 53.25475311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a30 -00029082 53.25475693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a30 -00029083 53.25477982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a40 -00029084 53.25478363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a40 -00029085 53.25481033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a50 -00029086 53.25481415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a50 -00029087 53.25483704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a60 -00029088 53.25484085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a60 -00029089 53.25486755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a70 -00029090 53.25487137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a70 -00029091 53.25489426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a80 -00029092 53.25489807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a80 -00029093 53.25492477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a90 -00029094 53.25492859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a90 -00029095 53.25495529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa0 -00029096 53.25495529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa0 -00029097 53.25498199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab0 -00029098 53.25498199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab0 -00029099 53.25501251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac0 -00029100 53.25501251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac0 -00029101 53.25503540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad0 -00029102 53.25503922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad0 -00029103 53.25506592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ae0 -00029104 53.25506973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ae0 -00029105 53.25509262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38af0 -00029106 53.25509644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38af0 -00029107 53.25512314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b00 -00029108 53.25512695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b00 -00029109 53.25515366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b10 -00029110 53.25515366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b10 -00029111 53.25518036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b20 -00029112 53.25518417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b20 -00029113 53.25521088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b30 -00029114 53.25521088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b30 -00029115 53.25523376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b40 -00029116 53.25523758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b40 -00029117 53.25526428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b50 -00029118 53.25526810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b50 -00029119 53.25529099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b60 -00029120 53.25529480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b60 -00029121 53.25532150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b70 -00029122 53.25532532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b70 -00029123 53.25535202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b80 -00029124 53.25535202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b80 -00029125 53.25537872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b90 -00029126 53.25538254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b90 -00029127 53.25540924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -00029128 53.25540924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -00029129 53.25543594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb0 -00029130 53.25543594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb0 -00029131 53.25546265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc0 -00029132 53.25546646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc0 -00029133 53.25548935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd0 -00029134 53.25549316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd0 -00029135 53.25551987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be0 -00029136 53.25552368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be0 -00029137 53.25555038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf0 -00029138 53.25555038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf0 -00029139 53.25557709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c00 -00029140 53.25558090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c00 -00029141 53.25560760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c10 -00029142 53.25561142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c10 -00029143 53.25563431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c20 -00029144 53.25563812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c20 -00029145 53.25566483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c30 -00029146 53.25566864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c30 -00029147 53.25569153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c40 -00029148 53.25569534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c40 -00029149 53.25572205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c50 -00029150 53.25572586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c50 -00029151 53.25574875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c60 -00029152 53.25575256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c60 -00029153 53.25577927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c70 -00029154 53.25578308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c70 -00029155 53.25580978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c80 -00029156 53.25580978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c80 -00029157 53.25583267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c90 -00029158 53.25583649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c90 -00029159 53.25586319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca0 -00029160 53.25586700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca0 -00029161 53.25588989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb0 -00029162 53.25589371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb0 -00029163 53.25592041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc0 -00029164 53.25592422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc0 -00029165 53.25594711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd0 -00029166 53.25595093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd0 -00029167 53.25597763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce0 -00029168 53.25598145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce0 -00029169 53.25600815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf0 -00029170 53.25600815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf0 -00029171 53.25603485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d00 -00029172 53.25603485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d00 -00029173 53.25606155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d10 -00029174 53.25606537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d10 -00029175 53.25608826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d20 -00029176 53.25609207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d20 -00029177 53.25611877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d30 -00029178 53.25612259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d30 -00029179 53.25614548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d40 -00029180 53.25614929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d40 -00029181 53.25617599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d50 -00029182 53.25617981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d50 -00029183 53.25620651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d60 -00029184 53.25620651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d60 -00029185 53.25623322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d70 -00029186 53.25623703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d70 -00029187 53.25626373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d80 -00029188 53.25626373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d80 -00029189 53.25629044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d90 -00029190 53.25629425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d90 -00029191 53.25632095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38da0 -00029192 53.25632477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38da0 -00029193 53.25634766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38db0 -00029194 53.25634766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38db0 -00029195 53.25637436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dc0 -00029196 53.25637817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dc0 -00029197 53.25640488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd0 -00029198 53.25640488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd0 -00029199 53.25643158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de0 -00029200 53.25643539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de0 -00029201 53.25646210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df0 -00029202 53.25646210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df0 -00029203 53.25648880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e00 -00029204 53.25649261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e00 -00029205 53.25651932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e10 -00029206 53.25652313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e10 -00029207 53.25654602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e20 -00029208 53.25654984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e20 -00029209 53.25657654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e30 -00029210 53.25657654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e30 -00029211 53.25660324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e40 -00029212 53.25660324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e40 -00029213 53.25662994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e50 -00029214 53.25663376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e50 -00029215 53.25666046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e60 -00029216 53.25666428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e60 -00029217 53.25668716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e70 -00029218 53.25669098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e70 -00029219 53.25671768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e80 -00029220 53.25672150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e80 -00029221 53.25674438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e90 -00029222 53.25674820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e90 -00029223 53.25677490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea0 -00029224 53.25677872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea0 -00029225 53.25680542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb0 -00029226 53.25680923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb0 -00029227 53.25683594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec0 -00029228 53.25683975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec0 -00029229 53.25686264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed0 -00029230 53.25686646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed0 -00029231 53.25689316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee0 -00029232 53.25689697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee0 -00029233 53.25691986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef0 -00029234 53.25692368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef0 -00029235 53.25695038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f00 -00029236 53.25695419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f00 -00029237 53.25698090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f10 -00029238 53.25698090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f10 -00029239 53.25700760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f20 -00029240 53.25701141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f20 -00029241 53.25703812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f30 -00029242 53.25703812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f30 -00029243 53.25706482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f40 -00029244 53.25706863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f40 -00029245 53.25709534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f50 -00029246 53.25709534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f50 -00029247 53.25711823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f60 -00029248 53.25712204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f60 -00029249 53.25714874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f70 -00029250 53.25715256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f70 -00029251 53.25717926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f80 -00029252 53.25717926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f80 -00029253 53.25720596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f90 -00029254 53.25720978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f90 -00029255 53.25723648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa0 -00029256 53.25724030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa0 -00029257 53.25726318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb0 -00029258 53.25726700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb0 -00029259 53.25729370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc0 -00029260 53.25729752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc0 -00029261 53.25732040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd0 -00029262 53.25732422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd0 -00029263 53.25735092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fe0 -00029264 53.25735474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fe0 -00029265 53.25737762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ff0 -00029266 53.25737762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ff0 -00029267 53.25740433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39000 -00029268 53.25740814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39000 -00029269 53.25743484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39010 -00029270 53.25743866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39010 -00029271 53.25746536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39020 -00029272 53.25746536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39020 -00029273 53.25749588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39030 -00029274 53.25749588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39030 -00029275 53.25752258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39040 -00029276 53.25752258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39040 -00029277 53.25755310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39050 -00029278 53.25755310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39050 -00029279 53.25757599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39060 -00029280 53.25757980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39060 -00029281 53.25760651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39070 -00029282 53.25761032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39070 -00029283 53.25763702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39080 -00029284 53.25763702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39080 -00029285 53.25766373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39090 -00029286 53.25766754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39090 -00029287 53.25769424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390a0 -00029288 53.25769424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390a0 -00029289 53.25772095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390b0 -00029290 53.25772476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390b0 -00029291 53.25775146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390c0 -00029292 53.25775528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390c0 -00029293 53.25777817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390d0 -00029294 53.25778198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390d0 -00029295 53.25780869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390e0 -00029296 53.25780869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390e0 -00029297 53.25783539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390f0 -00029298 53.25783539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x390f0 -00029299 53.25786209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39100 -00029300 53.25786591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39100 -00029301 53.25789261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39110 -00029302 53.25789261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39110 -00029303 53.25791931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39120 -00029304 53.25792313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39120 -00029305 53.25794983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39130 -00029306 53.25795364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39130 -00029307 53.25797653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39140 -00029308 53.25798035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39140 -00029309 53.25800705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39150 -00029310 53.25801086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39150 -00029311 53.25803375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39160 -00029312 53.25803757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39160 -00029313 53.25806427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39170 -00029314 53.25806808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39170 -00029315 53.25809097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39180 -00029316 53.25809479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39180 -00029317 53.25812149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39190 -00029318 53.25812149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39190 -00029319 53.25814819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a0 -00029320 53.25815201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a0 -00029321 53.25817490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b0 -00029322 53.25817871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b0 -00029323 53.25820541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c0 -00029324 53.25820923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c0 -00029325 53.25823212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d0 -00029326 53.25823593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d0 -00029327 53.25826263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e0 -00029328 53.25826645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e0 -00029329 53.25828934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f0 -00029330 53.25829315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f0 -00029331 53.25831985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39200 -00029332 53.25832367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39200 -00029333 53.25835037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39210 -00029334 53.25835037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39210 -00029335 53.25837326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39220 -00029336 53.25837708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39220 -00029337 53.25840378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39230 -00029338 53.25840759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39230 -00029339 53.25843048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39240 -00029340 53.25843430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39240 -00029341 53.25846100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39250 -00029342 53.25846481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39250 -00029343 53.25848770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39260 -00029344 53.25849152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39260 -00029345 53.25851822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39270 -00029346 53.25852203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39270 -00029347 53.25854874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39280 -00029348 53.25854874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39280 -00029349 53.25857544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39290 -00029350 53.25857925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39290 -00029351 53.25860596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a0 -00029352 53.25860596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a0 -00029353 53.25863266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b0 -00029354 53.25863266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b0 -00029355 53.25865936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c0 -00029356 53.25866318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c0 -00029357 53.25868988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d0 -00029358 53.25868988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d0 -00029359 53.25871658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e0 -00029360 53.25872040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e0 -00029361 53.25874710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f0 -00029362 53.25874710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f0 -00029363 53.25877380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39300 -00029364 53.25877762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39300 -00029365 53.25880432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39310 -00029366 53.25880814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39310 -00029367 53.25883102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39320 -00029368 53.25883484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39320 -00029369 53.25886154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39330 -00029370 53.25886154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39330 -00029371 53.25888824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39340 -00029372 53.25888824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39340 -00029373 53.25891495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39350 -00029374 53.25891876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39350 -00029375 53.25894547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39360 -00029376 53.25894547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39360 -00029377 53.25897217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39370 -00029378 53.25897598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39370 -00029379 53.25900269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39380 -00029380 53.25900650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39380 -00029381 53.25902939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39390 -00029382 53.25903320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39390 -00029383 53.25905991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393a0 -00029384 53.25905991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393a0 -00029385 53.25908661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393b0 -00029386 53.25908661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393b0 -00029387 53.25911331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c0 -00029388 53.25911713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c0 -00029389 53.25914383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393d0 -00029390 53.25914383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393d0 -00029391 53.25917053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393e0 -00029392 53.25917435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393e0 -00029393 53.25920105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393f0 -00029394 53.25920486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x393f0 -00029395 53.25922775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39400 -00029396 53.25923157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39400 -00029397 53.25925827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39410 -00029398 53.25926208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39410 -00029399 53.25928497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39420 -00029400 53.25928879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39420 -00029401 53.25931549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39430 -00029402 53.25931931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39430 -00029403 53.25934219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39440 -00029404 53.25934601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39440 -00029405 53.25937271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39450 -00029406 53.25937653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39450 -00029407 53.25940323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39460 -00029408 53.25940323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39460 -00029409 53.25942993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39470 -00029410 53.25942993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39470 -00029411 53.25945663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39480 -00029412 53.25946045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39480 -00029413 53.25948334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39490 -00029414 53.25948715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39490 -00029415 53.25951385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a0 -00029416 53.25951767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a0 -00029417 53.25954056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b0 -00029418 53.25954437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b0 -00029419 53.25957108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c0 -00029420 53.25957489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c0 -00029421 53.25960159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d0 -00029422 53.25960159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d0 -00029423 53.25962830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e0 -00029424 53.25963211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e0 -00029425 53.25965881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f0 -00029426 53.25965881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f0 -00029427 53.25968170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39500 -00029428 53.25968552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39500 -00029429 53.25971222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39510 -00029430 53.25971603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39510 -00029431 53.25973892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39520 -00029432 53.25974274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39520 -00029433 53.25976944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39530 -00029434 53.25977325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39530 -00029435 53.25979996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39540 -00029436 53.25979996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39540 -00029437 53.25982666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39550 -00029438 53.25983047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39550 -00029439 53.25985718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39560 -00029440 53.25986099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39560 -00029441 53.25988388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39570 -00029442 53.25988770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39570 -00029443 53.25991440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39580 -00029444 53.25991821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39580 -00029445 53.25994110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39590 -00029446 53.25994492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39590 -00029447 53.25997162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a0 -00029448 53.25997543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a0 -00029449 53.25999832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b0 -00029450 53.26000214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b0 -00029451 53.26002884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c0 -00029452 53.26003265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c0 -00029453 53.26005936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d0 -00029454 53.26005936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d0 -00029455 53.26008606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395e0 -00029456 53.26008987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395e0 -00029457 53.26011658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395f0 -00029458 53.26011658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x395f0 -00029459 53.26014328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39600 -00029460 53.26014709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39600 -00029461 53.26017380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39610 -00029462 53.26017380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39610 -00029463 53.26019669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39620 -00029464 53.26020050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39620 -00029465 53.26022720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39630 -00029466 53.26023102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39630 -00029467 53.26025772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39640 -00029468 53.26025772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39640 -00029469 53.26028442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39650 -00029470 53.26028824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39650 -00029471 53.26031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39660 -00029472 53.26031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39660 -00029473 53.26034164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39670 -00029474 53.26034546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39670 -00029475 53.26037216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39680 -00029476 53.26037598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39680 -00029477 53.26039886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -00029478 53.26040268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -00029479 53.26042938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -00029480 53.26042938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -00029481 53.26045609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -00029482 53.26045609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -00029483 53.26048660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -00029484 53.26048660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -00029485 53.26051331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -00029486 53.26051331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -00029487 53.26054001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -00029488 53.26054382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -00029489 53.26057053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -00029490 53.26057434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -00029491 53.26059723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -00029492 53.26060104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -00029493 53.26062775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -00029494 53.26063156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -00029495 53.26065445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -00029496 53.26065826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -00029497 53.26068497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -00029498 53.26068878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -00029499 53.26071548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -00029500 53.26071548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -00029501 53.26074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -00029502 53.26074600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -00029503 53.26077271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -00029504 53.26077271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -00029505 53.26079941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -00029506 53.26079941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -00029507 53.26082611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -00029508 53.26082993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -00029509 53.26085281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -00029510 53.26085663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -00029511 53.26088333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -00029512 53.26088715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -00029513 53.26091385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397b0 -00029514 53.26091385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397b0 -00029515 53.26094055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397c0 -00029516 53.26094437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397c0 -00029517 53.26097107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397d0 -00029518 53.26097107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397d0 -00029519 53.26099777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397e0 -00029520 53.26100159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397e0 -00029521 53.26102829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397f0 -00029522 53.26102829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397f0 -00029523 53.26105499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39800 -00029524 53.26105499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39800 -00029525 53.26108551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39810 -00029526 53.26108551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39810 -00029527 53.26111221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39820 -00029528 53.26111221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39820 -00029529 53.26113892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39830 -00029530 53.26114273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39830 -00029531 53.26116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39840 -00029532 53.26116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39840 -00029533 53.26119614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39850 -00029534 53.26119995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39850 -00029535 53.26122665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39860 -00029536 53.26123047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39860 -00029537 53.26125336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39870 -00029538 53.26125717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39870 -00029539 53.26128387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39880 -00029540 53.26128769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39880 -00029541 53.26131058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39890 -00029542 53.26131439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39890 -00029543 53.26134109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a0 -00029544 53.26134491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a0 -00029545 53.26136780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b0 -00029546 53.26136780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b0 -00029547 53.26139832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c0 -00029548 53.26139832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c0 -00029549 53.26142502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d0 -00029550 53.26142883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d0 -00029551 53.26145172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e0 -00029552 53.26145554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e0 -00029553 53.26148224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f0 -00029554 53.26148605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f0 -00029555 53.26150894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39900 -00029556 53.26151276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39900 -00029557 53.26153946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39910 -00029558 53.26154327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39910 -00029559 53.26156616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39920 -00029560 53.26156998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39920 -00029561 53.26159668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39930 -00029562 53.26160049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39930 -00029563 53.26162720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39940 -00029564 53.26162720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39940 -00029565 53.26165009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39950 -00029566 53.26165390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39950 -00029567 53.26168060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39960 -00029568 53.26168442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39960 -00029569 53.26170731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39970 -00029570 53.26171112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39970 -00029571 53.26173782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39980 -00029572 53.26174164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39980 -00029573 53.26176453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39990 -00029574 53.26176834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39990 -00029575 53.26179504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a0 -00029576 53.26179886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a0 -00029577 53.26182556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b0 -00029578 53.26182556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b0 -00029579 53.26185226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c0 -00029580 53.26185608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c0 -00029581 53.26188278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d0 -00029582 53.26188660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d0 -00029583 53.26190948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e0 -00029584 53.26191330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e0 -00029585 53.26194000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f0 -00029586 53.26194382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f0 -00029587 53.26196671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a00 -00029588 53.26197052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a00 -00029589 53.26199722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a10 -00029590 53.26200104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a10 -00029591 53.26202393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a20 -00029592 53.26202393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a20 -00029593 53.26205444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a30 -00029594 53.26205444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a30 -00029595 53.26208115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a40 -00029596 53.26208496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a40 -00029597 53.26210785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a50 -00029598 53.26211166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a50 -00029599 53.26213837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a60 -00029600 53.26214218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a60 -00029601 53.26216507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a70 -00029602 53.26216888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a70 -00029603 53.26219559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a80 -00029604 53.26219940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a80 -00029605 53.26222229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a90 -00029606 53.26222610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a90 -00029607 53.26225281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa0 -00029608 53.26225662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa0 -00029609 53.26228333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab0 -00029610 53.26228333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab0 -00029611 53.26231003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac0 -00029612 53.26231003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac0 -00029613 53.26234055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad0 -00029614 53.26234055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad0 -00029615 53.26236343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ae0 -00029616 53.26236725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ae0 -00029617 53.26239395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39af0 -00029618 53.26239777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39af0 -00029619 53.26242065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b00 -00029620 53.26242447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b00 -00029621 53.26245117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b10 -00029622 53.26245499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b10 -00029623 53.26248169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b20 -00029624 53.26248169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b20 -00029625 53.26250839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b30 -00029626 53.26251221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b30 -00029627 53.26253891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b40 -00029628 53.26253891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b40 -00029629 53.26256561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b50 -00029630 53.26256943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b50 -00029631 53.26259613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b60 -00029632 53.26259995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b60 -00029633 53.26262283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b70 -00029634 53.26262665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b70 -00029635 53.26265335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b80 -00029636 53.26265335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b80 -00029637 53.26268005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b90 -00029638 53.26268005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b90 -00029639 53.26270676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ba0 -00029640 53.26271057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ba0 -00029641 53.26273727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bb0 -00029642 53.26274109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bb0 -00029643 53.26276398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bc0 -00029644 53.26276779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bc0 -00029645 53.26279449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bd0 -00029646 53.26279831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bd0 -00029647 53.26282120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be0 -00029648 53.26282501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be0 -00029649 53.26285172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf0 -00029650 53.26285553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf0 -00029651 53.26287842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c00 -00029652 53.26288223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c00 -00029653 53.26290894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c10 -00029654 53.26290894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c10 -00029655 53.26293564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c20 -00029656 53.26293945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c20 -00029657 53.26296616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c30 -00029658 53.26296616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c30 -00029659 53.26299286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c40 -00029660 53.26299667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c40 -00029661 53.26301956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c50 -00029662 53.26302338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c50 -00029663 53.26305008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c60 -00029664 53.26305389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c60 -00029665 53.26307678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c70 -00029666 53.26308060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c70 -00029667 53.26310730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c80 -00029668 53.26311111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c80 -00029669 53.26313782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c90 -00029670 53.26313782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c90 -00029671 53.26316452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca0 -00029672 53.26316833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca0 -00029673 53.26319504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb0 -00029674 53.26319504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb0 -00029675 53.26322174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc0 -00029676 53.26322556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc0 -00029677 53.26325226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd0 -00029678 53.26325607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd0 -00029679 53.26327896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce0 -00029680 53.26327896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce0 -00029681 53.26330948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf0 -00029682 53.26330948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf0 -00029683 53.26333618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d00 -00029684 53.26333618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d00 -00029685 53.26336288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d10 -00029686 53.26336670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d10 -00029687 53.26339340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d20 -00029688 53.26339340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d20 -00029689 53.26342010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d30 -00029690 53.26342392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d30 -00029691 53.26345062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d40 -00029692 53.26345444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d40 -00029693 53.26347733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d50 -00029694 53.26348114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d50 -00029695 53.26350784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d60 -00029696 53.26350784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d60 -00029697 53.26353455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d70 -00029698 53.26353455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d70 -00029699 53.26356125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d80 -00029700 53.26356506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d80 -00029701 53.26359177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d90 -00029702 53.26359177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d90 -00029703 53.26361847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da0 -00029704 53.26362228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da0 -00029705 53.26364899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db0 -00029706 53.26365280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db0 -00029707 53.26367569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc0 -00029708 53.26367950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc0 -00029709 53.26370621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd0 -00029710 53.26371002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd0 -00029711 53.26373291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de0 -00029712 53.26373672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de0 -00029713 53.26376343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df0 -00029714 53.26376724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df0 -00029715 53.26379013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e00 -00029716 53.26379395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e00 -00029717 53.26382065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e10 -00029718 53.26382065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e10 -00029719 53.26384735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e20 -00029720 53.26385117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e20 -00029721 53.26387405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e30 -00029722 53.26387787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e30 -00029723 53.26390457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e40 -00029724 53.26390839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e40 -00029725 53.26393127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e50 -00029726 53.26393509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e50 -00029727 53.26396179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e60 -00029728 53.26396561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e60 -00029729 53.26398849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e70 -00029730 53.26399231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e70 -00029731 53.26401901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e80 -00029732 53.26402283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e80 -00029733 53.26404953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e90 -00029734 53.26404953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e90 -00029735 53.26407623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea0 -00029736 53.26408005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea0 -00029737 53.26410675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39eb0 -00029738 53.26411057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39eb0 -00029739 53.26413345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ec0 -00029740 53.26413727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ec0 -00029741 53.26416397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed0 -00029742 53.26416779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed0 -00029743 53.26419067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee0 -00029744 53.26419449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee0 -00029745 53.26422119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef0 -00029746 53.26422501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef0 -00029747 53.26424789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f00 -00029748 53.26425171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f00 -00029749 53.26427841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f10 -00029750 53.26428223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f10 -00029751 53.26430893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f20 -00029752 53.26430893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f20 -00029753 53.26433563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f30 -00029754 53.26433945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f30 -00029755 53.26436615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f40 -00029756 53.26436615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f40 -00029757 53.26439285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f50 -00029758 53.26439667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f50 -00029759 53.26442337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f60 -00029760 53.26442719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f60 -00029761 53.26445007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f70 -00029762 53.26445389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f70 -00029763 53.26448059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f80 -00029764 53.26448441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f80 -00029765 53.26450729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f90 -00029766 53.26450729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f90 -00029767 53.26453781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fa0 -00029768 53.26453781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fa0 -00029769 53.26456451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fb0 -00029770 53.26456451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fb0 -00029771 53.26459503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fc0 -00029772 53.26459503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fc0 -00029773 53.26462173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fd0 -00029774 53.26462555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fd0 -00029775 53.26464844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fe0 -00029776 53.26465225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fe0 -00029777 53.26467896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ff0 -00029778 53.26468277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ff0 -00029779 53.26470947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a000 -00029780 53.26471329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a000 -00029781 53.26474380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a010 -00029782 53.26474380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a010 -00029783 53.26477051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a020 -00029784 53.26477432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a020 -00029785 53.26480103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a030 -00029786 53.26480484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a030 -00029787 53.26483154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a040 -00029788 53.26483154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a040 -00029789 53.26486588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a050 -00029790 53.26486588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a050 -00029791 53.26490402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a060 -00029792 53.26490402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a060 -00029793 53.26494217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a070 -00029794 53.26494598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a070 -00029795 53.26498413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a080 -00029796 53.26498413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a080 -00029797 53.26501846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a090 -00029798 53.26502228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a090 -00029799 53.26504517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0a0 -00029800 53.26504898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0a0 -00029801 53.26507568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0b0 -00029802 53.26507950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0b0 -00029803 53.26510239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0c0 -00029804 53.26510620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0c0 -00029805 53.26513290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0d0 -00029806 53.26513672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0d0 -00029807 53.26516342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0e0 -00029808 53.26516342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0e0 -00029809 53.26519012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0f0 -00029810 53.26519012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0f0 -00029811 53.26521683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a100 -00029812 53.26522064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a100 -00029813 53.26524353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a110 -00029814 53.26524734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a110 -00029815 53.26527405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a120 -00029816 53.26527786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a120 -00029817 53.26530075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a130 -00029818 53.26530457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a130 -00029819 53.26533127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a140 -00029820 53.26533508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a140 -00029821 53.26536179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a150 -00029822 53.26536179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a150 -00029823 53.26538849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a160 -00029824 53.26539230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a160 -00029825 53.26541901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a170 -00029826 53.26541901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a170 -00029827 53.26544571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a180 -00029828 53.26544952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a180 -00029829 53.26547623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a190 -00029830 53.26548004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a190 -00029831 53.26550293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a0 -00029832 53.26550674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a0 -00029833 53.26553345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b0 -00029834 53.26553726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b0 -00029835 53.26556015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c0 -00029836 53.26556396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c0 -00029837 53.26559067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d0 -00029838 53.26559067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d0 -00029839 53.26561737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e0 -00029840 53.26561737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e0 -00029841 53.26564789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f0 -00029842 53.26564789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f0 -00029843 53.26567841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a200 -00029844 53.26567841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a200 -00029845 53.26570129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a210 -00029846 53.26570511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a210 -00029847 53.26573181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a220 -00029848 53.26573563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a220 -00029849 53.26575851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a230 -00029850 53.26576233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a230 -00029851 53.26578903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a240 -00029852 53.26579285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a240 -00029853 53.26581573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a250 -00029854 53.26581955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a250 -00029855 53.26584625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a260 -00029856 53.26585007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a260 -00029857 53.26587677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a270 -00029858 53.26587677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a270 -00029859 53.26590347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a280 -00029860 53.26590729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a280 -00029861 53.26593399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a290 -00029862 53.26593781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a290 -00029863 53.26596069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a0 -00029864 53.26596451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a0 -00029865 53.26599121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b0 -00029866 53.26599121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b0 -00029867 53.26601410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c0 -00029868 53.26601791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c0 -00029869 53.26604462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d0 -00029870 53.26604843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d0 -00029871 53.26607513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e0 -00029872 53.26607513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e0 -00029873 53.26610184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f0 -00029874 53.26610565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f0 -00029875 53.26613235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a300 -00029876 53.26613617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a300 -00029877 53.26615906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a310 -00029878 53.26616287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a310 -00029879 53.26618958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a320 -00029880 53.26619339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a320 -00029881 53.26621628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a330 -00029882 53.26622009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a330 -00029883 53.26624680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a340 -00029884 53.26625061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a340 -00029885 53.26627350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a350 -00029886 53.26627731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a350 -00029887 53.26630402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a360 -00029888 53.26630783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a360 -00029889 53.26633453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a370 -00029890 53.26633453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a370 -00029891 53.26636124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a380 -00029892 53.26636505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a380 -00029893 53.26639175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a390 -00029894 53.26639175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a390 -00029895 53.26641846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a0 -00029896 53.26642227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a0 -00029897 53.26644897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b0 -00029898 53.26645279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b0 -00029899 53.26647568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c0 -00029900 53.26647568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c0 -00029901 53.26650620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d0 -00029902 53.26650620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d0 -00029903 53.26653290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e0 -00029904 53.26653290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e0 -00029905 53.26655960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f0 -00029906 53.26656342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f0 -00029907 53.26659012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a400 -00029908 53.26659012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a400 -00029909 53.26661682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a410 -00029910 53.26662064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a410 -00029911 53.26664734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a420 -00029912 53.26665115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a420 -00029913 53.26667404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a430 -00029914 53.26667786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a430 -00029915 53.26670456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a440 -00029916 53.26670837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a440 -00029917 53.26673126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a450 -00029918 53.26673508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a450 -00029919 53.26676178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a460 -00029920 53.26676559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a460 -00029921 53.26679230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a470 -00029922 53.26679230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a470 -00029923 53.26681900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a480 -00029924 53.26682281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a480 -00029925 53.26684952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a490 -00029926 53.26684952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a490 -00029927 53.26687622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a0 -00029928 53.26687622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a0 -00029929 53.26690292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4b0 -00029930 53.26690674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4b0 -00029931 53.26692963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c0 -00029932 53.26693344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c0 -00029933 53.26696014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d0 -00029934 53.26696396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d0 -00029935 53.26699066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e0 -00029936 53.26699066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e0 -00029937 53.26701736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4f0 -00029938 53.26702118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4f0 -00029939 53.26704788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a500 -00029940 53.26704788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a500 -00029941 53.26707458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a510 -00029942 53.26707840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a510 -00029943 53.26710510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a520 -00029944 53.26710892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a520 -00029945 53.26713181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a530 -00029946 53.26713562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a530 -00029947 53.26716232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a540 -00029948 53.26716614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a540 -00029949 53.26718903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a550 -00029950 53.26719284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a550 -00029951 53.26721954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a560 -00029952 53.26721954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a560 -00029953 53.26724625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a570 -00029954 53.26724625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a570 -00029955 53.26727295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a580 -00029956 53.26727676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a580 -00029957 53.26730347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a590 -00029958 53.26730728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a590 -00029959 53.26733017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5a0 -00029960 53.26733398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5a0 -00029961 53.26736069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5b0 -00029962 53.26736450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5b0 -00029963 53.26738739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5c0 -00029964 53.26739120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5c0 -00029965 53.26741791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5d0 -00029966 53.26742172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5d0 -00029967 53.26744461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5e0 -00029968 53.26744843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5e0 -00029969 53.26747513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5f0 -00029970 53.26747894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5f0 -00029971 53.26750565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a600 -00029972 53.26750565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a600 -00029973 53.26753235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a610 -00029974 53.26753616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a610 -00029975 53.26756287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a620 -00029976 53.26756287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a620 -00029977 53.26758957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a630 -00029978 53.26758957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a630 -00029979 53.26761627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a640 -00029980 53.26762009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a640 -00029981 53.26764297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a650 -00029982 53.26764679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a650 -00029983 53.26767349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a660 -00029984 53.26767731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a660 -00029985 53.26770401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a670 -00029986 53.26770401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a670 -00029987 53.26773071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a680 -00029988 53.26773453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a680 -00029989 53.26776123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a690 -00029990 53.26776505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a690 -00029991 53.26778793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6a0 -00029992 53.26779175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6a0 -00029993 53.26781845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6b0 -00029994 53.26782227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6b0 -00029995 53.26784515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6c0 -00029996 53.26784515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6c0 -00029997 53.26787186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6d0 -00029998 53.26787567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6d0 -00029999 53.26790237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6e0 -00030000 53.26790237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6e0 -00030001 53.26792908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6f0 -00030002 53.26793289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6f0 -00030003 53.26795959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a700 -00030004 53.26796341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a700 -00030005 53.26798630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a710 -00030006 53.26799011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a710 -00030007 53.26801682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a720 -00030008 53.26802063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a720 -00030009 53.26804352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a730 -00030010 53.26804733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a730 -00030011 53.26807404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a740 -00030012 53.26807785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a740 -00030013 53.26810074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a750 -00030014 53.26810455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a750 -00030015 53.26813126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a760 -00030016 53.26813507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a760 -00030017 53.26816177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a770 -00030018 53.26816177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a770 -00030019 53.26818848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a780 -00030020 53.26819229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a780 -00030021 53.26821899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a790 -00030022 53.26821899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a790 -00030023 53.26824188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7a0 -00030024 53.26824570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7a0 -00030025 53.26827240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7b0 -00030026 53.26827621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7b0 -00030027 53.26829910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7c0 -00030028 53.26830292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7c0 -00030029 53.26832962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7d0 -00030030 53.26833344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7d0 -00030031 53.26836014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e0 -00030032 53.26836014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e0 -00030033 53.26838684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f0 -00030034 53.26839066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f0 -00030035 53.26841736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a800 -00030036 53.26841736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a800 -00030037 53.26844406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a810 -00030038 53.26844788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a810 -00030039 53.26847458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a820 -00030040 53.26847839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a820 -00030041 53.26850128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a830 -00030042 53.26850128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a830 -00030043 53.26853180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a840 -00030044 53.26853180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a840 -00030045 53.26855850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a850 -00030046 53.26855850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a850 -00030047 53.26858521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a860 -00030048 53.26858902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a860 -00030049 53.26861572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a870 -00030050 53.26861572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a870 -00030051 53.26864243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a880 -00030052 53.26864624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a880 -00030053 53.26867294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a890 -00030054 53.26867676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a890 -00030055 53.26869965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a0 -00030056 53.26870346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a0 -00030057 53.26873016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b0 -00030058 53.26873398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b0 -00030059 53.26875687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c0 -00030060 53.26876068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c0 -00030061 53.26878738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d0 -00030062 53.26878738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d0 -00030063 53.26881790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e0 -00030064 53.26881790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e0 -00030065 53.26884460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f0 -00030066 53.26884460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f0 -00030067 53.26887512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a900 -00030068 53.26887512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a900 -00030069 53.26890182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a910 -00030070 53.26890182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a910 -00030071 53.26892853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a920 -00030072 53.26893234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a920 -00030073 53.26895523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a930 -00030074 53.26895905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a930 -00030075 53.26898575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a940 -00030076 53.26898956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a940 -00030077 53.26901627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a950 -00030078 53.26901627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a950 -00030079 53.26904297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a960 -00030080 53.26904678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a960 -00030081 53.26907349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a970 -00030082 53.26907349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a970 -00030083 53.26910019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a980 -00030084 53.26910400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a980 -00030085 53.26913071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a990 -00030086 53.26913452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a990 -00030087 53.26915741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a0 -00030088 53.26915741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a0 -00030089 53.26918411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b0 -00030090 53.26918793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b0 -00030091 53.26921463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c0 -00030092 53.26921463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c0 -00030093 53.26924515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d0 -00030094 53.26924515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d0 -00030095 53.26927185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e0 -00030096 53.26927185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e0 -00030097 53.26929855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f0 -00030098 53.26930237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f0 -00030099 53.26932907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa00 -00030100 53.26933289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa00 -00030101 53.26935577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa10 -00030102 53.26935959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa10 -00030103 53.26938629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa20 -00030104 53.26939011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa20 -00030105 53.26941299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa30 -00030106 53.26941681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa30 -00030107 53.26944351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa40 -00030108 53.26944733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa40 -00030109 53.26947021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa50 -00030110 53.26947403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa50 -00030111 53.26950073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa60 -00030112 53.26950455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa60 -00030113 53.26953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa70 -00030114 53.26953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa70 -00030115 53.26955795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa80 -00030116 53.26955795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa80 -00030117 53.26958466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa90 -00030118 53.26958847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa90 -00030119 53.26961136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa0 -00030120 53.26961517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa0 -00030121 53.26964188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab0 -00030122 53.26964569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab0 -00030123 53.26966858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac0 -00030124 53.26967239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac0 -00030125 53.26969910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad0 -00030126 53.26970291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad0 -00030127 53.26972961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae0 -00030128 53.26972961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae0 -00030129 53.26975632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf0 -00030130 53.26976013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf0 -00030131 53.26978683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab00 -00030132 53.26978683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab00 -00030133 53.26980972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -00030134 53.26981354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -00030135 53.26984406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -00030136 53.26984406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -00030137 53.26986694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -00030138 53.26987076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -00030139 53.26989746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -00030140 53.26990128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -00030141 53.26992798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -00030142 53.26992798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -00030143 53.26995468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -00030144 53.26995850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -00030145 53.26998520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -00030146 53.26998901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -00030147 53.27001190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -00030148 53.27001572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -00030149 53.27004242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -00030150 53.27004623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -00030151 53.27006912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -00030152 53.27007294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -00030153 53.27009964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb0 -00030154 53.27010345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb0 -00030155 53.27012634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc0 -00030156 53.27013016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc0 -00030157 53.27015686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd0 -00030158 53.27015686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd0 -00030159 53.27018356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe0 -00030160 53.27018738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe0 -00030161 53.27021027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf0 -00030162 53.27021408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf0 -00030163 53.27024078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac00 -00030164 53.27024460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac00 -00030165 53.27026749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac10 -00030166 53.27027130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac10 -00030167 53.27029800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac20 -00030168 53.27030182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac20 -00030169 53.27032471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac30 -00030170 53.27032852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac30 -00030171 53.27035522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac40 -00030172 53.27035904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac40 -00030173 53.27038574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac50 -00030174 53.27038574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac50 -00030175 53.27041245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac60 -00030176 53.27041245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac60 -00030177 53.27044296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac70 -00030178 53.27044296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac70 -00030179 53.27046967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac80 -00030180 53.27046967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac80 -00030181 53.27049637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac90 -00030182 53.27050018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac90 -00030183 53.27052307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca0 -00030184 53.27052689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca0 -00030185 53.27055359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acb0 -00030186 53.27055740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acb0 -00030187 53.27058411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acc0 -00030188 53.27058411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acc0 -00030189 53.27061081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acd0 -00030190 53.27061462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acd0 -00030191 53.27064133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ace0 -00030192 53.27064133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ace0 -00030193 53.27066803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acf0 -00030194 53.27067184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acf0 -00030195 53.27069855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad00 -00030196 53.27070236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad00 -00030197 53.27072525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad10 -00030198 53.27072525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad10 -00030199 53.27075577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad20 -00030200 53.27075577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad20 -00030201 53.27078247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad30 -00030202 53.27078247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad30 -00030203 53.27081299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad40 -00030204 53.27081299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad40 -00030205 53.27084351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad50 -00030206 53.27084351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad50 -00030207 53.27086639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad60 -00030208 53.27087021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad60 -00030209 53.27090073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad70 -00030210 53.27090073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad70 -00030211 53.27092361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad80 -00030212 53.27092743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad80 -00030213 53.27095795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad90 -00030214 53.27095795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad90 -00030215 53.27098465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada0 -00030216 53.27098846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada0 -00030217 53.27101517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb0 -00030218 53.27101898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb0 -00030219 53.27104187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc0 -00030220 53.27104568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc0 -00030221 53.27107620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add0 -00030222 53.27107620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add0 -00030223 53.27110291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade0 -00030224 53.27110672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade0 -00030225 53.27113342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf0 -00030226 53.27113724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf0 -00030227 53.27116013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae00 -00030228 53.27116394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae00 -00030229 53.27119064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae10 -00030230 53.27119446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae10 -00030231 53.27121735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae20 -00030232 53.27122116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae20 -00030233 53.27124786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae30 -00030234 53.27125168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae30 -00030235 53.27127838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae40 -00030236 53.27127838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae40 -00030237 53.27130508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae50 -00030238 53.27130890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae50 -00030239 53.27133560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae60 -00030240 53.27133942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae60 -00030241 53.27136230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae70 -00030242 53.27136612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae70 -00030243 53.27139282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae80 -00030244 53.27139664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae80 -00030245 53.27142334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae90 -00030246 53.27142334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae90 -00030247 53.27145386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea0 -00030248 53.27145767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea0 -00030249 53.27148056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb0 -00030250 53.27148438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb0 -00030251 53.27151108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec0 -00030252 53.27151489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec0 -00030253 53.27153778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed0 -00030254 53.27154160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed0 -00030255 53.27156830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee0 -00030256 53.27157211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee0 -00030257 53.27159500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef0 -00030258 53.27159882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef0 -00030259 53.27162552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af00 -00030260 53.27162933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af00 -00030261 53.27165604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af10 -00030262 53.27165604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af10 -00030263 53.27168274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af20 -00030264 53.27168655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af20 -00030265 53.27171326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af30 -00030266 53.27171707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af30 -00030267 53.27173996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af40 -00030268 53.27174377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af40 -00030269 53.27177048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af50 -00030270 53.27177429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af50 -00030271 53.27179718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af60 -00030272 53.27180099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af60 -00030273 53.27182770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af70 -00030274 53.27183151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af70 -00030275 53.27185440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af80 -00030276 53.27185822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af80 -00030277 53.27188492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af90 -00030278 53.27188873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af90 -00030279 53.27191544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa0 -00030280 53.27191544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa0 -00030281 53.27194214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb0 -00030282 53.27194595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb0 -00030283 53.27197266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc0 -00030284 53.27197266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc0 -00030285 53.27199936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd0 -00030286 53.27200317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd0 -00030287 53.27202988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe0 -00030288 53.27203369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe0 -00030289 53.27205658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff0 -00030290 53.27205658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff0 -00030291 53.27208328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b000 -00030292 53.27208710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b000 -00030293 53.27211380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b010 -00030294 53.27211380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b010 -00030295 53.27214050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b020 -00030296 53.27214432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b020 -00030297 53.27217102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b030 -00030298 53.27217102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b030 -00030299 53.27219772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b040 -00030300 53.27220154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b040 -00030301 53.27222824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b050 -00030302 53.27223206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b050 -00030303 53.27225494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b060 -00030304 53.27225876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b060 -00030305 53.27228546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b070 -00030306 53.27228928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b070 -00030307 53.27231216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b080 -00030308 53.27231598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b080 -00030309 53.27234268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b090 -00030310 53.27234650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b090 -00030311 53.27236938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0a0 -00030312 53.27237320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0a0 -00030313 53.27239990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0b0 -00030314 53.27240372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0b0 -00030315 53.27243042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -00030316 53.27243042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -00030317 53.27245712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -00030318 53.27245712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -00030319 53.27248764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -00030320 53.27248764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -00030321 53.27251053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -00030322 53.27251434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -00030323 53.27254105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -00030324 53.27254486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -00030325 53.27256775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -00030326 53.27257156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -00030327 53.27259827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -00030328 53.27260208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -00030329 53.27262878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -00030330 53.27262878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -00030331 53.27265549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -00030332 53.27265930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -00030333 53.27268600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b150 -00030334 53.27268600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b150 -00030335 53.27271271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b160 -00030336 53.27271271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b160 -00030337 53.27273941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b170 -00030338 53.27274323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b170 -00030339 53.27276611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b180 -00030340 53.27276993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b180 -00030341 53.27279663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b190 -00030342 53.27280045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b190 -00030343 53.27282715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1a0 -00030344 53.27282715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1a0 -00030345 53.27285385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1b0 -00030346 53.27285767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1b0 -00030347 53.27288437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1c0 -00030348 53.27288818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1c0 -00030349 53.27291107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d0 -00030350 53.27291107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d0 -00030351 53.27294159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e0 -00030352 53.27294540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e0 -00030353 53.27296829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f0 -00030354 53.27296829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f0 -00030355 53.27299881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b200 -00030356 53.27299881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b200 -00030357 53.27302551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b210 -00030358 53.27302551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b210 -00030359 53.27305222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b220 -00030360 53.27305603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b220 -00030361 53.27308273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b230 -00030362 53.27308655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b230 -00030363 53.27310944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b240 -00030364 53.27311325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b240 -00030365 53.27313995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b250 -00030366 53.27314377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b250 -00030367 53.27316666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b260 -00030368 53.27317047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b260 -00030369 53.27319717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b270 -00030370 53.27320099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b270 -00030371 53.27322388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b280 -00030372 53.27322769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b280 -00030373 53.27325439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b290 -00030374 53.27325821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b290 -00030375 53.27328491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a0 -00030376 53.27328491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a0 -00030377 53.27331161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b0 -00030378 53.27331543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b0 -00030379 53.27334213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c0 -00030380 53.27334213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c0 -00030381 53.27336884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d0 -00030382 53.27336884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d0 -00030383 53.27339554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e0 -00030384 53.27339935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e0 -00030385 53.27342224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f0 -00030386 53.27342606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f0 -00030387 53.27345276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b300 -00030388 53.27345657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b300 -00030389 53.27348328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b310 -00030390 53.27348328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b310 -00030391 53.27350998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b320 -00030392 53.27351379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b320 -00030393 53.27354050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b330 -00030394 53.27354050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b330 -00030395 53.27356720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b340 -00030396 53.27357101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b340 -00030397 53.27359772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b350 -00030398 53.27360153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b350 -00030399 53.27362442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b360 -00030400 53.27362442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b360 -00030401 53.27365494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b370 -00030402 53.27365875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b370 -00030403 53.27368164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b380 -00030404 53.27368164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b380 -00030405 53.27370834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b390 -00030406 53.27371216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b390 -00030407 53.27373886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a0 -00030408 53.27374268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a0 -00030409 53.27376556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b0 -00030410 53.27376938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b0 -00030411 53.27379608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c0 -00030412 53.27379990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c0 -00030413 53.27382278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d0 -00030414 53.27382660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d0 -00030415 53.27385330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e0 -00030416 53.27385712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e0 -00030417 53.27388000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f0 -00030418 53.27388382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f0 -00030419 53.27391052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b400 -00030420 53.27391434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b400 -00030421 53.27394104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b410 -00030422 53.27394104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b410 -00030423 53.27396774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b420 -00030424 53.27396774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b420 -00030425 53.27399445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b430 -00030426 53.27399826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b430 -00030427 53.27402115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b440 -00030428 53.27402496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b440 -00030429 53.27405167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b450 -00030430 53.27405548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b450 -00030431 53.27407837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b460 -00030432 53.27408218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b460 -00030433 53.27410889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b470 -00030434 53.27411270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b470 -00030435 53.27413940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b480 -00030436 53.27413940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b480 -00030437 53.27416611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b490 -00030438 53.27416992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b490 -00030439 53.27419662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4a0 -00030440 53.27419662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4a0 -00030441 53.27422333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4b0 -00030442 53.27422714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4b0 -00030443 53.27425385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4c0 -00030444 53.27425766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4c0 -00030445 53.27428055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4d0 -00030446 53.27428436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4d0 -00030447 53.27431107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4e0 -00030448 53.27431107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4e0 -00030449 53.27433777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4f0 -00030450 53.27433777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4f0 -00030451 53.27436447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b500 -00030452 53.27436829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b500 -00030453 53.27439499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b510 -00030454 53.27439499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b510 -00030455 53.27442169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b520 -00030456 53.27442551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b520 -00030457 53.27445221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b530 -00030458 53.27445602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b530 -00030459 53.27447891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b540 -00030460 53.27448273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b540 -00030461 53.27450943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b550 -00030462 53.27451324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b550 -00030463 53.27453613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b560 -00030464 53.27453995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b560 -00030465 53.27456665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b570 -00030466 53.27456665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b570 -00030467 53.27459335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b580 -00030468 53.27459335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b580 -00030469 53.27462006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b590 -00030470 53.27462387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b590 -00030471 53.27465057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5a0 -00030472 53.27465439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5a0 -00030473 53.27467728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5b0 -00030474 53.27468109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5b0 -00030475 53.27470779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5c0 -00030476 53.27471161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5c0 -00030477 53.27473450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5d0 -00030478 53.27473831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5d0 -00030479 53.27476501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5e0 -00030480 53.27476883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5e0 -00030481 53.27479172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5f0 -00030482 53.27479553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5f0 -00030483 53.27482224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b600 -00030484 53.27482605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b600 -00030485 53.27485275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b610 -00030486 53.27485275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b610 -00030487 53.27487946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b620 -00030488 53.27488327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b620 -00030489 53.27490997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b630 -00030490 53.27491379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b630 -00030491 53.27493668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b640 -00030492 53.27494049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b640 -00030493 53.27496719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b650 -00030494 53.27497101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b650 -00030495 53.27499390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b660 -00030496 53.27499771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b660 -00030497 53.27502441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b670 -00030498 53.27502823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b670 -00030499 53.27505112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b680 -00030500 53.27505493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b680 -00030501 53.27508163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b690 -00030502 53.27508545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b690 -00030503 53.27511215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6a0 -00030504 53.27511215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6a0 -00030505 53.27513504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6b0 -00030506 53.27513885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6b0 -00030507 53.27516556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6c0 -00030508 53.27516937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6c0 -00030509 53.27519226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6d0 -00030510 53.27519608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6d0 -00030511 53.27522278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6e0 -00030512 53.27522659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6e0 -00030513 53.27524948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6f0 -00030514 53.27525330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6f0 -00030515 53.27528000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b700 -00030516 53.27528381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b700 -00030517 53.27531052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b710 -00030518 53.27531052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b710 -00030519 53.27533722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b720 -00030520 53.27533722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b720 -00030521 53.27536392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b730 -00030522 53.27536774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b730 -00030523 53.27539063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b740 -00030524 53.27539444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b740 -00030525 53.27542114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b750 -00030526 53.27542496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b750 -00030527 53.27544785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b760 -00030528 53.27545166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b760 -00030529 53.27547836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b770 -00030530 53.27548218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b770 -00030531 53.27550888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b780 -00030532 53.27550888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b780 -00030533 53.27553558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b790 -00030534 53.27553940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b790 -00030535 53.27556610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7a0 -00030536 53.27556610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7a0 -00030537 53.27559280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7b0 -00030538 53.27559662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7b0 -00030539 53.27562332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7c0 -00030540 53.27562332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7c0 -00030541 53.27565002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d0 -00030542 53.27565002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d0 -00030543 53.27568054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e0 -00030544 53.27568054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e0 -00030545 53.27570724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f0 -00030546 53.27570724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f0 -00030547 53.27573776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b800 -00030548 53.27574158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b800 -00030549 53.27576828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b810 -00030550 53.27576828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b810 -00030551 53.27579498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b820 -00030552 53.27579880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b820 -00030553 53.27582550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b830 -00030554 53.27582550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b830 -00030555 53.27585220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b840 -00030556 53.27585602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b840 -00030557 53.27588272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b850 -00030558 53.27588654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b850 -00030559 53.27590942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b860 -00030560 53.27590942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b860 -00030561 53.27593994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b870 -00030562 53.27593994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b870 -00030563 53.27596664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b880 -00030564 53.27596664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b880 -00030565 53.27599335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b890 -00030566 53.27599716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b890 -00030567 53.27602386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a0 -00030568 53.27602386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a0 -00030569 53.27605057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b0 -00030570 53.27605438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b0 -00030571 53.27608109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c0 -00030572 53.27608490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c0 -00030573 53.27610779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d0 -00030574 53.27611160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d0 -00030575 53.27613831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e0 -00030576 53.27614212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e0 -00030577 53.27616501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f0 -00030578 53.27616501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f0 -00030579 53.27619553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b900 -00030580 53.27619553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b900 -00030581 53.27622223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b910 -00030582 53.27622223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b910 -00030583 53.27624893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b920 -00030584 53.27625275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b920 -00030585 53.27627945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b930 -00030586 53.27628326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b930 -00030587 53.27630615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b940 -00030588 53.27630997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b940 -00030589 53.27633667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b950 -00030590 53.27634048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b950 -00030591 53.27636337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b960 -00030592 53.27636719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b960 -00030593 53.27639389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b970 -00030594 53.27639771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b970 -00030595 53.27642059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b980 -00030596 53.27642441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b980 -00030597 53.27645111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b990 -00030598 53.27645493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b990 -00030599 53.27648163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a0 -00030600 53.27648163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a0 -00030601 53.27650452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b0 -00030602 53.27650833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b0 -00030603 53.27653503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c0 -00030604 53.27653885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c0 -00030605 53.27656174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d0 -00030606 53.27656555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d0 -00030607 53.27659225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e0 -00030608 53.27659607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e0 -00030609 53.27661896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f0 -00030610 53.27662277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f0 -00030611 53.27664948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba00 -00030612 53.27665329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba00 -00030613 53.27667999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba10 -00030614 53.27667999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba10 -00030615 53.27670670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba20 -00030616 53.27671051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba20 -00030617 53.27673721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba30 -00030618 53.27673721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba30 -00030619 53.27676010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba40 -00030620 53.27676392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba40 -00030621 53.27679062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba50 -00030622 53.27679443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba50 -00030623 53.27681732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba60 -00030624 53.27682114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba60 -00030625 53.27684784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba70 -00030626 53.27685165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba70 -00030627 53.27687836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba80 -00030628 53.27687836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba80 -00030629 53.27690506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba90 -00030630 53.27690887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba90 -00030631 53.27693558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa0 -00030632 53.27693558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa0 -00030633 53.27696228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab0 -00030634 53.27696228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab0 -00030635 53.27699280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac0 -00030636 53.27699280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac0 -00030637 53.27701950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad0 -00030638 53.27701950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad0 -00030639 53.27704620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae0 -00030640 53.27705002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae0 -00030641 53.27707672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf0 -00030642 53.27707672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf0 -00030643 53.27710342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb00 -00030644 53.27710724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb00 -00030645 53.27713394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb10 -00030646 53.27713776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb10 -00030647 53.27716064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb20 -00030648 53.27716446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb20 -00030649 53.27719116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb30 -00030650 53.27719116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb30 -00030651 53.27721786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb40 -00030652 53.27721786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb40 -00030653 53.27724457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb50 -00030654 53.27724838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb50 -00030655 53.27727509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb60 -00030656 53.27727509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb60 -00030657 53.27730179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb70 -00030658 53.27730560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb70 -00030659 53.27733231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb80 -00030660 53.27733612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb80 -00030661 53.27735901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb90 -00030662 53.27736282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb90 -00030663 53.27738953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bba0 -00030664 53.27739334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bba0 -00030665 53.27741623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbb0 -00030666 53.27742004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbb0 -00030667 53.27744675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc0 -00030668 53.27744675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc0 -00030669 53.27747345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbd0 -00030670 53.27747345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbd0 -00030671 53.27750015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbe0 -00030672 53.27750397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbe0 -00030673 53.27753067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbf0 -00030674 53.27753448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbf0 -00030675 53.27755737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc00 -00030676 53.27756119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc00 -00030677 53.27758789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc10 -00030678 53.27759171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc10 -00030679 53.27761459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc20 -00030680 53.27761841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc20 -00030681 53.27764511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc30 -00030682 53.27764893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc30 -00030683 53.27767181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc40 -00030684 53.27767563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc40 -00030685 53.27770233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc50 -00030686 53.27770615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc50 -00030687 53.27773285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc60 -00030688 53.27773285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc60 -00030689 53.27775955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc70 -00030690 53.27775955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc70 -00030691 53.27779007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc80 -00030692 53.27779388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc80 -00030693 53.27781677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc90 -00030694 53.27782059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc90 -00030695 53.27784729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca0 -00030696 53.27785110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca0 -00030697 53.27787399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb0 -00030698 53.27787781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb0 -00030699 53.27790451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc0 -00030700 53.27790833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc0 -00030701 53.27793121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd0 -00030702 53.27793503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd0 -00030703 53.27796173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce0 -00030704 53.27796555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce0 -00030705 53.27799225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf0 -00030706 53.27799225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf0 -00030707 53.27801895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd00 -00030708 53.27802277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd00 -00030709 53.27804947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd10 -00030710 53.27804947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd10 -00030711 53.27807236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd20 -00030712 53.27807617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd20 -00030713 53.27810287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd30 -00030714 53.27810669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd30 -00030715 53.27812958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd40 -00030716 53.27813339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd40 -00030717 53.27816010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd50 -00030718 53.27816391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd50 -00030719 53.27819061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd60 -00030720 53.27819061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd60 -00030721 53.27821732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd70 -00030722 53.27822113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd70 -00030723 53.27824783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd80 -00030724 53.27824783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd80 -00030725 53.27827454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd90 -00030726 53.27827835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd90 -00030727 53.27830505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda0 -00030728 53.27830505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda0 -00030729 53.27832794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb0 -00030730 53.27833176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb0 -00030731 53.27835846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc0 -00030732 53.27836227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc0 -00030733 53.27838898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd0 -00030734 53.27838898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd0 -00030735 53.27841568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde0 -00030736 53.27841949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde0 -00030737 53.27844620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf0 -00030738 53.27844620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf0 -00030739 53.27847290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be00 -00030740 53.27847672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be00 -00030741 53.27850342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be10 -00030742 53.27850723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be10 -00030743 53.27853012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be20 -00030744 53.27853394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be20 -00030745 53.27856064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be30 -00030746 53.27856064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be30 -00030747 53.27858734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be40 -00030748 53.27858734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be40 -00030749 53.27861786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be50 -00030750 53.27861786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be50 -00030751 53.27864456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be60 -00030752 53.27864456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be60 -00030753 53.27867126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be70 -00030754 53.27867508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be70 -00030755 53.27870178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be80 -00030756 53.27870560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be80 -00030757 53.27872849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be90 -00030758 53.27873230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be90 -00030759 53.27875900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bea0 -00030760 53.27876282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bea0 -00030761 53.27878571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3beb0 -00030762 53.27878952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3beb0 -00030763 53.27881622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bec0 -00030764 53.27881622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bec0 -00030765 53.27884293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bed0 -00030766 53.27884293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bed0 -00030767 53.27886963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bee0 -00030768 53.27887344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bee0 -00030769 53.27890015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bef0 -00030770 53.27890396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bef0 -00030771 53.27892685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf00 -00030772 53.27893066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf00 -00030773 53.27895737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf10 -00030774 53.27896118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf10 -00030775 53.27898407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf20 -00030776 53.27898788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf20 -00030777 53.27901459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf30 -00030778 53.27901459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf30 -00030779 53.27904510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf40 -00030780 53.27904510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf40 -00030781 53.27906799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf50 -00030782 53.27907181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf50 -00030783 53.27909851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf60 -00030784 53.27910233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf60 -00030785 53.27912521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf70 -00030786 53.27912903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf70 -00030787 53.27915573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf80 -00030788 53.27915955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf80 -00030789 53.27918243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf90 -00030790 53.27918625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf90 -00030791 53.27921295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa0 -00030792 53.27921677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa0 -00030793 53.27924728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb0 -00030794 53.27925110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb0 -00030795 53.27928162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc0 -00030796 53.27928162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc0 -00030797 53.27930450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd0 -00030798 53.27930832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd0 -00030799 53.27933502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe0 -00030800 53.27933884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe0 -00030801 53.27936172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bff0 -00030802 53.27936554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bff0 -00030803 53.27939224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c000 -00030804 53.27939606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c000 -00030805 53.27941895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c010 -00030806 53.27942276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c010 -00030807 53.27944946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c020 -00030808 53.27945328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c020 -00030809 53.27947998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c030 -00030810 53.27947998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c030 -00030811 53.27950668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c040 -00030812 53.27951050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c040 -00030813 53.27953720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c050 -00030814 53.27954102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c050 -00030815 53.27956390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c060 -00030816 53.27956772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c060 -00030817 53.27959442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c070 -00030818 53.27959824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c070 -00030819 53.27962112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c080 -00030820 53.27962494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c080 -00030821 53.27965164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c090 -00030822 53.27965546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c090 -00030823 53.27967834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a0 -00030824 53.27967834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a0 -00030825 53.27970505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b0 -00030826 53.27970886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b0 -00030827 53.27973557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c0 -00030828 53.27973938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c0 -00030829 53.27976227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d0 -00030830 53.27976608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d0 -00030831 53.27979279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e0 -00030832 53.27979660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e0 -00030833 53.27981949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f0 -00030834 53.27982330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f0 -00030835 53.27985001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c100 -00030836 53.27985382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c100 -00030837 53.27987671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c110 -00030838 53.27988052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c110 -00030839 53.27990723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c120 -00030840 53.27991104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c120 -00030841 53.27993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c130 -00030842 53.27993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c130 -00030843 53.27996445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c140 -00030844 53.27996445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c140 -00030845 53.27999496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c150 -00030846 53.27999496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c150 -00030847 53.28001785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c160 -00030848 53.28002167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c160 -00030849 53.28004837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c170 -00030850 53.28005219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c170 -00030851 53.28007507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c180 -00030852 53.28007889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c180 -00030853 53.28010559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c190 -00030854 53.28010941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c190 -00030855 53.28013611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1a0 -00030856 53.28013611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1a0 -00030857 53.28016281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1b0 -00030858 53.28016663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1b0 -00030859 53.28019333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1c0 -00030860 53.28019333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1c0 -00030861 53.28022003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1d0 -00030862 53.28022003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1d0 -00030863 53.28025055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1e0 -00030864 53.28025055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1e0 -00030865 53.28027344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1f0 -00030866 53.28027725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1f0 -00030867 53.28030396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c200 -00030868 53.28030777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c200 -00030869 53.28033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c210 -00030870 53.28033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c210 -00030871 53.28036118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c220 -00030872 53.28036499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c220 -00030873 53.28039169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c230 -00030874 53.28039169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c230 -00030875 53.28041840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c240 -00030876 53.28042221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c240 -00030877 53.28044891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c250 -00030878 53.28045273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c250 -00030879 53.28047562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c260 -00030880 53.28047562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c260 -00030881 53.28050613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c270 -00030882 53.28050613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c270 -00030883 53.28053284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c280 -00030884 53.28053284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c280 -00030885 53.28055954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c290 -00030886 53.28056335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c290 -00030887 53.28059006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2a0 -00030888 53.28059387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2a0 -00030889 53.28061676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2b0 -00030890 53.28062057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2b0 -00030891 53.28064728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2c0 -00030892 53.28065109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2c0 -00030893 53.28067398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2d0 -00030894 53.28067780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2d0 -00030895 53.28070450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2e0 -00030896 53.28070450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2e0 -00030897 53.28073120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2f0 -00030898 53.28073120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2f0 -00030899 53.28075790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c300 -00030900 53.28076172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c300 -00030901 53.28078842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c310 -00030902 53.28079224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c310 -00030903 53.28081512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c320 -00030904 53.28081894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c320 -00030905 53.28084564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c330 -00030906 53.28084946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c330 -00030907 53.28087234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c340 -00030908 53.28087616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c340 -00030909 53.28090286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c350 -00030910 53.28090668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c350 -00030911 53.28092957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c360 -00030912 53.28093338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c360 -00030913 53.28096008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c370 -00030914 53.28096008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c370 -00030915 53.28099060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c380 -00030916 53.28099060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c380 -00030917 53.28101349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c390 -00030918 53.28101730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c390 -00030919 53.28104401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a0 -00030920 53.28104782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a0 -00030921 53.28107071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b0 -00030922 53.28107452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b0 -00030923 53.28110123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c0 -00030924 53.28110504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c0 -00030925 53.28112793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d0 -00030926 53.28113174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d0 -00030927 53.28115845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e0 -00030928 53.28116226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e0 -00030929 53.28118896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f0 -00030930 53.28118896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f0 -00030931 53.28121567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c400 -00030932 53.28121948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c400 -00030933 53.28124619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c410 -00030934 53.28124619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c410 -00030935 53.28127289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c420 -00030936 53.28127289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c420 -00030937 53.28129959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c430 -00030938 53.28130341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c430 -00030939 53.28132629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c440 -00030940 53.28133011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c440 -00030941 53.28135681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c450 -00030942 53.28136063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c450 -00030943 53.28138733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c460 -00030944 53.28138733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c460 -00030945 53.28141403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c470 -00030946 53.28141785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c470 -00030947 53.28144455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c480 -00030948 53.28144455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c480 -00030949 53.28147125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c490 -00030950 53.28147507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c490 -00030951 53.28150177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a0 -00030952 53.28150177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a0 -00030953 53.28152466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b0 -00030954 53.28152847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b0 -00030955 53.28155518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4c0 -00030956 53.28155899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4c0 -00030957 53.28158569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4d0 -00030958 53.28158569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4d0 -00030959 53.28161240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4e0 -00030960 53.28161621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4e0 -00030961 53.28164291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4f0 -00030962 53.28164291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4f0 -00030963 53.28166962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c500 -00030964 53.28167343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c500 -00030965 53.28170013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c510 -00030966 53.28170395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c510 -00030967 53.28172684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c520 -00030968 53.28173065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c520 -00030969 53.28175735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c530 -00030970 53.28175735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c530 -00030971 53.28178406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c540 -00030972 53.28178406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c540 -00030973 53.28181076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c550 -00030974 53.28181458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c550 -00030975 53.28184128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c560 -00030976 53.28184509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c560 -00030977 53.28186798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c570 -00030978 53.28187180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c570 -00030979 53.28189850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c580 -00030980 53.28190231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c580 -00030981 53.28192520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c590 -00030982 53.28192902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c590 -00030983 53.28195572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5a0 -00030984 53.28195953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5a0 -00030985 53.28198242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5b0 -00030986 53.28198624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5b0 -00030987 53.28201294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c0 -00030988 53.28201294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c0 -00030989 53.28203964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d0 -00030990 53.28204346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d0 -00030991 53.28206635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e0 -00030992 53.28207016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e0 -00030993 53.28209686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f0 -00030994 53.28210068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f0 -00030995 53.28212357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c600 -00030996 53.28212738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c600 -00030997 53.28215408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c610 -00030998 53.28215790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c610 -00030999 53.28218079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c620 -00031000 53.28218460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c620 -00031001 53.28221130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c630 -00031002 53.28221512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c630 -00031003 53.28224182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c640 -00031004 53.28224182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c640 -00031005 53.28226852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c650 -00031006 53.28227234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c650 -00031007 53.28229904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c660 -00031008 53.28229904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c660 -00031009 53.28232574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c670 -00031010 53.28232574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c670 -00031011 53.28235626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c680 -00031012 53.28235626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c680 -00031013 53.28237915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c690 -00031014 53.28238297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c690 -00031015 53.28240967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a0 -00031016 53.28241348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a0 -00031017 53.28244019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b0 -00031018 53.28244019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b0 -00031019 53.28246689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c0 -00031020 53.28247070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c0 -00031021 53.28249741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6d0 -00031022 53.28249741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6d0 -00031023 53.28252411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6e0 -00031024 53.28252792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6e0 -00031025 53.28255463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6f0 -00031026 53.28255463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6f0 -00031027 53.28258133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c700 -00031028 53.28258133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c700 -00031029 53.28260803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c710 -00031030 53.28261185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c710 -00031031 53.28263855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c720 -00031032 53.28263855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c720 -00031033 53.28266525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c730 -00031034 53.28266907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c730 -00031035 53.28269577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c740 -00031036 53.28269577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c740 -00031037 53.28272247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c750 -00031038 53.28272629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c750 -00031039 53.28275299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c760 -00031040 53.28275681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c760 -00031041 53.28277969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c770 -00031042 53.28278351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c770 -00031043 53.28281021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c780 -00031044 53.28281403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c780 -00031045 53.28283691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c790 -00031046 53.28284073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c790 -00031047 53.28286743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7a0 -00031048 53.28287125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7a0 -00031049 53.28289413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7b0 -00031050 53.28289413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7b0 -00031051 53.28292465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7c0 -00031052 53.28292465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7c0 -00031053 53.28295517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7d0 -00031054 53.28295517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7d0 -00031055 53.28297806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7e0 -00031056 53.28298187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7e0 -00031057 53.28300858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7f0 -00031058 53.28301239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7f0 -00031059 53.28303528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c800 -00031060 53.28303909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c800 -00031061 53.28306580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c810 -00031062 53.28306961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c810 -00031063 53.28309250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c820 -00031064 53.28309631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c820 -00031065 53.28312302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c830 -00031066 53.28312683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c830 -00031067 53.28315353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c840 -00031068 53.28315353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c840 -00031069 53.28318024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c850 -00031070 53.28318024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c850 -00031071 53.28321075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c860 -00031072 53.28321075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c860 -00031073 53.28323364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c870 -00031074 53.28323746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c870 -00031075 53.28326416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c880 -00031076 53.28326797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c880 -00031077 53.28329468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c890 -00031078 53.28329468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c890 -00031079 53.28332138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8a0 -00031080 53.28332520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8a0 -00031081 53.28335190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8b0 -00031082 53.28335190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8b0 -00031083 53.28337860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8c0 -00031084 53.28338242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8c0 -00031085 53.28340912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8d0 -00031086 53.28341293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8d0 -00031087 53.28343582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8e0 -00031088 53.28343964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8e0 -00031089 53.28346634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8f0 -00031090 53.28347015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8f0 -00031091 53.28349304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c900 -00031092 53.28349304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c900 -00031093 53.28352356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c910 -00031094 53.28352356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c910 -00031095 53.28355026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c920 -00031096 53.28355026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c920 -00031097 53.28357697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c930 -00031098 53.28358078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c930 -00031099 53.28360748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c940 -00031100 53.28361130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c940 -00031101 53.28363419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c950 -00031102 53.28363800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c950 -00031103 53.28366470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c960 -00031104 53.28366852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c960 -00031105 53.28369141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c970 -00031106 53.28369522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c970 -00031107 53.28372192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c980 -00031108 53.28372574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c980 -00031109 53.28374863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c990 -00031110 53.28375244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c990 -00031111 53.28377914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9a0 -00031112 53.28377914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9a0 -00031113 53.28380966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9b0 -00031114 53.28380966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9b0 -00031115 53.28383255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9c0 -00031116 53.28383636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9c0 -00031117 53.28386307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9d0 -00031118 53.28386688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9d0 -00031119 53.28388977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9e0 -00031120 53.28389359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9e0 -00031121 53.28392029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9f0 -00031122 53.28392410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9f0 -00031123 53.28394699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca00 -00031124 53.28395081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca00 -00031125 53.28397751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca10 -00031126 53.28398132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca10 -00031127 53.28400803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca20 -00031128 53.28400803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca20 -00031129 53.28403473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca30 -00031130 53.28403854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca30 -00031131 53.28406525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca40 -00031132 53.28406906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca40 -00031133 53.28409195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca50 -00031134 53.28409195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca50 -00031135 53.28412247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca60 -00031136 53.28412247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca60 -00031137 53.28414536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca70 -00031138 53.28414917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca70 -00031139 53.28417587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca80 -00031140 53.28417969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca80 -00031141 53.28420639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca90 -00031142 53.28420639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca90 -00031143 53.28423309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa0 -00031144 53.28423691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa0 -00031145 53.28426361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab0 -00031146 53.28426743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab0 -00031147 53.28429031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac0 -00031148 53.28429413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac0 -00031149 53.28432083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad0 -00031150 53.28432465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad0 -00031151 53.28434753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae0 -00031152 53.28435135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae0 -00031153 53.28437805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf0 -00031154 53.28437805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf0 -00031155 53.28440475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb00 -00031156 53.28440475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb00 -00031157 53.28443146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb10 -00031158 53.28443527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb10 -00031159 53.28446198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb20 -00031160 53.28446579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb20 -00031161 53.28448868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb30 -00031162 53.28449249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb30 -00031163 53.28451920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb40 -00031164 53.28452301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb40 -00031165 53.28454590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb50 -00031166 53.28454971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb50 -00031167 53.28457642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb60 -00031168 53.28458023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb60 -00031169 53.28460312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb70 -00031170 53.28460312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb70 -00031171 53.28463364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb80 -00031172 53.28463364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb80 -00031173 53.28466034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb90 -00031174 53.28466415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb90 -00031175 53.28468704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba0 -00031176 53.28469086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba0 -00031177 53.28471756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbb0 -00031178 53.28472137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbb0 -00031179 53.28474426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbc0 -00031180 53.28474808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbc0 -00031181 53.28477478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbd0 -00031182 53.28477859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbd0 -00031183 53.28480148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbe0 -00031184 53.28480530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbe0 -00031185 53.28483200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf0 -00031186 53.28483582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf0 -00031187 53.28486252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc00 -00031188 53.28486252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc00 -00031189 53.28488922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc10 -00031190 53.28488922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc10 -00031191 53.28491974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc20 -00031192 53.28491974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc20 -00031193 53.28494263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc30 -00031194 53.28494644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc30 -00031195 53.28497314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc40 -00031196 53.28497696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc40 -00031197 53.28499985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -00031198 53.28500366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -00031199 53.28503036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -00031200 53.28503418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -00031201 53.28506088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -00031202 53.28506088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -00031203 53.28508759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -00031204 53.28509140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -00031205 53.28511810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -00031206 53.28511810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -00031207 53.28514481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -00031208 53.28514481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -00031209 53.28517151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -00031210 53.28517532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -00031211 53.28519821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -00031212 53.28520203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -00031213 53.28522873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -00031214 53.28523254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -00031215 53.28525925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -00031216 53.28525925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -00031217 53.28528595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -00031218 53.28528976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -00031219 53.28531647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -00031220 53.28532028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -00031221 53.28534317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -00031222 53.28534698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -00031223 53.28537369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -00031224 53.28537369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -00031225 53.28539658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -00031226 53.28540039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -00031227 53.28542709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -00031228 53.28543091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -00031229 53.28545761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -00031230 53.28545761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -00031231 53.28548431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -00031232 53.28548813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -00031233 53.28551483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -00031234 53.28551865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -00031235 53.28554153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -00031236 53.28554535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -00031237 53.28557205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd90 -00031238 53.28557587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd90 -00031239 53.28559875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda0 -00031240 53.28560257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda0 -00031241 53.28562927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb0 -00031242 53.28563309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb0 -00031243 53.28565598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc0 -00031244 53.28565598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc0 -00031245 53.28568268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd0 -00031246 53.28568649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd0 -00031247 53.28571320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde0 -00031248 53.28571701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde0 -00031249 53.28573990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf0 -00031250 53.28574371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf0 -00031251 53.28577042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce00 -00031252 53.28577423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce00 -00031253 53.28579712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce10 -00031254 53.28580093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce10 -00031255 53.28582764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce20 -00031256 53.28583145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce20 -00031257 53.28585434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce30 -00031258 53.28585815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce30 -00031259 53.28588486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce40 -00031260 53.28588486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce40 -00031261 53.28591537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce50 -00031262 53.28591537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce50 -00031263 53.28593826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce60 -00031264 53.28594208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce60 -00031265 53.28596878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce70 -00031266 53.28597260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce70 -00031267 53.28599548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce80 -00031268 53.28599930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce80 -00031269 53.28602600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce90 -00031270 53.28602982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce90 -00031271 53.28605270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea0 -00031272 53.28605652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea0 -00031273 53.28608322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb0 -00031274 53.28608704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb0 -00031275 53.28611374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec0 -00031276 53.28611374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec0 -00031277 53.28614044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced0 -00031278 53.28614426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced0 -00031279 53.28617096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee0 -00031280 53.28617096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee0 -00031281 53.28619766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef0 -00031282 53.28619766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef0 -00031283 53.28622437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf00 -00031284 53.28622818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf00 -00031285 53.28625107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf10 -00031286 53.28625488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf10 -00031287 53.28628159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf20 -00031288 53.28628540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf20 -00031289 53.28631210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf30 -00031290 53.28631210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf30 -00031291 53.28633881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf40 -00031292 53.28634262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf40 -00031293 53.28636932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf50 -00031294 53.28636932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf50 -00031295 53.28639603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf60 -00031296 53.28639984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf60 -00031297 53.28642654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf70 -00031298 53.28642654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf70 -00031299 53.28645325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf80 -00031300 53.28645325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf80 -00031301 53.28647995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf90 -00031302 53.28648376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf90 -00031303 53.28651047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa0 -00031304 53.28651047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa0 -00031305 53.28653717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb0 -00031306 53.28654099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb0 -00031307 53.28656769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc0 -00031308 53.28657150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc0 -00031309 53.28659439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd0 -00031310 53.28659821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd0 -00031311 53.28662491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe0 -00031312 53.28662872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe0 -00031313 53.28665161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff0 -00031314 53.28665543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff0 -00031315 53.28668213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d000 -00031316 53.28668213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d000 -00031317 53.28670883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d010 -00031318 53.28670883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d010 -00031319 53.28673935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d020 -00031320 53.28673935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d020 -00031321 53.28676605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d030 -00031322 53.28676987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d030 -00031323 53.28679276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d040 -00031324 53.28679657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d040 -00031325 53.28682327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d050 -00031326 53.28682709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d050 -00031327 53.28684998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d060 -00031328 53.28685379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d060 -00031329 53.28688049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d070 -00031330 53.28688431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d070 -00031331 53.28690720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d080 -00031332 53.28691101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d080 -00031333 53.28693771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d090 -00031334 53.28693771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d090 -00031335 53.28696442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a0 -00031336 53.28696823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a0 -00031337 53.28699112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b0 -00031338 53.28699493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b0 -00031339 53.28702164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c0 -00031340 53.28702545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c0 -00031341 53.28704834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d0 -00031342 53.28705215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d0 -00031343 53.28707886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e0 -00031344 53.28708267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e0 -00031345 53.28710556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f0 -00031346 53.28710938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f0 -00031347 53.28713608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d100 -00031348 53.28713989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d100 -00031349 53.28716660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d110 -00031350 53.28716660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d110 -00031351 53.28719330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d120 -00031352 53.28719330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d120 -00031353 53.28722000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d130 -00031354 53.28722382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d130 -00031355 53.28724670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d140 -00031356 53.28725052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d140 -00031357 53.28727722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d150 -00031358 53.28728104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d150 -00031359 53.28730392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d160 -00031360 53.28730774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d160 -00031361 53.28733444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d170 -00031362 53.28733826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d170 -00031363 53.28736496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d180 -00031364 53.28736496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d180 -00031365 53.28739166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d190 -00031366 53.28739548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d190 -00031367 53.28742218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a0 -00031368 53.28742218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a0 -00031369 53.28744888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b0 -00031370 53.28744888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b0 -00031371 53.28747940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c0 -00031372 53.28747940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c0 -00031373 53.28750229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d0 -00031374 53.28750610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d0 -00031375 53.28753281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e0 -00031376 53.28753662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e0 -00031377 53.28756332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f0 -00031378 53.28756332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f0 -00031379 53.28759003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d200 -00031380 53.28759384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d200 -00031381 53.28762054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d210 -00031382 53.28762054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d210 -00031383 53.28764725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d220 -00031384 53.28765106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d220 -00031385 53.28767776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d230 -00031386 53.28768158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d230 -00031387 53.28770447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d240 -00031388 53.28770447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d240 -00031389 53.28773499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d250 -00031390 53.28773499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d250 -00031391 53.28776169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d260 -00031392 53.28776169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d260 -00031393 53.28778839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d270 -00031394 53.28779221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d270 -00031395 53.28781891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d280 -00031396 53.28781891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d280 -00031397 53.28784561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d290 -00031398 53.28784943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d290 -00031399 53.28787613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a0 -00031400 53.28787994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a0 -00031401 53.28790283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b0 -00031402 53.28790665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b0 -00031403 53.28793335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2c0 -00031404 53.28793716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2c0 -00031405 53.28796005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2d0 -00031406 53.28796387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2d0 -00031407 53.28799057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2e0 -00031408 53.28799057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2e0 -00031409 53.28802109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2f0 -00031410 53.28802109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2f0 -00031411 53.28804398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d300 -00031412 53.28804779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d300 -00031413 53.28807449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d310 -00031414 53.28807831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d310 -00031415 53.28810120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d320 -00031416 53.28810501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d320 -00031417 53.28813171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d330 -00031418 53.28813553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d330 -00031419 53.28815842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d340 -00031420 53.28816223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d340 -00031421 53.28818893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d350 -00031422 53.28819275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d350 -00031423 53.28821945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d360 -00031424 53.28821945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d360 -00031425 53.28824615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d370 -00031426 53.28824615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d370 -00031427 53.28827286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d380 -00031428 53.28827667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d380 -00031429 53.28829956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d390 -00031430 53.28830338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d390 -00031431 53.28833008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a0 -00031432 53.28833389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a0 -00031433 53.28835678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b0 -00031434 53.28836060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b0 -00031435 53.28838730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c0 -00031436 53.28839111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c0 -00031437 53.28841782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d0 -00031438 53.28841782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d0 -00031439 53.28844452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e0 -00031440 53.28844452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e0 -00031441 53.28847504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f0 -00031442 53.28847504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f0 -00031443 53.28849792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d400 -00031444 53.28850174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d400 -00031445 53.28852844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d410 -00031446 53.28853226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d410 -00031447 53.28855515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d420 -00031448 53.28855896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d420 -00031449 53.28858566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d430 -00031450 53.28858948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d430 -00031451 53.28861618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d440 -00031452 53.28861618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d440 -00031453 53.28864288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d450 -00031454 53.28864670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d450 -00031455 53.28867340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d460 -00031456 53.28867340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d460 -00031457 53.28870010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d470 -00031458 53.28870392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d470 -00031459 53.28873062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d480 -00031460 53.28873062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d480 -00031461 53.28875351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d490 -00031462 53.28875732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d490 -00031463 53.28878403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4a0 -00031464 53.28878784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4a0 -00031465 53.28881454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4b0 -00031466 53.28881454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4b0 -00031467 53.28884125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4c0 -00031468 53.28884506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4c0 -00031469 53.28887177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4d0 -00031470 53.28887177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4d0 -00031471 53.28889847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4e0 -00031472 53.28890228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4e0 -00031473 53.28892899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4f0 -00031474 53.28893280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4f0 -00031475 53.28895569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d500 -00031476 53.28895950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d500 -00031477 53.28898621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d510 -00031478 53.28898621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d510 -00031479 53.28901291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d520 -00031480 53.28901291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d520 -00031481 53.28903961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d530 -00031482 53.28904343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d530 -00031483 53.28907013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d540 -00031484 53.28907013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d540 -00031485 53.28909683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d550 -00031486 53.28910065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d550 -00031487 53.28912735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d560 -00031488 53.28913116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d560 -00031489 53.28915405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d570 -00031490 53.28915787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d570 -00031491 53.28918457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d580 -00031492 53.28918839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d580 -00031493 53.28921127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d590 -00031494 53.28921509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d590 -00031495 53.28924179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5a0 -00031496 53.28924561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5a0 -00031497 53.28926849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5b0 -00031498 53.28927231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5b0 -00031499 53.28929901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5c0 -00031500 53.28930283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5c0 -00031501 53.28932953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5d0 -00031502 53.28932953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5d0 -00031503 53.28935623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5e0 -00031504 53.28936005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5e0 -00031505 53.28938675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5f0 -00031506 53.28939056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5f0 -00031507 53.28941345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d600 -00031508 53.28941345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d600 -00031509 53.28944016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d610 -00031510 53.28944397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d610 -00031511 53.28947067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d620 -00031512 53.28947067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d620 -00031513 53.28949738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d630 -00031514 53.28950119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d630 -00031515 53.28952789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d640 -00031516 53.28952789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d640 -00031517 53.28955460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d650 -00031518 53.28955841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d650 -00031519 53.28958511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d660 -00031520 53.28958893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d660 -00031521 53.28961182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d670 -00031522 53.28961563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d670 -00031523 53.28964233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d680 -00031524 53.28964615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d680 -00031525 53.28966904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d690 -00031526 53.28967285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d690 -00031527 53.28969955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6a0 -00031528 53.28970337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6a0 -00031529 53.28972626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6b0 -00031530 53.28972626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6b0 -00031531 53.28975296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6c0 -00031532 53.28975677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6c0 -00031533 53.28978348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6d0 -00031534 53.28978729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6d0 -00031535 53.28981018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6e0 -00031536 53.28981400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6e0 -00031537 53.28984070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6f0 -00031538 53.28984451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6f0 -00031539 53.28987122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d700 -00031540 53.28987503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d700 -00031541 53.28990173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d710 -00031542 53.28990555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d710 -00031543 53.28992844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d720 -00031544 53.28993225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d720 -00031545 53.28995895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d730 -00031546 53.28995895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d730 -00031547 53.28998566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d740 -00031548 53.28998566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d740 -00031549 53.29001236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d750 -00031550 53.29001617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d750 -00031551 53.29004288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d760 -00031552 53.29004669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d760 -00031553 53.29006958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d770 -00031554 53.29007339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d770 -00031555 53.29010010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d780 -00031556 53.29010391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d780 -00031557 53.29012680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d790 -00031558 53.29013062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d790 -00031559 53.29015732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7a0 -00031560 53.29016113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7a0 -00031561 53.29018402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7b0 -00031562 53.29018784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7b0 -00031563 53.29021454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7c0 -00031564 53.29021835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7c0 -00031565 53.29024506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7d0 -00031566 53.29024506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7d0 -00031567 53.29027176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7e0 -00031568 53.29027557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7e0 -00031569 53.29030228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7f0 -00031570 53.29030228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7f0 -00031571 53.29032898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d800 -00031572 53.29032898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d800 -00031573 53.29035568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d810 -00031574 53.29035950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d810 -00031575 53.29038239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d820 -00031576 53.29038620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d820 -00031577 53.29041290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d830 -00031578 53.29041672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d830 -00031579 53.29044342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d840 -00031580 53.29044342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d840 -00031581 53.29047012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d850 -00031582 53.29047394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d850 -00031583 53.29050064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d860 -00031584 53.29050064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d860 -00031585 53.29052734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d870 -00031586 53.29053116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d870 -00031587 53.29055786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d880 -00031588 53.29056168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d880 -00031589 53.29058456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d890 -00031590 53.29058456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d890 -00031591 53.29061508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8a0 -00031592 53.29061508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8a0 -00031593 53.29064178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8b0 -00031594 53.29064178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8b0 -00031595 53.29066849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c0 -00031596 53.29067230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c0 -00031597 53.29069901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d0 -00031598 53.29069901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d0 -00031599 53.29072571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e0 -00031600 53.29072952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e0 -00031601 53.29075623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f0 -00031602 53.29076004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f0 -00031603 53.29078293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d900 -00031604 53.29078674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d900 -00031605 53.29081345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d910 -00031606 53.29081726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d910 -00031607 53.29084015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d920 -00031608 53.29084396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d920 -00031609 53.29087067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d930 -00031610 53.29087448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d930 -00031611 53.29089737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d940 -00031612 53.29089737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d940 -00031613 53.29092407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d950 -00031614 53.29092789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d950 -00031615 53.29095459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d960 -00031616 53.29095840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d960 -00031617 53.29098129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d970 -00031618 53.29098511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d970 -00031619 53.29101181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d980 -00031620 53.29101563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d980 -00031621 53.29103851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d990 -00031622 53.29104233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d990 -00031623 53.29106903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a0 -00031624 53.29107285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a0 -00031625 53.29109573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b0 -00031626 53.29109955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b0 -00031627 53.29112625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c0 -00031628 53.29113007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c0 -00031629 53.29115677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d0 -00031630 53.29115677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d0 -00031631 53.29118347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -00031632 53.29118347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -00031633 53.29121399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -00031634 53.29121399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -00031635 53.29123688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -00031636 53.29124069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -00031637 53.29126740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -00031638 53.29127121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -00031639 53.29129410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -00031640 53.29129791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -00031641 53.29132462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -00031642 53.29132843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -00031643 53.29135513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -00031644 53.29135513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -00031645 53.29138184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -00031646 53.29138565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -00031647 53.29141235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -00031648 53.29141617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -00031649 53.29143906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -00031650 53.29144287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -00031651 53.29146957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -00031652 53.29147339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -00031653 53.29149628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da90 -00031654 53.29149628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da90 -00031655 53.29152679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa0 -00031656 53.29152679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa0 -00031657 53.29155350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab0 -00031658 53.29155350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab0 -00031659 53.29158020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac0 -00031660 53.29158401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac0 -00031661 53.29161072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad0 -00031662 53.29161453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad0 -00031663 53.29163742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae0 -00031664 53.29164124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae0 -00031665 53.29166794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf0 -00031666 53.29167175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf0 -00031667 53.29169464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db00 -00031668 53.29169846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db00 -00031669 53.29172516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db10 -00031670 53.29172516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db10 -00031671 53.29175186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db20 -00031672 53.29175568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db20 -00031673 53.29178238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db30 -00031674 53.29178619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db30 -00031675 53.29181290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db40 -00031676 53.29181290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db40 -00031677 53.29183960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db50 -00031678 53.29184341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db50 -00031679 53.29187012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db60 -00031680 53.29187012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db60 -00031681 53.29189682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db70 -00031682 53.29190063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db70 -00031683 53.29192734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db80 -00031684 53.29193115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db80 -00031685 53.29195404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db90 -00031686 53.29195404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db90 -00031687 53.29198074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba0 -00031688 53.29198456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba0 -00031689 53.29201126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb0 -00031690 53.29201126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb0 -00031691 53.29203796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc0 -00031692 53.29204178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc0 -00031693 53.29206848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd0 -00031694 53.29207230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd0 -00031695 53.29209518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -00031696 53.29209900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -00031697 53.29212570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -00031698 53.29212952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -00031699 53.29215240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -00031700 53.29215622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -00031701 53.29218292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -00031702 53.29218674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -00031703 53.29220963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -00031704 53.29220963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -00031705 53.29223633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -00031706 53.29224014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -00031707 53.29226685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -00031708 53.29227066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -00031709 53.29229355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -00031710 53.29229736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -00031711 53.29232407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -00031712 53.29232788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -00031713 53.29235077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -00031714 53.29235458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -00031715 53.29238129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc80 -00031716 53.29238510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc80 -00031717 53.29240799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc90 -00031718 53.29241180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc90 -00031719 53.29243851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca0 -00031720 53.29244232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca0 -00031721 53.29246902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb0 -00031722 53.29246902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb0 -00031723 53.29249191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc0 -00031724 53.29249573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc0 -00031725 53.29252243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd0 -00031726 53.29252625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd0 -00031727 53.29254913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dce0 -00031728 53.29255295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dce0 -00031729 53.29257965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcf0 -00031730 53.29258347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcf0 -00031731 53.29260635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd00 -00031732 53.29261017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd00 -00031733 53.29263687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd10 -00031734 53.29264069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd10 -00031735 53.29266739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd20 -00031736 53.29266739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd20 -00031737 53.29269409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd30 -00031738 53.29269791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd30 -00031739 53.29272461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd40 -00031740 53.29272461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd40 -00031741 53.29275131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd50 -00031742 53.29275131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd50 -00031743 53.29278183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd60 -00031744 53.29278183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd60 -00031745 53.29280472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd70 -00031746 53.29280853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd70 -00031747 53.29283524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd80 -00031748 53.29283905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd80 -00031749 53.29286575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd90 -00031750 53.29286575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd90 -00031751 53.29289246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dda0 -00031752 53.29289627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dda0 -00031753 53.29292297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddb0 -00031754 53.29292297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddb0 -00031755 53.29294968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddc0 -00031756 53.29295349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddc0 -00031757 53.29298019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddd0 -00031758 53.29298401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddd0 -00031759 53.29300690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dde0 -00031760 53.29301071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dde0 -00031761 53.29303741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddf0 -00031762 53.29303741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddf0 -00031763 53.29306412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de00 -00031764 53.29306412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de00 -00031765 53.29309082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de10 -00031766 53.29309464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de10 -00031767 53.29312134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de20 -00031768 53.29312134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de20 -00031769 53.29314804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de30 -00031770 53.29315186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de30 -00031771 53.29317856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de40 -00031772 53.29318237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de40 -00031773 53.29320526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de50 -00031774 53.29320908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de50 -00031775 53.29323578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de60 -00031776 53.29323578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de60 -00031777 53.29326248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de70 -00031778 53.29326248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de70 -00031779 53.29329300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de80 -00031780 53.29329300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de80 -00031781 53.29331970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de90 -00031782 53.29331970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de90 -00031783 53.29334641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea0 -00031784 53.29335022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea0 -00031785 53.29337692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb0 -00031786 53.29338074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb0 -00031787 53.29340363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec0 -00031788 53.29340744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec0 -00031789 53.29343414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded0 -00031790 53.29343796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded0 -00031791 53.29346085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee0 -00031792 53.29346466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee0 -00031793 53.29349136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def0 -00031794 53.29349518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def0 -00031795 53.29352188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df00 -00031796 53.29352188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df00 -00031797 53.29354858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df10 -00031798 53.29354858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df10 -00031799 53.29357910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df20 -00031800 53.29357910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df20 -00031801 53.29360580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df30 -00031802 53.29360580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df30 -00031803 53.29363251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df40 -00031804 53.29363632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df40 -00031805 53.29365921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df50 -00031806 53.29366302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df50 -00031807 53.29368973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df60 -00031808 53.29369354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df60 -00031809 53.29372025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df70 -00031810 53.29372025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df70 -00031811 53.29374695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df80 -00031812 53.29375076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df80 -00031813 53.29377747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df90 -00031814 53.29377747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df90 -00031815 53.29380417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa0 -00031816 53.29380798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa0 -00031817 53.29383469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb0 -00031818 53.29383469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb0 -00031819 53.29385757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc0 -00031820 53.29386139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc0 -00031821 53.29388809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd0 -00031822 53.29389191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd0 -00031823 53.29391861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe0 -00031824 53.29391861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe0 -00031825 53.29394531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff0 -00031826 53.29394913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff0 -00031827 53.29397583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e000 -00031828 53.29397583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e000 -00031829 53.29400253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e010 -00031830 53.29400635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e010 -00031831 53.29403305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e020 -00031832 53.29403687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e020 -00031833 53.29405975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e030 -00031834 53.29406357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e030 -00031835 53.29409027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e040 -00031836 53.29409409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e040 -00031837 53.29411697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e050 -00031838 53.29411697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e050 -00031839 53.29414749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e060 -00031840 53.29414749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e060 -00031841 53.29417419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e070 -00031842 53.29417419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e070 -00031843 53.29420471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e080 -00031844 53.29420471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e080 -00031845 53.29423141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e090 -00031846 53.29423523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e090 -00031847 53.29425812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a0 -00031848 53.29426193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a0 -00031849 53.29428864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b0 -00031850 53.29429245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b0 -00031851 53.29431534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c0 -00031852 53.29431915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c0 -00031853 53.29434586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d0 -00031854 53.29434967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d0 -00031855 53.29437256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e0 -00031856 53.29437637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e0 -00031857 53.29440308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f0 -00031858 53.29440689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f0 -00031859 53.29443359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e100 -00031860 53.29443359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e100 -00031861 53.29445648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e110 -00031862 53.29446030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e110 -00031863 53.29448700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e120 -00031864 53.29449081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e120 -00031865 53.29451370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e130 -00031866 53.29451752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e130 -00031867 53.29454422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e140 -00031868 53.29454803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e140 -00031869 53.29457092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e150 -00031870 53.29457474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e150 -00031871 53.29460144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e160 -00031872 53.29460526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e160 -00031873 53.29463196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e170 -00031874 53.29463196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e170 -00031875 53.29465866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e180 -00031876 53.29465866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e180 -00031877 53.29468918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e190 -00031878 53.29468918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e190 -00031879 53.29471207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1a0 -00031880 53.29471588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1a0 -00031881 53.29474258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1b0 -00031882 53.29474640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1b0 -00031883 53.29477310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1c0 -00031884 53.29477310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1c0 -00031885 53.29479980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1d0 -00031886 53.29480362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1d0 -00031887 53.29483032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1e0 -00031888 53.29483032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1e0 -00031889 53.29485703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1f0 -00031890 53.29486084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1f0 -00031891 53.29488754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e200 -00031892 53.29489136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e200 -00031893 53.29491425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e210 -00031894 53.29491806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e210 -00031895 53.29494476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e220 -00031896 53.29494476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e220 -00031897 53.29497147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e230 -00031898 53.29497147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e230 -00031899 53.29499817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e240 -00031900 53.29500198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e240 -00031901 53.29502869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e250 -00031902 53.29502869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e250 -00031903 53.29505539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e260 -00031904 53.29505920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e260 -00031905 53.29508591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e270 -00031906 53.29508972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e270 -00031907 53.29511261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e280 -00031908 53.29511642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e280 -00031909 53.29514313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e290 -00031910 53.29514694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e290 -00031911 53.29516983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a0 -00031912 53.29516983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a0 -00031913 53.29520035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b0 -00031914 53.29520035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b0 -00031915 53.29522705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c0 -00031916 53.29522705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c0 -00031917 53.29525375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d0 -00031918 53.29525757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d0 -00031919 53.29528427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e0 -00031920 53.29528809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e0 -00031921 53.29531097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f0 -00031922 53.29531479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f0 -00031923 53.29534149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e300 -00031924 53.29534531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e300 -00031925 53.29536819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e310 -00031926 53.29536819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e310 -00031927 53.29539871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e320 -00031928 53.29539871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e320 -00031929 53.29542542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e330 -00031930 53.29542542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e330 -00031931 53.29545212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e340 -00031932 53.29545593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e340 -00031933 53.29548264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e350 -00031934 53.29548645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e350 -00031935 53.29550934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e360 -00031936 53.29551315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e360 -00031937 53.29553986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e370 -00031938 53.29554367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e370 -00031939 53.29556656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e380 -00031940 53.29557037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e380 -00031941 53.29559708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e390 -00031942 53.29560089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e390 -00031943 53.29562378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3a0 -00031944 53.29562759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3a0 -00031945 53.29565430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3b0 -00031946 53.29565811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3b0 -00031947 53.29568481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3c0 -00031948 53.29568481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3c0 -00031949 53.29571152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3d0 -00031950 53.29571152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3d0 -00031951 53.29574203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3e0 -00031952 53.29574203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3e0 -00031953 53.29576492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3f0 -00031954 53.29576874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3f0 -00031955 53.29579544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e400 -00031956 53.29579926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e400 -00031957 53.29582214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e410 -00031958 53.29582596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e410 -00031959 53.29585266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e420 -00031960 53.29585648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e420 -00031961 53.29588318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e430 -00031962 53.29588318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e430 -00031963 53.29590988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e440 -00031964 53.29591370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e440 -00031965 53.29594040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e450 -00031966 53.29594421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e450 -00031967 53.29596710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e460 -00031968 53.29597092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e460 -00031969 53.29599762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e470 -00031970 53.29599762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e470 -00031971 53.29602051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e480 -00031972 53.29602432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e480 -00031973 53.29605103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e490 -00031974 53.29605484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e490 -00031975 53.29608154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4a0 -00031976 53.29608154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4a0 -00031977 53.29610825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4b0 -00031978 53.29611206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4b0 -00031979 53.29613876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4c0 -00031980 53.29614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4c0 -00031981 53.29616547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4d0 -00031982 53.29616928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4d0 -00031983 53.29619598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e0 -00031984 53.29619980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e0 -00031985 53.29622269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f0 -00031986 53.29622650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f0 -00031987 53.29625320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e500 -00031988 53.29625320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e500 -00031989 53.29627991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e510 -00031990 53.29627991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e510 -00031991 53.29630661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e520 -00031992 53.29631042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e520 -00031993 53.29633713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e530 -00031994 53.29634094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e530 -00031995 53.29636383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e540 -00031996 53.29636765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e540 -00031997 53.29639435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e550 -00031998 53.29639816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e550 -00031999 53.29642105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e560 -00032000 53.29642487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e560 -00032001 53.29645157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e570 -00032002 53.29645538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e570 -00032003 53.29647827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e580 -00032004 53.29648209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e580 -00032005 53.29650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e590 -00032006 53.29650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e590 -00032007 53.29653931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5a0 -00032008 53.29653931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5a0 -00032009 53.29656219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5b0 -00032010 53.29656601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5b0 -00032011 53.29659271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5c0 -00032012 53.29659653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5c0 -00032013 53.29661942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5d0 -00032014 53.29662323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5d0 -00032015 53.29664993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5e0 -00032016 53.29665375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5e0 -00032017 53.29667664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5f0 -00032018 53.29668045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5f0 -00032019 53.29670715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e600 -00032020 53.29671097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e600 -00032021 53.29673767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e610 -00032022 53.29673767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e610 -00032023 53.29676437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e620 -00032024 53.29676437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e620 -00032025 53.29679489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e630 -00032026 53.29679489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e630 -00032027 53.29681778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e640 -00032028 53.29682159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e640 -00032029 53.29684830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e650 -00032030 53.29685211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e650 -00032031 53.29687500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e660 -00032032 53.29687881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e660 -00032033 53.29690552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e670 -00032034 53.29690933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e670 -00032035 53.29693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e680 -00032036 53.29693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e680 -00032037 53.29696274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e690 -00032038 53.29696655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e690 -00032039 53.29699326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6a0 -00032040 53.29699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6a0 -00032041 53.29701996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6b0 -00032042 53.29701996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6b0 -00032043 53.29705048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6c0 -00032044 53.29705048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6c0 -00032045 53.29707336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6d0 -00032046 53.29707718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6d0 -00032047 53.29710388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6e0 -00032048 53.29710770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6e0 -00032049 53.29713440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f0 -00032050 53.29713440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f0 -00032051 53.29716110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e700 -00032052 53.29716492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e700 -00032053 53.29719162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e710 -00032054 53.29719543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e710 -00032055 53.29721832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e720 -00032056 53.29722214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e720 -00032057 53.29724884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e730 -00032058 53.29724884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e730 -00032059 53.29727173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e740 -00032060 53.29727554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e740 -00032061 53.29730225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e750 -00032062 53.29730606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e750 -00032063 53.29733276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e760 -00032064 53.29733276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e760 -00032065 53.29735947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e770 -00032066 53.29736328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e770 -00032067 53.29738998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e780 -00032068 53.29739380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e780 -00032069 53.29741669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e790 -00032070 53.29742050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e790 -00032071 53.29744720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7a0 -00032072 53.29745102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7a0 -00032073 53.29747391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7b0 -00032074 53.29747772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7b0 -00032075 53.29750443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c0 -00032076 53.29750443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c0 -00032077 53.29753113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d0 -00032078 53.29753113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d0 -00032079 53.29755783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e0 -00032080 53.29756165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e0 -00032081 53.29758835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f0 -00032082 53.29759216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f0 -00032083 53.29761505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e800 -00032084 53.29761887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e800 -00032085 53.29764557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e810 -00032086 53.29764938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e810 -00032087 53.29767227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e820 -00032088 53.29767609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e820 -00032089 53.29770279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e830 -00032090 53.29770660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e830 -00032091 53.29772949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e840 -00032092 53.29773331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e840 -00032093 53.29776001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e850 -00032094 53.29776001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e850 -00032095 53.29779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e860 -00032096 53.29779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e860 -00032097 53.29781342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e870 -00032098 53.29781723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e870 -00032099 53.29784393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e880 -00032100 53.29784775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e880 -00032101 53.29787064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e890 -00032102 53.29787445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e890 -00032103 53.29790115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a0 -00032104 53.29790497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a0 -00032105 53.29792786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b0 -00032106 53.29793167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b0 -00032107 53.29795837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c0 -00032108 53.29796219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c0 -00032109 53.29798889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d0 -00032110 53.29798889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d0 -00032111 53.29801559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e0 -00032112 53.29801941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e0 -00032113 53.29804611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f0 -00032114 53.29804611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f0 -00032115 53.29807281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e900 -00032116 53.29807281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e900 -00032117 53.29810333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e910 -00032118 53.29810333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e910 -00032119 53.29812622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e920 -00032120 53.29813004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e920 -00032121 53.29815674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e930 -00032122 53.29816055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e930 -00032123 53.29818726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e940 -00032124 53.29818726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e940 -00032125 53.29821396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e950 -00032126 53.29821777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e950 -00032127 53.29824448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e960 -00032128 53.29824829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e960 -00032129 53.29827118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e970 -00032130 53.29827499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e970 -00032131 53.29830170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e980 -00032132 53.29830551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e980 -00032133 53.29832840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e990 -00032134 53.29832840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e990 -00032135 53.29835510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a0 -00032136 53.29835892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a0 -00032137 53.29838562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b0 -00032138 53.29838562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b0 -00032139 53.29841232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c0 -00032140 53.29841614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c0 -00032141 53.29844284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d0 -00032142 53.29844666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d0 -00032143 53.29846954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e0 -00032144 53.29847336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e0 -00032145 53.29850006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f0 -00032146 53.29850388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f0 -00032147 53.29852676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea00 -00032148 53.29853058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea00 -00032149 53.29855728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea10 -00032150 53.29856110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea10 -00032151 53.29858398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea20 -00032152 53.29858780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea20 -00032153 53.29861450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -00032154 53.29861450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -00032155 53.29864120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -00032156 53.29864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -00032157 53.29866791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -00032158 53.29867172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -00032159 53.29869843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -00032160 53.29870224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -00032161 53.29872513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -00032162 53.29872894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -00032163 53.29875565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -00032164 53.29875946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -00032165 53.29878235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -00032166 53.29878616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -00032167 53.29881287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -00032168 53.29881668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -00032169 53.29884338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -00032170 53.29884338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -00032171 53.29887009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -00032172 53.29887390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -00032173 53.29890060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -00032174 53.29890060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -00032175 53.29892731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eae0 -00032176 53.29893112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eae0 -00032177 53.29895782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaf0 -00032178 53.29896164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaf0 -00032179 53.29898453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb00 -00032180 53.29898834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb00 -00032181 53.29901505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb10 -00032182 53.29901505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb10 -00032183 53.29904175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb20 -00032184 53.29904175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb20 -00032185 53.29907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb30 -00032186 53.29907608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb30 -00032187 53.29911041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb40 -00032188 53.29911423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb40 -00032189 53.29914093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb50 -00032190 53.29914093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb50 -00032191 53.29916763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb60 -00032192 53.29917145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb60 -00032193 53.29919815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb70 -00032194 53.29920197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb70 -00032195 53.29924011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb80 -00032196 53.29924393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb80 -00032197 53.29927826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb90 -00032198 53.29928207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb90 -00032199 53.29931641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba0 -00032200 53.29932022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba0 -00032201 53.29934311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb0 -00032202 53.29934692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb0 -00032203 53.29937363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc0 -00032204 53.29937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc0 -00032205 53.29940033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd0 -00032206 53.29940414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd0 -00032207 53.29943085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe0 -00032208 53.29943466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe0 -00032209 53.29945755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf0 -00032210 53.29945755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf0 -00032211 53.29948807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec00 -00032212 53.29948807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec00 -00032213 53.29951477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec10 -00032214 53.29951859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec10 -00032215 53.29954147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec20 -00032216 53.29954529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec20 -00032217 53.29957199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec30 -00032218 53.29957581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec30 -00032219 53.29959869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec40 -00032220 53.29960251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec40 -00032221 53.29962921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec50 -00032222 53.29963303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec50 -00032223 53.29965591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec60 -00032224 53.29965973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec60 -00032225 53.29968643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec70 -00032226 53.29969025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec70 -00032227 53.29971695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec80 -00032228 53.29971695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec80 -00032229 53.29974365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec90 -00032230 53.29974365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec90 -00032231 53.29977036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca0 -00032232 53.29977417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca0 -00032233 53.29979706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb0 -00032234 53.29980087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb0 -00032235 53.29983139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecc0 -00032236 53.29983139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecc0 -00032237 53.29985428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd0 -00032238 53.29985809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd0 -00032239 53.29988480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ece0 -00032240 53.29988861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ece0 -00032241 53.29991531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecf0 -00032242 53.29991531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecf0 -00032243 53.29994202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed00 -00032244 53.29994583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed00 -00032245 53.29997253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed10 -00032246 53.29997253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed10 -00032247 53.29999924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed20 -00032248 53.30000305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed20 -00032249 53.30002975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed30 -00032250 53.30003357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed30 -00032251 53.30005646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed40 -00032252 53.30005646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed40 -00032253 53.30008316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed50 -00032254 53.30008698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed50 -00032255 53.30011368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed60 -00032256 53.30011368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed60 -00032257 53.30014038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed70 -00032258 53.30014420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed70 -00032259 53.30017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed80 -00032260 53.30017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed80 -00032261 53.30019760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed90 -00032262 53.30020142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed90 -00032263 53.30022812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda0 -00032264 53.30023193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda0 -00032265 53.30025482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb0 -00032266 53.30025482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb0 -00032267 53.30028534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc0 -00032268 53.30028534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc0 -00032269 53.30031204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd0 -00032270 53.30031204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd0 -00032271 53.30033875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede0 -00032272 53.30034256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede0 -00032273 53.30036926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf0 -00032274 53.30037308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf0 -00032275 53.30039597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee00 -00032276 53.30039978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee00 -00032277 53.30042648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee10 -00032278 53.30043030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee10 -00032279 53.30045319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee20 -00032280 53.30045700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee20 -00032281 53.30048370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee30 -00032282 53.30048752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee30 -00032283 53.30051041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee40 -00032284 53.30051422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee40 -00032285 53.30054092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee50 -00032286 53.30054092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee50 -00032287 53.30057144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee60 -00032288 53.30057144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee60 -00032289 53.30059433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee70 -00032290 53.30059814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee70 -00032291 53.30062485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee80 -00032292 53.30062866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee80 -00032293 53.30065155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee90 -00032294 53.30065536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee90 -00032295 53.30068207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eea0 -00032296 53.30068588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eea0 -00032297 53.30070877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eeb0 -00032298 53.30071259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eeb0 -00032299 53.30073929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eec0 -00032300 53.30074310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eec0 -00032301 53.30076981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eed0 -00032302 53.30076981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eed0 -00032303 53.30079651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eee0 -00032304 53.30080032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eee0 -00032305 53.30082703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eef0 -00032306 53.30082703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eef0 -00032307 53.30085373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef00 -00032308 53.30085754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef00 -00032309 53.30088425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef10 -00032310 53.30088806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef10 -00032311 53.30091095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef20 -00032312 53.30091476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef20 -00032313 53.30094147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef30 -00032314 53.30094528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef30 -00032315 53.30096817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef40 -00032316 53.30097198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef40 -00032317 53.30099869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef50 -00032318 53.30099869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef50 -00032319 53.30102539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef60 -00032320 53.30102539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef60 -00032321 53.30105591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef70 -00032322 53.30105591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef70 -00032323 53.30108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef80 -00032324 53.30108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef80 -00032325 53.30111313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef90 -00032326 53.30111313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef90 -00032327 53.30114365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efa0 -00032328 53.30114365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efa0 -00032329 53.30117035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efb0 -00032330 53.30117035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efb0 -00032331 53.30120087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efc0 -00032332 53.30120468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efc0 -00032333 53.30122757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efd0 -00032334 53.30122757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efd0 -00032335 53.30125809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efe0 -00032336 53.30125809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efe0 -00032337 53.30128479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eff0 -00032338 53.30128479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eff0 -00032339 53.30131149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f000 -00032340 53.30131531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f000 -00032341 53.30134201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f010 -00032342 53.30134583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f010 -00032343 53.30136871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f020 -00032344 53.30137253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f020 -00032345 53.30139923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f030 -00032346 53.30140305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f030 -00032347 53.30142593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f040 -00032348 53.30142975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f040 -00032349 53.30145645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f050 -00032350 53.30146027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f050 -00032351 53.30148315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f060 -00032352 53.30148697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f060 -00032353 53.30151367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f070 -00032354 53.30151749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f070 -00032355 53.30154419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f080 -00032356 53.30154419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f080 -00032357 53.30157089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f090 -00032358 53.30157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f090 -00032359 53.30160141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0a0 -00032360 53.30160141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0a0 -00032361 53.30162811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0b0 -00032362 53.30163193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0b0 -00032363 53.30165863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0c0 -00032364 53.30165863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0c0 -00032365 53.30168152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0d0 -00032366 53.30168533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0d0 -00032367 53.30171585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0e0 -00032368 53.30171585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0e0 -00032369 53.30174255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0f0 -00032370 53.30174255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0f0 -00032371 53.30176926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f100 -00032372 53.30177307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f100 -00032373 53.30179977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f110 -00032374 53.30179977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f110 -00032375 53.30182648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f120 -00032376 53.30183029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f120 -00032377 53.30185699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f130 -00032378 53.30186081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f130 -00032379 53.30188370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f140 -00032380 53.30188751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f140 -00032381 53.30191422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f150 -00032382 53.30191803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f150 -00032383 53.30194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f160 -00032384 53.30194473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f160 -00032385 53.30197144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f170 -00032386 53.30197525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f170 -00032387 53.30199814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f180 -00032388 53.30199814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f180 -00032389 53.30202866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f190 -00032390 53.30202866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f190 -00032391 53.30205536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1a0 -00032392 53.30205917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1a0 -00032393 53.30208206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1b0 -00032394 53.30208588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1b0 -00032395 53.30211258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1c0 -00032396 53.30211639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1c0 -00032397 53.30213928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1d0 -00032398 53.30214310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1d0 -00032399 53.30216980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1e0 -00032400 53.30217361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1e0 -00032401 53.30219650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1f0 -00032402 53.30220032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1f0 -00032403 53.30222702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f200 -00032404 53.30223083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f200 -00032405 53.30225754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f210 -00032406 53.30225754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f210 -00032407 53.30228043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f220 -00032408 53.30228424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f220 -00032409 53.30231094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f230 -00032410 53.30231476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f230 -00032411 53.30233765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f240 -00032412 53.30234146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f240 -00032413 53.30236816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f250 -00032414 53.30237198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f250 -00032415 53.30239868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f260 -00032416 53.30239868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f260 -00032417 53.30242538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f270 -00032418 53.30242920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f270 -00032419 53.30245590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f280 -00032420 53.30245590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f280 -00032421 53.30248260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f290 -00032422 53.30248642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f290 -00032423 53.30251312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2a0 -00032424 53.30251694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2a0 -00032425 53.30253983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2b0 -00032426 53.30254364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2b0 -00032427 53.30257034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2c0 -00032428 53.30257034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2c0 -00032429 53.30259705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2d0 -00032430 53.30259705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2d0 -00032431 53.30262375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2e0 -00032432 53.30262756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2e0 -00032433 53.30265427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2f0 -00032434 53.30265427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2f0 -00032435 53.30268097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f300 -00032436 53.30268478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f300 -00032437 53.30271149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f310 -00032438 53.30271530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f310 -00032439 53.30273819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f320 -00032440 53.30274200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f320 -00032441 53.30276871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f330 -00032442 53.30277252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f330 -00032443 53.30279541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f340 -00032444 53.30279922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f340 -00032445 53.30282593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f350 -00032446 53.30282974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f350 -00032447 53.30285263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f360 -00032448 53.30285645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f360 -00032449 53.30288315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f370 -00032450 53.30288696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f370 -00032451 53.30291367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f380 -00032452 53.30291367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f380 -00032453 53.30294037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f390 -00032454 53.30294418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f390 -00032455 53.30297089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a0 -00032456 53.30297089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a0 -00032457 53.30299377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b0 -00032458 53.30299759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b0 -00032459 53.30302429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c0 -00032460 53.30302811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c0 -00032461 53.30305099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d0 -00032462 53.30305481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d0 -00032463 53.30308151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e0 -00032464 53.30308533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e0 -00032465 53.30311203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f0 -00032466 53.30311203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f0 -00032467 53.30313873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f400 -00032468 53.30314255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f400 -00032469 53.30316925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f410 -00032470 53.30317307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f410 -00032471 53.30319595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f420 -00032472 53.30319977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f420 -00032473 53.30322647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f430 -00032474 53.30323029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f430 -00032475 53.30325317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f440 -00032476 53.30325699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f440 -00032477 53.30328369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f450 -00032478 53.30328751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f450 -00032479 53.30331039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f460 -00032480 53.30331039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f460 -00032481 53.30334091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f470 -00032482 53.30334091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f470 -00032483 53.30337143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f480 -00032484 53.30337143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f480 -00032485 53.30339813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f490 -00032486 53.30339813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f490 -00032487 53.30342484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a0 -00032488 53.30342865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a0 -00032489 53.30345154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b0 -00032490 53.30345535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b0 -00032491 53.30348206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c0 -00032492 53.30348587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c0 -00032493 53.30350876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d0 -00032494 53.30351257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d0 -00032495 53.30353928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e0 -00032496 53.30354309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e0 -00032497 53.30356979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f0 -00032498 53.30356979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f0 -00032499 53.30359650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f500 -00032500 53.30360031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f500 -00032501 53.30362701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f510 -00032502 53.30362701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f510 -00032503 53.30365372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f520 -00032504 53.30365372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f520 -00032505 53.30368423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f530 -00032506 53.30368423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f530 -00032507 53.30371094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f540 -00032508 53.30371094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f540 -00032509 53.30373764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f550 -00032510 53.30374146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f550 -00032511 53.30376816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f560 -00032512 53.30376816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f560 -00032513 53.30379486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f570 -00032514 53.30379868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f570 -00032515 53.30382538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f580 -00032516 53.30382538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f580 -00032517 53.30385208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f590 -00032518 53.30385590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f590 -00032519 53.30388260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5a0 -00032520 53.30388641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5a0 -00032521 53.30390930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5b0 -00032522 53.30391312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5b0 -00032523 53.30393982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5c0 -00032524 53.30394363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5c0 -00032525 53.30396652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5d0 -00032526 53.30397034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5d0 -00032527 53.30399704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5e0 -00032528 53.30400085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5e0 -00032529 53.30402374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f0 -00032530 53.30402756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f0 -00032531 53.30405426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f600 -00032532 53.30405807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f600 -00032533 53.30408478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f610 -00032534 53.30408478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f610 -00032535 53.30411148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f620 -00032536 53.30411530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f620 -00032537 53.30414200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f630 -00032538 53.30414581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f630 -00032539 53.30416870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f640 -00032540 53.30416870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f640 -00032541 53.30419922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f650 -00032542 53.30420303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f650 -00032543 53.30422592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f660 -00032544 53.30422974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f660 -00032545 53.30425644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f670 -00032546 53.30425644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f670 -00032547 53.30428314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f680 -00032548 53.30428314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f680 -00032549 53.30430984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f690 -00032550 53.30431366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f690 -00032551 53.30434036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6a0 -00032552 53.30434418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6a0 -00032553 53.30436707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6b0 -00032554 53.30437088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6b0 -00032555 53.30439758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6c0 -00032556 53.30440140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6c0 -00032557 53.30442429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6d0 -00032558 53.30442810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6d0 -00032559 53.30445480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e0 -00032560 53.30445862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e0 -00032561 53.30448151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f0 -00032562 53.30448532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f0 -00032563 53.30451202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f700 -00032564 53.30451584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f700 -00032565 53.30454254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f710 -00032566 53.30454254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f710 -00032567 53.30456543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f720 -00032568 53.30456924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f720 -00032569 53.30459595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f730 -00032570 53.30459976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f730 -00032571 53.30462265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f740 -00032572 53.30462646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f740 -00032573 53.30465317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f750 -00032574 53.30465698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f750 -00032575 53.30467987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f760 -00032576 53.30468369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f760 -00032577 53.30471039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f770 -00032578 53.30471420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f770 -00032579 53.30474091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f780 -00032580 53.30474091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f780 -00032581 53.30476761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f790 -00032582 53.30476761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f790 -00032583 53.30479431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7a0 -00032584 53.30479813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7a0 -00032585 53.30482483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7b0 -00032586 53.30482483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7b0 -00032587 53.30485535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7c0 -00032588 53.30485916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7c0 -00032589 53.30488205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7d0 -00032590 53.30488586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7d0 -00032591 53.30491257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7e0 -00032592 53.30491638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7e0 -00032593 53.30493927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7f0 -00032594 53.30494308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7f0 -00032595 53.30496979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f800 -00032596 53.30497360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f800 -00032597 53.30500031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f810 -00032598 53.30500031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f810 -00032599 53.30502701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f820 -00032600 53.30503082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f820 -00032601 53.30505753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f830 -00032602 53.30505753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f830 -00032603 53.30508423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f840 -00032604 53.30508804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f840 -00032605 53.30511475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f850 -00032606 53.30511475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f850 -00032607 53.30513763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f860 -00032608 53.30514145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f860 -00032609 53.30516815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f870 -00032610 53.30517197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f870 -00032611 53.30519867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f880 -00032612 53.30519867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f880 -00032613 53.30522537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f890 -00032614 53.30522919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f890 -00032615 53.30525589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -00032616 53.30525589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -00032617 53.30528259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -00032618 53.30528641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -00032619 53.30531311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -00032620 53.30531693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -00032621 53.30533981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -00032622 53.30534363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -00032623 53.30537033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -00032624 53.30537415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -00032625 53.30539703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -00032626 53.30540085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -00032627 53.30542755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f900 -00032628 53.30542755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f900 -00032629 53.30545425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f910 -00032630 53.30545807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f910 -00032631 53.30548477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f920 -00032632 53.30548859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f920 -00032633 53.30551529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f930 -00032634 53.30551529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f930 -00032635 53.30553818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f940 -00032636 53.30554199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f940 -00032637 53.30556870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f950 -00032638 53.30557251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f950 -00032639 53.30559540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f960 -00032640 53.30559921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f960 -00032641 53.30562592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f970 -00032642 53.30562973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f970 -00032643 53.30565262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f980 -00032644 53.30565643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f980 -00032645 53.30568314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f990 -00032646 53.30568695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f990 -00032647 53.30571365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a0 -00032648 53.30571365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a0 -00032649 53.30574036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -00032650 53.30574417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -00032651 53.30577087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -00032652 53.30577469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -00032653 53.30579758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -00032654 53.30580139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -00032655 53.30582809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -00032656 53.30583191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -00032657 53.30585480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -00032658 53.30585861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -00032659 53.30588913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa00 -00032660 53.30588913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa00 -00032661 53.30591583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -00032662 53.30591965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -00032663 53.30594635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -00032664 53.30595016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -00032665 53.30597305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -00032666 53.30597687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -00032667 53.30600739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -00032668 53.30601120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -00032669 53.30603409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -00032670 53.30603790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -00032671 53.30606461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -00032672 53.30606842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -00032673 53.30609131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -00032674 53.30609512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -00032675 53.30612183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -00032676 53.30612564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -00032677 53.30614853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -00032678 53.30615234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -00032679 53.30617905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -00032680 53.30618286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -00032681 53.30620956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -00032682 53.30620956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -00032683 53.30623627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -00032684 53.30624008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -00032685 53.30627060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -00032686 53.30627060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -00032687 53.30629730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -00032688 53.30630112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -00032689 53.30632782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -00032690 53.30633163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -00032691 53.30636215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -00032692 53.30636597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -00032693 53.30638885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb10 -00032694 53.30639267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb10 -00032695 53.30641937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb20 -00032696 53.30642319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb20 -00032697 53.30644989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb30 -00032698 53.30644989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb30 -00032699 53.30647659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb40 -00032700 53.30648041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb40 -00032701 53.30650711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb50 -00032702 53.30650711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb50 -00032703 53.30653763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb60 -00032704 53.30654144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb60 -00032705 53.30656815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb70 -00032706 53.30656815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb70 -00032707 53.30659485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb80 -00032708 53.30659866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb80 -00032709 53.30662537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb90 -00032710 53.30662537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb90 -00032711 53.30665207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba0 -00032712 53.30665588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba0 -00032713 53.30668259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb0 -00032714 53.30668640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb0 -00032715 53.30670929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc0 -00032716 53.30671310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc0 -00032717 53.30673981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd0 -00032718 53.30674362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd0 -00032719 53.30676651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe0 -00032720 53.30677032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe0 -00032721 53.30679703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf0 -00032722 53.30680084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf0 -00032723 53.30682373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc00 -00032724 53.30682373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc00 -00032725 53.30685425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc10 -00032726 53.30685425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc10 -00032727 53.30688095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc20 -00032728 53.30688477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc20 -00032729 53.30690765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc30 -00032730 53.30691147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc30 -00032731 53.30693817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc40 -00032732 53.30694199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc40 -00032733 53.30696487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc50 -00032734 53.30696869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc50 -00032735 53.30699539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc60 -00032736 53.30699921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc60 -00032737 53.30702209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc70 -00032738 53.30702591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc70 -00032739 53.30705261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc80 -00032740 53.30705643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc80 -00032741 53.30708313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc90 -00032742 53.30708313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc90 -00032743 53.30710983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca0 -00032744 53.30711365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca0 -00032745 53.30714035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb0 -00032746 53.30714417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb0 -00032747 53.30716705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc0 -00032748 53.30716705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc0 -00032749 53.30719376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd0 -00032750 53.30719757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd0 -00032751 53.30722427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce0 -00032752 53.30722427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce0 -00032753 53.30725098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf0 -00032754 53.30725479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf0 -00032755 53.30728149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd00 -00032756 53.30728149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd00 -00032757 53.30730820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd10 -00032758 53.30731201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd10 -00032759 53.30733871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd20 -00032760 53.30734253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd20 -00032761 53.30736542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd30 -00032762 53.30736923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd30 -00032763 53.30739594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd40 -00032764 53.30739975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd40 -00032765 53.30742264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd50 -00032766 53.30742645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd50 -00032767 53.30745316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd60 -00032768 53.30745697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd60 -00032769 53.30747986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd70 -00032770 53.30748367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd70 -00032771 53.30751038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd80 -00032772 53.30751419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd80 -00032773 53.30754089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd90 -00032774 53.30754089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd90 -00032775 53.30756760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fda0 -00032776 53.30756760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fda0 -00032777 53.30759811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdb0 -00032778 53.30759811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdb0 -00032779 53.30762100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdc0 -00032780 53.30762482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdc0 -00032781 53.30765152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdd0 -00032782 53.30765533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdd0 -00032783 53.30767822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fde0 -00032784 53.30768204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fde0 -00032785 53.30770874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf0 -00032786 53.30771255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf0 -00032787 53.30773926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe00 -00032788 53.30773926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe00 -00032789 53.30776596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe10 -00032790 53.30776978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe10 -00032791 53.30779648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe20 -00032792 53.30780029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe20 -00032793 53.30782318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe30 -00032794 53.30782700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe30 -00032795 53.30785370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe40 -00032796 53.30785370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe40 -00032797 53.30787659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe50 -00032798 53.30788040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe50 -00032799 53.30790710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe60 -00032800 53.30791092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe60 -00032801 53.30793762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe70 -00032802 53.30793762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe70 -00032803 53.30796432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe80 -00032804 53.30796814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe80 -00032805 53.30799484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe90 -00032806 53.30799866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe90 -00032807 53.30802155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea0 -00032808 53.30802536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea0 -00032809 53.30805206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb0 -00032810 53.30805588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb0 -00032811 53.30807877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec0 -00032812 53.30808258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec0 -00032813 53.30810928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed0 -00032814 53.30811310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed0 -00032815 53.30813599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee0 -00032816 53.30813980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee0 -00032817 53.30816650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef0 -00032818 53.30816650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef0 -00032819 53.30819321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff00 -00032820 53.30819702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff00 -00032821 53.30821991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff10 -00032822 53.30822372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff10 -00032823 53.30825043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff20 -00032824 53.30825424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff20 -00032825 53.30827713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff30 -00032826 53.30828094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff30 -00032827 53.30830765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff40 -00032828 53.30831146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff40 -00032829 53.30833435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff50 -00032830 53.30833817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff50 -00032831 53.30836487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff60 -00032832 53.30836868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff60 -00032833 53.30839539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff70 -00032834 53.30839539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff70 -00032835 53.30842209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff80 -00032836 53.30842209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff80 -00032837 53.30845261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff90 -00032838 53.30845261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff90 -00032839 53.30847549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa0 -00032840 53.30847931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa0 -00032841 53.30850601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb0 -00032842 53.30850983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb0 -00032843 53.30853271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc0 -00032844 53.30853653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc0 -00032845 53.30856323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd0 -00032846 53.30856705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd0 -00032847 53.30859375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe0 -00032848 53.30859375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe0 -00032849 53.30862045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff0 -00032850 53.30862427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff0 -00032851 53.30865097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40000 -00032852 53.30865097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40000 -00032853 53.30867767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40010 -00032854 53.30868149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40010 -00032855 53.30870819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40020 -00032856 53.30871201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40020 -00032857 53.30873489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40030 -00032858 53.30873489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40030 -00032859 53.30876541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40040 -00032860 53.30876923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40040 -00032861 53.30879211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40050 -00032862 53.30879211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40050 -00032863 53.30881882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40060 -00032864 53.30882263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40060 -00032865 53.30884933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40070 -00032866 53.30884933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40070 -00032867 53.30887604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40080 -00032868 53.30887985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40080 -00032869 53.30890656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40090 -00032870 53.30891037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40090 -00032871 53.30893326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400a0 -00032872 53.30893707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400a0 -00032873 53.30896378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400b0 -00032874 53.30896759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400b0 -00032875 53.30899048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400c0 -00032876 53.30899429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400c0 -00032877 53.30902100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400d0 -00032878 53.30902481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400d0 -00032879 53.30904770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400e0 -00032880 53.30904770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400e0 -00032881 53.30907822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400f0 -00032882 53.30907822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x400f0 -00032883 53.30910492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40100 -00032884 53.30910873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40100 -00032885 53.30913162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40110 -00032886 53.30913544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40110 -00032887 53.30916214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40120 -00032888 53.30916595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40120 -00032889 53.30918884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40130 -00032890 53.30919266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40130 -00032891 53.30921936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40140 -00032892 53.30922318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40140 -00032893 53.30924988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40150 -00032894 53.30924988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40150 -00032895 53.30927658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40160 -00032896 53.30928040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40160 -00032897 53.30930710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40170 -00032898 53.30930710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40170 -00032899 53.30933380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40180 -00032900 53.30933762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40180 -00032901 53.30936432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40190 -00032902 53.30936813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40190 -00032903 53.30939102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401a0 -00032904 53.30939102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401a0 -00032905 53.30942154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401b0 -00032906 53.30942154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401b0 -00032907 53.30944824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c0 -00032908 53.30944824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c0 -00032909 53.30947495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d0 -00032910 53.30947876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d0 -00032911 53.30950546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e0 -00032912 53.30950546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e0 -00032913 53.30953217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f0 -00032914 53.30953598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f0 -00032915 53.30956268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40200 -00032916 53.30956650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40200 -00032917 53.30958939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40210 -00032918 53.30959320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40210 -00032919 53.30961990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40220 -00032920 53.30962372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40220 -00032921 53.30964661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40230 -00032922 53.30965042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40230 -00032923 53.30967712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40240 -00032924 53.30968094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40240 -00032925 53.30970383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40250 -00032926 53.30970764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40250 -00032927 53.30973434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40260 -00032928 53.30973434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40260 -00032929 53.30976486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40270 -00032930 53.30976486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40270 -00032931 53.30978775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40280 -00032932 53.30979156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40280 -00032933 53.30981827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40290 -00032934 53.30982208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40290 -00032935 53.30984497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a0 -00032936 53.30984879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a0 -00032937 53.30987549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b0 -00032938 53.30987930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b0 -00032939 53.30990219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402c0 -00032940 53.30990601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402c0 -00032941 53.30993271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402d0 -00032942 53.30993652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402d0 -00032943 53.30996323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402e0 -00032944 53.30996323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402e0 -00032945 53.30998993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402f0 -00032946 53.30999374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x402f0 -00032947 53.31002045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40300 -00032948 53.31002045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40300 -00032949 53.31004715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40310 -00032950 53.31004715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40310 -00032951 53.31007385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40320 -00032952 53.31007767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40320 -00032953 53.31010056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40330 -00032954 53.31010437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40330 -00032955 53.31013107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40340 -00032956 53.31013489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40340 -00032957 53.31016159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40350 -00032958 53.31016159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40350 -00032959 53.31018829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40360 -00032960 53.31019211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40360 -00032961 53.31021881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40370 -00032962 53.31022263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40370 -00032963 53.31024551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40380 -00032964 53.31024551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40380 -00032965 53.31027603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40390 -00032966 53.31027603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40390 -00032967 53.31029892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a0 -00032968 53.31030273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a0 -00032969 53.31032944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b0 -00032970 53.31033325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b0 -00032971 53.31035995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c0 -00032972 53.31035995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c0 -00032973 53.31038666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d0 -00032974 53.31039047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d0 -00032975 53.31041718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e0 -00032976 53.31042099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e0 -00032977 53.31044769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f0 -00032978 53.31045151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f0 -00032979 53.31047821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40400 -00032980 53.31047821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40400 -00032981 53.31050491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40410 -00032982 53.31050491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40410 -00032983 53.31053162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40420 -00032984 53.31053543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40420 -00032985 53.31055832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40430 -00032986 53.31056213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40430 -00032987 53.31058884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40440 -00032988 53.31059265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40440 -00032989 53.31061935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40450 -00032990 53.31061935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40450 -00032991 53.31064606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40460 -00032992 53.31064987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40460 -00032993 53.31067657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40470 -00032994 53.31067657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40470 -00032995 53.31070328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40480 -00032996 53.31070709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40480 -00032997 53.31073380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40490 -00032998 53.31073761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40490 -00032999 53.31076050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a0 -00033000 53.31076050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a0 -00033001 53.31079102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b0 -00033002 53.31079102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b0 -00033003 53.31081772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404c0 -00033004 53.31081772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404c0 -00033005 53.31084442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404d0 -00033006 53.31084824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404d0 -00033007 53.31087494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404e0 -00033008 53.31087494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404e0 -00033009 53.31090164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404f0 -00033010 53.31090546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x404f0 -00033011 53.31093216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40500 -00033012 53.31093597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40500 -00033013 53.31095886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40510 -00033014 53.31096268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40510 -00033015 53.31098938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40520 -00033016 53.31099319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40520 -00033017 53.31101608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40530 -00033018 53.31101990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40530 -00033019 53.31104660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40540 -00033020 53.31104660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40540 -00033021 53.31107330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40550 -00033022 53.31107712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40550 -00033023 53.31110382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40560 -00033024 53.31110382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40560 -00033025 53.31113052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40570 -00033026 53.31113434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40570 -00033027 53.31115723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40580 -00033028 53.31116104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40580 -00033029 53.31118774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40590 -00033030 53.31119156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40590 -00033031 53.31121445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405a0 -00033032 53.31121826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405a0 -00033033 53.31124496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405b0 -00033034 53.31124878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405b0 -00033035 53.31127548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405c0 -00033036 53.31127548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405c0 -00033037 53.31130219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405d0 -00033038 53.31130600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405d0 -00033039 53.31133270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405e0 -00033040 53.31133270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405e0 -00033041 53.31135941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405f0 -00033042 53.31135941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x405f0 -00033043 53.31138611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40600 -00033044 53.31138992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40600 -00033045 53.31141281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40610 -00033046 53.31141663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40610 -00033047 53.31144333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40620 -00033048 53.31144714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40620 -00033049 53.31147385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40630 -00033050 53.31147385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40630 -00033051 53.31150055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40640 -00033052 53.31150436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40640 -00033053 53.31153107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40650 -00033054 53.31153107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40650 -00033055 53.31155777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40660 -00033056 53.31155777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40660 -00033057 53.31158829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40670 -00033058 53.31158829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40670 -00033059 53.31161118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40680 -00033060 53.31161499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40680 -00033061 53.31164169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40690 -00033062 53.31164551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40690 -00033063 53.31167221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406a0 -00033064 53.31167221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406a0 -00033065 53.31169891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406b0 -00033066 53.31170273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406b0 -00033067 53.31172943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406c0 -00033068 53.31172943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406c0 -00033069 53.31175613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406d0 -00033070 53.31175995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406d0 -00033071 53.31178665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406e0 -00033072 53.31179047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406e0 -00033073 53.31181335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406f0 -00033074 53.31181717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x406f0 -00033075 53.31184387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40700 -00033076 53.31184387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40700 -00033077 53.31187057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40710 -00033078 53.31187057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40710 -00033079 53.31189728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40720 -00033080 53.31190109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40720 -00033081 53.31192780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40730 -00033082 53.31192780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40730 -00033083 53.31195450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40740 -00033084 53.31195831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40740 -00033085 53.31198502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40750 -00033086 53.31198883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40750 -00033087 53.31201172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40760 -00033088 53.31201553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40760 -00033089 53.31204224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40770 -00033090 53.31204605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40770 -00033091 53.31206894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40780 -00033092 53.31207275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40780 -00033093 53.31209946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40790 -00033094 53.31209946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40790 -00033095 53.31212616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407a0 -00033096 53.31212616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407a0 -00033097 53.31215286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407b0 -00033098 53.31215668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407b0 -00033099 53.31218338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407c0 -00033100 53.31218719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407c0 -00033101 53.31221008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407d0 -00033102 53.31221390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407d0 -00033103 53.31224060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407e0 -00033104 53.31224442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407e0 -00033105 53.31226730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407f0 -00033106 53.31227112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x407f0 -00033107 53.31229782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40800 -00033108 53.31230164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40800 -00033109 53.31232452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40810 -00033110 53.31232834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40810 -00033111 53.31235504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40820 -00033112 53.31235886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40820 -00033113 53.31238556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40830 -00033114 53.31238556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40830 -00033115 53.31240845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40840 -00033116 53.31241226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40840 -00033117 53.31243896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40850 -00033118 53.31244278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40850 -00033119 53.31246567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40860 -00033120 53.31246948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40860 -00033121 53.31249619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40870 -00033122 53.31250000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40870 -00033123 53.31252670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40880 -00033124 53.31252670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40880 -00033125 53.31255341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40890 -00033126 53.31255722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40890 -00033127 53.31258392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a0 -00033128 53.31258392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a0 -00033129 53.31261063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b0 -00033130 53.31261444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b0 -00033131 53.31264114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c0 -00033132 53.31264114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c0 -00033133 53.31266785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d0 -00033134 53.31266785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d0 -00033135 53.31269455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e0 -00033136 53.31269836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e0 -00033137 53.31272507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f0 -00033138 53.31272507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f0 -00033139 53.31275177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40900 -00033140 53.31275558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40900 -00033141 53.31278229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40910 -00033142 53.31278229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40910 -00033143 53.31280899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40920 -00033144 53.31281281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40920 -00033145 53.31283951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40930 -00033146 53.31284332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40930 -00033147 53.31286621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40940 -00033148 53.31287003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40940 -00033149 53.31289673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40950 -00033150 53.31289673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40950 -00033151 53.31292343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40960 -00033152 53.31292343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40960 -00033153 53.31295395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40970 -00033154 53.31295395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40970 -00033155 53.31298065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40980 -00033156 53.31298065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40980 -00033157 53.31300735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40990 -00033158 53.31301117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40990 -00033159 53.31303787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409a0 -00033160 53.31304169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409a0 -00033161 53.31306458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409b0 -00033162 53.31306839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409b0 -00033163 53.31309509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409c0 -00033164 53.31309891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409c0 -00033165 53.31312180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409d0 -00033166 53.31312561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409d0 -00033167 53.31315231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409e0 -00033168 53.31315613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409e0 -00033169 53.31317902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409f0 -00033170 53.31318283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x409f0 -00033171 53.31320953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a00 -00033172 53.31321335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a00 -00033173 53.31324005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a10 -00033174 53.31324005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a10 -00033175 53.31326294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a20 -00033176 53.31326675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a20 -00033177 53.31329346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a30 -00033178 53.31329727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a30 -00033179 53.31332016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a40 -00033180 53.31332397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a40 -00033181 53.31335068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a50 -00033182 53.31335449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a50 -00033183 53.31337738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a60 -00033184 53.31338120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a60 -00033185 53.31340790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a70 -00033186 53.31341171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a70 -00033187 53.31343842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a80 -00033188 53.31343842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a80 -00033189 53.31346512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a90 -00033190 53.31346893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a90 -00033191 53.31349564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40aa0 -00033192 53.31349564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40aa0 -00033193 53.31352234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ab0 -00033194 53.31352234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ab0 -00033195 53.31354904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ac0 -00033196 53.31355286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ac0 -00033197 53.31357574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ad0 -00033198 53.31357956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ad0 -00033199 53.31360626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ae0 -00033200 53.31361008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ae0 -00033201 53.31363678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40af0 -00033202 53.31363678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40af0 -00033203 53.31366348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b00 -00033204 53.31366730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b00 -00033205 53.31369400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b10 -00033206 53.31369781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b10 -00033207 53.31372070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b20 -00033208 53.31372452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b20 -00033209 53.31375122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b30 -00033210 53.31375504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b30 -00033211 53.31377792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b40 -00033212 53.31377792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b40 -00033213 53.31380463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b50 -00033214 53.31380844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b50 -00033215 53.31383514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b60 -00033216 53.31383514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b60 -00033217 53.31386185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b70 -00033218 53.31386566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b70 -00033219 53.31389236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b80 -00033220 53.31389618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b80 -00033221 53.31391907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b90 -00033222 53.31392288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b90 -00033223 53.31394958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba0 -00033224 53.31395340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba0 -00033225 53.31397629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb0 -00033226 53.31398010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb0 -00033227 53.31400681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc0 -00033228 53.31400681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc0 -00033229 53.31403351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd0 -00033230 53.31403351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd0 -00033231 53.31406021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be0 -00033232 53.31406403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be0 -00033233 53.31409073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf0 -00033234 53.31409454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf0 -00033235 53.31411743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c00 -00033236 53.31412125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c00 -00033237 53.31414795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c10 -00033238 53.31415176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c10 -00033239 53.31417465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c20 -00033240 53.31417847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c20 -00033241 53.31420517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c30 -00033242 53.31420898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c30 -00033243 53.31423187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c40 -00033244 53.31423569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c40 -00033245 53.31426239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c50 -00033246 53.31426620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c50 -00033247 53.31429291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c60 -00033248 53.31429291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c60 -00033249 53.31431961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c70 -00033250 53.31431961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c70 -00033251 53.31435013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c80 -00033252 53.31435013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c80 -00033253 53.31437302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c90 -00033254 53.31437683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c90 -00033255 53.31440353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca0 -00033256 53.31440735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca0 -00033257 53.31443024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb0 -00033258 53.31443405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb0 -00033259 53.31446075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc0 -00033260 53.31446457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc0 -00033261 53.31449127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd0 -00033262 53.31449127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd0 -00033263 53.31451797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce0 -00033264 53.31452179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce0 -00033265 53.31454849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf0 -00033266 53.31455231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf0 -00033267 53.31457520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d00 -00033268 53.31457901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d00 -00033269 53.31460571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d10 -00033270 53.31460571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d10 -00033271 53.31462860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d20 -00033272 53.31463242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d20 -00033273 53.31465912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d30 -00033274 53.31466293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d30 -00033275 53.31468964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d40 -00033276 53.31468964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d40 -00033277 53.31471634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d50 -00033278 53.31472015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d50 -00033279 53.31474686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d60 -00033280 53.31475067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d60 -00033281 53.31477356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d70 -00033282 53.31477737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d70 -00033283 53.31480408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d80 -00033284 53.31480789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d80 -00033285 53.31483078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d90 -00033286 53.31483459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d90 -00033287 53.31486130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da0 -00033288 53.31486511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da0 -00033289 53.31488800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db0 -00033290 53.31489182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db0 -00033291 53.31491852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc0 -00033292 53.31491852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc0 -00033293 53.31494522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd0 -00033294 53.31494904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd0 -00033295 53.31497192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de0 -00033296 53.31497574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de0 -00033297 53.31500244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40df0 -00033298 53.31500626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40df0 -00033299 53.31502914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e00 -00033300 53.31503296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e00 -00033301 53.31505966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e10 -00033302 53.31506348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e10 -00033303 53.31508636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e20 -00033304 53.31509018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e20 -00033305 53.31511688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e30 -00033306 53.31512070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e30 -00033307 53.31514740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e40 -00033308 53.31514740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e40 -00033309 53.31517410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e50 -00033310 53.31517410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e50 -00033311 53.31520081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e60 -00033312 53.31520462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e60 -00033313 53.31522751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e70 -00033314 53.31523132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e70 -00033315 53.31525803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e80 -00033316 53.31526184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e80 -00033317 53.31528473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e90 -00033318 53.31528854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e90 -00033319 53.31531525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ea0 -00033320 53.31531906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ea0 -00033321 53.31534576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40eb0 -00033322 53.31534576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40eb0 -00033323 53.31537247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ec0 -00033324 53.31537628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ec0 -00033325 53.31540298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ed0 -00033326 53.31540298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ed0 -00033327 53.31542969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ee0 -00033328 53.31542969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ee0 -00033329 53.31546021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ef0 -00033330 53.31546021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ef0 -00033331 53.31548691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f00 -00033332 53.31548691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f00 -00033333 53.31551361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f10 -00033334 53.31551743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f10 -00033335 53.31554413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f20 -00033336 53.31554413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f20 -00033337 53.31557083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f30 -00033338 53.31557465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f30 -00033339 53.31560135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f40 -00033340 53.31560135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f40 -00033341 53.31562805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f50 -00033342 53.31563187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f50 -00033343 53.31565857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f60 -00033344 53.31566238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f60 -00033345 53.31568527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f70 -00033346 53.31568909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f70 -00033347 53.31571579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f80 -00033348 53.31571960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f80 -00033349 53.31574249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f90 -00033350 53.31574631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f90 -00033351 53.31577301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fa0 -00033352 53.31577682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fa0 -00033353 53.31579971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fb0 -00033354 53.31580353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fb0 -00033355 53.31583023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fc0 -00033356 53.31583405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fc0 -00033357 53.31586075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fd0 -00033358 53.31586075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fd0 -00033359 53.31588364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fe0 -00033360 53.31588745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fe0 -00033361 53.31591415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ff0 -00033362 53.31591797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ff0 -00033363 53.31594086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41000 -00033364 53.31594467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41000 -00033365 53.31597137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41010 -00033366 53.31597519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41010 -00033367 53.31600189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41020 -00033368 53.31600189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41020 -00033369 53.31602859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41030 -00033370 53.31603241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41030 -00033371 53.31605911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41040 -00033372 53.31605911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41040 -00033373 53.31608582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41050 -00033374 53.31608963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41050 -00033375 53.31611633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41060 -00033376 53.31612015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41060 -00033377 53.31614304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41070 -00033378 53.31614685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41070 -00033379 53.31617355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41080 -00033380 53.31617355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41080 -00033381 53.31620026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41090 -00033382 53.31620026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41090 -00033383 53.31622696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410a0 -00033384 53.31623077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410a0 -00033385 53.31625748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410b0 -00033386 53.31625748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410b0 -00033387 53.31628418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410c0 -00033388 53.31628799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410c0 -00033389 53.31631470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410d0 -00033390 53.31631851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410d0 -00033391 53.31634140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410e0 -00033392 53.31634521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410e0 -00033393 53.31637192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410f0 -00033394 53.31637573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x410f0 -00033395 53.31639862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41100 -00033396 53.31639862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41100 -00033397 53.31642914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41110 -00033398 53.31642914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41110 -00033399 53.31645584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41120 -00033400 53.31645584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41120 -00033401 53.31648254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41130 -00033402 53.31648636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41130 -00033403 53.31651306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41140 -00033404 53.31651688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41140 -00033405 53.31653976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41150 -00033406 53.31654358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41150 -00033407 53.31657028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41160 -00033408 53.31657410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41160 -00033409 53.31659698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41170 -00033410 53.31660080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41170 -00033411 53.31662750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41180 -00033412 53.31662750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41180 -00033413 53.31665421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41190 -00033414 53.31665421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41190 -00033415 53.31668091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a0 -00033416 53.31668472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a0 -00033417 53.31671143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b0 -00033418 53.31671524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b0 -00033419 53.31673813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c0 -00033420 53.31674194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c0 -00033421 53.31676865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d0 -00033422 53.31677246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d0 -00033423 53.31679535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e0 -00033424 53.31679916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e0 -00033425 53.31682587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f0 -00033426 53.31682968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f0 -00033427 53.31685257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -00033428 53.31685638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -00033429 53.31688309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41210 -00033430 53.31688690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41210 -00033431 53.31691360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41220 -00033432 53.31691360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41220 -00033433 53.31694031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41230 -00033434 53.31694031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41230 -00033435 53.31696701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41240 -00033436 53.31697083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41240 -00033437 53.31699371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41250 -00033438 53.31699753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41250 -00033439 53.31702423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41260 -00033440 53.31702805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41260 -00033441 53.31705093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41270 -00033442 53.31705475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41270 -00033443 53.31708145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41280 -00033444 53.31708527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41280 -00033445 53.31711197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41290 -00033446 53.31711197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41290 -00033447 53.31713867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a0 -00033448 53.31713867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a0 -00033449 53.31716919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b0 -00033450 53.31716919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b0 -00033451 53.31719208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c0 -00033452 53.31719589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c0 -00033453 53.31722260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d0 -00033454 53.31722641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d0 -00033455 53.31724930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e0 -00033456 53.31725311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e0 -00033457 53.31727982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f0 -00033458 53.31728363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f0 -00033459 53.31731033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41300 -00033460 53.31731033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41300 -00033461 53.31733704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41310 -00033462 53.31734085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41310 -00033463 53.31736755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41320 -00033464 53.31737137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41320 -00033465 53.31739426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41330 -00033466 53.31739807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41330 -00033467 53.31742477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41340 -00033468 53.31742859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41340 -00033469 53.31745148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41350 -00033470 53.31745148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41350 -00033471 53.31747818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41360 -00033472 53.31748199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41360 -00033473 53.31750870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41370 -00033474 53.31750870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41370 -00033475 53.31753540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41380 -00033476 53.31753922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41380 -00033477 53.31756592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41390 -00033478 53.31756973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41390 -00033479 53.31759262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a0 -00033480 53.31759644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a0 -00033481 53.31762314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413b0 -00033482 53.31762695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413b0 -00033483 53.31764984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413c0 -00033484 53.31765366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413c0 -00033485 53.31768036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413d0 -00033486 53.31768417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413d0 -00033487 53.31770706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413e0 -00033488 53.31770706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413e0 -00033489 53.31773376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413f0 -00033490 53.31773758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x413f0 -00033491 53.31776428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41400 -00033492 53.31776810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41400 -00033493 53.31779099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41410 -00033494 53.31779480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41410 -00033495 53.31782150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41420 -00033496 53.31782532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41420 -00033497 53.31784821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41430 -00033498 53.31785202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41430 -00033499 53.31787872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41440 -00033500 53.31788254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41440 -00033501 53.31790543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41450 -00033502 53.31790924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41450 -00033503 53.31793594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41460 -00033504 53.31793976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41460 -00033505 53.31796646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41470 -00033506 53.31796646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41470 -00033507 53.31799316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41480 -00033508 53.31799698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41480 -00033509 53.31802368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41490 -00033510 53.31802368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41490 -00033511 53.31805038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414a0 -00033512 53.31805038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414a0 -00033513 53.31807709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414b0 -00033514 53.31808090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414b0 -00033515 53.31810379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414c0 -00033516 53.31810760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414c0 -00033517 53.31813431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414d0 -00033518 53.31813812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414d0 -00033519 53.31816483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414e0 -00033520 53.31816483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414e0 -00033521 53.31819153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414f0 -00033522 53.31819534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x414f0 -00033523 53.31822205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41500 -00033524 53.31822586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41500 -00033525 53.31824875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41510 -00033526 53.31825256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41510 -00033527 53.31827927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41520 -00033528 53.31827927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41520 -00033529 53.31830215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41530 -00033530 53.31830597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41530 -00033531 53.31833267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41540 -00033532 53.31833649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41540 -00033533 53.31836319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41550 -00033534 53.31836319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41550 -00033535 53.31838989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41560 -00033536 53.31839371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41560 -00033537 53.31842041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41570 -00033538 53.31842422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41570 -00033539 53.31844711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41580 -00033540 53.31845093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41580 -00033541 53.31847763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41590 -00033542 53.31848145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41590 -00033543 53.31850433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a0 -00033544 53.31850815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a0 -00033545 53.31853485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b0 -00033546 53.31853485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b0 -00033547 53.31856155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c0 -00033548 53.31856537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c0 -00033549 53.31859207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d0 -00033550 53.31859207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d0 -00033551 53.31862259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e0 -00033552 53.31862259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e0 -00033553 53.31864929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f0 -00033554 53.31864929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f0 -00033555 53.31867599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41600 -00033556 53.31867981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41600 -00033557 53.31870270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41610 -00033558 53.31870651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41610 -00033559 53.31873322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41620 -00033560 53.31873703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41620 -00033561 53.31875992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41630 -00033562 53.31876373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41630 -00033563 53.31879044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41640 -00033564 53.31879425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41640 -00033565 53.31882095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41650 -00033566 53.31882095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41650 -00033567 53.31884766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41660 -00033568 53.31885147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41660 -00033569 53.31887817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41670 -00033570 53.31887817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41670 -00033571 53.31890488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41680 -00033572 53.31890488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41680 -00033573 53.31893158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41690 -00033574 53.31893539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41690 -00033575 53.31895828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a0 -00033576 53.31896210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a0 -00033577 53.31898880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b0 -00033578 53.31899261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b0 -00033579 53.31901932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c0 -00033580 53.31901932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c0 -00033581 53.31904602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d0 -00033582 53.31904984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d0 -00033583 53.31907654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e0 -00033584 53.31907654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e0 -00033585 53.31910324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f0 -00033586 53.31910706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f0 -00033587 53.31913376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41700 -00033588 53.31913757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41700 -00033589 53.31916046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41710 -00033590 53.31916046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41710 -00033591 53.31919098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41720 -00033592 53.31919098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41720 -00033593 53.31921768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41730 -00033594 53.31921768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41730 -00033595 53.31924820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41740 -00033596 53.31924820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41740 -00033597 53.31927490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41750 -00033598 53.31927490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41750 -00033599 53.31930161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41760 -00033600 53.31930542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41760 -00033601 53.31933212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41770 -00033602 53.31933594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41770 -00033603 53.31935883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41780 -00033604 53.31936264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41780 -00033605 53.31938934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41790 -00033606 53.31939316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41790 -00033607 53.31941605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417a0 -00033608 53.31941986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417a0 -00033609 53.31944656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417b0 -00033610 53.31945038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417b0 -00033611 53.31947708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417c0 -00033612 53.31947708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417c0 -00033613 53.31950378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417d0 -00033614 53.31950760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417d0 -00033615 53.31953430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417e0 -00033616 53.31953430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417e0 -00033617 53.31956100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417f0 -00033618 53.31956482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x417f0 -00033619 53.31959152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41800 -00033620 53.31959152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41800 -00033621 53.31961441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41810 -00033622 53.31961823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41810 -00033623 53.31964493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41820 -00033624 53.31964874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41820 -00033625 53.31967545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41830 -00033626 53.31967545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41830 -00033627 53.31970215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41840 -00033628 53.31970596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41840 -00033629 53.31973267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41850 -00033630 53.31973267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41850 -00033631 53.31975937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41860 -00033632 53.31976318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41860 -00033633 53.31978989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41870 -00033634 53.31979370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41870 -00033635 53.31981659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41880 -00033636 53.31982040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41880 -00033637 53.31984711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41890 -00033638 53.31985092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41890 -00033639 53.31987762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a0 -00033640 53.31987762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a0 -00033641 53.31990814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b0 -00033642 53.31990814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b0 -00033643 53.31993103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c0 -00033644 53.31993484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c0 -00033645 53.31996155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d0 -00033646 53.31996536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d0 -00033647 53.31999207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e0 -00033648 53.31999207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e0 -00033649 53.32001877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f0 -00033650 53.32002258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f0 -00033651 53.32004929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41900 -00033652 53.32005310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41900 -00033653 53.32007599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41910 -00033654 53.32007980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41910 -00033655 53.32010651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41920 -00033656 53.32011032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41920 -00033657 53.32013321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41930 -00033658 53.32013702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41930 -00033659 53.32016373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41940 -00033660 53.32016754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41940 -00033661 53.32019043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41950 -00033662 53.32019424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41950 -00033663 53.32022095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41960 -00033664 53.32022095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41960 -00033665 53.32025146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41970 -00033666 53.32025146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41970 -00033667 53.32027435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41980 -00033668 53.32027817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41980 -00033669 53.32030487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41990 -00033670 53.32030869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41990 -00033671 53.32033157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419a0 -00033672 53.32033539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419a0 -00033673 53.32036209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419b0 -00033674 53.32036591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419b0 -00033675 53.32038879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419c0 -00033676 53.32039261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419c0 -00033677 53.32041931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d0 -00033678 53.32042313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d0 -00033679 53.32044983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e0 -00033680 53.32044983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e0 -00033681 53.32047653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f0 -00033682 53.32048035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f0 -00033683 53.32050705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a00 -00033684 53.32050705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a00 -00033685 53.32053375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a10 -00033686 53.32053757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a10 -00033687 53.32056427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a20 -00033688 53.32056427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a20 -00033689 53.32059097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a30 -00033690 53.32059097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a30 -00033691 53.32061768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a40 -00033692 53.32062149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a40 -00033693 53.32064819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a50 -00033694 53.32064819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a50 -00033695 53.32067490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a60 -00033696 53.32067871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a60 -00033697 53.32070541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a70 -00033698 53.32070541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a70 -00033699 53.32073212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a80 -00033700 53.32073593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a80 -00033701 53.32076263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a90 -00033702 53.32076645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a90 -00033703 53.32078934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa0 -00033704 53.32079315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa0 -00033705 53.32081985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab0 -00033706 53.32081985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab0 -00033707 53.32084656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac0 -00033708 53.32084656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac0 -00033709 53.32087326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad0 -00033710 53.32087708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad0 -00033711 53.32090378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae0 -00033712 53.32090378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae0 -00033713 53.32093048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af0 -00033714 53.32093430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af0 -00033715 53.32096100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b00 -00033716 53.32096481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b00 -00033717 53.32098770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b10 -00033718 53.32099152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b10 -00033719 53.32101822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b20 -00033720 53.32102203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b20 -00033721 53.32104492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b30 -00033722 53.32104874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b30 -00033723 53.32107544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b40 -00033724 53.32107925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b40 -00033725 53.32110214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b50 -00033726 53.32110596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b50 -00033727 53.32113266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b60 -00033728 53.32113647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b60 -00033729 53.32116318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b70 -00033730 53.32116318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b70 -00033731 53.32118607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b80 -00033732 53.32118988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b80 -00033733 53.32121658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b90 -00033734 53.32122040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b90 -00033735 53.32124329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ba0 -00033736 53.32124710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ba0 -00033737 53.32127380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bb0 -00033738 53.32127762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bb0 -00033739 53.32130051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bc0 -00033740 53.32130432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bc0 -00033741 53.32133102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bd0 -00033742 53.32133484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bd0 -00033743 53.32136154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41be0 -00033744 53.32136154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41be0 -00033745 53.32138824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bf0 -00033746 53.32138824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bf0 -00033747 53.32141876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c00 -00033748 53.32141876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c00 -00033749 53.32144165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c10 -00033750 53.32144547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c10 -00033751 53.32147217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c20 -00033752 53.32147598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c20 -00033753 53.32150269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c30 -00033754 53.32150269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c30 -00033755 53.32152939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c40 -00033756 53.32153320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c40 -00033757 53.32155991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c50 -00033758 53.32155991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c50 -00033759 53.32158661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c60 -00033760 53.32159042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c60 -00033761 53.32161713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c70 -00033762 53.32162094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c70 -00033763 53.32164383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c80 -00033764 53.32164764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c80 -00033765 53.32167435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c90 -00033766 53.32167816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c90 -00033767 53.32170105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca0 -00033768 53.32170486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca0 -00033769 53.32173157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb0 -00033770 53.32173538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb0 -00033771 53.32175827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc0 -00033772 53.32176208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc0 -00033773 53.32178879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd0 -00033774 53.32179260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd0 -00033775 53.32181931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce0 -00033776 53.32181931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce0 -00033777 53.32184219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf0 -00033778 53.32184601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf0 -00033779 53.32187271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d00 -00033780 53.32187653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d00 -00033781 53.32189941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d10 -00033782 53.32190323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d10 -00033783 53.32192993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d20 -00033784 53.32193375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d20 -00033785 53.32195663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d30 -00033786 53.32196045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d30 -00033787 53.32198715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d40 -00033788 53.32199097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d40 -00033789 53.32201767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d50 -00033790 53.32201767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d50 -00033791 53.32204437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d60 -00033792 53.32204437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d60 -00033793 53.32207108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d70 -00033794 53.32207489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d70 -00033795 53.32209778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d80 -00033796 53.32210159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d80 -00033797 53.32212830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d90 -00033798 53.32213211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d90 -00033799 53.32215500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da0 -00033800 53.32215881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da0 -00033801 53.32218552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41db0 -00033802 53.32218933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41db0 -00033803 53.32221603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dc0 -00033804 53.32221603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dc0 -00033805 53.32224274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dd0 -00033806 53.32224655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dd0 -00033807 53.32227325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41de0 -00033808 53.32227707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41de0 -00033809 53.32229996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41df0 -00033810 53.32230377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41df0 -00033811 53.32233047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e00 -00033812 53.32233429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e00 -00033813 53.32235718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e10 -00033814 53.32236099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e10 -00033815 53.32238770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e20 -00033816 53.32238770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e20 -00033817 53.32241440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e30 -00033818 53.32241440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e30 -00033819 53.32244110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e40 -00033820 53.32244492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e40 -00033821 53.32247162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e50 -00033822 53.32247543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e50 -00033823 53.32249832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e60 -00033824 53.32250214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e60 -00033825 53.32252884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e70 -00033826 53.32253265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e70 -00033827 53.32255554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e80 -00033828 53.32255936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e80 -00033829 53.32258606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e90 -00033830 53.32258987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e90 -00033831 53.32261276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ea0 -00033832 53.32261658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ea0 -00033833 53.32264328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41eb0 -00033834 53.32264328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41eb0 -00033835 53.32266998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ec0 -00033836 53.32267380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ec0 -00033837 53.32269669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ed0 -00033838 53.32270050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ed0 -00033839 53.32272720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ee0 -00033840 53.32273102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ee0 -00033841 53.32275391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ef0 -00033842 53.32275772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ef0 -00033843 53.32278442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f00 -00033844 53.32278824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f00 -00033845 53.32281113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f10 -00033846 53.32281494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f10 -00033847 53.32284164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f20 -00033848 53.32284546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f20 -00033849 53.32287216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f30 -00033850 53.32287216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f30 -00033851 53.32289886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f40 -00033852 53.32290268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f40 -00033853 53.32292938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f50 -00033854 53.32292938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f50 -00033855 53.32295609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f60 -00033856 53.32295990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f60 -00033857 53.32298660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f70 -00033858 53.32299042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f70 -00033859 53.32301331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f80 -00033860 53.32301331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f80 -00033861 53.32304382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f90 -00033862 53.32304382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f90 -00033863 53.32307053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fa0 -00033864 53.32307053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fa0 -00033865 53.32309723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fb0 -00033866 53.32310104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fb0 -00033867 53.32312775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fc0 -00033868 53.32312775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fc0 -00033869 53.32315445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fd0 -00033870 53.32315826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fd0 -00033871 53.32318497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fe0 -00033872 53.32318878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fe0 -00033873 53.32321167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ff0 -00033874 53.32321548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ff0 -00033875 53.32324219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42000 -00033876 53.32324600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42000 -00033877 53.32326889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42010 -00033878 53.32326889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42010 -00033879 53.32329559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42020 -00033880 53.32329941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42020 -00033881 53.32332611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42030 -00033882 53.32332611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42030 -00033883 53.32335281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42040 -00033884 53.32335663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42040 -00033885 53.32338333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42050 -00033886 53.32338715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42050 -00033887 53.32341003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42060 -00033888 53.32341385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42060 -00033889 53.32344055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42070 -00033890 53.32344437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42070 -00033891 53.32346725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42080 -00033892 53.32347107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42080 -00033893 53.32349777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42090 -00033894 53.32350159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42090 -00033895 53.32352829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420a0 -00033896 53.32352829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420a0 -00033897 53.32355499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420b0 -00033898 53.32355499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420b0 -00033899 53.32358551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420c0 -00033900 53.32358551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420c0 -00033901 53.32361221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420d0 -00033902 53.32361603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420d0 -00033903 53.32364273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420e0 -00033904 53.32364273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420e0 -00033905 53.32366562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420f0 -00033906 53.32366943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x420f0 -00033907 53.32369614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42100 -00033908 53.32369995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42100 -00033909 53.32372665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42110 -00033910 53.32372665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42110 -00033911 53.32375336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42120 -00033912 53.32375717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42120 -00033913 53.32378387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42130 -00033914 53.32378387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42130 -00033915 53.32381058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42140 -00033916 53.32381439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42140 -00033917 53.32384109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42150 -00033918 53.32384491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42150 -00033919 53.32386780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42160 -00033920 53.32387161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42160 -00033921 53.32389832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42170 -00033922 53.32389832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42170 -00033923 53.32392502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42180 -00033924 53.32392502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42180 -00033925 53.32395172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42190 -00033926 53.32395554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42190 -00033927 53.32398224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a0 -00033928 53.32398224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a0 -00033929 53.32400894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421b0 -00033930 53.32401276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421b0 -00033931 53.32403946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421c0 -00033932 53.32404327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421c0 -00033933 53.32406616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421d0 -00033934 53.32406998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421d0 -00033935 53.32409668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421e0 -00033936 53.32410049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421e0 -00033937 53.32412338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421f0 -00033938 53.32412720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x421f0 -00033939 53.32415390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42200 -00033940 53.32415390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42200 -00033941 53.32418060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42210 -00033942 53.32418060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42210 -00033943 53.32421112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42220 -00033944 53.32421112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42220 -00033945 53.32423782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42230 -00033946 53.32424164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42230 -00033947 53.32426453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42240 -00033948 53.32426834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42240 -00033949 53.32429504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42250 -00033950 53.32429886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42250 -00033951 53.32432175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42260 -00033952 53.32432556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42260 -00033953 53.32435226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42270 -00033954 53.32435608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42270 -00033955 53.32437897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42280 -00033956 53.32438278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42280 -00033957 53.32440948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42290 -00033958 53.32441330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42290 -00033959 53.32444000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a0 -00033960 53.32444000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a0 -00033961 53.32446289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b0 -00033962 53.32446671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b0 -00033963 53.32449341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c0 -00033964 53.32449722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c0 -00033965 53.32452011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422d0 -00033966 53.32452393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422d0 -00033967 53.32455063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422e0 -00033968 53.32455444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422e0 -00033969 53.32457733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422f0 -00033970 53.32458115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x422f0 -00033971 53.32460785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42300 -00033972 53.32461166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42300 -00033973 53.32463837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42310 -00033974 53.32463837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42310 -00033975 53.32466507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42320 -00033976 53.32466507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42320 -00033977 53.32469559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42330 -00033978 53.32469559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42330 -00033979 53.32471848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42340 -00033980 53.32472229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42340 -00033981 53.32474899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42350 -00033982 53.32475281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42350 -00033983 53.32477570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42360 -00033984 53.32477951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42360 -00033985 53.32480621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42370 -00033986 53.32481003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42370 -00033987 53.32483673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42380 -00033988 53.32483673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42380 -00033989 53.32486343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42390 -00033990 53.32486725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42390 -00033991 53.32489395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423a0 -00033992 53.32489777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423a0 -00033993 53.32492065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423b0 -00033994 53.32492447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423b0 -00033995 53.32495117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423c0 -00033996 53.32495499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423c0 -00033997 53.32497787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423d0 -00033998 53.32497787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423d0 -00033999 53.32500839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423e0 -00034000 53.32500839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423e0 -00034001 53.32503510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f0 -00034002 53.32503510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f0 -00034003 53.32506180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42400 -00034004 53.32506561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42400 -00034005 53.32509232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42410 -00034006 53.32509613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42410 -00034007 53.32511902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42420 -00034008 53.32512283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42420 -00034009 53.32514954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42430 -00034010 53.32515335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42430 -00034011 53.32517624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42440 -00034012 53.32518005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42440 -00034013 53.32520676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42450 -00034014 53.32520676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42450 -00034015 53.32523346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42460 -00034016 53.32523346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42460 -00034017 53.32526016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42470 -00034018 53.32526398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42470 -00034019 53.32529068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42480 -00034020 53.32529449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42480 -00034021 53.32531738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42490 -00034022 53.32532120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42490 -00034023 53.32534790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424a0 -00034024 53.32535172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424a0 -00034025 53.32537460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424b0 -00034026 53.32537842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424b0 -00034027 53.32540512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424c0 -00034028 53.32540894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424c0 -00034029 53.32543182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424d0 -00034030 53.32543564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424d0 -00034031 53.32546234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424e0 -00034032 53.32546616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424e0 -00034033 53.32549286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424f0 -00034034 53.32549286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x424f0 -00034035 53.32551956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42500 -00034036 53.32551956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42500 -00034037 53.32555008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42510 -00034038 53.32555008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42510 -00034039 53.32557297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42520 -00034040 53.32557678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42520 -00034041 53.32560349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42530 -00034042 53.32560730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42530 -00034043 53.32563019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42540 -00034044 53.32563400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42540 -00034045 53.32566071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42550 -00034046 53.32566452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42550 -00034047 53.32569122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42560 -00034048 53.32569122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42560 -00034049 53.32571793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42570 -00034050 53.32572174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42570 -00034051 53.32574844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42580 -00034052 53.32575226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42580 -00034053 53.32577515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42590 -00034054 53.32577896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42590 -00034055 53.32580566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425a0 -00034056 53.32580566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425a0 -00034057 53.32582855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425b0 -00034058 53.32583237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425b0 -00034059 53.32586288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425c0 -00034060 53.32586670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425c0 -00034061 53.32588959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425d0 -00034062 53.32589340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425d0 -00034063 53.32592010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e0 -00034064 53.32592010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e0 -00034065 53.32595062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f0 -00034066 53.32595062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f0 -00034067 53.32597351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42600 -00034068 53.32597733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42600 -00034069 53.32600403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42610 -00034070 53.32600784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42610 -00034071 53.32603073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42620 -00034072 53.32603455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42620 -00034073 53.32606125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42630 -00034074 53.32606506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42630 -00034075 53.32608795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42640 -00034076 53.32609177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42640 -00034077 53.32611847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42650 -00034078 53.32612228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42650 -00034079 53.32614899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42660 -00034080 53.32614899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42660 -00034081 53.32617569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42670 -00034082 53.32617950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42670 -00034083 53.32620621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42680 -00034084 53.32620621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42680 -00034085 53.32623291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42690 -00034086 53.32623291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42690 -00034087 53.32626343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a0 -00034088 53.32626343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a0 -00034089 53.32628632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b0 -00034090 53.32629013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b0 -00034091 53.32631683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c0 -00034092 53.32632065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c0 -00034093 53.32634735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d0 -00034094 53.32634735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d0 -00034095 53.32637405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e0 -00034096 53.32637787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e0 -00034097 53.32640457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f0 -00034098 53.32640457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f0 -00034099 53.32643127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42700 -00034100 53.32643509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42700 -00034101 53.32646179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42710 -00034102 53.32646561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42710 -00034103 53.32648849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42720 -00034104 53.32648849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42720 -00034105 53.32651901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42730 -00034106 53.32651901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42730 -00034107 53.32654572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42740 -00034108 53.32654572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42740 -00034109 53.32657242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42750 -00034110 53.32657623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42750 -00034111 53.32660294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42760 -00034112 53.32660294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42760 -00034113 53.32662964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42770 -00034114 53.32663345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42770 -00034115 53.32666016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42780 -00034116 53.32666397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42780 -00034117 53.32668686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42790 -00034118 53.32669067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42790 -00034119 53.32671738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427a0 -00034120 53.32672119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427a0 -00034121 53.32674408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427b0 -00034122 53.32674789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427b0 -00034123 53.32677460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427c0 -00034124 53.32677841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427c0 -00034125 53.32680130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427d0 -00034126 53.32680511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427d0 -00034127 53.32683182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427e0 -00034128 53.32683563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427e0 -00034129 53.32686234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427f0 -00034130 53.32686234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x427f0 -00034131 53.32688522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42800 -00034132 53.32688904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42800 -00034133 53.32691574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42810 -00034134 53.32691956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42810 -00034135 53.32694244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42820 -00034136 53.32694626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42820 -00034137 53.32697296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42830 -00034138 53.32697678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42830 -00034139 53.32700348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42840 -00034140 53.32700348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42840 -00034141 53.32703018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42850 -00034142 53.32703400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42850 -00034143 53.32706070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42860 -00034144 53.32706070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42860 -00034145 53.32708740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42870 -00034146 53.32708740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42870 -00034147 53.32711411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42880 -00034148 53.32711792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42880 -00034149 53.32714081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42890 -00034150 53.32714462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42890 -00034151 53.32717133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428a0 -00034152 53.32717514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428a0 -00034153 53.32720184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428b0 -00034154 53.32720184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428b0 -00034155 53.32722855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428c0 -00034156 53.32723236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428c0 -00034157 53.32725906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428d0 -00034158 53.32725906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428d0 -00034159 53.32728577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428e0 -00034160 53.32728958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428e0 -00034161 53.32731628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428f0 -00034162 53.32732010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428f0 -00034163 53.32734299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42900 -00034164 53.32734680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42900 -00034165 53.32737350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42910 -00034166 53.32737732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42910 -00034167 53.32740021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42920 -00034168 53.32740402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42920 -00034169 53.32743073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42930 -00034170 53.32743073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42930 -00034171 53.32745743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42940 -00034172 53.32745743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42940 -00034173 53.32748413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42950 -00034174 53.32748795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42950 -00034175 53.32751465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42960 -00034176 53.32751846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42960 -00034177 53.32754135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42970 -00034178 53.32754517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42970 -00034179 53.32757187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42980 -00034180 53.32757568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42980 -00034181 53.32759857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42990 -00034182 53.32760239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42990 -00034183 53.32762909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429a0 -00034184 53.32763290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429a0 -00034185 53.32765579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429b0 -00034186 53.32765961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429b0 -00034187 53.32768631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429c0 -00034188 53.32768631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429c0 -00034189 53.32771301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429d0 -00034190 53.32771683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429d0 -00034191 53.32773972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429e0 -00034192 53.32774353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429e0 -00034193 53.32777023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429f0 -00034194 53.32777405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x429f0 -00034195 53.32779694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a00 -00034196 53.32780075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a00 -00034197 53.32782745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a10 -00034198 53.32783127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a10 -00034199 53.32785416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a20 -00034200 53.32785797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a20 -00034201 53.32788467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a30 -00034202 53.32788849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a30 -00034203 53.32791519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a40 -00034204 53.32791519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a40 -00034205 53.32794189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a50 -00034206 53.32794189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a50 -00034207 53.32797241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a60 -00034208 53.32797241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a60 -00034209 53.32799530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a70 -00034210 53.32799911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a70 -00034211 53.32802582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a80 -00034212 53.32802963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a80 -00034213 53.32805252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a90 -00034214 53.32805634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a90 -00034215 53.32808304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42aa0 -00034216 53.32808685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42aa0 -00034217 53.32811356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ab0 -00034218 53.32811356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ab0 -00034219 53.32814026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ac0 -00034220 53.32814407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ac0 -00034221 53.32817078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ad0 -00034222 53.32817459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ad0 -00034223 53.32819748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae0 -00034224 53.32819748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae0 -00034225 53.32822800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af0 -00034226 53.32822800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af0 -00034227 53.32825470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b00 -00034228 53.32825470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b00 -00034229 53.32828140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b10 -00034230 53.32828522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b10 -00034231 53.32831192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b20 -00034232 53.32831192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b20 -00034233 53.32833862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b30 -00034234 53.32834244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b30 -00034235 53.32836914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b40 -00034236 53.32837296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b40 -00034237 53.32839584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b50 -00034238 53.32839966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b50 -00034239 53.32842636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b60 -00034240 53.32843018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b60 -00034241 53.32845306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b70 -00034242 53.32845688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b70 -00034243 53.32848358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b80 -00034244 53.32848358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b80 -00034245 53.32851028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b90 -00034246 53.32851028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b90 -00034247 53.32853699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba0 -00034248 53.32854080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba0 -00034249 53.32856750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb0 -00034250 53.32857132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb0 -00034251 53.32859421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc0 -00034252 53.32859802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc0 -00034253 53.32862473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd0 -00034254 53.32862854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd0 -00034255 53.32865143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be0 -00034256 53.32865524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be0 -00034257 53.32868195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf0 -00034258 53.32868576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf0 -00034259 53.32870865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c00 -00034260 53.32871246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c00 -00034261 53.32873917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c10 -00034262 53.32874298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c10 -00034263 53.32876968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c20 -00034264 53.32876968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c20 -00034265 53.32879257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c30 -00034266 53.32879639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c30 -00034267 53.32882309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c40 -00034268 53.32882690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c40 -00034269 53.32884979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c50 -00034270 53.32885361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c50 -00034271 53.32888031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c60 -00034272 53.32888412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c60 -00034273 53.32890701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c70 -00034274 53.32891083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c70 -00034275 53.32893753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c80 -00034276 53.32894135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c80 -00034277 53.32896805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c90 -00034278 53.32896805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c90 -00034279 53.32899475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca0 -00034280 53.32899475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca0 -00034281 53.32902527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb0 -00034282 53.32902527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb0 -00034283 53.32904816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc0 -00034284 53.32905197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc0 -00034285 53.32907867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd0 -00034286 53.32908249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd0 -00034287 53.32910538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce0 -00034288 53.32910919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce0 -00034289 53.32913589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf0 -00034290 53.32913971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf0 -00034291 53.32916641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d00 -00034292 53.32916641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d00 -00034293 53.32919312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d10 -00034294 53.32919693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d10 -00034295 53.32922363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d20 -00034296 53.32922745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d20 -00034297 53.32925034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d30 -00034298 53.32925415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d30 -00034299 53.32928085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d40 -00034300 53.32928467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d40 -00034301 53.32930756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d50 -00034302 53.32931137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d50 -00034303 53.32933807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d60 -00034304 53.32934189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d60 -00034305 53.32936478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d70 -00034306 53.32936859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d70 -00034307 53.32939529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d80 -00034308 53.32939911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d80 -00034309 53.32942581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d90 -00034310 53.32942581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d90 -00034311 53.32945251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da0 -00034312 53.32945251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da0 -00034313 53.32947922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db0 -00034314 53.32948303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db0 -00034315 53.32950592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc0 -00034316 53.32950974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc0 -00034317 53.32953644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd0 -00034318 53.32954025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd0 -00034319 53.32956314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de0 -00034320 53.32956696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de0 -00034321 53.32959366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42df0 -00034322 53.32959747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42df0 -00034323 53.32962418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e00 -00034324 53.32962418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e00 -00034325 53.32965088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e10 -00034326 53.32965469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e10 -00034327 53.32968140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e20 -00034328 53.32968140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e20 -00034329 53.32970810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e30 -00034330 53.32970810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e30 -00034331 53.32973480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e40 -00034332 53.32973862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e40 -00034333 53.32976151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e50 -00034334 53.32976532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e50 -00034335 53.32979202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e60 -00034336 53.32979584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e60 -00034337 53.32982254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e70 -00034338 53.32982254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e70 -00034339 53.32984924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e80 -00034340 53.32985306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e80 -00034341 53.32987976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e90 -00034342 53.32987976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e90 -00034343 53.32990646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ea0 -00034344 53.32991028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ea0 -00034345 53.32993698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42eb0 -00034346 53.32994080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42eb0 -00034347 53.32996368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ec0 -00034348 53.32996368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ec0 -00034349 53.32999420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ed0 -00034350 53.32999420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ed0 -00034351 53.33002090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ee0 -00034352 53.33002090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ee0 -00034353 53.33004761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ef0 -00034354 53.33005142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ef0 -00034355 53.33007813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f00 -00034356 53.33007813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f00 -00034357 53.33010483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f10 -00034358 53.33010864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f10 -00034359 53.33013535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f20 -00034360 53.33013916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f20 -00034361 53.33016205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f30 -00034362 53.33016586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f30 -00034363 53.33019257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f40 -00034364 53.33019257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f40 -00034365 53.33021927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f50 -00034366 53.33021927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f50 -00034367 53.33024597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f60 -00034368 53.33024979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f60 -00034369 53.33027649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f70 -00034370 53.33028030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f70 -00034371 53.33030319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f80 -00034372 53.33030701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f80 -00034373 53.33033371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f90 -00034374 53.33033752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f90 -00034375 53.33036041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fa0 -00034376 53.33036423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fa0 -00034377 53.33039093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fb0 -00034378 53.33039474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fb0 -00034379 53.33041763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fc0 -00034380 53.33041763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fc0 -00034381 53.33044815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fd0 -00034382 53.33045197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fd0 -00034383 53.33047867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fe0 -00034384 53.33047867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fe0 -00034385 53.33050156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff0 -00034386 53.33050537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff0 -00034387 53.33053207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43000 -00034388 53.33053589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43000 -00034389 53.33055878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43010 -00034390 53.33056259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43010 -00034391 53.33058929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43020 -00034392 53.33059311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43020 -00034393 53.33061600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43030 -00034394 53.33061981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43030 -00034395 53.33064651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43040 -00034396 53.33065033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43040 -00034397 53.33067703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43050 -00034398 53.33067703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43050 -00034399 53.33070374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43060 -00034400 53.33070374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43060 -00034401 53.33073044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43070 -00034402 53.33073425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43070 -00034403 53.33075714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43080 -00034404 53.33076096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43080 -00034405 53.33078766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43090 -00034406 53.33079147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43090 -00034407 53.33081436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a0 -00034408 53.33081818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a0 -00034409 53.33084488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b0 -00034410 53.33084869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b0 -00034411 53.33087540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c0 -00034412 53.33087540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c0 -00034413 53.33090210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d0 -00034414 53.33090591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d0 -00034415 53.33093262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e0 -00034416 53.33093262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e0 -00034417 53.33095932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f0 -00034418 53.33095932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f0 -00034419 53.33098602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43100 -00034420 53.33098984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43100 -00034421 53.33101273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43110 -00034422 53.33101654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43110 -00034423 53.33104324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43120 -00034424 53.33104706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43120 -00034425 53.33107376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43130 -00034426 53.33107376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43130 -00034427 53.33110046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43140 -00034428 53.33110428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43140 -00034429 53.33113098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43150 -00034430 53.33113098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43150 -00034431 53.33115768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43160 -00034432 53.33116150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43160 -00034433 53.33118820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43170 -00034434 53.33118820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43170 -00034435 53.33121490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43180 -00034436 53.33121490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43180 -00034437 53.33124161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43190 -00034438 53.33124542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43190 -00034439 53.33127213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a0 -00034440 53.33127213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a0 -00034441 53.33129883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431b0 -00034442 53.33130264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431b0 -00034443 53.33132935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431c0 -00034444 53.33132935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431c0 -00034445 53.33135605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431d0 -00034446 53.33135986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431d0 -00034447 53.33138657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431e0 -00034448 53.33139038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431e0 -00034449 53.33141327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431f0 -00034450 53.33141708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x431f0 -00034451 53.33144379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43200 -00034452 53.33144760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43200 -00034453 53.33147049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43210 -00034454 53.33147430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43210 -00034455 53.33150101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43220 -00034456 53.33150482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43220 -00034457 53.33152771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -00034458 53.33153152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -00034459 53.33155823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -00034460 53.33155823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -00034461 53.33158875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -00034462 53.33158875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -00034463 53.33161545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -00034464 53.33161545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -00034465 53.33164215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -00034466 53.33164597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -00034467 53.33166885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -00034468 53.33167267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -00034469 53.33169937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -00034470 53.33170319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -00034471 53.33172989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -00034472 53.33172989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -00034473 53.33175659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -00034474 53.33176041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -00034475 53.33178711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -00034476 53.33178711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -00034477 53.33181381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -00034478 53.33181763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -00034479 53.33184433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432e0 -00034480 53.33184814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432e0 -00034481 53.33187103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432f0 -00034482 53.33187485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x432f0 -00034483 53.33190155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43300 -00034484 53.33190155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43300 -00034485 53.33192825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43310 -00034486 53.33192825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43310 -00034487 53.33195496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43320 -00034488 53.33195877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43320 -00034489 53.33198547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43330 -00034490 53.33198547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43330 -00034491 53.33201218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43340 -00034492 53.33201599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43340 -00034493 53.33204269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43350 -00034494 53.33204651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43350 -00034495 53.33206940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43360 -00034496 53.33207321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43360 -00034497 53.33209991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43370 -00034498 53.33210373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43370 -00034499 53.33212662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43380 -00034500 53.33212662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43380 -00034501 53.33215332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43390 -00034502 53.33215714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43390 -00034503 53.33218384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433a0 -00034504 53.33218384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433a0 -00034505 53.33221054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433b0 -00034506 53.33221436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433b0 -00034507 53.33224106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -00034508 53.33224487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -00034509 53.33226776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -00034510 53.33227158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -00034511 53.33229828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -00034512 53.33230209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -00034513 53.33232498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -00034514 53.33232880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -00034515 53.33235550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -00034516 53.33235931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -00034517 53.33238220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -00034518 53.33238602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -00034519 53.33241272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -00034520 53.33241272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -00034521 53.33244324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -00034522 53.33244324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -00034523 53.33246613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -00034524 53.33246994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -00034525 53.33249664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -00034526 53.33250046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -00034527 53.33252335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -00034528 53.33252716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -00034529 53.33255386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -00034530 53.33255768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -00034531 53.33258057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -00034532 53.33258438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -00034533 53.33261108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43490 -00034534 53.33261490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43490 -00034535 53.33264160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434a0 -00034536 53.33264160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434a0 -00034537 53.33266449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b0 -00034538 53.33266830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b0 -00034539 53.33269501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c0 -00034540 53.33269882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c0 -00034541 53.33272171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d0 -00034542 53.33272552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d0 -00034543 53.33275223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e0 -00034544 53.33275604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e0 -00034545 53.33277893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f0 -00034546 53.33278275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f0 -00034547 53.33280945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43500 -00034548 53.33281326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43500 -00034549 53.33283997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43510 -00034550 53.33283997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43510 -00034551 53.33286667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43520 -00034552 53.33287048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43520 -00034553 53.33289719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43530 -00034554 53.33290100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43530 -00034555 53.33292389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43540 -00034556 53.33292770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43540 -00034557 53.33295441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43550 -00034558 53.33295822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43550 -00034559 53.33298111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43560 -00034560 53.33298492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43560 -00034561 53.33301163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43570 -00034562 53.33301163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43570 -00034563 53.33303833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43580 -00034564 53.33303833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43580 -00034565 53.33306503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43590 -00034566 53.33306885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43590 -00034567 53.33309555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a0 -00034568 53.33309937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a0 -00034569 53.33312225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b0 -00034570 53.33312607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b0 -00034571 53.33315277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c0 -00034572 53.33315659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c0 -00034573 53.33317947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d0 -00034574 53.33318329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d0 -00034575 53.33320999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e0 -00034576 53.33321381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e0 -00034577 53.33323669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f0 -00034578 53.33323669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f0 -00034579 53.33326721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43600 -00034580 53.33326721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43600 -00034581 53.33329391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43610 -00034582 53.33329773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43610 -00034583 53.33332443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43620 -00034584 53.33332825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43620 -00034585 53.33335495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43630 -00034586 53.33335495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43630 -00034587 53.33338165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43640 -00034588 53.33338547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43640 -00034589 53.33341217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43650 -00034590 53.33341599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43650 -00034591 53.33343887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43660 -00034592 53.33344269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43660 -00034593 53.33346939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43670 -00034594 53.33347321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43670 -00034595 53.33349609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43680 -00034596 53.33349991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43680 -00034597 53.33352661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43690 -00034598 53.33353043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43690 -00034599 53.33357239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436a0 -00034600 53.33357620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436a0 -00034601 53.33359909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436b0 -00034602 53.33360291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436b0 -00034603 53.33362961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436c0 -00034604 53.33363342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436c0 -00034605 53.33365631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436d0 -00034606 53.33366013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436d0 -00034607 53.33368683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436e0 -00034608 53.33369064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436e0 -00034609 53.33371353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436f0 -00034610 53.33371353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x436f0 -00034611 53.33374405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43700 -00034612 53.33374405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43700 -00034613 53.33377457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43710 -00034614 53.33377457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43710 -00034615 53.33379745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43720 -00034616 53.33380127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43720 -00034617 53.33382797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43730 -00034618 53.33383179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43730 -00034619 53.33385468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43740 -00034620 53.33385849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43740 -00034621 53.33388519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43750 -00034622 53.33388901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43750 -00034623 53.33391190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43760 -00034624 53.33391571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43760 -00034625 53.33394241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43770 -00034626 53.33394623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43770 -00034627 53.33397293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43780 -00034628 53.33397293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43780 -00034629 53.33399963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43790 -00034630 53.33400345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43790 -00034631 53.33403015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437a0 -00034632 53.33403015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437a0 -00034633 53.33405304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437b0 -00034634 53.33405685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437b0 -00034635 53.33408356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437c0 -00034636 53.33408737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437c0 -00034637 53.33411026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d0 -00034638 53.33411407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d0 -00034639 53.33414078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e0 -00034640 53.33414459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e0 -00034641 53.33417130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f0 -00034642 53.33417130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f0 -00034643 53.33420563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43800 -00034644 53.33420944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43800 -00034645 53.33423996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43810 -00034646 53.33424377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43810 -00034647 53.33427048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43820 -00034648 53.33427048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43820 -00034649 53.33429718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43830 -00034650 53.33430099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43830 -00034651 53.33432770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43840 -00034652 53.33432770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43840 -00034653 53.33435440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43850 -00034654 53.33435440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43850 -00034655 53.33438110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43860 -00034656 53.33438492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43860 -00034657 53.33440781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -00034658 53.33441162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -00034659 53.33443832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -00034660 53.33444214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -00034661 53.33446884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -00034662 53.33446884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -00034663 53.33449554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -00034664 53.33449936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -00034665 53.33452606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -00034666 53.33452988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -00034667 53.33455276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -00034668 53.33455658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -00034669 53.33458328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -00034670 53.33458328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -00034671 53.33460617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -00034672 53.33460999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -00034673 53.33463669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -00034674 53.33464050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -00034675 53.33466721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -00034676 53.33466721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -00034677 53.33469391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -00034678 53.33469772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -00034679 53.33472443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -00034680 53.33472824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -00034681 53.33475113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43930 -00034682 53.33475494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43930 -00034683 53.33478928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43940 -00034684 53.33479691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43940 -00034685 53.33483887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43950 -00034686 53.33484268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43950 -00034687 53.33488464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43960 -00034688 53.33488846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43960 -00034689 53.33492661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43970 -00034690 53.33493423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43970 -00034691 53.33497238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43980 -00034692 53.33497620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43980 -00034693 53.33501816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43990 -00034694 53.33502197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43990 -00034695 53.33506012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a0 -00034696 53.33506393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a0 -00034697 53.33510590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b0 -00034698 53.33510590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b0 -00034699 53.33514786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c0 -00034700 53.33515167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c0 -00034701 53.33518982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439d0 -00034702 53.33519745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439d0 -00034703 53.33523560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439e0 -00034704 53.33523941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439e0 -00034705 53.33528137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439f0 -00034706 53.33528137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x439f0 -00034707 53.33532333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a00 -00034708 53.33532715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a00 -00034709 53.33536530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a10 -00034710 53.33537292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a10 -00034711 53.33541107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a20 -00034712 53.33541489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a20 -00034713 53.33546066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a30 -00034714 53.33546066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a30 -00034715 53.33550262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a40 -00034716 53.33550644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a40 -00034717 53.33554459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a50 -00034718 53.33555222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a50 -00034719 53.33559036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a60 -00034720 53.33559418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a60 -00034721 53.33563232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a70 -00034722 53.33563995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a70 -00034723 53.33567810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a80 -00034724 53.33568192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a80 -00034725 53.33572006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a90 -00034726 53.33572769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a90 -00034727 53.33576584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa0 -00034728 53.33576965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa0 -00034729 53.33581161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab0 -00034730 53.33581543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab0 -00034731 53.33585358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac0 -00034732 53.33585739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac0 -00034733 53.33589935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad0 -00034734 53.33590317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad0 -00034735 53.33594131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae0 -00034736 53.33594894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae0 -00034737 53.33599091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af0 -00034738 53.33599472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af0 -00034739 53.33603287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b00 -00034740 53.33603668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b00 -00034741 53.33607864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b10 -00034742 53.33607864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b10 -00034743 53.33610535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b20 -00034744 53.33610916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b20 -00034745 53.33613586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b30 -00034746 53.33613586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b30 -00034747 53.33617020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b40 -00034748 53.33617401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b40 -00034749 53.33621216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b50 -00034750 53.33621597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b50 -00034751 53.33625412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b60 -00034752 53.33625793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b60 -00034753 53.33629990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b70 -00034754 53.33630371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b70 -00034755 53.33634186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b80 -00034756 53.33634949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b80 -00034757 53.33638763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b90 -00034758 53.33639145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b90 -00034759 53.33642960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ba0 -00034760 53.33643341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ba0 -00034761 53.33647537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bb0 -00034762 53.33647919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bb0 -00034763 53.33651733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bc0 -00034764 53.33652115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bc0 -00034765 53.33656311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bd0 -00034766 53.33656693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bd0 -00034767 53.33660889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43be0 -00034768 53.33661270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43be0 -00034769 53.33665466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bf0 -00034770 53.33665848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bf0 -00034771 53.33669662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c00 -00034772 53.33670044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c00 -00034773 53.33673859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c10 -00034774 53.33674622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c10 -00034775 53.33678055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c20 -00034776 53.33678436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c20 -00034777 53.33681107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c30 -00034778 53.33681107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c30 -00034779 53.33683777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c40 -00034780 53.33684158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c40 -00034781 53.33686829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c50 -00034782 53.33687210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c50 -00034783 53.33689499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c60 -00034784 53.33689880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c60 -00034785 53.33692551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c70 -00034786 53.33692932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c70 -00034787 53.33695221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c80 -00034788 53.33695602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c80 -00034789 53.33698273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c90 -00034790 53.33698273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c90 -00034791 53.33700943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ca0 -00034792 53.33700943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ca0 -00034793 53.33703613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cb0 -00034794 53.33703995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cb0 -00034795 53.33706665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cc0 -00034796 53.33707047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cc0 -00034797 53.33709335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cd0 -00034798 53.33709717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cd0 -00034799 53.33712387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ce0 -00034800 53.33712769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ce0 -00034801 53.33715057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cf0 -00034802 53.33715439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cf0 -00034803 53.33718109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d00 -00034804 53.33718491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d00 -00034805 53.33720779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d10 -00034806 53.33721161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d10 -00034807 53.33723831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d20 -00034808 53.33724213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d20 -00034809 53.33727646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d30 -00034810 53.33728027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d30 -00034811 53.33730698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d40 -00034812 53.33730698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d40 -00034813 53.33733368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d50 -00034814 53.33734131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d50 -00034815 53.33737564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d60 -00034816 53.33737946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d60 -00034817 53.33740616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d70 -00034818 53.33740616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d70 -00034819 53.33743286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d80 -00034820 53.33743668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d80 -00034821 53.33746338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d90 -00034822 53.33746719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d90 -00034823 53.33749008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43da0 -00034824 53.33749390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43da0 -00034825 53.33752060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43db0 -00034826 53.33752441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43db0 -00034827 53.33754730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dc0 -00034828 53.33755112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dc0 -00034829 53.33757782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dd0 -00034830 53.33758163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dd0 -00034831 53.33760452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43de0 -00034832 53.33760834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43de0 -00034833 53.33763504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43df0 -00034834 53.33763885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43df0 -00034835 53.33766556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e00 -00034836 53.33766556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e00 -00034837 53.33769226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e10 -00034838 53.33769226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e10 -00034839 53.33771896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e20 -00034840 53.33772278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e20 -00034841 53.33774567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e30 -00034842 53.33774948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e30 -00034843 53.33777618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e40 -00034844 53.33778000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e40 -00034845 53.33780670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e50 -00034846 53.33780670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e50 -00034847 53.33783340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e60 -00034848 53.33783722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e60 -00034849 53.33786392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e70 -00034850 53.33786392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e70 -00034851 53.33789063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e80 -00034852 53.33789444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e80 -00034853 53.33792114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e90 -00034854 53.33792496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e90 -00034855 53.33794785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ea0 -00034856 53.33795166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ea0 -00034857 53.33797836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43eb0 -00034858 53.33798218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43eb0 -00034859 53.33800507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ec0 -00034860 53.33800888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ec0 -00034861 53.33803558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ed0 -00034862 53.33803940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ed0 -00034863 53.33806229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ee0 -00034864 53.33806610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ee0 -00034865 53.33809280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ef0 -00034866 53.33809280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ef0 -00034867 53.33811951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f00 -00034868 53.33812332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f00 -00034869 53.33814621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f10 -00034870 53.33815002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f10 -00034871 53.33817673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f20 -00034872 53.33818054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f20 -00034873 53.33820343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f30 -00034874 53.33820724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f30 -00034875 53.33823395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f40 -00034876 53.33823776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f40 -00034877 53.33826065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f50 -00034878 53.33826447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f50 -00034879 53.33829117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f60 -00034880 53.33829117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f60 -00034881 53.33832169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f70 -00034882 53.33832169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f70 -00034883 53.33834457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f80 -00034884 53.33834839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f80 -00034885 53.33837509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f90 -00034886 53.33837891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f90 -00034887 53.33840179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa0 -00034888 53.33840561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa0 -00034889 53.33843231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb0 -00034890 53.33843613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb0 -00034891 53.33846283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc0 -00034892 53.33846664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc0 -00034893 53.33849335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd0 -00034894 53.33849716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd0 -00034895 53.33852005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe0 -00034896 53.33852005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe0 -00034897 53.33854675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff0 -00034898 53.33855057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff0 -00034899 53.33857727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44000 -00034900 53.33858109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44000 -00034901 53.33860397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44010 -00034902 53.33860779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44010 -00034903 53.33863449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44020 -00034904 53.33863831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44020 -00034905 53.33866119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44030 -00034906 53.33866501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44030 -00034907 53.33869171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44040 -00034908 53.33869553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44040 -00034909 53.33871841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44050 -00034910 53.33872223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44050 -00034911 53.33874893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44060 -00034912 53.33875275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44060 -00034913 53.33877945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44070 -00034914 53.33877945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44070 -00034915 53.33880615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44080 -00034916 53.33880615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44080 -00034917 53.33883286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44090 -00034918 53.33883667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44090 -00034919 53.33885956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a0 -00034920 53.33886337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a0 -00034921 53.33889008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b0 -00034922 53.33889389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b0 -00034923 53.33891678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c0 -00034924 53.33892059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c0 -00034925 53.33894730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d0 -00034926 53.33895111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d0 -00034927 53.33897781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e0 -00034928 53.33897781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e0 -00034929 53.33900452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f0 -00034930 53.33900833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f0 -00034931 53.33903503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44100 -00034932 53.33903503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44100 -00034933 53.33906174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44110 -00034934 53.33906174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44110 -00034935 53.33909225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44120 -00034936 53.33909607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44120 -00034937 53.33911896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44130 -00034938 53.33911896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44130 -00034939 53.33914948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44140 -00034940 53.33914948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44140 -00034941 53.33917618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44150 -00034942 53.33918381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44150 -00034943 53.33922195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44160 -00034944 53.33922577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44160 -00034945 53.33925629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44170 -00034946 53.33925629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44170 -00034947 53.33928299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44180 -00034948 53.33928680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44180 -00034949 53.33931351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44190 -00034950 53.33931351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44190 -00034951 53.33934021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a0 -00034952 53.33934021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a0 -00034953 53.33936691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b0 -00034954 53.33937073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b0 -00034955 53.33939362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c0 -00034956 53.33939743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c0 -00034957 53.33942413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d0 -00034958 53.33942795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d0 -00034959 53.33945465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e0 -00034960 53.33945465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e0 -00034961 53.33948135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f0 -00034962 53.33948517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f0 -00034963 53.33951187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44200 -00034964 53.33951187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44200 -00034965 53.33953857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44210 -00034966 53.33954239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44210 -00034967 53.33956909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44220 -00034968 53.33956909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44220 -00034969 53.33959198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44230 -00034970 53.33959579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44230 -00034971 53.33962250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44240 -00034972 53.33962631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44240 -00034973 53.33965302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44250 -00034974 53.33965302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44250 -00034975 53.33967972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44260 -00034976 53.33968353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44260 -00034977 53.33971024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44270 -00034978 53.33971024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44270 -00034979 53.33973694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44280 -00034980 53.33974075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44280 -00034981 53.33976746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44290 -00034982 53.33977127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44290 -00034983 53.33979416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a0 -00034984 53.33979797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a0 -00034985 53.33983231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b0 -00034986 53.33983612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b0 -00034987 53.33986664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c0 -00034988 53.33987045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c0 -00034989 53.33990860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d0 -00034990 53.33991241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d0 -00034991 53.33995056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e0 -00034992 53.33995819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e0 -00034993 53.33999634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f0 -00034994 53.34000015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f0 -00034995 53.34004211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44300 -00034996 53.34004593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44300 -00034997 53.34008408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44310 -00034998 53.34008789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44310 -00034999 53.34012985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44320 -00035000 53.34012985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44320 -00035001 53.34016800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44330 -00035002 53.34017563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44330 -00035003 53.34020615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44340 -00035004 53.34020615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44340 -00035005 53.34023285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44350 -00035006 53.34023666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44350 -00035007 53.34026337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44360 -00035008 53.34026337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44360 -00035009 53.34029007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44370 -00035010 53.34029007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44370 -00035011 53.34031677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44380 -00035012 53.34032059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44380 -00035013 53.34034729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44390 -00035014 53.34035110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44390 -00035015 53.34037781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a0 -00035016 53.34038162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a0 -00035017 53.34040451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443b0 -00035018 53.34040833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443b0 -00035019 53.34043503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443c0 -00035020 53.34043503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443c0 -00035021 53.34046173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d0 -00035022 53.34046555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d0 -00035023 53.34048843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e0 -00035024 53.34049225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e0 -00035025 53.34051895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f0 -00035026 53.34052277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f0 -00035027 53.34054565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44400 -00035028 53.34054947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44400 -00035029 53.34057617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44410 -00035030 53.34057999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44410 -00035031 53.34060669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44420 -00035032 53.34060669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44420 -00035033 53.34063339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44430 -00035034 53.34063721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44430 -00035035 53.34066391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44440 -00035036 53.34066391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44440 -00035037 53.34069061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44450 -00035038 53.34069443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44450 -00035039 53.34072113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44460 -00035040 53.34072495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44460 -00035041 53.34074783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44470 -00035042 53.34075165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44470 -00035043 53.34077835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44480 -00035044 53.34078217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44480 -00035045 53.34080505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44490 -00035046 53.34080887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44490 -00035047 53.34083557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a0 -00035048 53.34083939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a0 -00035049 53.34086227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b0 -00035050 53.34086609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b0 -00035051 53.34089279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c0 -00035052 53.34089661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c0 -00035053 53.34092331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444d0 -00035054 53.34092331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444d0 -00035055 53.34095383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444e0 -00035056 53.34095764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444e0 -00035057 53.34099197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f0 -00035058 53.34099579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f0 -00035059 53.34102249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44500 -00035060 53.34102249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44500 -00035061 53.34104919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44510 -00035062 53.34105301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44510 -00035063 53.34107971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44520 -00035064 53.34107971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44520 -00035065 53.34110641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44530 -00035066 53.34111023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44530 -00035067 53.34113693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44540 -00035068 53.34114075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44540 -00035069 53.34116364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44550 -00035070 53.34116745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44550 -00035071 53.34119415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44560 -00035072 53.34119797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44560 -00035073 53.34122086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44570 -00035074 53.34122467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44570 -00035075 53.34125900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44580 -00035076 53.34126282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44580 -00035077 53.34129333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44590 -00035078 53.34130096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44590 -00035079 53.34133148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445a0 -00035080 53.34133530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445a0 -00035081 53.34136200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445b0 -00035082 53.34136581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445b0 -00035083 53.34139252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445c0 -00035084 53.34139633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445c0 -00035085 53.34141922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445d0 -00035086 53.34142303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445d0 -00035087 53.34144974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445e0 -00035088 53.34145355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445e0 -00035089 53.34148026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445f0 -00035090 53.34148026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x445f0 -00035091 53.34150696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44600 -00035092 53.34151077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44600 -00035093 53.34153748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44610 -00035094 53.34153748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44610 -00035095 53.34156418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44620 -00035096 53.34156799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44620 -00035097 53.34159470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44630 -00035098 53.34159851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44630 -00035099 53.34162140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44640 -00035100 53.34162521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44640 -00035101 53.34165192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44650 -00035102 53.34165573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44650 -00035103 53.34167862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44660 -00035104 53.34168243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44660 -00035105 53.34170914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44670 -00035106 53.34171295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44670 -00035107 53.34173584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44680 -00035108 53.34173965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44680 -00035109 53.34176636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44690 -00035110 53.34177017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44690 -00035111 53.34179688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446a0 -00035112 53.34179688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446a0 -00035113 53.34182358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446b0 -00035114 53.34182358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446b0 -00035115 53.34185028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446c0 -00035116 53.34185410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446c0 -00035117 53.34187698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446d0 -00035118 53.34188080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446d0 -00035119 53.34190750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446e0 -00035120 53.34191132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446e0 -00035121 53.34193420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446f0 -00035122 53.34193802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446f0 -00035123 53.34196472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44700 -00035124 53.34196854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44700 -00035125 53.34200287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44710 -00035126 53.34200668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44710 -00035127 53.34203339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44720 -00035128 53.34203720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44720 -00035129 53.34206390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44730 -00035130 53.34206772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44730 -00035131 53.34209442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44740 -00035132 53.34209442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44740 -00035133 53.34212112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44750 -00035134 53.34212112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44750 -00035135 53.34215164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44760 -00035136 53.34215164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44760 -00035137 53.34217453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44770 -00035138 53.34217834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44770 -00035139 53.34220886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44780 -00035140 53.34220886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44780 -00035141 53.34223557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44790 -00035142 53.34223557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44790 -00035143 53.34226608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447a0 -00035144 53.34226608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447a0 -00035145 53.34229279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447b0 -00035146 53.34229279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447b0 -00035147 53.34232330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c0 -00035148 53.34232330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c0 -00035149 53.34235764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d0 -00035150 53.34236145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d0 -00035151 53.34238815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e0 -00035152 53.34239197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e0 -00035153 53.34241486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f0 -00035154 53.34241867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f0 -00035155 53.34245300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44800 -00035156 53.34245682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44800 -00035157 53.34249496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44810 -00035158 53.34250259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44810 -00035159 53.34254074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44820 -00035160 53.34254456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44820 -00035161 53.34258270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44830 -00035162 53.34258652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44830 -00035163 53.34262466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44840 -00035164 53.34263229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44840 -00035165 53.34267044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44850 -00035166 53.34267044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44850 -00035167 53.34270859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44860 -00035168 53.34271622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44860 -00035169 53.34275436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44870 -00035170 53.34275818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44870 -00035171 53.34280014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44880 -00035172 53.34280396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44880 -00035173 53.34283447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44890 -00035174 53.34284210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44890 -00035175 53.34286880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a0 -00035176 53.34286880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a0 -00035177 53.34289551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b0 -00035178 53.34289932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b0 -00035179 53.34292603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448c0 -00035180 53.34292984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448c0 -00035181 53.34295273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448d0 -00035182 53.34295654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448d0 -00035183 53.34298325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448e0 -00035184 53.34298325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448e0 -00035185 53.34300995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448f0 -00035186 53.34300995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x448f0 -00035187 53.34303665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44900 -00035188 53.34304047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44900 -00035189 53.34306717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44910 -00035190 53.34307098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44910 -00035191 53.34310913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44920 -00035192 53.34311295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44920 -00035193 53.34315491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44930 -00035194 53.34315872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44930 -00035195 53.34319687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44940 -00035196 53.34320450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44940 -00035197 53.34323883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44950 -00035198 53.34324646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44950 -00035199 53.34328079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44960 -00035200 53.34328461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44960 -00035201 53.34332275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44970 -00035202 53.34332657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44970 -00035203 53.34336472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44980 -00035204 53.34336472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44980 -00035205 53.34340668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44990 -00035206 53.34340668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44990 -00035207 53.34343719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a0 -00035208 53.34344101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a0 -00035209 53.34346390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b0 -00035210 53.34346771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b0 -00035211 53.34349442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c0 -00035212 53.34349823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c0 -00035213 53.34352493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d0 -00035214 53.34352493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d0 -00035215 53.34356308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e0 -00035216 53.34356308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e0 -00035217 53.34360123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f0 -00035218 53.34360504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f0 -00035219 53.34364319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a00 -00035220 53.34365082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a00 -00035221 53.34368896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a10 -00035222 53.34369659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a10 -00035223 53.34373474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a20 -00035224 53.34374237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a20 -00035225 53.34378052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a30 -00035226 53.34378052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a30 -00035227 53.34381866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a40 -00035228 53.34382248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a40 -00035229 53.34386063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a50 -00035230 53.34386444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a50 -00035231 53.34390259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a60 -00035232 53.34390640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a60 -00035233 53.34394455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a70 -00035234 53.34394836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a70 -00035235 53.34398270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a80 -00035236 53.34398651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a80 -00035237 53.34401321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a90 -00035238 53.34401703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a90 -00035239 53.34403992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa0 -00035240 53.34404373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa0 -00035241 53.34407043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab0 -00035242 53.34407425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab0 -00035243 53.34410095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac0 -00035244 53.34410477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac0 -00035245 53.34413147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad0 -00035246 53.34413147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad0 -00035247 53.34415817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae0 -00035248 53.34415817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae0 -00035249 53.34418488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af0 -00035250 53.34418869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af0 -00035251 53.34421539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b00 -00035252 53.34421921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b00 -00035253 53.34424210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b10 -00035254 53.34424591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b10 -00035255 53.34427261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b20 -00035256 53.34427643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b20 -00035257 53.34429932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b30 -00035258 53.34430313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b30 -00035259 53.34432983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b40 -00035260 53.34433365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b40 -00035261 53.34435654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b50 -00035262 53.34436035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b50 -00035263 53.34438705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b60 -00035264 53.34439087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b60 -00035265 53.34441757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b70 -00035266 53.34441757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b70 -00035267 53.34444427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b80 -00035268 53.34444809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b80 -00035269 53.34447479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b90 -00035270 53.34447861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b90 -00035271 53.34450150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba0 -00035272 53.34450150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba0 -00035273 53.34453201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb0 -00035274 53.34453201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb0 -00035275 53.34455490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc0 -00035276 53.34455872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc0 -00035277 53.34458542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd0 -00035278 53.34458923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd0 -00035279 53.34461594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be0 -00035280 53.34461594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be0 -00035281 53.34464264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf0 -00035282 53.34464645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf0 -00035283 53.34467316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c00 -00035284 53.34467697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c00 -00035285 53.34470367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c10 -00035286 53.34470367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c10 -00035287 53.34473419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c20 -00035288 53.34473419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c20 -00035289 53.34475708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c30 -00035290 53.34476089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c30 -00035291 53.34478760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c40 -00035292 53.34479141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c40 -00035293 53.34481430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c50 -00035294 53.34481812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c50 -00035295 53.34484482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c60 -00035296 53.34484863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c60 -00035297 53.34487534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c70 -00035298 53.34487534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c70 -00035299 53.34490204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c80 -00035300 53.34490585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c80 -00035301 53.34493256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c90 -00035302 53.34493256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c90 -00035303 53.34495926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca0 -00035304 53.34496307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca0 -00035305 53.34498978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb0 -00035306 53.34499359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb0 -00035307 53.34501648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc0 -00035308 53.34502029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc0 -00035309 53.34504700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd0 -00035310 53.34505081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd0 -00035311 53.34507370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce0 -00035312 53.34507370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce0 -00035313 53.34510040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf0 -00035314 53.34510422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf0 -00035315 53.34513092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d00 -00035316 53.34513092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d00 -00035317 53.34515762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d10 -00035318 53.34516144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d10 -00035319 53.34518814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d20 -00035320 53.34519196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d20 -00035321 53.34521484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d30 -00035322 53.34521866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d30 -00035323 53.34524536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d40 -00035324 53.34524918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d40 -00035325 53.34527206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d50 -00035326 53.34527588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d50 -00035327 53.34530258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d60 -00035328 53.34530640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d60 -00035329 53.34533310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d70 -00035330 53.34533310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d70 -00035331 53.34535980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d80 -00035332 53.34536362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d80 -00035333 53.34539032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d90 -00035334 53.34539032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d90 -00035335 53.34541702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da0 -00035336 53.34541702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da0 -00035337 53.34544373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db0 -00035338 53.34544754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db0 -00035339 53.34547043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc0 -00035340 53.34547424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc0 -00035341 53.34550095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dd0 -00035342 53.34550476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dd0 -00035343 53.34553146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44de0 -00035344 53.34553146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44de0 -00035345 53.34555817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44df0 -00035346 53.34556198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44df0 -00035347 53.34558868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e00 -00035348 53.34558868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e00 -00035349 53.34561539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e10 -00035350 53.34561920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e10 -00035351 53.34564590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e20 -00035352 53.34564972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e20 -00035353 53.34567261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e30 -00035354 53.34567642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e30 -00035355 53.34570313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e40 -00035356 53.34570694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e40 -00035357 53.34572983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e50 -00035358 53.34573364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e50 -00035359 53.34576035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e60 -00035360 53.34576035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e60 -00035361 53.34578705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e70 -00035362 53.34578705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e70 -00035363 53.34581375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e80 -00035364 53.34581757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e80 -00035365 53.34584427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e90 -00035366 53.34584808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e90 -00035367 53.34587097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea0 -00035368 53.34587479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea0 -00035369 53.34590149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb0 -00035370 53.34590530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb0 -00035371 53.34592819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec0 -00035372 53.34593201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec0 -00035373 53.34595871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed0 -00035374 53.34596252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed0 -00035375 53.34598541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee0 -00035376 53.34598923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee0 -00035377 53.34601593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef0 -00035378 53.34601974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef0 -00035379 53.34604645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f00 -00035380 53.34604645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f00 -00035381 53.34607315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f10 -00035382 53.34607697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f10 -00035383 53.34610367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f20 -00035384 53.34610748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f20 -00035385 53.34613037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f30 -00035386 53.34613037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f30 -00035387 53.34616089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f40 -00035388 53.34616470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f40 -00035389 53.34618759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f50 -00035390 53.34618759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f50 -00035391 53.34621811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f60 -00035392 53.34621811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f60 -00035393 53.34624481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f70 -00035394 53.34624481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f70 -00035395 53.34627151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f80 -00035396 53.34627533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f80 -00035397 53.34630203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f90 -00035398 53.34630585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f90 -00035399 53.34632874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa0 -00035400 53.34633255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa0 -00035401 53.34635925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb0 -00035402 53.34636307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb0 -00035403 53.34638596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc0 -00035404 53.34638977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc0 -00035405 53.34641647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd0 -00035406 53.34642029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd0 -00035407 53.34644318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe0 -00035408 53.34644699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe0 -00035409 53.34647369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ff0 -00035410 53.34647751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ff0 -00035411 53.34650421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45000 -00035412 53.34650421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45000 -00035413 53.34652710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45010 -00035414 53.34653091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45010 -00035415 53.34655762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45020 -00035416 53.34656143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45020 -00035417 53.34658432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45030 -00035418 53.34658813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45030 -00035419 53.34661484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45040 -00035420 53.34661865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45040 -00035421 53.34664154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45050 -00035422 53.34664536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45050 -00035423 53.34667206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45060 -00035424 53.34667587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45060 -00035425 53.34670258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45070 -00035426 53.34670258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45070 -00035427 53.34672928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45080 -00035428 53.34673309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45080 -00035429 53.34675980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45090 -00035430 53.34675980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45090 -00035431 53.34678650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450a0 -00035432 53.34679031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450a0 -00035433 53.34681702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450b0 -00035434 53.34682083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450b0 -00035435 53.34684372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450c0 -00035436 53.34684753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450c0 -00035437 53.34688950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450d0 -00035438 53.34689331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450d0 -00035439 53.34693527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450e0 -00035440 53.34693909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450e0 -00035441 53.34697723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450f0 -00035442 53.34698105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x450f0 -00035443 53.34701920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45100 -00035444 53.34702682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45100 -00035445 53.34706497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45110 -00035446 53.34707260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45110 -00035447 53.34711456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45120 -00035448 53.34711838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45120 -00035449 53.34715652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45130 -00035450 53.34716034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45130 -00035451 53.34719849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45140 -00035452 53.34720612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45140 -00035453 53.34724808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45150 -00035454 53.34725189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45150 -00035455 53.34729385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45160 -00035456 53.34729767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45160 -00035457 53.34733582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45170 -00035458 53.34733963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45170 -00035459 53.34737778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45180 -00035460 53.34738541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45180 -00035461 53.34742355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45190 -00035462 53.34743118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45190 -00035463 53.34746933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451a0 -00035464 53.34747314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451a0 -00035465 53.34751511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451b0 -00035466 53.34751892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451b0 -00035467 53.34755707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451c0 -00035468 53.34756470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451c0 -00035469 53.34760666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451d0 -00035470 53.34761047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451d0 -00035471 53.34764862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451e0 -00035472 53.34765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451e0 -00035473 53.34769440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451f0 -00035474 53.34769821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x451f0 -00035475 53.34773254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45200 -00035476 53.34773636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45200 -00035477 53.34776306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45210 -00035478 53.34776688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45210 -00035479 53.34779358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45220 -00035480 53.34779358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45220 -00035481 53.34782028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45230 -00035482 53.34782410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45230 -00035483 53.34785461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45240 -00035484 53.34785461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45240 -00035485 53.34788132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45250 -00035486 53.34788132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45250 -00035487 53.34791183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45260 -00035488 53.34791183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45260 -00035489 53.34793472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45270 -00035490 53.34793854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45270 -00035491 53.34796524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45280 -00035492 53.34796906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45280 -00035493 53.34799194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45290 -00035494 53.34799576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45290 -00035495 53.34802246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452a0 -00035496 53.34802628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452a0 -00035497 53.34805298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452b0 -00035498 53.34805298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452b0 -00035499 53.34807968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452c0 -00035500 53.34808350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452c0 -00035501 53.34811020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452d0 -00035502 53.34811020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452d0 -00035503 53.34813690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452e0 -00035504 53.34813690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452e0 -00035505 53.34816360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452f0 -00035506 53.34816742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x452f0 -00035507 53.34819031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45300 -00035508 53.34819412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45300 -00035509 53.34822083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45310 -00035510 53.34822464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45310 -00035511 53.34825134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45320 -00035512 53.34825134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45320 -00035513 53.34827805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45330 -00035514 53.34828186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45330 -00035515 53.34830856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45340 -00035516 53.34830856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45340 -00035517 53.34833527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45350 -00035518 53.34833908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45350 -00035519 53.34836578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45360 -00035520 53.34836960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45360 -00035521 53.34839249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45370 -00035522 53.34839630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45370 -00035523 53.34842300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45380 -00035524 53.34842300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45380 -00035525 53.34844971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45390 -00035526 53.34845352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45390 -00035527 53.34848022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453a0 -00035528 53.34848022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453a0 -00035529 53.34850693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453b0 -00035530 53.34850693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453b0 -00035531 53.34853363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453c0 -00035532 53.34853745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453c0 -00035533 53.34856415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453d0 -00035534 53.34856796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453d0 -00035535 53.34859085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453e0 -00035536 53.34859467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453e0 -00035537 53.34862137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453f0 -00035538 53.34862518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x453f0 -00035539 53.34864807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45400 -00035540 53.34865189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45400 -00035541 53.34868240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45410 -00035542 53.34868622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45410 -00035543 53.34872055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45420 -00035544 53.34872437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45420 -00035545 53.34874725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45430 -00035546 53.34875107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45430 -00035547 53.34877777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45440 -00035548 53.34878159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45440 -00035549 53.34880829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45450 -00035550 53.34880829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45450 -00035551 53.34883499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45460 -00035552 53.34883499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45460 -00035553 53.34886169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45470 -00035554 53.34886551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45470 -00035555 53.34888840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45480 -00035556 53.34889221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45480 -00035557 53.34891891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45490 -00035558 53.34892273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45490 -00035559 53.34894562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454a0 -00035560 53.34894943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454a0 -00035561 53.34897614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454b0 -00035562 53.34897995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454b0 -00035563 53.34900665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454c0 -00035564 53.34900665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454c0 -00035565 53.34903336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454d0 -00035566 53.34903717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454d0 -00035567 53.34906387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454e0 -00035568 53.34906387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454e0 -00035569 53.34909058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454f0 -00035570 53.34909439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x454f0 -00035571 53.34912109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45500 -00035572 53.34912491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45500 -00035573 53.34915161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45510 -00035574 53.34915161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45510 -00035575 53.34917831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45520 -00035576 53.34918213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45520 -00035577 53.34920502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45530 -00035578 53.34920883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45530 -00035579 53.34923553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45540 -00035580 53.34923935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45540 -00035581 53.34926224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45550 -00035582 53.34926605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45550 -00035583 53.34929276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45560 -00035584 53.34929657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45560 -00035585 53.34932327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45570 -00035586 53.34932327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45570 -00035587 53.34934998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45580 -00035588 53.34935379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45580 -00035589 53.34938049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45590 -00035590 53.34938049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45590 -00035591 53.34940720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a0 -00035592 53.34941101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a0 -00035593 53.34943771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b0 -00035594 53.34944153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b0 -00035595 53.34946442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455c0 -00035596 53.34946823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455c0 -00035597 53.34949493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455d0 -00035598 53.34949875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455d0 -00035599 53.34952164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455e0 -00035600 53.34952164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455e0 -00035601 53.34954834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455f0 -00035602 53.34955215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x455f0 -00035603 53.34957886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45600 -00035604 53.34958267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45600 -00035605 53.34960556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45610 -00035606 53.34960938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45610 -00035607 53.34963608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45620 -00035608 53.34963989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45620 -00035609 53.34966278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45630 -00035610 53.34966660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45630 -00035611 53.34969330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45640 -00035612 53.34969711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45640 -00035613 53.34972000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45650 -00035614 53.34972382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45650 -00035615 53.34975052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45660 -00035616 53.34975433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45660 -00035617 53.34978104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45670 -00035618 53.34978485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45670 -00035619 53.34981155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45680 -00035620 53.34981537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45680 -00035621 53.34983826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45690 -00035622 53.34984207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45690 -00035623 53.34986877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456a0 -00035624 53.34987259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456a0 -00035625 53.34989929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456b0 -00035626 53.34989929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456b0 -00035627 53.34992599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456c0 -00035628 53.34992981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456c0 -00035629 53.34995651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456d0 -00035630 53.34995651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456d0 -00035631 53.34998322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456e0 -00035632 53.34998322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456e0 -00035633 53.35001373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456f0 -00035634 53.35001373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x456f0 -00035635 53.35003662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45700 -00035636 53.35004044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45700 -00035637 53.35006714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45710 -00035638 53.35007095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45710 -00035639 53.35009766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45720 -00035640 53.35009766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45720 -00035641 53.35012436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45730 -00035642 53.35012817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45730 -00035643 53.35015488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45740 -00035644 53.35015869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45740 -00035645 53.35018158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45750 -00035646 53.35018539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45750 -00035647 53.35021210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45760 -00035648 53.35021591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45760 -00035649 53.35023880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45770 -00035650 53.35024261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45770 -00035651 53.35026932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45780 -00035652 53.35027313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45780 -00035653 53.35029602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45790 -00035654 53.35029602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45790 -00035655 53.35032654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457a0 -00035656 53.35033035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457a0 -00035657 53.35035706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457b0 -00035658 53.35035706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457b0 -00035659 53.35038376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c0 -00035660 53.35038757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c0 -00035661 53.35041428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d0 -00035662 53.35041428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d0 -00035663 53.35043716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e0 -00035664 53.35044098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e0 -00035665 53.35046768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f0 -00035666 53.35047150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f0 -00035667 53.35049438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45800 -00035668 53.35049820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45800 -00035669 53.35052490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45810 -00035670 53.35052872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45810 -00035671 53.35055542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45820 -00035672 53.35055542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45820 -00035673 53.35058212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45830 -00035674 53.35058594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45830 -00035675 53.35061264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45840 -00035676 53.35061264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45840 -00035677 53.35063934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45850 -00035678 53.35063934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45850 -00035679 53.35066986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45860 -00035680 53.35066986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45860 -00035681 53.35069275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45870 -00035682 53.35069656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45870 -00035683 53.35072327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45880 -00035684 53.35072708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45880 -00035685 53.35075378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45890 -00035686 53.35075378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45890 -00035687 53.35078049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a0 -00035688 53.35078430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a0 -00035689 53.35081100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b0 -00035690 53.35081482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b0 -00035691 53.35084152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c0 -00035692 53.35084534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c0 -00035693 53.35087204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d0 -00035694 53.35087204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d0 -00035695 53.35089874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e0 -00035696 53.35090256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e0 -00035697 53.35092926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f0 -00035698 53.35093307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f0 -00035699 53.35095596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45900 -00035700 53.35095978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45900 -00035701 53.35098648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45910 -00035702 53.35099030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45910 -00035703 53.35101318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45920 -00035704 53.35101318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45920 -00035705 53.35103989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45930 -00035706 53.35104370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45930 -00035707 53.35107040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45940 -00035708 53.35107040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45940 -00035709 53.35109711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45950 -00035710 53.35110092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45950 -00035711 53.35112762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45960 -00035712 53.35113144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45960 -00035713 53.35115433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45970 -00035714 53.35115814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45970 -00035715 53.35118484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45980 -00035716 53.35118866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45980 -00035717 53.35121155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45990 -00035718 53.35121155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45990 -00035719 53.35124207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a0 -00035720 53.35124207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a0 -00035721 53.35126877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b0 -00035722 53.35126877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b0 -00035723 53.35129547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c0 -00035724 53.35129929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c0 -00035725 53.35132599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d0 -00035726 53.35132980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d0 -00035727 53.35135269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e0 -00035728 53.35135651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e0 -00035729 53.35138321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f0 -00035730 53.35138702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f0 -00035731 53.35140991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a00 -00035732 53.35141373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a00 -00035733 53.35144043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a10 -00035734 53.35144424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a10 -00035735 53.35146713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a20 -00035736 53.35146713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a20 -00035737 53.35149765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a30 -00035738 53.35149765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a30 -00035739 53.35152817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a40 -00035740 53.35152817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a40 -00035741 53.35155106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a50 -00035742 53.35155487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a50 -00035743 53.35158539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a60 -00035744 53.35158539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a60 -00035745 53.35161209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a70 -00035746 53.35161209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a70 -00035747 53.35163879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a80 -00035748 53.35164261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a80 -00035749 53.35166550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a90 -00035750 53.35166931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a90 -00035751 53.35169601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa0 -00035752 53.35169983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa0 -00035753 53.35172653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab0 -00035754 53.35172653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab0 -00035755 53.35175323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac0 -00035756 53.35175705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac0 -00035757 53.35178375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad0 -00035758 53.35178375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad0 -00035759 53.35181046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae0 -00035760 53.35181427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae0 -00035761 53.35184097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af0 -00035762 53.35184097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af0 -00035763 53.35186386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b00 -00035764 53.35186768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b00 -00035765 53.35189438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b10 -00035766 53.35189819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b10 -00035767 53.35192490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b20 -00035768 53.35192490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b20 -00035769 53.35195160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b30 -00035770 53.35195541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b30 -00035771 53.35198212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b40 -00035772 53.35198212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b40 -00035773 53.35200882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b50 -00035774 53.35201263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b50 -00035775 53.35203934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b60 -00035776 53.35203934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b60 -00035777 53.35206604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b70 -00035778 53.35206604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b70 -00035779 53.35209274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b80 -00035780 53.35209656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b80 -00035781 53.35212326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b90 -00035782 53.35212326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b90 -00035783 53.35214996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba0 -00035784 53.35215378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba0 -00035785 53.35218048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb0 -00035786 53.35218430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb0 -00035787 53.35220718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc0 -00035788 53.35221100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc0 -00035789 53.35223770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd0 -00035790 53.35224152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd0 -00035791 53.35226440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be0 -00035792 53.35226822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be0 -00035793 53.35229492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf0 -00035794 53.35229874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf0 -00035795 53.35232162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c00 -00035796 53.35232544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c00 -00035797 53.35235214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c10 -00035798 53.35235596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c10 -00035799 53.35238266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c20 -00035800 53.35238266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c20 -00035801 53.35240936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c30 -00035802 53.35240936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c30 -00035803 53.35243988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c40 -00035804 53.35243988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c40 -00035805 53.35246277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c50 -00035806 53.35246658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c50 -00035807 53.35249329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c60 -00035808 53.35249710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c60 -00035809 53.35251999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c70 -00035810 53.35252380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c70 -00035811 53.35255051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c80 -00035812 53.35255432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c80 -00035813 53.35258102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c90 -00035814 53.35258102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c90 -00035815 53.35260773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca0 -00035816 53.35261154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca0 -00035817 53.35263824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb0 -00035818 53.35263824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb0 -00035819 53.35266495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc0 -00035820 53.35266495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc0 -00035821 53.35269165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd0 -00035822 53.35269547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd0 -00035823 53.35271835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce0 -00035824 53.35272217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce0 -00035825 53.35274887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf0 -00035826 53.35275269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf0 -00035827 53.35277939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d00 -00035828 53.35277939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d00 -00035829 53.35280609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d10 -00035830 53.35280991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d10 -00035831 53.35283661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d20 -00035832 53.35283661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d20 -00035833 53.35286331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d30 -00035834 53.35286713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d30 -00035835 53.35289383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d40 -00035836 53.35289764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d40 -00035837 53.35292053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -00035838 53.35292435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -00035839 53.35295105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -00035840 53.35295486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -00035841 53.35297775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -00035842 53.35297775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -00035843 53.35300446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d80 -00035844 53.35300827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d80 -00035845 53.35303497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d90 -00035846 53.35303497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d90 -00035847 53.35306168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da0 -00035848 53.35306549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da0 -00035849 53.35309219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db0 -00035850 53.35309601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db0 -00035851 53.35311890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc0 -00035852 53.35312271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc0 -00035853 53.35314941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd0 -00035854 53.35315323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd0 -00035855 53.35317612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de0 -00035856 53.35317993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de0 -00035857 53.35320663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45df0 -00035858 53.35320663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45df0 -00035859 53.35323334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e00 -00035860 53.35323334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e00 -00035861 53.35326004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e10 -00035862 53.35326385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e10 -00035863 53.35329056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e20 -00035864 53.35329437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e20 -00035865 53.35331726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e30 -00035866 53.35332108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e30 -00035867 53.35334778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e40 -00035868 53.35335159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e40 -00035869 53.35337448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e50 -00035870 53.35337830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e50 -00035871 53.35340500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e60 -00035872 53.35340881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e60 -00035873 53.35343170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e70 -00035874 53.35343170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e70 -00035875 53.35346222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e80 -00035876 53.35346603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e80 -00035877 53.35349274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e90 -00035878 53.35349274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e90 -00035879 53.35351563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea0 -00035880 53.35351944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea0 -00035881 53.35354614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb0 -00035882 53.35354996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb0 -00035883 53.35357285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec0 -00035884 53.35357666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec0 -00035885 53.35360336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed0 -00035886 53.35360718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed0 -00035887 53.35363388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee0 -00035888 53.35363388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee0 -00035889 53.35366058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef0 -00035890 53.35366440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef0 -00035891 53.35369110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f00 -00035892 53.35369110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f00 -00035893 53.35371780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f10 -00035894 53.35371780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f10 -00035895 53.35374451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f20 -00035896 53.35374832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f20 -00035897 53.35377121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f30 -00035898 53.35377502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f30 -00035899 53.35380173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f40 -00035900 53.35380554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f40 -00035901 53.35383224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f50 -00035902 53.35383224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f50 -00035903 53.35385895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f60 -00035904 53.35386276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f60 -00035905 53.35388947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f70 -00035906 53.35388947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f70 -00035907 53.35391617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f80 -00035908 53.35391617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f80 -00035909 53.35394669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f90 -00035910 53.35394669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f90 -00035911 53.35396957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa0 -00035912 53.35397339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa0 -00035913 53.35400009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb0 -00035914 53.35400391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb0 -00035915 53.35403061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc0 -00035916 53.35403061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc0 -00035917 53.35405731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd0 -00035918 53.35406113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd0 -00035919 53.35408783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe0 -00035920 53.35408783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe0 -00035921 53.35411453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ff0 -00035922 53.35411835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ff0 -00035923 53.35414505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46000 -00035924 53.35414886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46000 -00035925 53.35417175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46010 -00035926 53.35417557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46010 -00035927 53.35420227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46020 -00035928 53.35420609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46020 -00035929 53.35422897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46030 -00035930 53.35422897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46030 -00035931 53.35425949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46040 -00035932 53.35425949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46040 -00035933 53.35428619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46050 -00035934 53.35428619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46050 -00035935 53.35431290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46060 -00035936 53.35431671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46060 -00035937 53.35434341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46070 -00035938 53.35434723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46070 -00035939 53.35437012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46080 -00035940 53.35437393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46080 -00035941 53.35440063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46090 -00035942 53.35440445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46090 -00035943 53.35442734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a0 -00035944 53.35443115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a0 -00035945 53.35445786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b0 -00035946 53.35446167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b0 -00035947 53.35448456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c0 -00035948 53.35448837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c0 -00035949 53.35451508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d0 -00035950 53.35451508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d0 -00035951 53.35454178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e0 -00035952 53.35454559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e0 -00035953 53.35456848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f0 -00035954 53.35457230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f0 -00035955 53.35459900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46100 -00035956 53.35460281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46100 -00035957 53.35462570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46110 -00035958 53.35462952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46110 -00035959 53.35465622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46120 -00035960 53.35466003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46120 -00035961 53.35468292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46130 -00035962 53.35468674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46130 -00035963 53.35471344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46140 -00035964 53.35471725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46140 -00035965 53.35474396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46150 -00035966 53.35474396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46150 -00035967 53.35477066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46160 -00035968 53.35477448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46160 -00035969 53.35480118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46170 -00035970 53.35480118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46170 -00035971 53.35482788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46180 -00035972 53.35482788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46180 -00035973 53.35485458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46190 -00035974 53.35485840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46190 -00035975 53.35488510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a0 -00035976 53.35488510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a0 -00035977 53.35491180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b0 -00035978 53.35491562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b0 -00035979 53.35494232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c0 -00035980 53.35494232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c0 -00035981 53.35496902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d0 -00035982 53.35497284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d0 -00035983 53.35499954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e0 -00035984 53.35500336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e0 -00035985 53.35502625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f0 -00035986 53.35502625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f0 -00035987 53.35505676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46200 -00035988 53.35505676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46200 -00035989 53.35508347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46210 -00035990 53.35508347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46210 -00035991 53.35511017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46220 -00035992 53.35511398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46220 -00035993 53.35514069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46230 -00035994 53.35514069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46230 -00035995 53.35516739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46240 -00035996 53.35517120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46240 -00035997 53.35519791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46250 -00035998 53.35520172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46250 -00035999 53.35522461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46260 -00036000 53.35522842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46260 -00036001 53.35525513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46270 -00036002 53.35525513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46270 -00036003 53.35528183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46280 -00036004 53.35528183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46280 -00036005 53.35530853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46290 -00036006 53.35531235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46290 -00036007 53.35533905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a0 -00036008 53.35533905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a0 -00036009 53.35536575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b0 -00036010 53.35536957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b0 -00036011 53.35539627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c0 -00036012 53.35540009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c0 -00036013 53.35542297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d0 -00036014 53.35542679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d0 -00036015 53.35545349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e0 -00036016 53.35545731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e0 -00036017 53.35548019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f0 -00036018 53.35548401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f0 -00036019 53.35551071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46300 -00036020 53.35551453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46300 -00036021 53.35553741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46310 -00036022 53.35554123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46310 -00036023 53.35556793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46320 -00036024 53.35557175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46320 -00036025 53.35559845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46330 -00036026 53.35559845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46330 -00036027 53.35562515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46340 -00036028 53.35562897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46340 -00036029 53.35565567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46350 -00036030 53.35565948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46350 -00036031 53.35568237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46360 -00036032 53.35568619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46360 -00036033 53.35571289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46370 -00036034 53.35571671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46370 -00036035 53.35573959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46380 -00036036 53.35574341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46380 -00036037 53.35577011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46390 -00036038 53.35577393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46390 -00036039 53.35579681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463a0 -00036040 53.35579681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463a0 -00036041 53.35582352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463b0 -00036042 53.35582733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463b0 -00036043 53.35585403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463c0 -00036044 53.35585785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463c0 -00036045 53.35588074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463d0 -00036046 53.35588455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463d0 -00036047 53.35591125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463e0 -00036048 53.35591507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463e0 -00036049 53.35593796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463f0 -00036050 53.35594177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x463f0 -00036051 53.35596848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46400 -00036052 53.35597229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46400 -00036053 53.35599518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46410 -00036054 53.35599899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46410 -00036055 53.35602570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46420 -00036056 53.35602951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46420 -00036057 53.35605621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46430 -00036058 53.35605621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46430 -00036059 53.35608292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46440 -00036060 53.35608292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46440 -00036061 53.35610962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46450 -00036062 53.35611343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46450 -00036063 53.35613632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46460 -00036064 53.35614014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46460 -00036065 53.35616684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46470 -00036066 53.35617065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46470 -00036067 53.35619354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46480 -00036068 53.35619736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46480 -00036069 53.35622406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46490 -00036070 53.35622787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46490 -00036071 53.35625458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a0 -00036072 53.35625458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a0 -00036073 53.35628128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b0 -00036074 53.35628510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b0 -00036075 53.35631180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c0 -00036076 53.35631180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c0 -00036077 53.35633469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d0 -00036078 53.35633850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d0 -00036079 53.35636520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e0 -00036080 53.35636902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e0 -00036081 53.35639191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f0 -00036082 53.35639572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f0 -00036083 53.35642242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46500 -00036084 53.35642624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46500 -00036085 53.35645294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46510 -00036086 53.35645294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46510 -00036087 53.35647964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46520 -00036088 53.35648346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46520 -00036089 53.35651016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46530 -00036090 53.35651016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46530 -00036091 53.35653687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46540 -00036092 53.35653687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46540 -00036093 53.35656738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46550 -00036094 53.35656738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46550 -00036095 53.35659409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46560 -00036096 53.35659409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46560 -00036097 53.35662460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46570 -00036098 53.35662460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46570 -00036099 53.35665131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46580 -00036100 53.35665131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46580 -00036101 53.35667801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46590 -00036102 53.35668182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46590 -00036103 53.35670853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a0 -00036104 53.35670853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a0 -00036105 53.35673523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b0 -00036106 53.35673904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b0 -00036107 53.35676575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c0 -00036108 53.35676956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c0 -00036109 53.35679245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d0 -00036110 53.35679626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d0 -00036111 53.35682297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e0 -00036112 53.35682297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e0 -00036113 53.35684967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f0 -00036114 53.35684967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f0 -00036115 53.35687637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46600 -00036116 53.35688019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46600 -00036117 53.35690689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46610 -00036118 53.35691071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46610 -00036119 53.35693359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46620 -00036120 53.35693741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46620 -00036121 53.35696411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46630 -00036122 53.35696793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46630 -00036123 53.35699081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46640 -00036124 53.35699463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46640 -00036125 53.35702133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46650 -00036126 53.35702515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46650 -00036127 53.35704803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46660 -00036128 53.35704803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46660 -00036129 53.35707474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46670 -00036130 53.35707855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46670 -00036131 53.35710526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46680 -00036132 53.35710907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46680 -00036133 53.35713196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46690 -00036134 53.35713577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46690 -00036135 53.35716248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a0 -00036136 53.35716629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a0 -00036137 53.35718918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b0 -00036138 53.35719299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b0 -00036139 53.35721970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c0 -00036140 53.35722351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c0 -00036141 53.35724640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d0 -00036142 53.35725021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d0 -00036143 53.35727692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e0 -00036144 53.35728073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e0 -00036145 53.35730743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f0 -00036146 53.35730743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f0 -00036147 53.35733032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46700 -00036148 53.35733414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46700 -00036149 53.35736465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46710 -00036150 53.35736465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46710 -00036151 53.35738754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46720 -00036152 53.35739136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46720 -00036153 53.35741806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46730 -00036154 53.35742188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46730 -00036155 53.35744476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46740 -00036156 53.35744858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46740 -00036157 53.35747528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46750 -00036158 53.35747910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46750 -00036159 53.35750580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46760 -00036160 53.35750580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46760 -00036161 53.35753250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46770 -00036162 53.35753632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46770 -00036163 53.35756302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46780 -00036164 53.35756302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46780 -00036165 53.35758591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46790 -00036166 53.35758972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46790 -00036167 53.35761642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a0 -00036168 53.35762024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a0 -00036169 53.35764313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b0 -00036170 53.35764694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b0 -00036171 53.35767365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c0 -00036172 53.35767746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c0 -00036173 53.35770416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d0 -00036174 53.35770416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d0 -00036175 53.35773087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e0 -00036176 53.35773468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e0 -00036177 53.35776138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f0 -00036178 53.35776138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f0 -00036179 53.35778809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46800 -00036180 53.35778809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46800 -00036181 53.35781860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46810 -00036182 53.35781860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46810 -00036183 53.35784531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46820 -00036184 53.35784531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46820 -00036185 53.35787201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46830 -00036186 53.35787582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46830 -00036187 53.35790253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46840 -00036188 53.35790253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46840 -00036189 53.35792923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46850 -00036190 53.35793304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46850 -00036191 53.35795975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46860 -00036192 53.35795975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46860 -00036193 53.35798645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46870 -00036194 53.35799026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46870 -00036195 53.35801697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46880 -00036196 53.35802078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46880 -00036197 53.35804367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46890 -00036198 53.35804367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46890 -00036199 53.35807037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a0 -00036200 53.35807419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a0 -00036201 53.35810089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b0 -00036202 53.35810089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b0 -00036203 53.35812759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c0 -00036204 53.35813141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c0 -00036205 53.35815811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d0 -00036206 53.35815811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d0 -00036207 53.35818481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e0 -00036208 53.35818863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e0 -00036209 53.35821533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f0 -00036210 53.35821915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f0 -00036211 53.35824203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46900 -00036212 53.35824585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46900 -00036213 53.35827255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46910 -00036214 53.35827255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46910 -00036215 53.35829926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46920 -00036216 53.35829926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46920 -00036217 53.35832596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46930 -00036218 53.35832977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46930 -00036219 53.35835648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46940 -00036220 53.35836029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46940 -00036221 53.35838318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46950 -00036222 53.35838699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46950 -00036223 53.35841370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46960 -00036224 53.35841751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46960 -00036225 53.35844040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46970 -00036226 53.35844421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46970 -00036227 53.35847092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46980 -00036228 53.35847473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46980 -00036229 53.35849762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46990 -00036230 53.35850143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46990 -00036231 53.35852814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a0 -00036232 53.35853195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a0 -00036233 53.35855865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b0 -00036234 53.35855865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b0 -00036235 53.35858536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469c0 -00036236 53.35858536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469c0 -00036237 53.35861206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469d0 -00036238 53.35861588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469d0 -00036239 53.35863876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469e0 -00036240 53.35864258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469e0 -00036241 53.35866928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469f0 -00036242 53.35867310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x469f0 -00036243 53.35869598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a00 -00036244 53.35869980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a00 -00036245 53.35872650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a10 -00036246 53.35873032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a10 -00036247 53.35875702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a20 -00036248 53.35875702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a20 -00036249 53.35878372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a30 -00036250 53.35878754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a30 -00036251 53.35881424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a40 -00036252 53.35881424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a40 -00036253 53.35884094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a50 -00036254 53.35884094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a50 -00036255 53.35887146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a60 -00036256 53.35887146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a60 -00036257 53.35889435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a70 -00036258 53.35889816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a70 -00036259 53.35892487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a80 -00036260 53.35892868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a80 -00036261 53.35895538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a90 -00036262 53.35895538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a90 -00036263 53.35898209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46aa0 -00036264 53.35898590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46aa0 -00036265 53.35901260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ab0 -00036266 53.35901260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ab0 -00036267 53.35903931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ac0 -00036268 53.35904312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ac0 -00036269 53.35906982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ad0 -00036270 53.35907364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ad0 -00036271 53.35909653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ae0 -00036272 53.35910034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ae0 -00036273 53.35912704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46af0 -00036274 53.35913086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46af0 -00036275 53.35915375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b00 -00036276 53.35915756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b00 -00036277 53.35918427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b10 -00036278 53.35918427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b10 -00036279 53.35921097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b20 -00036280 53.35921097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b20 -00036281 53.35923767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b30 -00036282 53.35924149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b30 -00036283 53.35926819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b40 -00036284 53.35927200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b40 -00036285 53.35929489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b50 -00036286 53.35929871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b50 -00036287 53.35932541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b60 -00036288 53.35932922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b60 -00036289 53.35935211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b70 -00036290 53.35935593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b70 -00036291 53.35938263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b80 -00036292 53.35938644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b80 -00036293 53.35940933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b90 -00036294 53.35941315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b90 -00036295 53.35943985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ba0 -00036296 53.35943985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ba0 -00036297 53.35946655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bb0 -00036298 53.35947037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bb0 -00036299 53.35949326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bc0 -00036300 53.35949707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bc0 -00036301 53.35952377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bd0 -00036302 53.35952759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bd0 -00036303 53.35955048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46be0 -00036304 53.35955429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46be0 -00036305 53.35958099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf0 -00036306 53.35958481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf0 -00036307 53.35960770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c00 -00036308 53.35961151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c00 -00036309 53.35963821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c10 -00036310 53.35964203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c10 -00036311 53.35966873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c20 -00036312 53.35966873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c20 -00036313 53.35969162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c30 -00036314 53.35969543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c30 -00036315 53.35972595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c40 -00036316 53.35972595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c40 -00036317 53.35974884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c50 -00036318 53.35975266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c50 -00036319 53.35977936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c60 -00036320 53.35978317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c60 -00036321 53.35980988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c70 -00036322 53.35980988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c70 -00036323 53.35983658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c80 -00036324 53.35984039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c80 -00036325 53.35986710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c90 -00036326 53.35986710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c90 -00036327 53.35989380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca0 -00036328 53.35989761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca0 -00036329 53.35992432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb0 -00036330 53.35992432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb0 -00036331 53.35995102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc0 -00036332 53.35995102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc0 -00036333 53.35997772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd0 -00036334 53.35998154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd0 -00036335 53.36000824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce0 -00036336 53.36000824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce0 -00036337 53.36003494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf0 -00036338 53.36003876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf0 -00036339 53.36006546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d00 -00036340 53.36006546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d00 -00036341 53.36009216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d10 -00036342 53.36009598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d10 -00036343 53.36012268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d20 -00036344 53.36012650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d20 -00036345 53.36014938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d30 -00036346 53.36015320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d30 -00036347 53.36017990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d40 -00036348 53.36017990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d40 -00036349 53.36020660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d50 -00036350 53.36020660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d50 -00036351 53.36023331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d60 -00036352 53.36023712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d60 -00036353 53.36026382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d70 -00036354 53.36026382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d70 -00036355 53.36029053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d80 -00036356 53.36029434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d80 -00036357 53.36032104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d90 -00036358 53.36032486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d90 -00036359 53.36034775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da0 -00036360 53.36035156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da0 -00036361 53.36037827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -00036362 53.36038208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -00036363 53.36040497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -00036364 53.36040878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -00036365 53.36043549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -00036366 53.36043549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -00036367 53.36046219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -00036368 53.36046219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -00036369 53.36048889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -00036370 53.36049271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -00036371 53.36051941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -00036372 53.36052322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -00036373 53.36054611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -00036374 53.36054993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -00036375 53.36057663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -00036376 53.36058044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -00036377 53.36060333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -00036378 53.36060715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -00036379 53.36063385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -00036380 53.36063766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -00036381 53.36066055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -00036382 53.36066055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -00036383 53.36069107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e60 -00036384 53.36069107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e60 -00036385 53.36071777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e70 -00036386 53.36072159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e70 -00036387 53.36074448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e80 -00036388 53.36074829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e80 -00036389 53.36077499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e90 -00036390 53.36077881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e90 -00036391 53.36080170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ea0 -00036392 53.36080551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ea0 -00036393 53.36083221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46eb0 -00036394 53.36083603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46eb0 -00036395 53.36085892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ec0 -00036396 53.36086273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ec0 -00036397 53.36088943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ed0 -00036398 53.36088943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ed0 -00036399 53.36091995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ee0 -00036400 53.36091995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ee0 -00036401 53.36094284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ef0 -00036402 53.36094666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ef0 -00036403 53.36097336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f00 -00036404 53.36097717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f00 -00036405 53.36100006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f10 -00036406 53.36100388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f10 -00036407 53.36103058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f20 -00036408 53.36103439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f20 -00036409 53.36106110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f30 -00036410 53.36106110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f30 -00036411 53.36108780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f40 -00036412 53.36109161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f40 -00036413 53.36111832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f50 -00036414 53.36111832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f50 -00036415 53.36114502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f60 -00036416 53.36114883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f60 -00036417 53.36117554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f70 -00036418 53.36117935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f70 -00036419 53.36120224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f80 -00036420 53.36120605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f80 -00036421 53.36123276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f90 -00036422 53.36123657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f90 -00036423 53.36125946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fa0 -00036424 53.36126328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fa0 -00036425 53.36128998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fb0 -00036426 53.36129379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fb0 -00036427 53.36131668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fc0 -00036428 53.36132050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fc0 -00036429 53.36134720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fd0 -00036430 53.36134720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fd0 -00036431 53.36137772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fe0 -00036432 53.36137772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fe0 -00036433 53.36140060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ff0 -00036434 53.36140442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ff0 -00036435 53.36143112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47000 -00036436 53.36143494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47000 -00036437 53.36145782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47010 -00036438 53.36146164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47010 -00036439 53.36148834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47020 -00036440 53.36149216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47020 -00036441 53.36151505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47030 -00036442 53.36151886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47030 -00036443 53.36154556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47040 -00036444 53.36154938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47040 -00036445 53.36157608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47050 -00036446 53.36157608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47050 -00036447 53.36160278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47060 -00036448 53.36160660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47060 -00036449 53.36163330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47070 -00036450 53.36163330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47070 -00036451 53.36166000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47080 -00036452 53.36166000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47080 -00036453 53.36168671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47090 -00036454 53.36169052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47090 -00036455 53.36171341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470a0 -00036456 53.36171722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470a0 -00036457 53.36174393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470b0 -00036458 53.36174774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470b0 -00036459 53.36177444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470c0 -00036460 53.36177444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470c0 -00036461 53.36180115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470d0 -00036462 53.36180496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470d0 -00036463 53.36183167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470e0 -00036464 53.36183548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470e0 -00036465 53.36185837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470f0 -00036466 53.36185837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x470f0 -00036467 53.36188889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47100 -00036468 53.36188889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47100 -00036469 53.36191177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47110 -00036470 53.36191559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47110 -00036471 53.36194229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47120 -00036472 53.36194611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47120 -00036473 53.36197281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47130 -00036474 53.36197281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47130 -00036475 53.36199951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47140 -00036476 53.36200333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47140 -00036477 53.36203003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47150 -00036478 53.36203384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47150 -00036479 53.36205673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47160 -00036480 53.36206055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47160 -00036481 53.36208725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47170 -00036482 53.36209106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47170 -00036483 53.36211395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47180 -00036484 53.36211777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47180 -00036485 53.36214447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47190 -00036486 53.36214447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47190 -00036487 53.36217117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471a0 -00036488 53.36217117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471a0 -00036489 53.36220169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471b0 -00036490 53.36220551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471b0 -00036491 53.36223221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471c0 -00036492 53.36223221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471c0 -00036493 53.36225891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471d0 -00036494 53.36225891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471d0 -00036495 53.36228943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471e0 -00036496 53.36228943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471e0 -00036497 53.36231613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f0 -00036498 53.36231613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f0 -00036499 53.36234665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47200 -00036500 53.36234665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47200 -00036501 53.36236954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47210 -00036502 53.36237335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47210 -00036503 53.36240005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47220 -00036504 53.36240387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47220 -00036505 53.36243057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47230 -00036506 53.36243057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47230 -00036507 53.36245728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47240 -00036508 53.36246109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47240 -00036509 53.36248779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47250 -00036510 53.36248779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47250 -00036511 53.36251450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47260 -00036512 53.36251831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47260 -00036513 53.36254501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47270 -00036514 53.36254501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47270 -00036515 53.36256790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47280 -00036516 53.36257172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47280 -00036517 53.36259842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47290 -00036518 53.36260223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47290 -00036519 53.36262894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472a0 -00036520 53.36262894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472a0 -00036521 53.36265564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472b0 -00036522 53.36265945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472b0 -00036523 53.36268616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472c0 -00036524 53.36268616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472c0 -00036525 53.36271286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472d0 -00036526 53.36271667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472d0 -00036527 53.36274338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472e0 -00036528 53.36274719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472e0 -00036529 53.36277008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472f0 -00036530 53.36277008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x472f0 -00036531 53.36280060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47300 -00036532 53.36280060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47300 -00036533 53.36282730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47310 -00036534 53.36283112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47310 -00036535 53.36285782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47320 -00036536 53.36286163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47320 -00036537 53.36288452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47330 -00036538 53.36288452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47330 -00036539 53.36291122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47340 -00036540 53.36291504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47340 -00036541 53.36294174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47350 -00036542 53.36294556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47350 -00036543 53.36296844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47360 -00036544 53.36297226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47360 -00036545 53.36299896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47370 -00036546 53.36300278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47370 -00036547 53.36302567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47380 -00036548 53.36302948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47380 -00036549 53.36305618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47390 -00036550 53.36306000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47390 -00036551 53.36308670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473a0 -00036552 53.36308670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473a0 -00036553 53.36311340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473b0 -00036554 53.36311340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473b0 -00036555 53.36314011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473c0 -00036556 53.36314392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473c0 -00036557 53.36316681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473d0 -00036558 53.36317062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473d0 -00036559 53.36319733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473e0 -00036560 53.36320114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473e0 -00036561 53.36322403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473f0 -00036562 53.36322784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x473f0 -00036563 53.36325455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47400 -00036564 53.36325836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47400 -00036565 53.36328506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47410 -00036566 53.36328506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47410 -00036567 53.36331177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47420 -00036568 53.36331558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47420 -00036569 53.36334229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47430 -00036570 53.36334229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47430 -00036571 53.36336517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47440 -00036572 53.36336899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47440 -00036573 53.36339569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47450 -00036574 53.36339951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47450 -00036575 53.36342239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47460 -00036576 53.36342621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47460 -00036577 53.36345291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47470 -00036578 53.36345673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47470 -00036579 53.36348343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47480 -00036580 53.36348343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47480 -00036581 53.36351013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47490 -00036582 53.36351395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47490 -00036583 53.36354065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a0 -00036584 53.36354065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a0 -00036585 53.36356735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b0 -00036586 53.36357117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b0 -00036587 53.36359787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c0 -00036588 53.36360168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c0 -00036589 53.36362457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d0 -00036590 53.36362839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d0 -00036591 53.36365509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e0 -00036592 53.36365509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e0 -00036593 53.36368179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f0 -00036594 53.36368179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f0 -00036595 53.36370850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47500 -00036596 53.36371231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47500 -00036597 53.36373901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47510 -00036598 53.36373901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47510 -00036599 53.36376572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47520 -00036600 53.36376953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47520 -00036601 53.36379623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47530 -00036602 53.36380005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47530 -00036603 53.36382294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47540 -00036604 53.36382675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47540 -00036605 53.36385345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47550 -00036606 53.36385727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47550 -00036607 53.36388016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47560 -00036608 53.36388397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47560 -00036609 53.36391068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47570 -00036610 53.36391068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47570 -00036611 53.36393738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47580 -00036612 53.36393738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47580 -00036613 53.36396408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47590 -00036614 53.36396790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47590 -00036615 53.36399460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a0 -00036616 53.36399841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a0 -00036617 53.36402130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b0 -00036618 53.36402512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b0 -00036619 53.36405182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c0 -00036620 53.36405563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c0 -00036621 53.36407852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d0 -00036622 53.36408234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d0 -00036623 53.36410904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e0 -00036624 53.36411285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e0 -00036625 53.36413574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f0 -00036626 53.36413956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f0 -00036627 53.36416626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47600 -00036628 53.36417007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47600 -00036629 53.36419678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47610 -00036630 53.36419678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47610 -00036631 53.36422348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47620 -00036632 53.36422729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47620 -00036633 53.36425400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47630 -00036634 53.36425781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47630 -00036635 53.36428070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47640 -00036636 53.36428070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47640 -00036637 53.36430740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47650 -00036638 53.36431122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47650 -00036639 53.36433411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47660 -00036640 53.36433792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47660 -00036641 53.36436462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47670 -00036642 53.36436844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47670 -00036643 53.36439514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47680 -00036644 53.36439514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47680 -00036645 53.36442184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47690 -00036646 53.36442566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47690 -00036647 53.36445236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a0 -00036648 53.36445618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a0 -00036649 53.36447906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b0 -00036650 53.36447906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b0 -00036651 53.36450958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c0 -00036652 53.36450958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c0 -00036653 53.36453629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d0 -00036654 53.36453629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d0 -00036655 53.36456299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e0 -00036656 53.36456680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e0 -00036657 53.36459351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f0 -00036658 53.36459351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f0 -00036659 53.36462021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47700 -00036660 53.36462402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47700 -00036661 53.36465073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47710 -00036662 53.36465454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47710 -00036663 53.36467743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47720 -00036664 53.36468124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47720 -00036665 53.36470795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47730 -00036666 53.36471176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47730 -00036667 53.36473465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47740 -00036668 53.36473846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47740 -00036669 53.36476898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47750 -00036670 53.36476898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47750 -00036671 53.36479568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47760 -00036672 53.36479568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47760 -00036673 53.36482239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47770 -00036674 53.36482620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47770 -00036675 53.36485291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47780 -00036676 53.36485291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47780 -00036677 53.36487961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47790 -00036678 53.36488342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47790 -00036679 53.36491013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477a0 -00036680 53.36491013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477a0 -00036681 53.36493683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477b0 -00036682 53.36494064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477b0 -00036683 53.36496735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477c0 -00036684 53.36497116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477c0 -00036685 53.36499405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477d0 -00036686 53.36499786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477d0 -00036687 53.36502457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477e0 -00036688 53.36502457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477e0 -00036689 53.36505127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477f0 -00036690 53.36505127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x477f0 -00036691 53.36507797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47800 -00036692 53.36508179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47800 -00036693 53.36510849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47810 -00036694 53.36511230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47810 -00036695 53.36513519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47820 -00036696 53.36513901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47820 -00036697 53.36516571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47830 -00036698 53.36516953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47830 -00036699 53.36519241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47840 -00036700 53.36519623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47840 -00036701 53.36522293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47850 -00036702 53.36522675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47850 -00036703 53.36524963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47860 -00036704 53.36525345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47860 -00036705 53.36528015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47870 -00036706 53.36528015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47870 -00036707 53.36530685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47880 -00036708 53.36531067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47880 -00036709 53.36533737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47890 -00036710 53.36533737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47890 -00036711 53.36536407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478a0 -00036712 53.36536789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478a0 -00036713 53.36539078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478b0 -00036714 53.36539459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478b0 -00036715 53.36542130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478c0 -00036716 53.36542511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478c0 -00036717 53.36544800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478d0 -00036718 53.36545181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478d0 -00036719 53.36547852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478e0 -00036720 53.36548233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478e0 -00036721 53.36550903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478f0 -00036722 53.36550903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x478f0 -00036723 53.36553574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47900 -00036724 53.36553955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47900 -00036725 53.36556625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47910 -00036726 53.36556625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47910 -00036727 53.36559296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47920 -00036728 53.36559296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47920 -00036729 53.36562347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47930 -00036730 53.36562347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47930 -00036731 53.36564636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47940 -00036732 53.36565018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47940 -00036733 53.36567688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47950 -00036734 53.36568069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47950 -00036735 53.36570740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47960 -00036736 53.36570740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47960 -00036737 53.36573410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47970 -00036738 53.36573792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47970 -00036739 53.36576462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47980 -00036740 53.36576462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47980 -00036741 53.36579132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47990 -00036742 53.36579514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47990 -00036743 53.36582184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479a0 -00036744 53.36582565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479a0 -00036745 53.36584854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479b0 -00036746 53.36585236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479b0 -00036747 53.36587906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479c0 -00036748 53.36588287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479c0 -00036749 53.36590576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479d0 -00036750 53.36590958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479d0 -00036751 53.36593628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479e0 -00036752 53.36593628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479e0 -00036753 53.36596298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479f0 -00036754 53.36596680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x479f0 -00036755 53.36599350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a00 -00036756 53.36599731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a00 -00036757 53.36602402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a10 -00036758 53.36602402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a10 -00036759 53.36604691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a20 -00036760 53.36605072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a20 -00036761 53.36607742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a30 -00036762 53.36608124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a30 -00036763 53.36610413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a40 -00036764 53.36610794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a40 -00036765 53.36613464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a50 -00036766 53.36613846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a50 -00036767 53.36616135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a60 -00036768 53.36616516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a60 -00036769 53.36619186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a70 -00036770 53.36619568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a70 -00036771 53.36622238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a80 -00036772 53.36622238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a80 -00036773 53.36624908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a90 -00036774 53.36624908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a90 -00036775 53.36627579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47aa0 -00036776 53.36627960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47aa0 -00036777 53.36630249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ab0 -00036778 53.36630630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ab0 -00036779 53.36633301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ac0 -00036780 53.36633682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ac0 -00036781 53.36635971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ad0 -00036782 53.36636353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ad0 -00036783 53.36639023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ae0 -00036784 53.36639404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ae0 -00036785 53.36642075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47af0 -00036786 53.36642075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47af0 -00036787 53.36644745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b00 -00036788 53.36645126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b00 -00036789 53.36647797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b10 -00036790 53.36647797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b10 -00036791 53.36650467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b20 -00036792 53.36650467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b20 -00036793 53.36653137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b30 -00036794 53.36653519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b30 -00036795 53.36656189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b40 -00036796 53.36656189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b40 -00036797 53.36658859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b50 -00036798 53.36659241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b50 -00036799 53.36661911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b60 -00036800 53.36661911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b60 -00036801 53.36664581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b70 -00036802 53.36664963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b70 -00036803 53.36667633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b80 -00036804 53.36668015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b80 -00036805 53.36670303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b90 -00036806 53.36670685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b90 -00036807 53.36673355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ba0 -00036808 53.36673737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ba0 -00036809 53.36676025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bb0 -00036810 53.36676407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bb0 -00036811 53.36679077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bc0 -00036812 53.36679077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bc0 -00036813 53.36681747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bd0 -00036814 53.36681747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bd0 -00036815 53.36684418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be0 -00036816 53.36684799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be0 -00036817 53.36687469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bf0 -00036818 53.36687851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bf0 -00036819 53.36690140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c00 -00036820 53.36690521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c00 -00036821 53.36693192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c10 -00036822 53.36693573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c10 -00036823 53.36695862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c20 -00036824 53.36696243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c20 -00036825 53.36698914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c30 -00036826 53.36699295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c30 -00036827 53.36701584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c40 -00036828 53.36701584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c40 -00036829 53.36704636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c50 -00036830 53.36704636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c50 -00036831 53.36707306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c60 -00036832 53.36707687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c60 -00036833 53.36709976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c70 -00036834 53.36710358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c70 -00036835 53.36713028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c80 -00036836 53.36713409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c80 -00036837 53.36715698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c90 -00036838 53.36716080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c90 -00036839 53.36718750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca0 -00036840 53.36719131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca0 -00036841 53.36721420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb0 -00036842 53.36721802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb0 -00036843 53.36724472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc0 -00036844 53.36724854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc0 -00036845 53.36727524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd0 -00036846 53.36727524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd0 -00036847 53.36730194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce0 -00036848 53.36730194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce0 -00036849 53.36732864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf0 -00036850 53.36733246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf0 -00036851 53.36735535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d00 -00036852 53.36735916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d00 -00036853 53.36738586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d10 -00036854 53.36738968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d10 -00036855 53.36741257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d20 -00036856 53.36741638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d20 -00036857 53.36744308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d30 -00036858 53.36744690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d30 -00036859 53.36747360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d40 -00036860 53.36747360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d40 -00036861 53.36750031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d50 -00036862 53.36750412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d50 -00036863 53.36753082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d60 -00036864 53.36753082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d60 -00036865 53.36755753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d70 -00036866 53.36755753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d70 -00036867 53.36758423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d80 -00036868 53.36758804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d80 -00036869 53.36761093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d90 -00036870 53.36761475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d90 -00036871 53.36764145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47da0 -00036872 53.36764526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47da0 -00036873 53.36767197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47db0 -00036874 53.36767197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47db0 -00036875 53.36769867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dc0 -00036876 53.36770248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dc0 -00036877 53.36772919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dd0 -00036878 53.36773300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dd0 -00036879 53.36775589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47de0 -00036880 53.36775589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47de0 -00036881 53.36778641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47df0 -00036882 53.36778641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47df0 -00036883 53.36780930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e00 -00036884 53.36781311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e00 -00036885 53.36783981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e10 -00036886 53.36784363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e10 -00036887 53.36787033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e20 -00036888 53.36787033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e20 -00036889 53.36789703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e30 -00036890 53.36790085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e30 -00036891 53.36792755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e40 -00036892 53.36793137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e40 -00036893 53.36795425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e50 -00036894 53.36795807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e50 -00036895 53.36798477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e60 -00036896 53.36798859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e60 -00036897 53.36801147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e70 -00036898 53.36801529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e70 -00036899 53.36804199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e80 -00036900 53.36804581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e80 -00036901 53.36806870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e90 -00036902 53.36806870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e90 -00036903 53.36809540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ea0 -00036904 53.36809921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ea0 -00036905 53.36812592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47eb0 -00036906 53.36812973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47eb0 -00036907 53.36815262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec0 -00036908 53.36815643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec0 -00036909 53.36818314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed0 -00036910 53.36818695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed0 -00036911 53.36820984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee0 -00036912 53.36821365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee0 -00036913 53.36824036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef0 -00036914 53.36824417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef0 -00036915 53.36826706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f00 -00036916 53.36827087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f00 -00036917 53.36829758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f10 -00036918 53.36830139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f10 -00036919 53.36832809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f20 -00036920 53.36832809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f20 -00036921 53.36835480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f30 -00036922 53.36835480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f30 -00036923 53.36838150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f40 -00036924 53.36838531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f40 -00036925 53.36840820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f50 -00036926 53.36841202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f50 -00036927 53.36843872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f60 -00036928 53.36844254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f60 -00036929 53.36846542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f70 -00036930 53.36846924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f70 -00036931 53.36849594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f80 -00036932 53.36849976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f80 -00036933 53.36852646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f90 -00036934 53.36852646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f90 -00036935 53.36855316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fa0 -00036936 53.36855698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fa0 -00036937 53.36858368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fb0 -00036938 53.36858749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fb0 -00036939 53.36861038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fc0 -00036940 53.36861038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fc0 -00036941 53.36864090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fd0 -00036942 53.36864090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fd0 -00036943 53.36866379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fe0 -00036944 53.36866760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fe0 -00036945 53.36869431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ff0 -00036946 53.36869812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ff0 -00036947 53.36872482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48000 -00036948 53.36872482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48000 -00036949 53.36875153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48010 -00036950 53.36875534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48010 -00036951 53.36878204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48020 -00036952 53.36878586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48020 -00036953 53.36880875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48030 -00036954 53.36881256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48030 -00036955 53.36883926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48040 -00036956 53.36884308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48040 -00036957 53.36886597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48050 -00036958 53.36886978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48050 -00036959 53.36889648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48060 -00036960 53.36889648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48060 -00036961 53.36892319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48070 -00036962 53.36892319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48070 -00036963 53.36894989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48080 -00036964 53.36895370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48080 -00036965 53.36898041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48090 -00036966 53.36898422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48090 -00036967 53.36900711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a0 -00036968 53.36901093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a0 -00036969 53.36903763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b0 -00036970 53.36904144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b0 -00036971 53.36906433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c0 -00036972 53.36906815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c0 -00036973 53.36909485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d0 -00036974 53.36909866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d0 -00036975 53.36912537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e0 -00036976 53.36912537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e0 -00036977 53.36915207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f0 -00036978 53.36915588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f0 -00036979 53.36918259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48100 -00036980 53.36918259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48100 -00036981 53.36920929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48110 -00036982 53.36921310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48110 -00036983 53.36923981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48120 -00036984 53.36923981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48120 -00036985 53.36926651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48130 -00036986 53.36927032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48130 -00036987 53.36929703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48140 -00036988 53.36930084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48140 -00036989 53.36932373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48150 -00036990 53.36932755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48150 -00036991 53.36935425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48160 -00036992 53.36935806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48160 -00036993 53.36938095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48170 -00036994 53.36938095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48170 -00036995 53.36940765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48180 -00036996 53.36941147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48180 -00036997 53.36943817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48190 -00036998 53.36943817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48190 -00036999 53.36946487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a0 -00037000 53.36946869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a0 -00037001 53.36949539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b0 -00037002 53.36949921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b0 -00037003 53.36952209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c0 -00037004 53.36952591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c0 -00037005 53.36955261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d0 -00037006 53.36955643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d0 -00037007 53.36957932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e0 -00037008 53.36958313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e0 -00037009 53.36960983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f0 -00037010 53.36961365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f0 -00037011 53.36963654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48200 -00037012 53.36963654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48200 -00037013 53.36966324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48210 -00037014 53.36966705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48210 -00037015 53.36969376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48220 -00037016 53.36969757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48220 -00037017 53.36972427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48230 -00037018 53.36972809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48230 -00037019 53.36975479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48240 -00037020 53.36975861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48240 -00037021 53.36978149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48250 -00037022 53.36978149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48250 -00037023 53.36980820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48260 -00037024 53.36981201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48260 -00037025 53.36983490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48270 -00037026 53.36983871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48270 -00037027 53.36986542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48280 -00037028 53.36986923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48280 -00037029 53.36989594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48290 -00037030 53.36989594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48290 -00037031 53.36992264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a0 -00037032 53.36992645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a0 -00037033 53.36995316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b0 -00037034 53.36995697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b0 -00037035 53.36997986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c0 -00037036 53.36998367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c0 -00037037 53.37001038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482d0 -00037038 53.37001419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482d0 -00037039 53.37003708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482e0 -00037040 53.37004089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482e0 -00037041 53.37006760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482f0 -00037042 53.37006760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x482f0 -00037043 53.37009430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48300 -00037044 53.37009430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48300 -00037045 53.37012100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48310 -00037046 53.37012482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48310 -00037047 53.37015152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48320 -00037048 53.37015533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48320 -00037049 53.37017822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48330 -00037050 53.37018204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48330 -00037051 53.37020874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48340 -00037052 53.37021255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48340 -00037053 53.37023544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48350 -00037054 53.37023926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48350 -00037055 53.37026596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48360 -00037056 53.37026978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48360 -00037057 53.37029266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48370 -00037058 53.37029648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48370 -00037059 53.37032318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48380 -00037060 53.37032700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48380 -00037061 53.37035370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48390 -00037062 53.37035370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48390 -00037063 53.37038040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483a0 -00037064 53.37038422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483a0 -00037065 53.37041092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483b0 -00037066 53.37041092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483b0 -00037067 53.37043762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483c0 -00037068 53.37043762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483c0 -00037069 53.37046432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483d0 -00037070 53.37046814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483d0 -00037071 53.37049103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483e0 -00037072 53.37049484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483e0 -00037073 53.37052155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483f0 -00037074 53.37052536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x483f0 -00037075 53.37055206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48400 -00037076 53.37055206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48400 -00037077 53.37057877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48410 -00037078 53.37058258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48410 -00037079 53.37060928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48420 -00037080 53.37061310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48420 -00037081 53.37063599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48430 -00037082 53.37063599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48430 -00037083 53.37066269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48440 -00037084 53.37066650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48440 -00037085 53.37068939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48450 -00037086 53.37069321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48450 -00037087 53.37071991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48460 -00037088 53.37072372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48460 -00037089 53.37075043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48470 -00037090 53.37075043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48470 -00037091 53.37077713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48480 -00037092 53.37078094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48480 -00037093 53.37080765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48490 -00037094 53.37081146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48490 -00037095 53.37083435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a0 -00037096 53.37083435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a0 -00037097 53.37086487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b0 -00037098 53.37086487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b0 -00037099 53.37088776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c0 -00037100 53.37089157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c0 -00037101 53.37091827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d0 -00037102 53.37092209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d0 -00037103 53.37094879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e0 -00037104 53.37094879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e0 -00037105 53.37097549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f0 -00037106 53.37097931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f0 -00037107 53.37100601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48500 -00037108 53.37100983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48500 -00037109 53.37103271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48510 -00037110 53.37103653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48510 -00037111 53.37106323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48520 -00037112 53.37106705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48520 -00037113 53.37108994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48530 -00037114 53.37109375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48530 -00037115 53.37112045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48540 -00037116 53.37112427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48540 -00037117 53.37114716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48550 -00037118 53.37115097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48550 -00037119 53.37117767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48560 -00037120 53.37117767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48560 -00037121 53.37120819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48570 -00037122 53.37120819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48570 -00037123 53.37123108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48580 -00037124 53.37123489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48580 -00037125 53.37126160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48590 -00037126 53.37126541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48590 -00037127 53.37128830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a0 -00037128 53.37129211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a0 -00037129 53.37131882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b0 -00037130 53.37132263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b0 -00037131 53.37134552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c0 -00037132 53.37134933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c0 -00037133 53.37137604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d0 -00037134 53.37137985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d0 -00037135 53.37140656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e0 -00037136 53.37140656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e0 -00037137 53.37143326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f0 -00037138 53.37143707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f0 -00037139 53.37146378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48600 -00037140 53.37146378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48600 -00037141 53.37149048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48610 -00037142 53.37149048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48610 -00037143 53.37151718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48620 -00037144 53.37152100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48620 -00037145 53.37154388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48630 -00037146 53.37154770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48630 -00037147 53.37157822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48640 -00037148 53.37157822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48640 -00037149 53.37160492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48650 -00037150 53.37160492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48650 -00037151 53.37163162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48660 -00037152 53.37163544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48660 -00037153 53.37166214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48670 -00037154 53.37166214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48670 -00037155 53.37168884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48680 -00037156 53.37169266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48680 -00037157 53.37171936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48690 -00037158 53.37172318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48690 -00037159 53.37174606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a0 -00037160 53.37174988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a0 -00037161 53.37177658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b0 -00037162 53.37178040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b0 -00037163 53.37180328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c0 -00037164 53.37180710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c0 -00037165 53.37183380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d0 -00037166 53.37183380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d0 -00037167 53.37186050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e0 -00037168 53.37186050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e0 -00037169 53.37188721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f0 -00037170 53.37189102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f0 -00037171 53.37191772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48700 -00037172 53.37192154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48700 -00037173 53.37194443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48710 -00037174 53.37194824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48710 -00037175 53.37197495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48720 -00037176 53.37197876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48720 -00037177 53.37200165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48730 -00037178 53.37200546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48730 -00037179 53.37203217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48740 -00037180 53.37203598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48740 -00037181 53.37206268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48750 -00037182 53.37206268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48750 -00037183 53.37208939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48760 -00037184 53.37208939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48760 -00037185 53.37211609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48770 -00037186 53.37211990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48770 -00037187 53.37214279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48780 -00037188 53.37214661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48780 -00037189 53.37217331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48790 -00037190 53.37217712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48790 -00037191 53.37220001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a0 -00037192 53.37220383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a0 -00037193 53.37223053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b0 -00037194 53.37223434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b0 -00037195 53.37226105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487c0 -00037196 53.37226105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487c0 -00037197 53.37228775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487d0 -00037198 53.37229156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487d0 -00037199 53.37231827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487e0 -00037200 53.37231827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487e0 -00037201 53.37234497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487f0 -00037202 53.37234879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x487f0 -00037203 53.37237549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48800 -00037204 53.37237930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48800 -00037205 53.37240219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48810 -00037206 53.37240601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48810 -00037207 53.37243271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48820 -00037208 53.37243271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48820 -00037209 53.37245941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48830 -00037210 53.37245941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48830 -00037211 53.37248611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48840 -00037212 53.37248993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48840 -00037213 53.37251663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48850 -00037214 53.37251663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48850 -00037215 53.37254333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48860 -00037216 53.37254715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48860 -00037217 53.37257385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48870 -00037218 53.37257767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48870 -00037219 53.37260056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48880 -00037220 53.37260437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48880 -00037221 53.37263107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48890 -00037222 53.37263489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48890 -00037223 53.37265778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a0 -00037224 53.37265778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a0 -00037225 53.37268829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b0 -00037226 53.37268829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b0 -00037227 53.37271500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c0 -00037228 53.37271500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c0 -00037229 53.37274170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d0 -00037230 53.37274551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d0 -00037231 53.37277222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e0 -00037232 53.37277603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e0 -00037233 53.37279892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f0 -00037234 53.37280273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f0 -00037235 53.37282944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48900 -00037236 53.37283325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48900 -00037237 53.37285614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48910 -00037238 53.37285995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48910 -00037239 53.37288666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48920 -00037240 53.37289047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48920 -00037241 53.37291336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48930 -00037242 53.37291718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48930 -00037243 53.37294388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48940 -00037244 53.37294769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48940 -00037245 53.37297440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48950 -00037246 53.37297440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48950 -00037247 53.37300110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48960 -00037248 53.37300491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48960 -00037249 53.37303162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48970 -00037250 53.37303543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48970 -00037251 53.37305832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48980 -00037252 53.37305832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48980 -00037253 53.37308884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48990 -00037254 53.37308884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48990 -00037255 53.37311172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489a0 -00037256 53.37311554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489a0 -00037257 53.37314224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489b0 -00037258 53.37314606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489b0 -00037259 53.37317276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489c0 -00037260 53.37317276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489c0 -00037261 53.37319946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489d0 -00037262 53.37320328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489d0 -00037263 53.37322998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489e0 -00037264 53.37323380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489e0 -00037265 53.37325668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489f0 -00037266 53.37326050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x489f0 -00037267 53.37328720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a00 -00037268 53.37328720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a00 -00037269 53.37331390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a10 -00037270 53.37331390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a10 -00037271 53.37334061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a20 -00037272 53.37334442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a20 -00037273 53.37337112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a30 -00037274 53.37337112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a30 -00037275 53.37339783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a40 -00037276 53.37340164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a40 -00037277 53.37342834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a50 -00037278 53.37343216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a50 -00037279 53.37345505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a60 -00037280 53.37345886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a60 -00037281 53.37348557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a70 -00037282 53.37348938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a70 -00037283 53.37351227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a80 -00037284 53.37351608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a80 -00037285 53.37354279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a90 -00037286 53.37354660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a90 -00037287 53.37356949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa0 -00037288 53.37357330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa0 -00037289 53.37360001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab0 -00037290 53.37360001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab0 -00037291 53.37362671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac0 -00037292 53.37363052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac0 -00037293 53.37365341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad0 -00037294 53.37365723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad0 -00037295 53.37368393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae0 -00037296 53.37368774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae0 -00037297 53.37371063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af0 -00037298 53.37371445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af0 -00037299 53.37374115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b00 -00037300 53.37374496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b00 -00037301 53.37376785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b10 -00037302 53.37377167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b10 -00037303 53.37379837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b20 -00037304 53.37379837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b20 -00037305 53.37382889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b30 -00037306 53.37382889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b30 -00037307 53.37385178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b40 -00037308 53.37385559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b40 -00037309 53.37388229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b50 -00037310 53.37388611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b50 -00037311 53.37390900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b60 -00037312 53.37391281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b60 -00037313 53.37393951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b70 -00037314 53.37394333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b70 -00037315 53.37396622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b80 -00037316 53.37397003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b80 -00037317 53.37399673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b90 -00037318 53.37400055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b90 -00037319 53.37402725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba0 -00037320 53.37402725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba0 -00037321 53.37405396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb0 -00037322 53.37405396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb0 -00037323 53.37408447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc0 -00037324 53.37408447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc0 -00037325 53.37411118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd0 -00037326 53.37411118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd0 -00037327 53.37413788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be0 -00037328 53.37414169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be0 -00037329 53.37416458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf0 -00037330 53.37416840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf0 -00037331 53.37419510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c00 -00037332 53.37419891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c00 -00037333 53.37422562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c10 -00037334 53.37422562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c10 -00037335 53.37425232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c20 -00037336 53.37425613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c20 -00037337 53.37428284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c30 -00037338 53.37428665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c30 -00037339 53.37430954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c40 -00037340 53.37431335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c40 -00037341 53.37434006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c50 -00037342 53.37434006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c50 -00037343 53.37436295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c60 -00037344 53.37436676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c60 -00037345 53.37439346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c70 -00037346 53.37439728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c70 -00037347 53.37442398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c80 -00037348 53.37442398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c80 -00037349 53.37445068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c90 -00037350 53.37445450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c90 -00037351 53.37448120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ca0 -00037352 53.37448502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ca0 -00037353 53.37450790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cb0 -00037354 53.37451172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cb0 -00037355 53.37453842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cc0 -00037356 53.37454224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cc0 -00037357 53.37456512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cd0 -00037358 53.37456894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cd0 -00037359 53.37459564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ce0 -00037360 53.37459946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ce0 -00037361 53.37462234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cf0 -00037362 53.37462234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cf0 -00037363 53.37464905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d00 -00037364 53.37465286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d00 -00037365 53.37467957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d10 -00037366 53.37468338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d10 -00037367 53.37470627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d20 -00037368 53.37471008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d20 -00037369 53.37473679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d30 -00037370 53.37474060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d30 -00037371 53.37476349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d40 -00037372 53.37476730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d40 -00037373 53.37479401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d50 -00037374 53.37479782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d50 -00037375 53.37482071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d60 -00037376 53.37482452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d60 -00037377 53.37485123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d70 -00037378 53.37485504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d70 -00037379 53.37488174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d80 -00037380 53.37488174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d80 -00037381 53.37490845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d90 -00037382 53.37490845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d90 -00037383 53.37493515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48da0 -00037384 53.37493896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48da0 -00037385 53.37496185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48db0 -00037386 53.37496567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48db0 -00037387 53.37499237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dc0 -00037388 53.37499619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dc0 -00037389 53.37501907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dd0 -00037390 53.37502289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dd0 -00037391 53.37504959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48de0 -00037392 53.37505341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48de0 -00037393 53.37508011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48df0 -00037394 53.37508011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48df0 -00037395 53.37510681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e00 -00037396 53.37511063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e00 -00037397 53.37513733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e10 -00037398 53.37513733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e10 -00037399 53.37516403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e20 -00037400 53.37516785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e20 -00037401 53.37519455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e30 -00037402 53.37519836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e30 -00037403 53.37522125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e40 -00037404 53.37522507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e40 -00037405 53.37525177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e50 -00037406 53.37525558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e50 -00037407 53.37527847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e60 -00037408 53.37528229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e60 -00037409 53.37531281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e70 -00037410 53.37531662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e70 -00037411 53.37533951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e80 -00037412 53.37534332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e80 -00037413 53.37537003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e90 -00037414 53.37537384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e90 -00037415 53.37539673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ea0 -00037416 53.37540054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ea0 -00037417 53.37542725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48eb0 -00037418 53.37543106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48eb0 -00037419 53.37545776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ec0 -00037420 53.37545776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ec0 -00037421 53.37548447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ed0 -00037422 53.37548828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ed0 -00037423 53.37551498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ee0 -00037424 53.37551498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ee0 -00037425 53.37554169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ef0 -00037426 53.37554550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ef0 -00037427 53.37557220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f00 -00037428 53.37557220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f00 -00037429 53.37559891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f10 -00037430 53.37560272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f10 -00037431 53.37563705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f20 -00037432 53.37564087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f20 -00037433 53.37566757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f30 -00037434 53.37567139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f30 -00037435 53.37569427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f40 -00037436 53.37569809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f40 -00037437 53.37572861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f50 -00037438 53.37573242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f50 -00037439 53.37575912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f60 -00037440 53.37576294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f60 -00037441 53.37578964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f70 -00037442 53.37578964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f70 -00037443 53.37581635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f80 -00037444 53.37582016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f80 -00037445 53.37584686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f90 -00037446 53.37585068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f90 -00037447 53.37587357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fa0 -00037448 53.37587738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fa0 -00037449 53.37590408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fb0 -00037450 53.37590790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fb0 -00037451 53.37593460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fc0 -00037452 53.37593460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fc0 -00037453 53.37596512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fd0 -00037454 53.37596893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fd0 -00037455 53.37599182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fe0 -00037456 53.37599564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fe0 -00037457 53.37602234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ff0 -00037458 53.37602234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ff0 -00037459 53.37605286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49000 -00037460 53.37605286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49000 -00037461 53.37607956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49010 -00037462 53.37607956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49010 -00037463 53.37610626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49020 -00037464 53.37611008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49020 -00037465 53.37613297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49030 -00037466 53.37613678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49030 -00037467 53.37616348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49040 -00037468 53.37616730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49040 -00037469 53.37619019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49050 -00037470 53.37619400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49050 -00037471 53.37622070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49060 -00037472 53.37622452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49060 -00037473 53.37625122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49070 -00037474 53.37625122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49070 -00037475 53.37627792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49080 -00037476 53.37628174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49080 -00037477 53.37630844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49090 -00037478 53.37630844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49090 -00037479 53.37633133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a0 -00037480 53.37633514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a0 -00037481 53.37636185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b0 -00037482 53.37636566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b0 -00037483 53.37638855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c0 -00037484 53.37639236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c0 -00037485 53.37641907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d0 -00037486 53.37642288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d0 -00037487 53.37644958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e0 -00037488 53.37644958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e0 -00037489 53.37647629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f0 -00037490 53.37648010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f0 -00037491 53.37650681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49100 -00037492 53.37651062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49100 -00037493 53.37653351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49110 -00037494 53.37653732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49110 -00037495 53.37656403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49120 -00037496 53.37656403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49120 -00037497 53.37659073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49130 -00037498 53.37659454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49130 -00037499 53.37662125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49140 -00037500 53.37662506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49140 -00037501 53.37664795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49150 -00037502 53.37665176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49150 -00037503 53.37667847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49160 -00037504 53.37668228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49160 -00037505 53.37670898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49170 -00037506 53.37670898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49170 -00037507 53.37673569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49180 -00037508 53.37673569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49180 -00037509 53.37676239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49190 -00037510 53.37676620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49190 -00037511 53.37678909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a0 -00037512 53.37679291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a0 -00037513 53.37681961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b0 -00037514 53.37682343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b0 -00037515 53.37684631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491c0 -00037516 53.37685013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491c0 -00037517 53.37687683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491d0 -00037518 53.37688065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491d0 -00037519 53.37690735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491e0 -00037520 53.37690735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491e0 -00037521 53.37693405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491f0 -00037522 53.37693787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491f0 -00037523 53.37696457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49200 -00037524 53.37696457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49200 -00037525 53.37699127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49210 -00037526 53.37699127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49210 -00037527 53.37702179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49220 -00037528 53.37702179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49220 -00037529 53.37704468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49230 -00037530 53.37704849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49230 -00037531 53.37707520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49240 -00037532 53.37707901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49240 -00037533 53.37710571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49250 -00037534 53.37710571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49250 -00037535 53.37713242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49260 -00037536 53.37713623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49260 -00037537 53.37716293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49270 -00037538 53.37716293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49270 -00037539 53.37718964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49280 -00037540 53.37719345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49280 -00037541 53.37722015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49290 -00037542 53.37722397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49290 -00037543 53.37724686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492a0 -00037544 53.37725067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492a0 -00037545 53.37727737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492b0 -00037546 53.37728119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492b0 -00037547 53.37730408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492c0 -00037548 53.37730789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492c0 -00037549 53.37733459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d0 -00037550 53.37733841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d0 -00037551 53.37736130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e0 -00037552 53.37736130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e0 -00037553 53.37739182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f0 -00037554 53.37739182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f0 -00037555 53.37741852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49300 -00037556 53.37742233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49300 -00037557 53.37744522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49310 -00037558 53.37744904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49310 -00037559 53.37747574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49320 -00037560 53.37747955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49320 -00037561 53.37750244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49330 -00037562 53.37750626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49330 -00037563 53.37753296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49340 -00037564 53.37753677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49340 -00037565 53.37756348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49350 -00037566 53.37756348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49350 -00037567 53.37759018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49360 -00037568 53.37759399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49360 -00037569 53.37762070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49370 -00037570 53.37762070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49370 -00037571 53.37764359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49380 -00037572 53.37764740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49380 -00037573 53.37767410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49390 -00037574 53.37767792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49390 -00037575 53.37770081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493a0 -00037576 53.37770462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493a0 -00037577 53.37773132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493b0 -00037578 53.37773514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493b0 -00037579 53.37776184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493c0 -00037580 53.37776184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493c0 -00037581 53.37778854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493d0 -00037582 53.37779236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493d0 -00037583 53.37781906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493e0 -00037584 53.37781906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493e0 -00037585 53.37784576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493f0 -00037586 53.37784958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x493f0 -00037587 53.37787628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49400 -00037588 53.37788010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49400 -00037589 53.37790298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49410 -00037590 53.37790680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49410 -00037591 53.37793350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49420 -00037592 53.37793732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49420 -00037593 53.37796021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49430 -00037594 53.37796402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49430 -00037595 53.37799072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49440 -00037596 53.37799454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49440 -00037597 53.37801743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49450 -00037598 53.37801743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49450 -00037599 53.37804794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49460 -00037600 53.37804794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49460 -00037601 53.37807465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49470 -00037602 53.37807846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49470 -00037603 53.37810135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49480 -00037604 53.37810516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49480 -00037605 53.37813187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49490 -00037606 53.37813568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49490 -00037607 53.37815857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a0 -00037608 53.37816238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a0 -00037609 53.37818909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b0 -00037610 53.37819290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b0 -00037611 53.37821579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c0 -00037612 53.37821960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c0 -00037613 53.37824631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d0 -00037614 53.37824631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d0 -00037615 53.37827301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e0 -00037616 53.37827682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e0 -00037617 53.37829971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f0 -00037618 53.37830353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f0 -00037619 53.37833023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49500 -00037620 53.37833405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49500 -00037621 53.37835693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49510 -00037622 53.37836075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49510 -00037623 53.37838745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49520 -00037624 53.37839127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49520 -00037625 53.37841415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49530 -00037626 53.37841797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49530 -00037627 53.37844467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49540 -00037628 53.37844849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49540 -00037629 53.37847519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49550 -00037630 53.37847519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49550 -00037631 53.37850189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49560 -00037632 53.37850571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49560 -00037633 53.37853241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49570 -00037634 53.37853622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49570 -00037635 53.37855911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49580 -00037636 53.37856293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49580 -00037637 53.37858963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49590 -00037638 53.37859344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49590 -00037639 53.37861633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a0 -00037640 53.37861633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a0 -00037641 53.37864685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b0 -00037642 53.37864685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b0 -00037643 53.37867355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c0 -00037644 53.37867355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c0 -00037645 53.37870026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d0 -00037646 53.37870407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d0 -00037647 53.37873077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e0 -00037648 53.37873459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e0 -00037649 53.37875748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f0 -00037650 53.37876129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f0 -00037651 53.37878799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49600 -00037652 53.37879181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49600 -00037653 53.37881470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49610 -00037654 53.37881851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49610 -00037655 53.37884521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49620 -00037656 53.37884903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49620 -00037657 53.37887192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49630 -00037658 53.37887192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49630 -00037659 53.37890244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49640 -00037660 53.37890244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49640 -00037661 53.37892914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49650 -00037662 53.37893295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49650 -00037663 53.37895584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49660 -00037664 53.37895966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49660 -00037665 53.37898636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49670 -00037666 53.37899017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49670 -00037667 53.37901306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49680 -00037668 53.37901688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49680 -00037669 53.37904358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49690 -00037670 53.37904739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49690 -00037671 53.37907028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496a0 -00037672 53.37907410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496a0 -00037673 53.37910080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496b0 -00037674 53.37910461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496b0 -00037675 53.37913132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496c0 -00037676 53.37913132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496c0 -00037677 53.37915802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496d0 -00037678 53.37916183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496d0 -00037679 53.37918854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496e0 -00037680 53.37918854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496e0 -00037681 53.37921524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496f0 -00037682 53.37921906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x496f0 -00037683 53.37924576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49700 -00037684 53.37924957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49700 -00037685 53.37927246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49710 -00037686 53.37927246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49710 -00037687 53.37930298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49720 -00037688 53.37930298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49720 -00037689 53.37932968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49730 -00037690 53.37932968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49730 -00037691 53.37935638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49740 -00037692 53.37936020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49740 -00037693 53.37938690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49750 -00037694 53.37938690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49750 -00037695 53.37941360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49760 -00037696 53.37941742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49760 -00037697 53.37944412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49770 -00037698 53.37944794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49770 -00037699 53.37947083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49780 -00037700 53.37947464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49780 -00037701 53.37950134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49790 -00037702 53.37950134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49790 -00037703 53.37952805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497a0 -00037704 53.37952805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497a0 -00037705 53.37955475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497b0 -00037706 53.37955856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497b0 -00037707 53.37958527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497c0 -00037708 53.37958908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497c0 -00037709 53.37961197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497d0 -00037710 53.37961578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497d0 -00037711 53.37964249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497e0 -00037712 53.37964630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497e0 -00037713 53.37966919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497f0 -00037714 53.37967300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x497f0 -00037715 53.37969971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49800 -00037716 53.37970352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49800 -00037717 53.37972641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49810 -00037718 53.37973022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49810 -00037719 53.37976074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49820 -00037720 53.37976456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49820 -00037721 53.37978745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49830 -00037722 53.37979126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49830 -00037723 53.37981796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49840 -00037724 53.37982178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49840 -00037725 53.37984467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49850 -00037726 53.37984848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49850 -00037727 53.37987518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49860 -00037728 53.37987900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49860 -00037729 53.37990570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49870 -00037730 53.37990570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49870 -00037731 53.37992859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49880 -00037732 53.37993240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49880 -00037733 53.37995911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49890 -00037734 53.37996292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49890 -00037735 53.37998581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498a0 -00037736 53.37998962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498a0 -00037737 53.38001633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498b0 -00037738 53.38002014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498b0 -00037739 53.38004303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498c0 -00037740 53.38004684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498c0 -00037741 53.38007355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498d0 -00037742 53.38007736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498d0 -00037743 53.38010406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498e0 -00037744 53.38010406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498e0 -00037745 53.38013077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498f0 -00037746 53.38013077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x498f0 -00037747 53.38015747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49900 -00037748 53.38016129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49900 -00037749 53.38018417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49910 -00037750 53.38018799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49910 -00037751 53.38021469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49920 -00037752 53.38021851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49920 -00037753 53.38024139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49930 -00037754 53.38024521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49930 -00037755 53.38027191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49940 -00037756 53.38027573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49940 -00037757 53.38030243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49950 -00037758 53.38030243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49950 -00037759 53.38032913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49960 -00037760 53.38033295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49960 -00037761 53.38035965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49970 -00037762 53.38036346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49970 -00037763 53.38038635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49980 -00037764 53.38039017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49980 -00037765 53.38041687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49990 -00037766 53.38042068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49990 -00037767 53.38044357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a0 -00037768 53.38044739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a0 -00037769 53.38047409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b0 -00037770 53.38047791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b0 -00037771 53.38050079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c0 -00037772 53.38050461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c0 -00037773 53.38053131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d0 -00037774 53.38053513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d0 -00037775 53.38056183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e0 -00037776 53.38056183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e0 -00037777 53.38058472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f0 -00037778 53.38058853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f0 -00037779 53.38061523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a00 -00037780 53.38061905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a00 -00037781 53.38064194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a10 -00037782 53.38064575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a10 -00037783 53.38067245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a20 -00037784 53.38067627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a20 -00037785 53.38069916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a30 -00037786 53.38070297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a30 -00037787 53.38072968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a40 -00037788 53.38073349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a40 -00037789 53.38076019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a50 -00037790 53.38076019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a50 -00037791 53.38078690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a60 -00037792 53.38078690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a60 -00037793 53.38081741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a70 -00037794 53.38081741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a70 -00037795 53.38084030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a80 -00037796 53.38084412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a80 -00037797 53.38087082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a90 -00037798 53.38087463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a90 -00037799 53.38089752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49aa0 -00037800 53.38090134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49aa0 -00037801 53.38092804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ab0 -00037802 53.38093185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ab0 -00037803 53.38095856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ac0 -00037804 53.38095856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ac0 -00037805 53.38098526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ad0 -00037806 53.38098907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ad0 -00037807 53.38101578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ae0 -00037808 53.38101578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ae0 -00037809 53.38104248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49af0 -00037810 53.38104630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49af0 -00037811 53.38107300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b00 -00037812 53.38107681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b00 -00037813 53.38109970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b10 -00037814 53.38110352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b10 -00037815 53.38113022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b20 -00037816 53.38113403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b20 -00037817 53.38115692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b30 -00037818 53.38115692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b30 -00037819 53.38118362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b40 -00037820 53.38118744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b40 -00037821 53.38121414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b50 -00037822 53.38121414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b50 -00037823 53.38124084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b60 -00037824 53.38124466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b60 -00037825 53.38127136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b70 -00037826 53.38127518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b70 -00037827 53.38129807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b80 -00037828 53.38130188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b80 -00037829 53.38132858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b90 -00037830 53.38133240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b90 -00037831 53.38135529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba0 -00037832 53.38135910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba0 -00037833 53.38138580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb0 -00037834 53.38138962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb0 -00037835 53.38141251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc0 -00037836 53.38141251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc0 -00037837 53.38143921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd0 -00037838 53.38144302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd0 -00037839 53.38146973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be0 -00037840 53.38147354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be0 -00037841 53.38149643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf0 -00037842 53.38150024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf0 -00037843 53.38152695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c00 -00037844 53.38153076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c00 -00037845 53.38155365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c10 -00037846 53.38155746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c10 -00037847 53.38158417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c20 -00037848 53.38158798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c20 -00037849 53.38161469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c30 -00037850 53.38161469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c30 -00037851 53.38164139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c40 -00037852 53.38164520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c40 -00037853 53.38167191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c50 -00037854 53.38167191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c50 -00037855 53.38169861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c60 -00037856 53.38170242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c60 -00037857 53.38172913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c70 -00037858 53.38172913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c70 -00037859 53.38175583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c80 -00037860 53.38175583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c80 -00037861 53.38178253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c90 -00037862 53.38178635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c90 -00037863 53.38181305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca0 -00037864 53.38181305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca0 -00037865 53.38183975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb0 -00037866 53.38184357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb0 -00037867 53.38187027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc0 -00037868 53.38187027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc0 -00037869 53.38189697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd0 -00037870 53.38190079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd0 -00037871 53.38192749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce0 -00037872 53.38193130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce0 -00037873 53.38195419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf0 -00037874 53.38195801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf0 -00037875 53.38198471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d00 -00037876 53.38198471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d00 -00037877 53.38201141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d10 -00037878 53.38201141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d10 -00037879 53.38203812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d20 -00037880 53.38204193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d20 -00037881 53.38206863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d30 -00037882 53.38206863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d30 -00037883 53.38209534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d40 -00037884 53.38209915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d40 -00037885 53.38212585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d50 -00037886 53.38212967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d50 -00037887 53.38215256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d60 -00037888 53.38215637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d60 -00037889 53.38218307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d70 -00037890 53.38218689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d70 -00037891 53.38220978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d80 -00037892 53.38221359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d80 -00037893 53.38224030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d90 -00037894 53.38224411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d90 -00037895 53.38226700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da0 -00037896 53.38227081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da0 -00037897 53.38229752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db0 -00037898 53.38229752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db0 -00037899 53.38232422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc0 -00037900 53.38232803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc0 -00037901 53.38235092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd0 -00037902 53.38235474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd0 -00037903 53.38238144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de0 -00037904 53.38238525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de0 -00037905 53.38240814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df0 -00037906 53.38241196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df0 -00037907 53.38243866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e00 -00037908 53.38244247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e00 -00037909 53.38246536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e10 -00037910 53.38246918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e10 -00037911 53.38249588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e20 -00037912 53.38249969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e20 -00037913 53.38252640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e30 -00037914 53.38252640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e30 -00037915 53.38255310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e40 -00037916 53.38255310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e40 -00037917 53.38257980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e50 -00037918 53.38258362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e50 -00037919 53.38260651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e60 -00037920 53.38261032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e60 -00037921 53.38263702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e70 -00037922 53.38264084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e70 -00037923 53.38266373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e80 -00037924 53.38266754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e80 -00037925 53.38269424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e90 -00037926 53.38269806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e90 -00037927 53.38272476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ea0 -00037928 53.38272476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ea0 -00037929 53.38275146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49eb0 -00037930 53.38275146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49eb0 -00037931 53.38277817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ec0 -00037932 53.38278198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ec0 -00037933 53.38280487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ed0 -00037934 53.38280869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ed0 -00037935 53.38283539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ee0 -00037936 53.38283920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ee0 -00037937 53.38286591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ef0 -00037938 53.38286591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ef0 -00037939 53.38289261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f00 -00037940 53.38289642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f00 -00037941 53.38292313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f10 -00037942 53.38292313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f10 -00037943 53.38294983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f20 -00037944 53.38295364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f20 -00037945 53.38298035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f30 -00037946 53.38298416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f30 -00037947 53.38300705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f40 -00037948 53.38301086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f40 -00037949 53.38303757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f50 -00037950 53.38303757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f50 -00037951 53.38306427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f60 -00037952 53.38306427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f60 -00037953 53.38309097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f70 -00037954 53.38309479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f70 -00037955 53.38312149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f80 -00037956 53.38312149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f80 -00037957 53.38314819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f90 -00037958 53.38315201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f90 -00037959 53.38317871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fa0 -00037960 53.38318253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fa0 -00037961 53.38320541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fb0 -00037962 53.38320923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fb0 -00037963 53.38323593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fc0 -00037964 53.38323593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fc0 -00037965 53.38326263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fd0 -00037966 53.38326263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fd0 -00037967 53.38328934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fe0 -00037968 53.38329315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fe0 -00037969 53.38331985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ff0 -00037970 53.38331985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ff0 -00037971 53.38334656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a000 -00037972 53.38335037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a000 -00037973 53.38337708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a010 -00037974 53.38338089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a010 -00037975 53.38340378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a020 -00037976 53.38340759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a020 -00037977 53.38343430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a030 -00037978 53.38343811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a030 -00037979 53.38346100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a040 -00037980 53.38346481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a040 -00037981 53.38349152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a050 -00037982 53.38349533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a050 -00037983 53.38351822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a060 -00037984 53.38352203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a060 -00037985 53.38354874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a070 -00037986 53.38355255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a070 -00037987 53.38357925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a080 -00037988 53.38357925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a080 -00037989 53.38360214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a090 -00037990 53.38360596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a090 -00037991 53.38363266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0a0 -00037992 53.38363647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0a0 -00037993 53.38365936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0b0 -00037994 53.38366318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0b0 -00037995 53.38368988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0c0 -00037996 53.38369370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0c0 -00037997 53.38371658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0d0 -00037998 53.38372040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0d0 -00037999 53.38374710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0e0 -00038000 53.38375092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0e0 -00038001 53.38377762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0f0 -00038002 53.38377762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0f0 -00038003 53.38380432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a100 -00038004 53.38380432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a100 -00038005 53.38383102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a110 -00038006 53.38383484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a110 -00038007 53.38385773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a120 -00038008 53.38386154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a120 -00038009 53.38388824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a130 -00038010 53.38389206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a130 -00038011 53.38391495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a140 -00038012 53.38391876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a140 -00038013 53.38394547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a150 -00038014 53.38394928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a150 -00038015 53.38397598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a160 -00038016 53.38397598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a160 -00038017 53.38400269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a170 -00038018 53.38400650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a170 -00038019 53.38403320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a180 -00038020 53.38403702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a180 -00038021 53.38405991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a190 -00038022 53.38406372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a190 -00038023 53.38409042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1a0 -00038024 53.38409424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1a0 -00038025 53.38411713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1b0 -00038026 53.38412094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1b0 -00038027 53.38414764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1c0 -00038028 53.38414764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1c0 -00038029 53.38417435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1d0 -00038030 53.38417435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1d0 -00038031 53.38420105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1e0 -00038032 53.38420486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1e0 -00038033 53.38423157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1f0 -00038034 53.38423538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1f0 -00038035 53.38425827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a200 -00038036 53.38426208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a200 -00038037 53.38428879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a210 -00038038 53.38429260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a210 -00038039 53.38431549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a220 -00038040 53.38431931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a220 -00038041 53.38434601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a230 -00038042 53.38434982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a230 -00038043 53.38437271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a240 -00038044 53.38437653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a240 -00038045 53.38440323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a250 -00038046 53.38440323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a250 -00038047 53.38442993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a260 -00038048 53.38443375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a260 -00038049 53.38445663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a270 -00038050 53.38446045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a270 -00038051 53.38448715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a280 -00038052 53.38449097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a280 -00038053 53.38451385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a290 -00038054 53.38451767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a290 -00038055 53.38454437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2a0 -00038056 53.38454819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2a0 -00038057 53.38457108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2b0 -00038058 53.38457489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2b0 -00038059 53.38460159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2c0 -00038060 53.38460159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2c0 -00038061 53.38463211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2d0 -00038062 53.38463211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2d0 -00038063 53.38465500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2e0 -00038064 53.38465881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2e0 -00038065 53.38468552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2f0 -00038066 53.38468933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2f0 -00038067 53.38471222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a300 -00038068 53.38471603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a300 -00038069 53.38474274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a310 -00038070 53.38474655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a310 -00038071 53.38476944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a320 -00038072 53.38477325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a320 -00038073 53.38479996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a330 -00038074 53.38480377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a330 -00038075 53.38483047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a340 -00038076 53.38483047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a340 -00038077 53.38485718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a350 -00038078 53.38486099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a350 -00038079 53.38488770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a360 -00038080 53.38488770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a360 -00038081 53.38491440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a370 -00038082 53.38491440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a370 -00038083 53.38494110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a380 -00038084 53.38494492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a380 -00038085 53.38496780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a390 -00038086 53.38497162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a390 -00038087 53.38499832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a0 -00038088 53.38500214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a0 -00038089 53.38502884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b0 -00038090 53.38502884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b0 -00038091 53.38505554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c0 -00038092 53.38505936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c0 -00038093 53.38508606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d0 -00038094 53.38508987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d0 -00038095 53.38511276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e0 -00038096 53.38511276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e0 -00038097 53.38514328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f0 -00038098 53.38514328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f0 -00038099 53.38516617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a400 -00038100 53.38516998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a400 -00038101 53.38519669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a410 -00038102 53.38520050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a410 -00038103 53.38522720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a420 -00038104 53.38522720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a420 -00038105 53.38525391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a430 -00038106 53.38525772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a430 -00038107 53.38528442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a440 -00038108 53.38528824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a440 -00038109 53.38531113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a450 -00038110 53.38531494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a450 -00038111 53.38534164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a460 -00038112 53.38534546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a460 -00038113 53.38536835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a470 -00038114 53.38537216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a470 -00038115 53.38539886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a480 -00038116 53.38540268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a480 -00038117 53.38542557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a490 -00038118 53.38542557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a490 -00038119 53.38545609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4a0 -00038120 53.38545609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4a0 -00038121 53.38548279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4b0 -00038122 53.38548660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4b0 -00038123 53.38550949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4c0 -00038124 53.38551331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4c0 -00038125 53.38554001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4d0 -00038126 53.38554382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4d0 -00038127 53.38556671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4e0 -00038128 53.38557053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4e0 -00038129 53.38559723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4f0 -00038130 53.38560104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4f0 -00038131 53.38562393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a500 -00038132 53.38562775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a500 -00038133 53.38565445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a510 -00038134 53.38565826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a510 -00038135 53.38568497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a520 -00038136 53.38568497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a520 -00038137 53.38570786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a530 -00038138 53.38571167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a530 -00038139 53.38573837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a540 -00038140 53.38574219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a540 -00038141 53.38576508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a550 -00038142 53.38576889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a550 -00038143 53.38579559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a560 -00038144 53.38579941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a560 -00038145 53.38582230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a570 -00038146 53.38582611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a570 -00038147 53.38585281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a580 -00038148 53.38585663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a580 -00038149 53.38588333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a590 -00038150 53.38588333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a590 -00038151 53.38591003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5a0 -00038152 53.38591003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5a0 -00038153 53.38593674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5b0 -00038154 53.38594055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5b0 -00038155 53.38596344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5c0 -00038156 53.38596725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5c0 -00038157 53.38599777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5d0 -00038158 53.38599777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5d0 -00038159 53.38602066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5e0 -00038160 53.38602448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5e0 -00038161 53.38605118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5f0 -00038162 53.38605499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5f0 -00038163 53.38608170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a600 -00038164 53.38608170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a600 -00038165 53.38610840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a610 -00038166 53.38611221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a610 -00038167 53.38613892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a620 -00038168 53.38613892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a620 -00038169 53.38616562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a630 -00038170 53.38616943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a630 -00038171 53.38619614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a640 -00038172 53.38619614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a640 -00038173 53.38622284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a650 -00038174 53.38622284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a650 -00038175 53.38624954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a660 -00038176 53.38625336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a660 -00038177 53.38628006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a670 -00038178 53.38628006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a670 -00038179 53.38630676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -00038180 53.38631058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -00038181 53.38633728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -00038182 53.38634109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -00038183 53.38636398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a0 -00038184 53.38636780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a0 -00038185 53.38639450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b0 -00038186 53.38639832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b0 -00038187 53.38642120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c0 -00038188 53.38642502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c0 -00038189 53.38645172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d0 -00038190 53.38645172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d0 -00038191 53.38647842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e0 -00038192 53.38647842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e0 -00038193 53.38650513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f0 -00038194 53.38650894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f0 -00038195 53.38653564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a700 -00038196 53.38653946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a700 -00038197 53.38656235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a710 -00038198 53.38656616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a710 -00038199 53.38659286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a720 -00038200 53.38659668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a720 -00038201 53.38661957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a730 -00038202 53.38662338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a730 -00038203 53.38665009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a740 -00038204 53.38665390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a740 -00038205 53.38667679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a750 -00038206 53.38668060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a750 -00038207 53.38670731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a760 -00038208 53.38670731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a760 -00038209 53.38673782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a770 -00038210 53.38673782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a770 -00038211 53.38676071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a780 -00038212 53.38676453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a780 -00038213 53.38679123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a790 -00038214 53.38679504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a790 -00038215 53.38681793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a0 -00038216 53.38682175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a0 -00038217 53.38684845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b0 -00038218 53.38685226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b0 -00038219 53.38687515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c0 -00038220 53.38687897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c0 -00038221 53.38690567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d0 -00038222 53.38690948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d0 -00038223 53.38693619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e0 -00038224 53.38693619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e0 -00038225 53.38696289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f0 -00038226 53.38696671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f0 -00038227 53.38699341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a800 -00038228 53.38699341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a800 -00038229 53.38702011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a810 -00038230 53.38702011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a810 -00038231 53.38704681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a820 -00038232 53.38705063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a820 -00038233 53.38707352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a830 -00038234 53.38707733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a830 -00038235 53.38710403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a840 -00038236 53.38710785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a840 -00038237 53.38713455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a850 -00038238 53.38713455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a850 -00038239 53.38716125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a860 -00038240 53.38716507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a860 -00038241 53.38719177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a870 -00038242 53.38719177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a870 -00038243 53.38721848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a880 -00038244 53.38722229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a880 -00038245 53.38724899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a890 -00038246 53.38725281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a890 -00038247 53.38727570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8a0 -00038248 53.38727570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8a0 -00038249 53.38730621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8b0 -00038250 53.38730621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8b0 -00038251 53.38733292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8c0 -00038252 53.38733292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8c0 -00038253 53.38735962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8d0 -00038254 53.38736343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8d0 -00038255 53.38739014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8e0 -00038256 53.38739014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8e0 -00038257 53.38741684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8f0 -00038258 53.38742065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8f0 -00038259 53.38744736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a900 -00038260 53.38745117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a900 -00038261 53.38747406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a910 -00038262 53.38747787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a910 -00038263 53.38750458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a920 -00038264 53.38750839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a920 -00038265 53.38753128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a930 -00038266 53.38753128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a930 -00038267 53.38755798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a940 -00038268 53.38756180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a940 -00038269 53.38758850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a950 -00038270 53.38758850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a950 -00038271 53.38761520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a960 -00038272 53.38761902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a960 -00038273 53.38764572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a970 -00038274 53.38764954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a970 -00038275 53.38767242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a980 -00038276 53.38767624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a980 -00038277 53.38770294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a990 -00038278 53.38770676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a990 -00038279 53.38772964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a0 -00038280 53.38773346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a0 -00038281 53.38776016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b0 -00038282 53.38776016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b0 -00038283 53.38779068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c0 -00038284 53.38779068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c0 -00038285 53.38781357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d0 -00038286 53.38781738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d0 -00038287 53.38784409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e0 -00038288 53.38784790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e0 -00038289 53.38787079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f0 -00038290 53.38787460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f0 -00038291 53.38790131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa00 -00038292 53.38790512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa00 -00038293 53.38792801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa10 -00038294 53.38793182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa10 -00038295 53.38795853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa20 -00038296 53.38796234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa20 -00038297 53.38798904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa30 -00038298 53.38798904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa30 -00038299 53.38801575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa40 -00038300 53.38801956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa40 -00038301 53.38804626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa50 -00038302 53.38804626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa50 -00038303 53.38807297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa60 -00038304 53.38807678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa60 -00038305 53.38810349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa70 -00038306 53.38810349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa70 -00038307 53.38812637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa80 -00038308 53.38813019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa80 -00038309 53.38815689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa90 -00038310 53.38816071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa90 -00038311 53.38818741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa0 -00038312 53.38818741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa0 -00038313 53.38821411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab0 -00038314 53.38821793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab0 -00038315 53.38824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac0 -00038316 53.38824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac0 -00038317 53.38827133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad0 -00038318 53.38827515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad0 -00038319 53.38830185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae0 -00038320 53.38830566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae0 -00038321 53.38832855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf0 -00038322 53.38832855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf0 -00038323 53.38835907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab00 -00038324 53.38835907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab00 -00038325 53.38838577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab10 -00038326 53.38838577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab10 -00038327 53.38841248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab20 -00038328 53.38841629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab20 -00038329 53.38844299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab30 -00038330 53.38844299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab30 -00038331 53.38846970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab40 -00038332 53.38847351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab40 -00038333 53.38850021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab50 -00038334 53.38850403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab50 -00038335 53.38852692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab60 -00038336 53.38853073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab60 -00038337 53.38855743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab70 -00038338 53.38856125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab70 -00038339 53.38858414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab80 -00038340 53.38858795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab80 -00038341 53.38861465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab90 -00038342 53.38861847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab90 -00038343 53.38864136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba0 -00038344 53.38864136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba0 -00038345 53.38867188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb0 -00038346 53.38867188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb0 -00038347 53.38869858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc0 -00038348 53.38870239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc0 -00038349 53.38872528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd0 -00038350 53.38872910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd0 -00038351 53.38875580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -00038352 53.38875961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -00038353 53.38878250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -00038354 53.38878632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -00038355 53.38881302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -00038356 53.38881683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -00038357 53.38883972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -00038358 53.38884354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -00038359 53.38887024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -00038360 53.38887405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -00038361 53.38890076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -00038362 53.38890076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -00038363 53.38892746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -00038364 53.38893127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -00038365 53.38895798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -00038366 53.38896179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -00038367 53.38898468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -00038368 53.38898849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -00038369 53.38901520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -00038370 53.38901901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -00038371 53.38904190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -00038372 53.38904572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -00038373 53.38907242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -00038374 53.38907242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -00038375 53.38909912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca0 -00038376 53.38910294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca0 -00038377 53.38912964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb0 -00038378 53.38913345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb0 -00038379 53.38916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc0 -00038380 53.38916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc0 -00038381 53.38918686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd0 -00038382 53.38918686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd0 -00038383 53.38921356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace0 -00038384 53.38921738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace0 -00038385 53.38924026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf0 -00038386 53.38924408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf0 -00038387 53.38927078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad00 -00038388 53.38927460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad00 -00038389 53.38929749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad10 -00038390 53.38930130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad10 -00038391 53.38932800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad20 -00038392 53.38933182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad20 -00038393 53.38935852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad30 -00038394 53.38935852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad30 -00038395 53.38938522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad40 -00038396 53.38938904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad40 -00038397 53.38941574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad50 -00038398 53.38941574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad50 -00038399 53.38943863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad60 -00038400 53.38944244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad60 -00038401 53.38946915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad70 -00038402 53.38947296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad70 -00038403 53.38949585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad80 -00038404 53.38949966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad80 -00038405 53.38952637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad90 -00038406 53.38953018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad90 -00038407 53.38955688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada0 -00038408 53.38955688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada0 -00038409 53.38958359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb0 -00038410 53.38958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb0 -00038411 53.38961411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc0 -00038412 53.38961411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc0 -00038413 53.38964081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add0 -00038414 53.38964081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add0 -00038415 53.38966751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade0 -00038416 53.38967133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade0 -00038417 53.38969421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adf0 -00038418 53.38969803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adf0 -00038419 53.38972473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae00 -00038420 53.38972855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae00 -00038421 53.38975525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae10 -00038422 53.38975525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae10 -00038423 53.38978195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae20 -00038424 53.38978577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae20 -00038425 53.38981247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae30 -00038426 53.38981628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae30 -00038427 53.38983917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae40 -00038428 53.38984299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae40 -00038429 53.38986969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae50 -00038430 53.38987350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae50 -00038431 53.38989639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae60 -00038432 53.38990021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae60 -00038433 53.38992691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae70 -00038434 53.38992691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae70 -00038435 53.38995361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae80 -00038436 53.38995361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae80 -00038437 53.38998032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae90 -00038438 53.38998413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae90 -00038439 53.39001083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aea0 -00038440 53.39001465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aea0 -00038441 53.39003754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aeb0 -00038442 53.39004135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aeb0 -00038443 53.39006805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aec0 -00038444 53.39007187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aec0 -00038445 53.39009476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aed0 -00038446 53.39009857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aed0 -00038447 53.39012527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aee0 -00038448 53.39012909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aee0 -00038449 53.39015198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aef0 -00038450 53.39015579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aef0 -00038451 53.39018250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af00 -00038452 53.39018250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af00 -00038453 53.39020920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af10 -00038454 53.39021301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af10 -00038455 53.39023590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af20 -00038456 53.39023972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af20 -00038457 53.39026642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af30 -00038458 53.39027023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af30 -00038459 53.39029312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af40 -00038460 53.39029694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af40 -00038461 53.39032364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af50 -00038462 53.39032745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af50 -00038463 53.39035034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af60 -00038464 53.39035416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af60 -00038465 53.39038086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af70 -00038466 53.39038467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af70 -00038467 53.39041138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af80 -00038468 53.39041138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af80 -00038469 53.39043808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af90 -00038470 53.39044189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af90 -00038471 53.39046860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa0 -00038472 53.39046860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa0 -00038473 53.39049530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb0 -00038474 53.39049911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb0 -00038475 53.39052582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc0 -00038476 53.39052963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc0 -00038477 53.39055252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd0 -00038478 53.39055252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd0 -00038479 53.39057922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe0 -00038480 53.39058304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe0 -00038481 53.39060974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff0 -00038482 53.39060974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff0 -00038483 53.39063644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b000 -00038484 53.39064026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b000 -00038485 53.39066696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b010 -00038486 53.39066696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b010 -00038487 53.39069366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b020 -00038488 53.39069748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b020 -00038489 53.39072418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b030 -00038490 53.39072800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b030 -00038491 53.39075089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b040 -00038492 53.39075470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b040 -00038493 53.39078140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b050 -00038494 53.39078522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b050 -00038495 53.39080811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b060 -00038496 53.39080811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b060 -00038497 53.39083481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b070 -00038498 53.39083862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b070 -00038499 53.39086533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b080 -00038500 53.39086533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b080 -00038501 53.39089203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b090 -00038502 53.39089584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b090 -00038503 53.39092255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a0 -00038504 53.39092636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a0 -00038505 53.39094925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b0 -00038506 53.39095306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b0 -00038507 53.39097977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c0 -00038508 53.39098358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c0 -00038509 53.39100647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d0 -00038510 53.39101028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d0 -00038511 53.39103699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e0 -00038512 53.39104080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e0 -00038513 53.39106750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f0 -00038514 53.39106750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f0 -00038515 53.39109421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b100 -00038516 53.39109802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b100 -00038517 53.39112473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b110 -00038518 53.39112473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b110 -00038519 53.39115143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b120 -00038520 53.39115524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b120 -00038521 53.39118195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b130 -00038522 53.39118195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b130 -00038523 53.39120483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b140 -00038524 53.39120865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b140 -00038525 53.39123535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b150 -00038526 53.39123917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b150 -00038527 53.39126587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b160 -00038528 53.39126587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b160 -00038529 53.39129257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b170 -00038530 53.39129639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b170 -00038531 53.39132309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b180 -00038532 53.39132309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b180 -00038533 53.39134979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b190 -00038534 53.39135361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b190 -00038535 53.39138031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1a0 -00038536 53.39138412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1a0 -00038537 53.39140701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1b0 -00038538 53.39140701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1b0 -00038539 53.39143753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1c0 -00038540 53.39143753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1c0 -00038541 53.39146423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1d0 -00038542 53.39146423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1d0 -00038543 53.39149094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1e0 -00038544 53.39149475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1e0 -00038545 53.39152145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1f0 -00038546 53.39152145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1f0 -00038547 53.39154816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b200 -00038548 53.39155197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b200 -00038549 53.39157867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b210 -00038550 53.39158249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b210 -00038551 53.39160538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b220 -00038552 53.39160919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b220 -00038553 53.39163589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b230 -00038554 53.39163971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b230 -00038555 53.39166260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b240 -00038556 53.39166641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b240 -00038557 53.39169312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b250 -00038558 53.39169693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b250 -00038559 53.39171982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b260 -00038560 53.39172363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b260 -00038561 53.39175034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b270 -00038562 53.39175034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b270 -00038563 53.39178085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b280 -00038564 53.39178085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b280 -00038565 53.39180374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b290 -00038566 53.39180756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b290 -00038567 53.39183426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2a0 -00038568 53.39183807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2a0 -00038569 53.39186096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2b0 -00038570 53.39186478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2b0 -00038571 53.39189148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2c0 -00038572 53.39189529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2c0 -00038573 53.39191818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d0 -00038574 53.39192200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d0 -00038575 53.39194870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e0 -00038576 53.39195251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e0 -00038577 53.39197922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f0 -00038578 53.39197922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f0 -00038579 53.39200592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b300 -00038580 53.39200592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b300 -00038581 53.39203262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b310 -00038582 53.39203644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b310 -00038583 53.39205933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b320 -00038584 53.39206314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b320 -00038585 53.39208984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b330 -00038586 53.39209366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b330 -00038587 53.39211655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b340 -00038588 53.39212036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b340 -00038589 53.39214706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b350 -00038590 53.39215088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b350 -00038591 53.39217758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b360 -00038592 53.39217758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b360 -00038593 53.39220428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b370 -00038594 53.39220810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b370 -00038595 53.39223480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b380 -00038596 53.39223862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b380 -00038597 53.39226151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b390 -00038598 53.39226151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b390 -00038599 53.39229202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a0 -00038600 53.39229202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a0 -00038601 53.39231873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b0 -00038602 53.39231873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b0 -00038603 53.39234543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c0 -00038604 53.39234924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c0 -00038605 53.39237595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d0 -00038606 53.39237595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d0 -00038607 53.39240265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e0 -00038608 53.39240646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e0 -00038609 53.39243317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f0 -00038610 53.39243698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f0 -00038611 53.39245987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b400 -00038612 53.39246368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b400 -00038613 53.39249039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b410 -00038614 53.39249420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b410 -00038615 53.39251709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b420 -00038616 53.39252090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b420 -00038617 53.39254761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b430 -00038618 53.39255142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b430 -00038619 53.39257431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b440 -00038620 53.39257431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b440 -00038621 53.39260101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b450 -00038622 53.39260483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b450 -00038623 53.39263153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b460 -00038624 53.39263535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b460 -00038625 53.39265823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b470 -00038626 53.39266205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b470 -00038627 53.39268875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b480 -00038628 53.39269257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b480 -00038629 53.39271545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -00038630 53.39271927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -00038631 53.39274597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -00038632 53.39274979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -00038633 53.39277267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -00038634 53.39277267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -00038635 53.39280319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -00038636 53.39280319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -00038637 53.39283371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -00038638 53.39283371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -00038639 53.39285660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -00038640 53.39286041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -00038641 53.39288712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -00038642 53.39289093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -00038643 53.39291382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -00038644 53.39291763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -00038645 53.39294434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -00038646 53.39294815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -00038647 53.39297104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -00038648 53.39297485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -00038649 53.39300156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -00038650 53.39300537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -00038651 53.39303207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -00038652 53.39303207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -00038653 53.39305878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -00038654 53.39306259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -00038655 53.39308929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -00038656 53.39308929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -00038657 53.39311600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -00038658 53.39311600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -00038659 53.39314651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -00038660 53.39314651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -00038661 53.39316940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b590 -00038662 53.39317322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b590 -00038663 53.39319992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5a0 -00038664 53.39320374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5a0 -00038665 53.39323044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5b0 -00038666 53.39323044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5b0 -00038667 53.39325714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5c0 -00038668 53.39326096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5c0 -00038669 53.39328766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5d0 -00038670 53.39329147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5d0 -00038671 53.39331436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5e0 -00038672 53.39331818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5e0 -00038673 53.39334488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f0 -00038674 53.39334488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f0 -00038675 53.39337158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b600 -00038676 53.39337158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b600 -00038677 53.39339828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b610 -00038678 53.39340210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b610 -00038679 53.39342880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b620 -00038680 53.39342880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b620 -00038681 53.39345932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b630 -00038682 53.39345932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b630 -00038683 53.39348602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b640 -00038684 53.39348984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b640 -00038685 53.39351273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b650 -00038686 53.39351654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b650 -00038687 53.39354324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b660 -00038688 53.39354706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b660 -00038689 53.39356995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b670 -00038690 53.39357376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b670 -00038691 53.39360046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b680 -00038692 53.39360428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b680 -00038693 53.39362717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b690 -00038694 53.39363098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b690 -00038695 53.39365768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a0 -00038696 53.39366150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a0 -00038697 53.39368820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b0 -00038698 53.39368820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b0 -00038699 53.39371109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c0 -00038700 53.39371490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c0 -00038701 53.39374161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d0 -00038702 53.39374542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d0 -00038703 53.39376831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e0 -00038704 53.39377213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e0 -00038705 53.39379883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f0 -00038706 53.39380264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f0 -00038707 53.39382553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b700 -00038708 53.39382935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b700 -00038709 53.39385605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b710 -00038710 53.39385986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b710 -00038711 53.39388657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b720 -00038712 53.39388657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b720 -00038713 53.39391327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b730 -00038714 53.39391327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b730 -00038715 53.39393997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b740 -00038716 53.39394379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b740 -00038717 53.39396667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b750 -00038718 53.39397049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b750 -00038719 53.39399719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b760 -00038720 53.39400101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b760 -00038721 53.39402390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b770 -00038722 53.39402771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b770 -00038723 53.39405441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b780 -00038724 53.39405823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b780 -00038725 53.39408493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b790 -00038726 53.39408493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b790 -00038727 53.39411163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7a0 -00038728 53.39411545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7a0 -00038729 53.39414215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7b0 -00038730 53.39414215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7b0 -00038731 53.39416885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7c0 -00038732 53.39417267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7c0 -00038733 53.39419937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7d0 -00038734 53.39419937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7d0 -00038735 53.39422226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7e0 -00038736 53.39422607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7e0 -00038737 53.39425278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7f0 -00038738 53.39425659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7f0 -00038739 53.39428329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b800 -00038740 53.39428329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b800 -00038741 53.39431000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b810 -00038742 53.39431381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b810 -00038743 53.39434052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b820 -00038744 53.39434052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b820 -00038745 53.39436722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b830 -00038746 53.39437103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b830 -00038747 53.39439774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b840 -00038748 53.39440155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b840 -00038749 53.39442444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b850 -00038750 53.39442444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b850 -00038751 53.39445114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b860 -00038752 53.39445496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b860 -00038753 53.39448166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b870 -00038754 53.39448166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b870 -00038755 53.39450836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b880 -00038756 53.39451218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b880 -00038757 53.39453888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b890 -00038758 53.39454269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b890 -00038759 53.39456558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a0 -00038760 53.39456940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a0 -00038761 53.39459610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b0 -00038762 53.39459991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b0 -00038763 53.39462280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c0 -00038764 53.39462662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c0 -00038765 53.39465332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d0 -00038766 53.39465332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d0 -00038767 53.39468002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e0 -00038768 53.39468002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e0 -00038769 53.39471054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f0 -00038770 53.39471054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f0 -00038771 53.39474106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b900 -00038772 53.39474106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b900 -00038773 53.39476776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b910 -00038774 53.39477158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b910 -00038775 53.39479828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b920 -00038776 53.39479828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b920 -00038777 53.39482498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b930 -00038778 53.39482880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b930 -00038779 53.39485550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b940 -00038780 53.39485550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b940 -00038781 53.39488220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b950 -00038782 53.39488220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b950 -00038783 53.39491272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b960 -00038784 53.39491272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b960 -00038785 53.39493942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b970 -00038786 53.39493942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b970 -00038787 53.39496613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b980 -00038788 53.39496994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b980 -00038789 53.39499664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b990 -00038790 53.39499664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b990 -00038791 53.39502335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9a0 -00038792 53.39502716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9a0 -00038793 53.39505386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9b0 -00038794 53.39505768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9b0 -00038795 53.39508057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9c0 -00038796 53.39508438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9c0 -00038797 53.39511108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9d0 -00038798 53.39511108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9d0 -00038799 53.39513779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9e0 -00038800 53.39513779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9e0 -00038801 53.39516449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9f0 -00038802 53.39516830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9f0 -00038803 53.39519501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba00 -00038804 53.39519501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba00 -00038805 53.39522171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba10 -00038806 53.39522552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba10 -00038807 53.39525223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba20 -00038808 53.39525604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba20 -00038809 53.39527893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba30 -00038810 53.39528275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba30 -00038811 53.39530945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba40 -00038812 53.39531326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba40 -00038813 53.39533615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba50 -00038814 53.39533997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba50 -00038815 53.39536667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba60 -00038816 53.39537048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba60 -00038817 53.39539337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba70 -00038818 53.39539719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba70 -00038819 53.39542389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba80 -00038820 53.39542770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba80 -00038821 53.39545441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba90 -00038822 53.39545441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba90 -00038823 53.39548111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa0 -00038824 53.39548111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa0 -00038825 53.39551163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab0 -00038826 53.39551544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab0 -00038827 53.39553833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac0 -00038828 53.39553833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac0 -00038829 53.39556885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad0 -00038830 53.39556885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad0 -00038831 53.39559555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae0 -00038832 53.39559555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae0 -00038833 53.39562225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf0 -00038834 53.39562607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf0 -00038835 53.39565277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb00 -00038836 53.39565277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb00 -00038837 53.39567947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb10 -00038838 53.39568329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb10 -00038839 53.39570999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb20 -00038840 53.39571381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb20 -00038841 53.39573669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb30 -00038842 53.39574051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb30 -00038843 53.39576721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb40 -00038844 53.39577103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb40 -00038845 53.39579391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb50 -00038846 53.39579773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb50 -00038847 53.39582443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb60 -00038848 53.39582825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb60 -00038849 53.39585114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb70 -00038850 53.39585114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb70 -00038851 53.39587784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb80 -00038852 53.39588165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb80 -00038853 53.39590836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb90 -00038854 53.39591217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb90 -00038855 53.39593506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba0 -00038856 53.39593887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba0 -00038857 53.39596558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbb0 -00038858 53.39596939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbb0 -00038859 53.39599228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbc0 -00038860 53.39599609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbc0 -00038861 53.39602661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbd0 -00038862 53.39603043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbd0 -00038863 53.39605331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe0 -00038864 53.39605713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe0 -00038865 53.39608383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf0 -00038866 53.39608765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf0 -00038867 53.39611053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc00 -00038868 53.39611435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc00 -00038869 53.39614105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc10 -00038870 53.39614487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc10 -00038871 53.39616776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc20 -00038872 53.39617157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc20 -00038873 53.39619827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc30 -00038874 53.39620209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc30 -00038875 53.39622879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc40 -00038876 53.39622879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc40 -00038877 53.39625549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc50 -00038878 53.39625931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc50 -00038879 53.39628601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc60 -00038880 53.39628983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc60 -00038881 53.39631271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc70 -00038882 53.39631653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc70 -00038883 53.39634323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc80 -00038884 53.39634705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc80 -00038885 53.39636993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc90 -00038886 53.39637375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc90 -00038887 53.39640045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bca0 -00038888 53.39640427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bca0 -00038889 53.39642715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcb0 -00038890 53.39642715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcb0 -00038891 53.39645767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcc0 -00038892 53.39646149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcc0 -00038893 53.39648819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcd0 -00038894 53.39648819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcd0 -00038895 53.39651489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce0 -00038896 53.39651871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce0 -00038897 53.39654541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf0 -00038898 53.39654922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf0 -00038899 53.39657974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd00 -00038900 53.39658356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd00 -00038901 53.39660645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd10 -00038902 53.39661026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd10 -00038903 53.39663696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd20 -00038904 53.39664078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd20 -00038905 53.39666748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd30 -00038906 53.39666748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd30 -00038907 53.39669418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd40 -00038908 53.39669800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd40 -00038909 53.39672470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd50 -00038910 53.39672470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd50 -00038911 53.39675140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd60 -00038912 53.39675140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd60 -00038913 53.39677811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd70 -00038914 53.39678192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd70 -00038915 53.39680481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd80 -00038916 53.39680862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd80 -00038917 53.39683533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd90 -00038918 53.39683914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd90 -00038919 53.39686584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda0 -00038920 53.39686584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda0 -00038921 53.39689255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb0 -00038922 53.39689636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb0 -00038923 53.39692307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc0 -00038924 53.39692307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc0 -00038925 53.39694977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd0 -00038926 53.39695358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd0 -00038927 53.39698029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde0 -00038928 53.39698410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde0 -00038929 53.39700699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf0 -00038930 53.39700699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf0 -00038931 53.39703751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be00 -00038932 53.39703751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be00 -00038933 53.39706421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be10 -00038934 53.39706421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be10 -00038935 53.39709091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be20 -00038936 53.39709473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be20 -00038937 53.39712143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be30 -00038938 53.39712143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be30 -00038939 53.39714813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be40 -00038940 53.39715195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be40 -00038941 53.39717865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be50 -00038942 53.39718246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be50 -00038943 53.39720535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be60 -00038944 53.39720917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be60 -00038945 53.39723587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be70 -00038946 53.39723969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be70 -00038947 53.39726257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be80 -00038948 53.39726639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be80 -00038949 53.39729309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be90 -00038950 53.39729691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be90 -00038951 53.39731979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea0 -00038952 53.39732361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea0 -00038953 53.39735031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb0 -00038954 53.39735413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb0 -00038955 53.39738083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec0 -00038956 53.39738083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec0 -00038957 53.39740753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed0 -00038958 53.39741135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed0 -00038959 53.39743805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee0 -00038960 53.39744186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee0 -00038961 53.39746475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef0 -00038962 53.39746857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef0 -00038963 53.39749527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf00 -00038964 53.39749908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf00 -00038965 53.39752197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf10 -00038966 53.39752197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf10 -00038967 53.39754868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf20 -00038968 53.39755249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf20 -00038969 53.39757919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf30 -00038970 53.39757919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf30 -00038971 53.39760590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf40 -00038972 53.39760971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf40 -00038973 53.39763641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf50 -00038974 53.39764023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf50 -00038975 53.39766312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf60 -00038976 53.39766693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf60 -00038977 53.39769363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf70 -00038978 53.39769745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf70 -00038979 53.39772034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf80 -00038980 53.39772415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf80 -00038981 53.39775085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf90 -00038982 53.39775467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf90 -00038983 53.39777756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa0 -00038984 53.39778137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa0 -00038985 53.39780807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb0 -00038986 53.39781189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb0 -00038987 53.39783859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc0 -00038988 53.39783859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc0 -00038989 53.39786530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd0 -00038990 53.39786911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd0 -00038991 53.39789581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfe0 -00038992 53.39789581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfe0 -00038993 53.39792633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bff0 -00038994 53.39792633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bff0 -00038995 53.39795303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c000 -00038996 53.39795685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c000 -00038997 53.39798355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c010 -00038998 53.39798355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c010 -00038999 53.39801025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c020 -00039000 53.39801407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c020 -00039001 53.39804077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c030 -00039002 53.39804077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c030 -00039003 53.39807129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c040 -00039004 53.39807129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c040 -00039005 53.39809799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c050 -00039006 53.39809799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c050 -00039007 53.39812469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c060 -00039008 53.39812851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c060 -00039009 53.39815521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c070 -00039010 53.39815521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c070 -00039011 53.39818192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c080 -00039012 53.39818573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c080 -00039013 53.39821243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c090 -00039014 53.39821625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c090 -00039015 53.39823914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a0 -00039016 53.39824295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a0 -00039017 53.39826965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b0 -00039018 53.39827347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b0 -00039019 53.39829636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c0 -00039020 53.39830017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c0 -00039021 53.39832687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d0 -00039022 53.39833069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d0 -00039023 53.39835358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e0 -00039024 53.39835739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e0 -00039025 53.39838409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f0 -00039026 53.39838409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f0 -00039027 53.39841461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c100 -00039028 53.39841461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c100 -00039029 53.39843750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c110 -00039030 53.39844131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c110 -00039031 53.39847183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c120 -00039032 53.39847183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c120 -00039033 53.39849854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c130 -00039034 53.39850235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c130 -00039035 53.39852905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c140 -00039036 53.39853287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c140 -00039037 53.39855576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c150 -00039038 53.39855957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c150 -00039039 53.39858627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c160 -00039040 53.39859009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c160 -00039041 53.39861298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c170 -00039042 53.39861679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c170 -00039043 53.39864349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c180 -00039044 53.39864731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c180 -00039045 53.39867020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c190 -00039046 53.39867401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c190 -00039047 53.39870071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a0 -00039048 53.39870453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a0 -00039049 53.39873123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b0 -00039050 53.39873123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b0 -00039051 53.39875793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c0 -00039052 53.39876175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c0 -00039053 53.39878845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d0 -00039054 53.39879227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d0 -00039055 53.39881516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e0 -00039056 53.39881516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e0 -00039057 53.39884186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f0 -00039058 53.39884567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f0 -00039059 53.39886856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c200 -00039060 53.39887238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c200 -00039061 53.39889908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c210 -00039062 53.39890289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c210 -00039063 53.39892960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c220 -00039064 53.39892960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c220 -00039065 53.39895630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c230 -00039066 53.39896011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c230 -00039067 53.39898682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c240 -00039068 53.39899063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c240 -00039069 53.39901352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c250 -00039070 53.39901733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c250 -00039071 53.39904404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c260 -00039072 53.39904785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c260 -00039073 53.39907074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c270 -00039074 53.39907455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c270 -00039075 53.39910126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c280 -00039076 53.39910507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c280 -00039077 53.39912796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c290 -00039078 53.39913177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c290 -00039079 53.39915848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2a0 -00039080 53.39916229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2a0 -00039081 53.39918900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2b0 -00039082 53.39918900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2b0 -00039083 53.39921570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2c0 -00039084 53.39921951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2c0 -00039085 53.39924622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2d0 -00039086 53.39924622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2d0 -00039087 53.39927292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2e0 -00039088 53.39927673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2e0 -00039089 53.39930344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2f0 -00039090 53.39930725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2f0 -00039091 53.39933014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c300 -00039092 53.39933395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c300 -00039093 53.39936066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c310 -00039094 53.39936066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c310 -00039095 53.39938736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c320 -00039096 53.39938736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c320 -00039097 53.39941406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c330 -00039098 53.39941788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c330 -00039099 53.39944458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c340 -00039100 53.39944458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c340 -00039101 53.39947128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c350 -00039102 53.39947510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c350 -00039103 53.39950180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c360 -00039104 53.39950562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c360 -00039105 53.39952850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c370 -00039106 53.39953232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c370 -00039107 53.39955902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c380 -00039108 53.39956284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c380 -00039109 53.39958572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c390 -00039110 53.39958572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c390 -00039111 53.39961624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a0 -00039112 53.39961624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a0 -00039113 53.39964294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b0 -00039114 53.39964294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b0 -00039115 53.39966965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c0 -00039116 53.39967346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c0 -00039117 53.39970016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d0 -00039118 53.39970398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d0 -00039119 53.39972687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e0 -00039120 53.39973068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e0 -00039121 53.39975739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f0 -00039122 53.39976120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f0 -00039123 53.39978409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c400 -00039124 53.39978790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c400 -00039125 53.39981461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c410 -00039126 53.39981842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c410 -00039127 53.39984131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c420 -00039128 53.39984512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c420 -00039129 53.39987183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c430 -00039130 53.39987564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c430 -00039131 53.39990234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c440 -00039132 53.39990234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c440 -00039133 53.39992905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c450 -00039134 53.39993286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c450 -00039135 53.39995956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c460 -00039136 53.39996338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c460 -00039137 53.39998627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c470 -00039138 53.39998627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c470 -00039139 53.40001678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c480 -00039140 53.40001678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c480 -00039141 53.40004349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c490 -00039142 53.40004349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c490 -00039143 53.40007019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a0 -00039144 53.40007401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a0 -00039145 53.40010071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b0 -00039146 53.40010071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b0 -00039147 53.40012741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4c0 -00039148 53.40013123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4c0 -00039149 53.40015793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4d0 -00039150 53.40016174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4d0 -00039151 53.40018463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4e0 -00039152 53.40018845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4e0 -00039153 53.40021515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4f0 -00039154 53.40021896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4f0 -00039155 53.40024185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c500 -00039156 53.40024185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c500 -00039157 53.40026855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c510 -00039158 53.40027237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c510 -00039159 53.40029907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c520 -00039160 53.40029907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c520 -00039161 53.40032578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c530 -00039162 53.40032959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c530 -00039163 53.40035629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c540 -00039164 53.40036011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c540 -00039165 53.40038300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c550 -00039166 53.40038681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c550 -00039167 53.40041351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c560 -00039168 53.40041733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c560 -00039169 53.40044022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c570 -00039170 53.40044403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c570 -00039171 53.40047073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c580 -00039172 53.40047455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c580 -00039173 53.40049744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c590 -00039174 53.40050125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c590 -00039175 53.40052795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5a0 -00039176 53.40053177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5a0 -00039177 53.40055847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5b0 -00039178 53.40055847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5b0 -00039179 53.40058517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5c0 -00039180 53.40058517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5c0 -00039181 53.40061188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5d0 -00039182 53.40061569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5d0 -00039183 53.40063858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5e0 -00039184 53.40064240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5e0 -00039185 53.40066910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5f0 -00039186 53.40067291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5f0 -00039187 53.40069580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c600 -00039188 53.40069962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c600 -00039189 53.40072632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c610 -00039190 53.40073013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c610 -00039191 53.40075684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c620 -00039192 53.40075684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c620 -00039193 53.40078354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c630 -00039194 53.40078735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c630 -00039195 53.40081406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c640 -00039196 53.40081406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c640 -00039197 53.40084076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c650 -00039198 53.40084076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c650 -00039199 53.40086746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c660 -00039200 53.40087128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c660 -00039201 53.40089417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c670 -00039202 53.40089798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c670 -00039203 53.40092468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c680 -00039204 53.40092850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c680 -00039205 53.40095520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c690 -00039206 53.40095520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c690 -00039207 53.40098190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6a0 -00039208 53.40098572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6a0 -00039209 53.40101242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6b0 -00039210 53.40101624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6b0 -00039211 53.40103912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6c0 -00039212 53.40104294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6c0 -00039213 53.40106964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6d0 -00039214 53.40107346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6d0 -00039215 53.40109634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6e0 -00039216 53.40110016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6e0 -00039217 53.40112686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6f0 -00039218 53.40113068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6f0 -00039219 53.40115356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -00039220 53.40115356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -00039221 53.40118408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -00039222 53.40118408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -00039223 53.40121078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -00039224 53.40121460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -00039225 53.40123749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -00039226 53.40124130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -00039227 53.40126801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -00039228 53.40127182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -00039229 53.40129471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -00039230 53.40129852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -00039231 53.40132523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -00039232 53.40132904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -00039233 53.40135193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -00039234 53.40135574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -00039235 53.40138245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -00039236 53.40138245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -00039237 53.40141296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -00039238 53.40141296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -00039239 53.40143585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -00039240 53.40143967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -00039241 53.40146637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -00039242 53.40147018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -00039243 53.40149307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c0 -00039244 53.40149689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c0 -00039245 53.40152359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d0 -00039246 53.40152740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d0 -00039247 53.40155029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e0 -00039248 53.40155411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e0 -00039249 53.40158081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f0 -00039250 53.40158463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f0 -00039251 53.40161133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c800 -00039252 53.40161133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c800 -00039253 53.40163803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c810 -00039254 53.40164185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c810 -00039255 53.40166855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c820 -00039256 53.40166855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c820 -00039257 53.40169525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c830 -00039258 53.40169907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c830 -00039259 53.40172577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c840 -00039260 53.40172958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c840 -00039261 53.40180588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c850 -00039262 53.40180969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c850 -00039263 53.40183258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c860 -00039264 53.40183258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c860 -00039265 53.40186310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c870 -00039266 53.40186310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c870 -00039267 53.40188980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c880 -00039268 53.40188980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c880 -00039269 53.40191650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c890 -00039270 53.40192032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c890 -00039271 53.40194702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8a0 -00039272 53.40194702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8a0 -00039273 53.40197372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8b0 -00039274 53.40197754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8b0 -00039275 53.40200424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8c0 -00039276 53.40200806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8c0 -00039277 53.40203094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8d0 -00039278 53.40203476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8d0 -00039279 53.40206146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8e0 -00039280 53.40206528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8e0 -00039281 53.40208817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8f0 -00039282 53.40209198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8f0 -00039283 53.40211868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c900 -00039284 53.40212250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c900 -00039285 53.40214539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c910 -00039286 53.40214539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c910 -00039287 53.40217590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c920 -00039288 53.40217590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c920 -00039289 53.40220642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c930 -00039290 53.40220642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c930 -00039291 53.40222931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c940 -00039292 53.40223312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c940 -00039293 53.40225983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c950 -00039294 53.40226364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c950 -00039295 53.40228653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c960 -00039296 53.40229034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c960 -00039297 53.40231705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c970 -00039298 53.40232086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c970 -00039299 53.40234375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c980 -00039300 53.40234756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c980 -00039301 53.40237427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c990 -00039302 53.40237808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c990 -00039303 53.40240479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9a0 -00039304 53.40240479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9a0 -00039305 53.40243149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9b0 -00039306 53.40243530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9b0 -00039307 53.40246201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9c0 -00039308 53.40246582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9c0 -00039309 53.40248871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9d0 -00039310 53.40249252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9d0 -00039311 53.40251923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9e0 -00039312 53.40252304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9e0 -00039313 53.40254593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9f0 -00039314 53.40254593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9f0 -00039315 53.40257645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca00 -00039316 53.40257645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca00 -00039317 53.40260315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca10 -00039318 53.40260315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca10 -00039319 53.40262985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca20 -00039320 53.40263367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca20 -00039321 53.40266037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca30 -00039322 53.40266418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca30 -00039323 53.40268707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca40 -00039324 53.40269089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca40 -00039325 53.40271759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca50 -00039326 53.40272141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca50 -00039327 53.40274429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca60 -00039328 53.40274811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca60 -00039329 53.40277481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca70 -00039330 53.40277863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca70 -00039331 53.40280151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca80 -00039332 53.40280151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca80 -00039333 53.40283203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca90 -00039334 53.40283585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca90 -00039335 53.40286255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caa0 -00039336 53.40286255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caa0 -00039337 53.40288925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cab0 -00039338 53.40289307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cab0 -00039339 53.40291977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cac0 -00039340 53.40291977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cac0 -00039341 53.40294647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cad0 -00039342 53.40295029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cad0 -00039343 53.40297699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cae0 -00039344 53.40298080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cae0 -00039345 53.40300369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caf0 -00039346 53.40300751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caf0 -00039347 53.40303421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb00 -00039348 53.40303802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb00 -00039349 53.40306473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb10 -00039350 53.40306854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb10 -00039351 53.40309525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb20 -00039352 53.40309906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb20 -00039353 53.40312195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb30 -00039354 53.40312576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb30 -00039355 53.40315247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb40 -00039356 53.40315628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb40 -00039357 53.40317917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb50 -00039358 53.40318298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb50 -00039359 53.40320969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb60 -00039360 53.40321350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb60 -00039361 53.40324020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb70 -00039362 53.40324020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb70 -00039363 53.40326691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb80 -00039364 53.40327072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb80 -00039365 53.40329742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb90 -00039366 53.40329742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb90 -00039367 53.40332413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cba0 -00039368 53.40332794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cba0 -00039369 53.40335464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbb0 -00039370 53.40335846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbb0 -00039371 53.40338516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbc0 -00039372 53.40338516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbc0 -00039373 53.40341568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbd0 -00039374 53.40341568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbd0 -00039375 53.40344620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbe0 -00039376 53.40345001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbe0 -00039377 53.40348053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbf0 -00039378 53.40348434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbf0 -00039379 53.40351105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc00 -00039380 53.40351486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc00 -00039381 53.40353775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc10 -00039382 53.40354156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc10 -00039383 53.40356827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc20 -00039384 53.40357208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc20 -00039385 53.40359497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc30 -00039386 53.40359879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc30 -00039387 53.40362549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc40 -00039388 53.40362930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc40 -00039389 53.40365601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc50 -00039390 53.40365601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc50 -00039391 53.40368271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc60 -00039392 53.40368652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc60 -00039393 53.40371323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc70 -00039394 53.40371704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc70 -00039395 53.40373993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc80 -00039396 53.40374374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc80 -00039397 53.40377045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc90 -00039398 53.40377426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc90 -00039399 53.40379715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca0 -00039400 53.40380096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca0 -00039401 53.40382767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb0 -00039402 53.40382767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb0 -00039403 53.40385437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc0 -00039404 53.40385437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc0 -00039405 53.40388489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccd0 -00039406 53.40388489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccd0 -00039407 53.40391159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce0 -00039408 53.40391541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce0 -00039409 53.40393829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf0 -00039410 53.40394211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf0 -00039411 53.40396881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd00 -00039412 53.40397263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd00 -00039413 53.40399551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd10 -00039414 53.40399933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd10 -00039415 53.40402603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd20 -00039416 53.40402985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd20 -00039417 53.40405273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd30 -00039418 53.40405655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd30 -00039419 53.40408325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd40 -00039420 53.40408707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd40 -00039421 53.40411377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd50 -00039422 53.40411377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd50 -00039423 53.40414047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd60 -00039424 53.40414429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd60 -00039425 53.40417099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd70 -00039426 53.40417099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd70 -00039427 53.40419769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd80 -00039428 53.40419769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd80 -00039429 53.40422440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd90 -00039430 53.40422821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd90 -00039431 53.40425110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cda0 -00039432 53.40425491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cda0 -00039433 53.40428162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdb0 -00039434 53.40428543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdb0 -00039435 53.40431213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdc0 -00039436 53.40431213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdc0 -00039437 53.40433884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdd0 -00039438 53.40434265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdd0 -00039439 53.40436935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cde0 -00039440 53.40436935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cde0 -00039441 53.40439606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdf0 -00039442 53.40439987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdf0 -00039443 53.40442657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce00 -00039444 53.40443039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce00 -00039445 53.40445328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce10 -00039446 53.40445709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce10 -00039447 53.40448380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce20 -00039448 53.40448761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce20 -00039449 53.40451050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce30 -00039450 53.40451050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce30 -00039451 53.40454102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce40 -00039452 53.40454102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce40 -00039453 53.40456772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce50 -00039454 53.40456772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce50 -00039455 53.40459442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce60 -00039456 53.40459824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce60 -00039457 53.40462494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce70 -00039458 53.40462875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce70 -00039459 53.40465164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce80 -00039460 53.40465546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce80 -00039461 53.40468216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce90 -00039462 53.40468597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce90 -00039463 53.40470886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cea0 -00039464 53.40471268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cea0 -00039465 53.40473938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ceb0 -00039466 53.40474319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ceb0 -00039467 53.40476990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cec0 -00039468 53.40476990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cec0 -00039469 53.40479660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ced0 -00039470 53.40480042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ced0 -00039471 53.40482712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cee0 -00039472 53.40482712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cee0 -00039473 53.40485001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cef0 -00039474 53.40485382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cef0 -00039475 53.40488052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf00 -00039476 53.40488434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf00 -00039477 53.40490723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf10 -00039478 53.40491104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf10 -00039479 53.40493774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf20 -00039480 53.40494156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf20 -00039481 53.40496826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf30 -00039482 53.40496826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf30 -00039483 53.40499496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf40 -00039484 53.40499878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf40 -00039485 53.40502548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf50 -00039486 53.40502548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf50 -00039487 53.40505219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf60 -00039488 53.40505600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf60 -00039489 53.40508270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf70 -00039490 53.40508652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf70 -00039491 53.40510941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf80 -00039492 53.40511322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf80 -00039493 53.40513992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf90 -00039494 53.40513992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf90 -00039495 53.40516663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa0 -00039496 53.40516663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa0 -00039497 53.40519333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb0 -00039498 53.40519714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb0 -00039499 53.40522385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc0 -00039500 53.40522385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc0 -00039501 53.40525055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd0 -00039502 53.40525436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd0 -00039503 53.40528107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe0 -00039504 53.40528488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe0 -00039505 53.40530777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff0 -00039506 53.40531158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff0 -00039507 53.40533829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d000 -00039508 53.40534210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d000 -00039509 53.40536499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d010 -00039510 53.40536880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d010 -00039511 53.40539551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d020 -00039512 53.40539932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d020 -00039513 53.40542221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d030 -00039514 53.40542603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d030 -00039515 53.40545273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d040 -00039516 53.40545273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d040 -00039517 53.40548325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d050 -00039518 53.40548325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d050 -00039519 53.40550613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d060 -00039520 53.40550995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d060 -00039521 53.40553665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d070 -00039522 53.40554047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d070 -00039523 53.40556335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d080 -00039524 53.40556717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d080 -00039525 53.40559387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d090 -00039526 53.40559769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d090 -00039527 53.40562057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a0 -00039528 53.40562439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a0 -00039529 53.40565109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0b0 -00039530 53.40565491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0b0 -00039531 53.40568161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c0 -00039532 53.40568161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c0 -00039533 53.40570831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d0 -00039534 53.40571213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d0 -00039535 53.40573883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e0 -00039536 53.40574265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e0 -00039537 53.40576553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -00039538 53.40576935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -00039539 53.40579605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -00039540 53.40579987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -00039541 53.40582275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -00039542 53.40582657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -00039543 53.40585327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -00039544 53.40585709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -00039545 53.40587997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -00039546 53.40588379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -00039547 53.40591049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -00039548 53.40591431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -00039549 53.40594101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -00039550 53.40594101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -00039551 53.40596771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -00039552 53.40597153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -00039553 53.40599823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -00039554 53.40599823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -00039555 53.40602493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -00039556 53.40602875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -00039557 53.40605545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -00039558 53.40605545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -00039559 53.40607834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -00039560 53.40608215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -00039561 53.40610886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -00039562 53.40611267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -00039563 53.40613937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -00039564 53.40613937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -00039565 53.40616608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -00039566 53.40616989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -00039567 53.40619659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -00039568 53.40619659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -00039569 53.40622330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -00039570 53.40622711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -00039571 53.40625381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -00039572 53.40625763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -00039573 53.40628052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -00039574 53.40628433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -00039575 53.40631104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -00039576 53.40631104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -00039577 53.40633774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -00039578 53.40633774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -00039579 53.40636444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -00039580 53.40636826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -00039581 53.40639496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d250 -00039582 53.40639496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d250 -00039583 53.40642166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d260 -00039584 53.40642548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d260 -00039585 53.40645218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d270 -00039586 53.40645599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d270 -00039587 53.40647888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d280 -00039588 53.40648270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d280 -00039589 53.40650940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d290 -00039590 53.40651321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d290 -00039591 53.40653610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a0 -00039592 53.40653992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a0 -00039593 53.40656662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b0 -00039594 53.40657043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b0 -00039595 53.40659332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c0 -00039596 53.40659332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c0 -00039597 53.40662384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d0 -00039598 53.40662384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d0 -00039599 53.40665054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e0 -00039600 53.40665436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e0 -00039601 53.40667725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f0 -00039602 53.40668106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f0 -00039603 53.40670776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d300 -00039604 53.40671158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d300 -00039605 53.40673447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d310 -00039606 53.40673828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d310 -00039607 53.40676498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d320 -00039608 53.40676880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d320 -00039609 53.40679550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d330 -00039610 53.40679550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d330 -00039611 53.40682220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d340 -00039612 53.40682220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d340 -00039613 53.40685272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d350 -00039614 53.40685272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d350 -00039615 53.40687943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d360 -00039616 53.40687943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d360 -00039617 53.40690613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d370 -00039618 53.40690994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d370 -00039619 53.40693283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d380 -00039620 53.40693665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d380 -00039621 53.40696335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d390 -00039622 53.40696716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d390 -00039623 53.40699387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a0 -00039624 53.40699387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a0 -00039625 53.40702057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b0 -00039626 53.40702438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b0 -00039627 53.40705109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c0 -00039628 53.40705109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c0 -00039629 53.40707779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d0 -00039630 53.40707779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d0 -00039631 53.40710831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e0 -00039632 53.40710831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e0 -00039633 53.40713120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f0 -00039634 53.40713501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f0 -00039635 53.40716171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d400 -00039636 53.40716553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d400 -00039637 53.40719223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d410 -00039638 53.40719223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d410 -00039639 53.40721893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d420 -00039640 53.40722275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d420 -00039641 53.40724945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d430 -00039642 53.40724945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d430 -00039643 53.40727615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d440 -00039644 53.40727997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d440 -00039645 53.40730667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d450 -00039646 53.40731049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d450 -00039647 53.40733337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d460 -00039648 53.40733719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d460 -00039649 53.40736389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d470 -00039650 53.40736771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d470 -00039651 53.40739059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d480 -00039652 53.40739059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d480 -00039653 53.40742111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d490 -00039654 53.40742493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d490 -00039655 53.40744781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4a0 -00039656 53.40744781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4a0 -00039657 53.40747833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4b0 -00039658 53.40747833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4b0 -00039659 53.40750504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4c0 -00039660 53.40750885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4c0 -00039661 53.40753174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4d0 -00039662 53.40753555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4d0 -00039663 53.40756226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4e0 -00039664 53.40756607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4e0 -00039665 53.40758896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4f0 -00039666 53.40759277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4f0 -00039667 53.40761948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d500 -00039668 53.40762329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d500 -00039669 53.40764618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d510 -00039670 53.40764999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d510 -00039671 53.40767670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d520 -00039672 53.40768051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d520 -00039673 53.40770721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d530 -00039674 53.40770721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d530 -00039675 53.40773392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d540 -00039676 53.40773392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d540 -00039677 53.40776062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -00039678 53.40776443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -00039679 53.40778732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -00039680 53.40779114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -00039681 53.40782166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -00039682 53.40782547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -00039683 53.40784836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -00039684 53.40785217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -00039685 53.40787888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -00039686 53.40787888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -00039687 53.40790558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -00039688 53.40790558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -00039689 53.40793228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -00039690 53.40793610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -00039691 53.40796280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -00039692 53.40796661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -00039693 53.40798950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -00039694 53.40799332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -00039695 53.40802002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -00039696 53.40802383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -00039697 53.40804672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -00039698 53.40805054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -00039699 53.40807724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -00039700 53.40808105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -00039701 53.40810394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -00039702 53.40810776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -00039703 53.40813446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -00039704 53.40813446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -00039705 53.40816498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -00039706 53.40816498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -00039707 53.40818787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -00039708 53.40819168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -00039709 53.40821838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -00039710 53.40822220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -00039711 53.40824509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -00039712 53.40824890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -00039713 53.40827560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -00039714 53.40827942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -00039715 53.40830231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -00039716 53.40830612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -00039717 53.40833282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -00039718 53.40833664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -00039719 53.40836334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -00039720 53.40836334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -00039721 53.40839005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -00039722 53.40839005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -00039723 53.40841675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -00039724 53.40842056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -00039725 53.40844727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -00039726 53.40844727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -00039727 53.40847397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -00039728 53.40847778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -00039729 53.40850067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -00039730 53.40850449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -00039731 53.40853119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d700 -00039732 53.40853500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d700 -00039733 53.40856171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d710 -00039734 53.40856171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d710 -00039735 53.40858841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d720 -00039736 53.40859222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d720 -00039737 53.40861893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d730 -00039738 53.40861893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d730 -00039739 53.40864563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d740 -00039740 53.40864563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d740 -00039741 53.40867615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d750 -00039742 53.40867615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d750 -00039743 53.40869904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d760 -00039744 53.40870285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d760 -00039745 53.40872955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d770 -00039746 53.40873337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d770 -00039747 53.40876007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d780 -00039748 53.40876007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d780 -00039749 53.40878677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d790 -00039750 53.40879059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d790 -00039751 53.40881729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a0 -00039752 53.40882111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a0 -00039753 53.40884399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b0 -00039754 53.40884781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b0 -00039755 53.40887451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c0 -00039756 53.40887833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c0 -00039757 53.40890121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d0 -00039758 53.40890503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d0 -00039759 53.40893173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e0 -00039760 53.40893555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e0 -00039761 53.40895844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f0 -00039762 53.40895844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f0 -00039763 53.40898514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d800 -00039764 53.40898895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d800 -00039765 53.40901566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d810 -00039766 53.40901947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d810 -00039767 53.40904236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d820 -00039768 53.40904617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d820 -00039769 53.40907288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d830 -00039770 53.40907669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d830 -00039771 53.40909958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d840 -00039772 53.40910339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d840 -00039773 53.40913010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d850 -00039774 53.40913391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d850 -00039775 53.40915680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d860 -00039776 53.40916061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d860 -00039777 53.40918732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d870 -00039778 53.40919113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d870 -00039779 53.40921783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d880 -00039780 53.40921783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d880 -00039781 53.40924454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d890 -00039782 53.40924454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d890 -00039783 53.40927505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a0 -00039784 53.40927505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a0 -00039785 53.40929794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b0 -00039786 53.40930176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b0 -00039787 53.40932846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c0 -00039788 53.40933228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c0 -00039789 53.40935516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d0 -00039790 53.40935898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d0 -00039791 53.40938568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e0 -00039792 53.40938950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e0 -00039793 53.40941620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f0 -00039794 53.40941620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f0 -00039795 53.40944290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d900 -00039796 53.40944672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d900 -00039797 53.40947342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d910 -00039798 53.40947342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d910 -00039799 53.40950012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d920 -00039800 53.40950012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d920 -00039801 53.40953064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d930 -00039802 53.40953064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d930 -00039803 53.40955353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d940 -00039804 53.40955734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d940 -00039805 53.40958405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d950 -00039806 53.40958786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d950 -00039807 53.40961456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d960 -00039808 53.40961456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d960 -00039809 53.40964127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d970 -00039810 53.40964508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d970 -00039811 53.40967178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d980 -00039812 53.40967178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d980 -00039813 53.40969849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d990 -00039814 53.40970230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d990 -00039815 53.40972900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a0 -00039816 53.40973282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a0 -00039817 53.40975571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b0 -00039818 53.40975952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b0 -00039819 53.40979004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c0 -00039820 53.40979385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c0 -00039821 53.40981674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d0 -00039822 53.40982056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d0 -00039823 53.40984726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e0 -00039824 53.40985107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e0 -00039825 53.40987396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f0 -00039826 53.40987396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f0 -00039827 53.40990067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da00 -00039828 53.40990448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da00 -00039829 53.40993118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da10 -00039830 53.40993118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da10 -00039831 53.40995789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da20 -00039832 53.40996170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da20 -00039833 53.40998840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da30 -00039834 53.40999222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da30 -00039835 53.41001511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da40 -00039836 53.41001892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da40 -00039837 53.41004562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da50 -00039838 53.41004944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da50 -00039839 53.41007233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da60 -00039840 53.41007614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da60 -00039841 53.41010284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da70 -00039842 53.41010666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da70 -00039843 53.41012955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da80 -00039844 53.41013336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da80 -00039845 53.41016006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da90 -00039846 53.41016006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da90 -00039847 53.41019058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa0 -00039848 53.41019058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa0 -00039849 53.41021347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab0 -00039850 53.41021729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab0 -00039851 53.41024399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac0 -00039852 53.41024780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac0 -00039853 53.41027069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad0 -00039854 53.41027451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad0 -00039855 53.41030121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae0 -00039856 53.41030502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae0 -00039857 53.41032791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf0 -00039858 53.41033173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf0 -00039859 53.41035843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db00 -00039860 53.41036224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db00 -00039861 53.41038895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db10 -00039862 53.41038895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db10 -00039863 53.41041565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db20 -00039864 53.41041946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db20 -00039865 53.41044617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db30 -00039866 53.41044617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db30 -00039867 53.41047287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db40 -00039868 53.41047287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db40 -00039869 53.41050339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db50 -00039870 53.41050339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db50 -00039871 53.41052628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db60 -00039872 53.41053009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db60 -00039873 53.41055679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db70 -00039874 53.41056061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db70 -00039875 53.41058731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db80 -00039876 53.41058731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db80 -00039877 53.41061401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db90 -00039878 53.41061783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db90 -00039879 53.41064453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba0 -00039880 53.41064453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba0 -00039881 53.41067123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb0 -00039882 53.41067505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb0 -00039883 53.41070175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbc0 -00039884 53.41070557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbc0 -00039885 53.41072845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbd0 -00039886 53.41073227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbd0 -00039887 53.41075897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbe0 -00039888 53.41076279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbe0 -00039889 53.41078568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbf0 -00039890 53.41078568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbf0 -00039891 53.41081619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc00 -00039892 53.41081619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc00 -00039893 53.41084290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc10 -00039894 53.41084290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc10 -00039895 53.41086960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc20 -00039896 53.41087341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc20 -00039897 53.41090012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc30 -00039898 53.41090393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc30 -00039899 53.41092682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc40 -00039900 53.41093063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc40 -00039901 53.41095734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc50 -00039902 53.41096115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc50 -00039903 53.41098404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc60 -00039904 53.41098785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc60 -00039905 53.41101456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc70 -00039906 53.41101837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc70 -00039907 53.41104507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc80 -00039908 53.41104507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc80 -00039909 53.41107178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc90 -00039910 53.41107559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc90 -00039911 53.41110229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca0 -00039912 53.41110229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca0 -00039913 53.41112900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb0 -00039914 53.41112900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb0 -00039915 53.41115570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc0 -00039916 53.41115952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc0 -00039917 53.41118240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd0 -00039918 53.41118622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd0 -00039919 53.41121292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce0 -00039920 53.41121674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce0 -00039921 53.41124344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf0 -00039922 53.41124344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf0 -00039923 53.41127014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd00 -00039924 53.41127396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd00 -00039925 53.41130066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd10 -00039926 53.41130066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd10 -00039927 53.41132736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd20 -00039928 53.41133118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd20 -00039929 53.41135788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd30 -00039930 53.41136169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd30 -00039931 53.41138458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd40 -00039932 53.41138840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd40 -00039933 53.41141510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd50 -00039934 53.41141891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd50 -00039935 53.41144180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd60 -00039936 53.41144562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd60 -00039937 53.41147232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd70 -00039938 53.41147232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd70 -00039939 53.41149902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd80 -00039940 53.41149902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd80 -00039941 53.41152573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd90 -00039942 53.41152954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd90 -00039943 53.41155624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda0 -00039944 53.41156006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda0 -00039945 53.41158295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb0 -00039946 53.41158676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb0 -00039947 53.41161346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc0 -00039948 53.41161728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc0 -00039949 53.41164017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd0 -00039950 53.41164398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd0 -00039951 53.41167068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde0 -00039952 53.41167450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde0 -00039953 53.41169739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf0 -00039954 53.41170120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf0 -00039955 53.41172791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de00 -00039956 53.41173172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de00 -00039957 53.41175842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de10 -00039958 53.41175842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de10 -00039959 53.41178131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de20 -00039960 53.41178513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de20 -00039961 53.41181183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de30 -00039962 53.41181564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de30 -00039963 53.41183853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de40 -00039964 53.41184235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de40 -00039965 53.41186905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de50 -00039966 53.41187286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de50 -00039967 53.41189575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de60 -00039968 53.41189957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de60 -00039969 53.41192627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de70 -00039970 53.41193008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de70 -00039971 53.41195679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de80 -00039972 53.41195679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de80 -00039973 53.41198349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de90 -00039974 53.41198730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de90 -00039975 53.41201401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dea0 -00039976 53.41201782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dea0 -00039977 53.41204071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4deb0 -00039978 53.41204071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4deb0 -00039979 53.41207123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dec0 -00039980 53.41207123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dec0 -00039981 53.41209412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ded0 -00039982 53.41209793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ded0 -00039983 53.41212463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dee0 -00039984 53.41212845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dee0 -00039985 53.41215515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4def0 -00039986 53.41215515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4def0 -00039987 53.41218185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df00 -00039988 53.41218567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df00 -00039989 53.41221237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df10 -00039990 53.41221619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df10 -00039991 53.41223907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df20 -00039992 53.41224289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df20 -00039993 53.41226959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df30 -00039994 53.41227341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df30 -00039995 53.41229630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df40 -00039996 53.41230011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df40 -00039997 53.41232681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df50 -00039998 53.41232681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df50 -00039999 53.41235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df60 -00040000 53.41235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df60 -00040001 53.41238022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df70 -00040002 53.41238403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df70 -00040003 53.41241074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df80 -00040004 53.41241455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df80 -00040005 53.41243744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df90 -00040006 53.41244125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df90 -00040007 53.41246796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfa0 -00040008 53.41247177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfa0 -00040009 53.41249466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfb0 -00040010 53.41249847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfb0 -00040011 53.41252518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc0 -00040012 53.41252899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc0 -00040013 53.41255188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd0 -00040014 53.41255569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd0 -00040015 53.41258240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe0 -00040016 53.41258240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe0 -00040017 53.41261292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff0 -00040018 53.41261292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff0 -00040019 53.41263580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e000 -00040020 53.41263962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e000 -00040021 53.41266632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e010 -00040022 53.41267014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e010 -00040023 53.41269302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e020 -00040024 53.41269684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e020 -00040025 53.41272354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e030 -00040026 53.41272736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e030 -00040027 53.41275024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e040 -00040028 53.41275406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e040 -00040029 53.41278076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e050 -00040030 53.41278458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e050 -00040031 53.41281128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e060 -00040032 53.41281128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e060 -00040033 53.41283798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e070 -00040034 53.41284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e070 -00040035 53.41286850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e080 -00040036 53.41286850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e080 -00040037 53.41289520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e090 -00040038 53.41289520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e090 -00040039 53.41292572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a0 -00040040 53.41292572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a0 -00040041 53.41294861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b0 -00040042 53.41295242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b0 -00040043 53.41297913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c0 -00040044 53.41298294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c0 -00040045 53.41300964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d0 -00040046 53.41300964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d0 -00040047 53.41303635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0e0 -00040048 53.41304016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0e0 -00040049 53.41306686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0f0 -00040050 53.41307068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0f0 -00040051 53.41309357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e100 -00040052 53.41309738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e100 -00040053 53.41312408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e110 -00040054 53.41312790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e110 -00040055 53.41315079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e120 -00040056 53.41315460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e120 -00040057 53.41318130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e130 -00040058 53.41318512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e130 -00040059 53.41320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e140 -00040060 53.41320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e140 -00040061 53.41323471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e150 -00040062 53.41323853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e150 -00040063 53.41326523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e160 -00040064 53.41326904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e160 -00040065 53.41329193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e170 -00040066 53.41329575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e170 -00040067 53.41332245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e180 -00040068 53.41332626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e180 -00040069 53.41334915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e190 -00040070 53.41335297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e190 -00040071 53.41337967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1a0 -00040072 53.41338348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1a0 -00040073 53.41340637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1b0 -00040074 53.41341019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1b0 -00040075 53.41343689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1c0 -00040076 53.41343689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1c0 -00040077 53.41346741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1d0 -00040078 53.41346741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1d0 -00040079 53.41349411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1e0 -00040080 53.41349411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1e0 -00040081 53.41352081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1f0 -00040082 53.41352463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1f0 -00040083 53.41354752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e200 -00040084 53.41355133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e200 -00040085 53.41357803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e210 -00040086 53.41358185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e210 -00040087 53.41360474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e220 -00040088 53.41360855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e220 -00040089 53.41363525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e230 -00040090 53.41363907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e230 -00040091 53.41366577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e240 -00040092 53.41366577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e240 -00040093 53.41369629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e250 -00040094 53.41369629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e250 -00040095 53.41372299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e260 -00040096 53.41372299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e260 -00040097 53.41375351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e270 -00040098 53.41375732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e270 -00040099 53.41378403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e280 -00040100 53.41378403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e280 -00040101 53.41381073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e290 -00040102 53.41381454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e290 -00040103 53.41384125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a0 -00040104 53.41384506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a0 -00040105 53.41386795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b0 -00040106 53.41387177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b0 -00040107 53.41389847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c0 -00040108 53.41390228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c0 -00040109 53.41392517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d0 -00040110 53.41392899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d0 -00040111 53.41395569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e0 -00040112 53.41395569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e0 -00040113 53.41398239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f0 -00040114 53.41398239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f0 -00040115 53.41401291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e300 -00040116 53.41401672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e300 -00040117 53.41404343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e310 -00040118 53.41404343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e310 -00040119 53.41407013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e320 -00040120 53.41407394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e320 -00040121 53.41410065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e330 -00040122 53.41410065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e330 -00040123 53.41412735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e340 -00040124 53.41413116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e340 -00040125 53.41415787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e350 -00040126 53.41416168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e350 -00040127 53.41418457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e360 -00040128 53.41418839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e360 -00040129 53.41421509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e370 -00040130 53.41421890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e370 -00040131 53.41424179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e380 -00040132 53.41424561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e380 -00040133 53.41427231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e390 -00040134 53.41427612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e390 -00040135 53.41429901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a0 -00040136 53.41430283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a0 -00040137 53.41432953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b0 -00040138 53.41433334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b0 -00040139 53.41436005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c0 -00040140 53.41436005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c0 -00040141 53.41438675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d0 -00040142 53.41439056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d0 -00040143 53.41441727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e0 -00040144 53.41442108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e0 -00040145 53.41444778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f0 -00040146 53.41445160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f0 -00040147 53.41447830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e400 -00040148 53.41447830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e400 -00040149 53.41450500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e410 -00040150 53.41450500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e410 -00040151 53.41453552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e420 -00040152 53.41453934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e420 -00040153 53.41456223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e430 -00040154 53.41456223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e430 -00040155 53.41459274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e440 -00040156 53.41459274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e440 -00040157 53.41461945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e450 -00040158 53.41461945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e450 -00040159 53.41464615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e460 -00040160 53.41464996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e460 -00040161 53.41467667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e470 -00040162 53.41467667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e470 -00040163 53.41470718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e480 -00040164 53.41471100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e480 -00040165 53.41473770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e490 -00040166 53.41473770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e490 -00040167 53.41476440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a0 -00040168 53.41476822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a0 -00040169 53.41479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b0 -00040170 53.41479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b0 -00040171 53.41482162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c0 -00040172 53.41482544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c0 -00040173 53.41485214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d0 -00040174 53.41485596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d0 -00040175 53.41487885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e0 -00040176 53.41488266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e0 -00040177 53.41490936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f0 -00040178 53.41491318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f0 -00040179 53.41493607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e500 -00040180 53.41493988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e500 -00040181 53.41496658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e510 -00040182 53.41497040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e510 -00040183 53.41499710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e520 -00040184 53.41499710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e520 -00040185 53.41502380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e530 -00040186 53.41502762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e530 -00040187 53.41505432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e540 -00040188 53.41505432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e540 -00040189 53.41508484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e550 -00040190 53.41508865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e550 -00040191 53.41511536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e560 -00040192 53.41511536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e560 -00040193 53.41514206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e570 -00040194 53.41514587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e570 -00040195 53.41517258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e580 -00040196 53.41517258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e580 -00040197 53.41519928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e590 -00040198 53.41520309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e590 -00040199 53.41522980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5a0 -00040200 53.41523361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5a0 -00040201 53.41525650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5b0 -00040202 53.41526031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5b0 -00040203 53.41528702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5c0 -00040204 53.41529083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5c0 -00040205 53.41531372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5d0 -00040206 53.41531754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5d0 -00040207 53.41534424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5e0 -00040208 53.41534805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5e0 -00040209 53.41537094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5f0 -00040210 53.41537476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5f0 -00040211 53.41540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e600 -00040212 53.41540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e600 -00040213 53.41543198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e610 -00040214 53.41543579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e610 -00040215 53.41546249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e620 -00040216 53.41546631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e620 -00040217 53.41549301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e630 -00040218 53.41549301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e630 -00040219 53.41551971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e640 -00040220 53.41552353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e640 -00040221 53.41555023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e650 -00040222 53.41555023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e650 -00040223 53.41557693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e660 -00040224 53.41558075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e660 -00040225 53.41560745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e670 -00040226 53.41561127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e670 -00040227 53.41563797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e680 -00040228 53.41564178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e680 -00040229 53.41566849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e690 -00040230 53.41567230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e690 -00040231 53.41569519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6a0 -00040232 53.41569901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6a0 -00040233 53.41572571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6b0 -00040234 53.41572952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6b0 -00040235 53.41575241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c0 -00040236 53.41575623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c0 -00040237 53.41578674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d0 -00040238 53.41579056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d0 -00040239 53.41581345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e0 -00040240 53.41581726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e0 -00040241 53.41584396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f0 -00040242 53.41584778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f0 -00040243 53.41587067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e700 -00040244 53.41587448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e700 -00040245 53.41590118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e710 -00040246 53.41590500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e710 -00040247 53.41592789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e720 -00040248 53.41593170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e720 -00040249 53.41595840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e730 -00040250 53.41596222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e730 -00040251 53.41598892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e740 -00040252 53.41598892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e740 -00040253 53.41601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e750 -00040254 53.41601944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e750 -00040255 53.41604614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e760 -00040256 53.41604996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e760 -00040257 53.41607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e770 -00040258 53.41607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e770 -00040259 53.41610718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e780 -00040260 53.41610718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e780 -00040261 53.41613388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e790 -00040262 53.41613770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e790 -00040263 53.41616440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7a0 -00040264 53.41616821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7a0 -00040265 53.41619110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7b0 -00040266 53.41619492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7b0 -00040267 53.41622162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7c0 -00040268 53.41622543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7c0 -00040269 53.41624832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7d0 -00040270 53.41625214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7d0 -00040271 53.41628265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7e0 -00040272 53.41628265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7e0 -00040273 53.41630936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7f0 -00040274 53.41631317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7f0 -00040275 53.41633987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e800 -00040276 53.41633987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e800 -00040277 53.41636658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e810 -00040278 53.41637039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e810 -00040279 53.41639709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e820 -00040280 53.41640091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e820 -00040281 53.41642380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e830 -00040282 53.41642761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e830 -00040283 53.41645432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e840 -00040284 53.41645813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e840 -00040285 53.41648483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e850 -00040286 53.41648483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e850 -00040287 53.41651154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e860 -00040288 53.41651535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e860 -00040289 53.41654205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e870 -00040290 53.41654587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e870 -00040291 53.41657257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e880 -00040292 53.41657639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e880 -00040293 53.41660309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e890 -00040294 53.41660309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e890 -00040295 53.41662979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a0 -00040296 53.41663361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a0 -00040297 53.41666031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b0 -00040298 53.41666031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b0 -00040299 53.41668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c0 -00040300 53.41668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c0 -00040301 53.41671753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d0 -00040302 53.41672134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d0 -00040303 53.41674423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e0 -00040304 53.41674805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e0 -00040305 53.41677475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f0 -00040306 53.41677856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f0 -00040307 53.41680145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e900 -00040308 53.41680527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e900 -00040309 53.41683197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e910 -00040310 53.41683578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e910 -00040311 53.41686249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e920 -00040312 53.41686249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e920 -00040313 53.41688919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e930 -00040314 53.41689301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e930 -00040315 53.41691971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e940 -00040316 53.41691971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e940 -00040317 53.41694641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e950 -00040318 53.41695023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e950 -00040319 53.41697693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e960 -00040320 53.41698074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e960 -00040321 53.41700363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e970 -00040322 53.41700745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e970 -00040323 53.41703415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e980 -00040324 53.41703796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e980 -00040325 53.41706085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e990 -00040326 53.41706467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e990 -00040327 53.41709137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9a0 -00040328 53.41709518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9a0 -00040329 53.41712189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9b0 -00040330 53.41712189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9b0 -00040331 53.41714859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9c0 -00040332 53.41715240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9c0 -00040333 53.41717911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9d0 -00040334 53.41718292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9d0 -00040335 53.41720963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9e0 -00040336 53.41721344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9e0 -00040337 53.41724014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9f0 -00040338 53.41724014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9f0 -00040339 53.41726685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea00 -00040340 53.41727066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea00 -00040341 53.41729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea10 -00040342 53.41729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea10 -00040343 53.41732407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea20 -00040344 53.41732788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea20 -00040345 53.41735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea30 -00040346 53.41735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea30 -00040347 53.41738510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea40 -00040348 53.41738510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea40 -00040349 53.41741562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea50 -00040350 53.41741562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea50 -00040351 53.41744232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea60 -00040352 53.41744614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea60 -00040353 53.41747284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea70 -00040354 53.41747665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea70 -00040355 53.41749954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea80 -00040356 53.41750336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea80 -00040357 53.41753006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea90 -00040358 53.41753387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea90 -00040359 53.41755676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaa0 -00040360 53.41756058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaa0 -00040361 53.41758728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eab0 -00040362 53.41759109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eab0 -00040363 53.41761780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eac0 -00040364 53.41761780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eac0 -00040365 53.41764832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ead0 -00040366 53.41765213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ead0 -00040367 53.41767502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eae0 -00040368 53.41767883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eae0 -00040369 53.41770554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaf0 -00040370 53.41770935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaf0 -00040371 53.41773605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb00 -00040372 53.41773605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb00 -00040373 53.41776276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb10 -00040374 53.41776657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb10 -00040375 53.41779327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb20 -00040376 53.41779709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb20 -00040377 53.41781998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb30 -00040378 53.41782379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb30 -00040379 53.41785049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb40 -00040380 53.41785431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb40 -00040381 53.41787720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb50 -00040382 53.41788101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb50 -00040383 53.41791153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb60 -00040384 53.41791153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb60 -00040385 53.41793823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb70 -00040386 53.41793823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb70 -00040387 53.41796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb80 -00040388 53.41797256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb80 -00040389 53.41799545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb90 -00040390 53.41799927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb90 -00040391 53.41802597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eba0 -00040392 53.41802979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eba0 -00040393 53.41805267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebb0 -00040394 53.41805649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebb0 -00040395 53.41808319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebc0 -00040396 53.41808701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebc0 -00040397 53.41811371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -00040398 53.41811371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -00040399 53.41814041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -00040400 53.41814423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -00040401 53.41817093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -00040402 53.41817093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -00040403 53.41819763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -00040404 53.41820145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -00040405 53.41822815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -00040406 53.41823196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -00040407 53.41825485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -00040408 53.41825867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -00040409 53.41828537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -00040410 53.41828918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -00040411 53.41831207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -00040412 53.41831589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -00040413 53.41834259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -00040414 53.41834641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -00040415 53.41836929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -00040416 53.41837311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -00040417 53.41839981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -00040418 53.41840363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -00040419 53.41843033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -00040420 53.41843033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -00040421 53.41845703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -00040422 53.41846085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -00040423 53.41849136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -00040424 53.41849136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -00040425 53.41851425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -00040426 53.41851807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -00040427 53.41854858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -00040428 53.41854858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -00040429 53.41857529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -00040430 53.41857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -00040431 53.41860580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -00040432 53.41860580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -00040433 53.41863251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -00040434 53.41863632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -00040435 53.41866302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -00040436 53.41866684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -00040437 53.41868973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -00040438 53.41869354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -00040439 53.41872025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -00040440 53.41872406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -00040441 53.41874695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed30 -00040442 53.41875076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed30 -00040443 53.41877747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed40 -00040444 53.41878128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed40 -00040445 53.41880798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -00040446 53.41880798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -00040447 53.41883469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -00040448 53.41883850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -00040449 53.41886902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -00040450 53.41886902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -00040451 53.41889572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -00040452 53.41889954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -00040453 53.41892624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -00040454 53.41892624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -00040455 53.41895294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -00040456 53.41895676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -00040457 53.41898346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -00040458 53.41898727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -00040459 53.41901016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -00040460 53.41901398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -00040461 53.41904068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -00040462 53.41904449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -00040463 53.41907120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -00040464 53.41907501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -00040465 53.41910172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edf0 -00040466 53.41910553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edf0 -00040467 53.41912842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee00 -00040468 53.41913223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee00 -00040469 53.41915894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee10 -00040470 53.41916275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee10 -00040471 53.41918564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee20 -00040472 53.41918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee20 -00040473 53.41921616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee30 -00040474 53.41921997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee30 -00040475 53.41924667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee40 -00040476 53.41924667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee40 -00040477 53.41927719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee50 -00040478 53.41927719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee50 -00040479 53.41930389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee60 -00040480 53.41930771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee60 -00040481 53.41933441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee70 -00040482 53.41933823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee70 -00040483 53.41936493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee80 -00040484 53.41936493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee80 -00040485 53.41939163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee90 -00040486 53.41939545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee90 -00040487 53.41942215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eea0 -00040488 53.41942215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eea0 -00040489 53.41944885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eeb0 -00040490 53.41945267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eeb0 -00040491 53.41947937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eec0 -00040492 53.41948318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eec0 -00040493 53.41950607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eed0 -00040494 53.41950989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eed0 -00040495 53.41953659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee0 -00040496 53.41954041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee0 -00040497 53.41956329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef0 -00040498 53.41956711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef0 -00040499 53.41959381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef00 -00040500 53.41959763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef00 -00040501 53.41962051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef10 -00040502 53.41962433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef10 -00040503 53.41965485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef20 -00040504 53.41965866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef20 -00040505 53.41968155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef30 -00040506 53.41968155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef30 -00040507 53.41971207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef40 -00040508 53.41971588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef40 -00040509 53.41974258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef50 -00040510 53.41974258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef50 -00040511 53.41976929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef60 -00040512 53.41977310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef60 -00040513 53.41979980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef70 -00040514 53.41979980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef70 -00040515 53.41982651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef80 -00040516 53.41982651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef80 -00040517 53.41985703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef90 -00040518 53.41986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef90 -00040519 53.41988373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efa0 -00040520 53.41988754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efa0 -00040521 53.41991425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efb0 -00040522 53.41991806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efb0 -00040523 53.41994095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efc0 -00040524 53.41994476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efc0 -00040525 53.41997147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efd0 -00040526 53.41997528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efd0 -00040527 53.41999817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efe0 -00040528 53.42000198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efe0 -00040529 53.42002869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eff0 -00040530 53.42003250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eff0 -00040531 53.42005920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f000 -00040532 53.42005920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f000 -00040533 53.42008591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f010 -00040534 53.42008972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f010 -00040535 53.42011642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f020 -00040536 53.42012024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f020 -00040537 53.42014313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f030 -00040538 53.42014694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f030 -00040539 53.42017746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f040 -00040540 53.42017746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f040 -00040541 53.42020416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f050 -00040542 53.42020798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f050 -00040543 53.42023468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f060 -00040544 53.42023849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f060 -00040545 53.42026138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f070 -00040546 53.42026520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f070 -00040547 53.42029190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f080 -00040548 53.42029572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f080 -00040549 53.42031860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f090 -00040550 53.42032242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f090 -00040551 53.42034912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a0 -00040552 53.42035294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a0 -00040553 53.42037582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b0 -00040554 53.42037964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b0 -00040555 53.42041016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c0 -00040556 53.42041397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c0 -00040557 53.42043686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d0 -00040558 53.42044067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d0 -00040559 53.42046738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e0 -00040560 53.42047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e0 -00040561 53.42049789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f0 -00040562 53.42049789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f0 -00040563 53.42052460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f100 -00040564 53.42052841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f100 -00040565 53.42055511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f110 -00040566 53.42055511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f110 -00040567 53.42058182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f120 -00040568 53.42058563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f120 -00040569 53.42061234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f130 -00040570 53.42061615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f130 -00040571 53.42063904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f140 -00040572 53.42064285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f140 -00040573 53.42067337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f150 -00040574 53.42067337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f150 -00040575 53.42070007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f160 -00040576 53.42070007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f160 -00040577 53.42072678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f170 -00040578 53.42073059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f170 -00040579 53.42075348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f180 -00040580 53.42075729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f180 -00040581 53.42078781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f190 -00040582 53.42079163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f190 -00040583 53.42081451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a0 -00040584 53.42081833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a0 -00040585 53.42084503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b0 -00040586 53.42084885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b0 -00040587 53.42087173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c0 -00040588 53.42087555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c0 -00040589 53.42090225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d0 -00040590 53.42090607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d0 -00040591 53.42093277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e0 -00040592 53.42093277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e0 -00040593 53.42095947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f0 -00040594 53.42096329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f0 -00040595 53.42098999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f200 -00040596 53.42099380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f200 -00040597 53.42101669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f210 -00040598 53.42102051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f210 -00040599 53.42104721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f220 -00040600 53.42105103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f220 -00040601 53.42107391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f230 -00040602 53.42107773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f230 -00040603 53.42110443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f240 -00040604 53.42110825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f240 -00040605 53.42113113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f250 -00040606 53.42113495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f250 -00040607 53.42116165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f260 -00040608 53.42116547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f260 -00040609 53.42119217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f270 -00040610 53.42119217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f270 -00040611 53.42121887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f280 -00040612 53.42122269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f280 -00040613 53.42124939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f290 -00040614 53.42124939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f290 -00040615 53.42127991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a0 -00040616 53.42127991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a0 -00040617 53.42131042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b0 -00040618 53.42131042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b0 -00040619 53.42133713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c0 -00040620 53.42134094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c0 -00040621 53.42136765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d0 -00040622 53.42137146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d0 -00040623 53.42139435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e0 -00040624 53.42139435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e0 -00040625 53.42142487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f0 -00040626 53.42142868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f0 -00040627 53.42145157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f300 -00040628 53.42145538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f300 -00040629 53.42148209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f310 -00040630 53.42148590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f310 -00040631 53.42150879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f320 -00040632 53.42151260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f320 -00040633 53.42153931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f330 -00040634 53.42154312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f330 -00040635 53.42156982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f340 -00040636 53.42157364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f340 -00040637 53.42160034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f350 -00040638 53.42160416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f350 -00040639 53.42162704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f360 -00040640 53.42163086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f360 -00040641 53.42165756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f370 -00040642 53.42166138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f370 -00040643 53.42168808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f380 -00040644 53.42168808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f380 -00040645 53.42171478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f390 -00040646 53.42171860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f390 -00040647 53.42174530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3a0 -00040648 53.42174530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3a0 -00040649 53.42177200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3b0 -00040650 53.42177582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3b0 -00040651 53.42180252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3c0 -00040652 53.42180634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3c0 -00040653 53.42182922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3d0 -00040654 53.42183304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3d0 -00040655 53.42185974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3e0 -00040656 53.42186356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3e0 -00040657 53.42188644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3f0 -00040658 53.42189026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3f0 -00040659 53.42191696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f400 -00040660 53.42192078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f400 -00040661 53.42194748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f410 -00040662 53.42194748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f410 -00040663 53.42197418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f420 -00040664 53.42197800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f420 -00040665 53.42200470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f430 -00040666 53.42200470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f430 -00040667 53.42203140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f440 -00040668 53.42203522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f440 -00040669 53.42206192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f450 -00040670 53.42206573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f450 -00040671 53.42209244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f460 -00040672 53.42209244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f460 -00040673 53.42212296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f470 -00040674 53.42212296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f470 -00040675 53.42214966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f480 -00040676 53.42215347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f480 -00040677 53.42218018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f490 -00040678 53.42218399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f490 -00040679 53.42220688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4a0 -00040680 53.42221069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4a0 -00040681 53.42223740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4b0 -00040682 53.42224121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4b0 -00040683 53.42226410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4c0 -00040684 53.42226791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4c0 -00040685 53.42229462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4d0 -00040686 53.42229843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4d0 -00040687 53.42232132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4e0 -00040688 53.42232513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4e0 -00040689 53.42235565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4f0 -00040690 53.42235565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4f0 -00040691 53.42238235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f500 -00040692 53.42238235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f500 -00040693 53.42241287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f510 -00040694 53.42241669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f510 -00040695 53.42244339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f520 -00040696 53.42244339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f520 -00040697 53.42247009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f530 -00040698 53.42247391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f530 -00040699 53.42250061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f540 -00040700 53.42250061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f540 -00040701 53.42252731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f550 -00040702 53.42253113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f550 -00040703 53.42255783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f560 -00040704 53.42256165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f560 -00040705 53.42258453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f570 -00040706 53.42258835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f570 -00040707 53.42261505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f580 -00040708 53.42261887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f580 -00040709 53.42264175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f590 -00040710 53.42264557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f590 -00040711 53.42267227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5a0 -00040712 53.42267609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5a0 -00040713 53.42269897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5b0 -00040714 53.42270279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5b0 -00040715 53.42272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5c0 -00040716 53.42273331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5c0 -00040717 53.42276001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5d0 -00040718 53.42276001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5d0 -00040719 53.42278671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5e0 -00040720 53.42279053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5e0 -00040721 53.42282104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5f0 -00040722 53.42282104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5f0 -00040723 53.42284775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f600 -00040724 53.42285156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f600 -00040725 53.42287827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f610 -00040726 53.42287827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f610 -00040727 53.42290497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f620 -00040728 53.42290878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f620 -00040729 53.42293549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f630 -00040730 53.42293930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f630 -00040731 53.42296219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f640 -00040732 53.42296600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f640 -00040733 53.42299271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f650 -00040734 53.42299652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f650 -00040735 53.42301941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f660 -00040736 53.42302322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f660 -00040737 53.42304993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f670 -00040738 53.42305374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f670 -00040739 53.42307663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f680 -00040740 53.42308044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f680 -00040741 53.42310715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f690 -00040742 53.42311096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f690 -00040743 53.42313766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6a0 -00040744 53.42313766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6a0 -00040745 53.42316437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6b0 -00040746 53.42316818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6b0 -00040747 53.42319489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6c0 -00040748 53.42319870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6c0 -00040749 53.42322159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6d0 -00040750 53.42322540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6d0 -00040751 53.42325211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6e0 -00040752 53.42325592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6e0 -00040753 53.42327881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6f0 -00040754 53.42328262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6f0 -00040755 53.42330933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f700 -00040756 53.42331314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f700 -00040757 53.42333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f710 -00040758 53.42334366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f710 -00040759 53.42337036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f720 -00040760 53.42337418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f720 -00040761 53.42339706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f730 -00040762 53.42340088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f730 -00040763 53.42342758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f740 -00040764 53.42343140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f740 -00040765 53.42345810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f750 -00040766 53.42345810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f750 -00040767 53.42348480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f760 -00040768 53.42348862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f760 -00040769 53.42351532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f770 -00040770 53.42351532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f770 -00040771 53.42354584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f780 -00040772 53.42354584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f780 -00040773 53.42357254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f790 -00040774 53.42357635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f790 -00040775 53.42360306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7a0 -00040776 53.42360687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7a0 -00040777 53.42363358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7b0 -00040778 53.42363358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7b0 -00040779 53.42366028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7c0 -00040780 53.42366409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7c0 -00040781 53.42369080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7d0 -00040782 53.42369461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7d0 -00040783 53.42371750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7e0 -00040784 53.42372131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7e0 -00040785 53.42375183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7f0 -00040786 53.42375183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7f0 -00040787 53.42377853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f800 -00040788 53.42378235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f800 -00040789 53.42380905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f810 -00040790 53.42381287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f810 -00040791 53.42383575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f820 -00040792 53.42383957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f820 -00040793 53.42386627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f830 -00040794 53.42387009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f830 -00040795 53.42389297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f840 -00040796 53.42389679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f840 -00040797 53.42392349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f850 -00040798 53.42392731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f850 -00040799 53.42395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f860 -00040800 53.42395401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f860 -00040801 53.42398453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f870 -00040802 53.42398453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f870 -00040803 53.42401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f880 -00040804 53.42401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f880 -00040805 53.42404175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f890 -00040806 53.42404556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f890 -00040807 53.42407227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a0 -00040808 53.42407227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a0 -00040809 53.42409897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b0 -00040810 53.42410278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b0 -00040811 53.42412949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c0 -00040812 53.42412949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c0 -00040813 53.42415619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d0 -00040814 53.42416000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d0 -00040815 53.42418671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e0 -00040816 53.42419052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e0 -00040817 53.42421341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f0 -00040818 53.42421722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f0 -00040819 53.42424393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f900 -00040820 53.42424774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f900 -00040821 53.42427063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f910 -00040822 53.42427444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f910 -00040823 53.42430496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f920 -00040824 53.42430496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f920 -00040825 53.42433167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f930 -00040826 53.42433548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f930 -00040827 53.42436218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f940 -00040828 53.42436600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f940 -00040829 53.42438889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f950 -00040830 53.42439270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f950 -00040831 53.42441940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f960 -00040832 53.42442322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f960 -00040833 53.42444611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f970 -00040834 53.42444992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f970 -00040835 53.42447662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f980 -00040836 53.42448044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f980 -00040837 53.42450714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f990 -00040838 53.42450714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f990 -00040839 53.42453384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a0 -00040840 53.42453766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a0 -00040841 53.42456436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b0 -00040842 53.42456818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b0 -00040843 53.42459106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c0 -00040844 53.42459488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c0 -00040845 53.42462158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9d0 -00040846 53.42462540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9d0 -00040847 53.42464828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9e0 -00040848 53.42465210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9e0 -00040849 53.42467880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9f0 -00040850 53.42468262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9f0 -00040851 53.42470932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa00 -00040852 53.42470932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa00 -00040853 53.42473984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa10 -00040854 53.42474365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa10 -00040855 53.42476654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa20 -00040856 53.42477036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa20 -00040857 53.42479706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa30 -00040858 53.42480087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa30 -00040859 53.42482376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa40 -00040860 53.42482758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa40 -00040861 53.42485428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa50 -00040862 53.42485809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa50 -00040863 53.42488480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa60 -00040864 53.42488480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa60 -00040865 53.42491150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa70 -00040866 53.42491531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa70 -00040867 53.42494583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa80 -00040868 53.42494583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa80 -00040869 53.42497253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa90 -00040870 53.42497253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa90 -00040871 53.42500305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faa0 -00040872 53.42500305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faa0 -00040873 53.42502975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fab0 -00040874 53.42503357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fab0 -00040875 53.42506027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fac0 -00040876 53.42506409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fac0 -00040877 53.42508698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fad0 -00040878 53.42509079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fad0 -00040879 53.42511749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fae0 -00040880 53.42512131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fae0 -00040881 53.42514420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faf0 -00040882 53.42514801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faf0 -00040883 53.42517471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb00 -00040884 53.42517853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb00 -00040885 53.42520142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb10 -00040886 53.42520523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb10 -00040887 53.42523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb20 -00040888 53.42523575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb20 -00040889 53.42526245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb30 -00040890 53.42526245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb30 -00040891 53.42528915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb40 -00040892 53.42529297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb40 -00040893 53.42532349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb50 -00040894 53.42532349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb50 -00040895 53.42535019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb60 -00040896 53.42535400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb60 -00040897 53.42538071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb70 -00040898 53.42538071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb70 -00040899 53.42540741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb80 -00040900 53.42541122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb80 -00040901 53.42543793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb90 -00040902 53.42544174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb90 -00040903 53.42546844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba0 -00040904 53.42547226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba0 -00040905 53.42549896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb0 -00040906 53.42549896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb0 -00040907 53.42552567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc0 -00040908 53.42552567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc0 -00040909 53.42555618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd0 -00040910 53.42555618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd0 -00040911 53.42558289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe0 -00040912 53.42558670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe0 -00040913 53.42561340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf0 -00040914 53.42561340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf0 -00040915 53.42564011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc00 -00040916 53.42564392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc00 -00040917 53.42567062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc10 -00040918 53.42567444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc10 -00040919 53.42569733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc20 -00040920 53.42570114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc20 -00040921 53.42572784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc30 -00040922 53.42573166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc30 -00040923 53.42575836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc40 -00040924 53.42575836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc40 -00040925 53.42578506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc50 -00040926 53.42578888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc50 -00040927 53.42581558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc60 -00040928 53.42581940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc60 -00040929 53.42584229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc70 -00040930 53.42584610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc70 -00040931 53.42587280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc80 -00040932 53.42587662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc80 -00040933 53.42589951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc90 -00040934 53.42590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc90 -00040935 53.42593002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca0 -00040936 53.42593384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca0 -00040937 53.42596054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb0 -00040938 53.42596436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb0 -00040939 53.42599106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc0 -00040940 53.42599487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc0 -00040941 53.42601776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd0 -00040942 53.42602158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd0 -00040943 53.42604828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce0 -00040944 53.42605209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce0 -00040945 53.42607498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf0 -00040946 53.42607880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf0 -00040947 53.42610550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd00 -00040948 53.42610931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd00 -00040949 53.42613602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd10 -00040950 53.42613602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd10 -00040951 53.42616653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd20 -00040952 53.42616653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd20 -00040953 53.42619705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd30 -00040954 53.42619705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd30 -00040955 53.42622375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd40 -00040956 53.42622757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd40 -00040957 53.42625427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd50 -00040958 53.42625427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd50 -00040959 53.42628098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd60 -00040960 53.42628479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd60 -00040961 53.42631149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd70 -00040962 53.42631149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd70 -00040963 53.42633820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd80 -00040964 53.42634201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd80 -00040965 53.42637253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd90 -00040966 53.42637253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd90 -00040967 53.42639923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda0 -00040968 53.42640305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda0 -00040969 53.42643356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb0 -00040970 53.42643356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb0 -00040971 53.42646408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -00040972 53.42646790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -00040973 53.42649460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -00040974 53.42649460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -00040975 53.42652130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -00040976 53.42652512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -00040977 53.42655182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -00040978 53.42655182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -00040979 53.42658234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -00040980 53.42658615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -00040981 53.42661285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -00040982 53.42661285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -00040983 53.42663956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -00040984 53.42664337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -00040985 53.42667389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -00040986 53.42667389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -00040987 53.42670441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -00040988 53.42670822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -00040989 53.42673874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -00040990 53.42674255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -00040991 53.42677307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -00040992 53.42677307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -00040993 53.42680740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe70 -00040994 53.42681122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe70 -00040995 53.42683411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe80 -00040996 53.42683792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe80 -00040997 53.42686462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe90 -00040998 53.42686844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe90 -00040999 53.42689133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea0 -00041000 53.42689514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea0 -00041001 53.42692184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb0 -00041002 53.42692566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb0 -00041003 53.42694855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec0 -00041004 53.42695236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec0 -00041005 53.42697906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed0 -00041006 53.42698288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed0 -00041007 53.42700958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee0 -00041008 53.42700958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee0 -00041009 53.42703629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef0 -00041010 53.42704010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef0 -00041011 53.42706680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff00 -00041012 53.42707062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff00 -00041013 53.42709351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff10 -00041014 53.42709351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff10 -00041015 53.42712021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff20 -00041016 53.42712402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff20 -00041017 53.42714691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff30 -00041018 53.42715073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff30 -00041019 53.42717743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff40 -00041020 53.42718124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff40 -00041021 53.42720795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff50 -00041022 53.42720795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff50 -00041023 53.42723465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff60 -00041024 53.42723846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff60 -00041025 53.42726517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff70 -00041026 53.42726898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff70 -00041027 53.42729187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff80 -00041028 53.42729568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff80 -00041029 53.42732239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff90 -00041030 53.42732620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff90 -00041031 53.42734909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa0 -00041032 53.42735291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa0 -00041033 53.42737961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb0 -00041034 53.42738342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb0 -00041035 53.42740631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc0 -00041036 53.42741013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc0 -00041037 53.42743683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd0 -00041038 53.42744064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd0 -00041039 53.42746735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe0 -00041040 53.42746735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe0 -00041041 53.42749405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff0 -00041042 53.42749405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff0 -00041043 53.42752075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50000 -00041044 53.42752457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50000 -00041045 53.42754745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50010 -00041046 53.42755127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50010 -00041047 53.42757797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50020 -00041048 53.42758179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50020 -00041049 53.42760468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50030 -00041050 53.42760849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50030 -00041051 53.42763519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50040 -00041052 53.42763901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50040 -00041053 53.42766571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50050 -00041054 53.42766571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50050 -00041055 53.42769241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50060 -00041056 53.42769241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50060 -00041057 53.42772293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50070 -00041058 53.42772293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50070 -00041059 53.42774582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50080 -00041060 53.42774963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50080 -00041061 53.42777634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50090 -00041062 53.42778015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50090 -00041063 53.42780304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a0 -00041064 53.42780685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a0 -00041065 53.42783356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b0 -00041066 53.42783737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b0 -00041067 53.42786407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c0 -00041068 53.42786407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c0 -00041069 53.42789078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d0 -00041070 53.42789459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d0 -00041071 53.42792130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500e0 -00041072 53.42792130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500e0 -00041073 53.42794800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500f0 -00041074 53.42795181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x500f0 -00041075 53.42797852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50100 -00041076 53.42798233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50100 -00041077 53.42800522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50110 -00041078 53.42800903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50110 -00041079 53.42803574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50120 -00041080 53.42803955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50120 -00041081 53.42806244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50130 -00041082 53.42806625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50130 -00041083 53.42809296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50140 -00041084 53.42809677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50140 -00041085 53.42812347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50150 -00041086 53.42812347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50150 -00041087 53.42815018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50160 -00041088 53.42815399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50160 -00041089 53.42818069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50170 -00041090 53.42818069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50170 -00041091 53.42820740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50180 -00041092 53.42821121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50180 -00041093 53.42823792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50190 -00041094 53.42824173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50190 -00041095 53.42826462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a0 -00041096 53.42826843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a0 -00041097 53.42829514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b0 -00041098 53.42829895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b0 -00041099 53.42832184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c0 -00041100 53.42832184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c0 -00041101 53.42835236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d0 -00041102 53.42835236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d0 -00041103 53.42837906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e0 -00041104 53.42837906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e0 -00041105 53.42840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f0 -00041106 53.42840958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f0 -00041107 53.42843628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50200 -00041108 53.42844009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50200 -00041109 53.42846298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50210 -00041110 53.42846680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50210 -00041111 53.42849350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50220 -00041112 53.42849731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50220 -00041113 53.42852020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50230 -00041114 53.42852402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50230 -00041115 53.42855072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50240 -00041116 53.42855453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50240 -00041117 53.42857742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50250 -00041118 53.42858124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50250 -00041119 53.42860794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50260 -00041120 53.42861176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50260 -00041121 53.42863846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50270 -00041122 53.42863846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50270 -00041123 53.42866516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50280 -00041124 53.42866898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50280 -00041125 53.42869568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50290 -00041126 53.42869949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50290 -00041127 53.42872238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a0 -00041128 53.42872620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a0 -00041129 53.42875290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b0 -00041130 53.42875671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b0 -00041131 53.42877960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c0 -00041132 53.42877960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c0 -00041133 53.42881012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d0 -00041134 53.42881012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d0 -00041135 53.42883682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e0 -00041136 53.42883682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e0 -00041137 53.42886353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f0 -00041138 53.42886734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f0 -00041139 53.42889404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50300 -00041140 53.42889786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50300 -00041141 53.42892075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50310 -00041142 53.42892456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50310 -00041143 53.42895126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50320 -00041144 53.42895508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50320 -00041145 53.42897797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50330 -00041146 53.42898178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50330 -00041147 53.42900848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50340 -00041148 53.42901230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50340 -00041149 53.42903519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50350 -00041150 53.42903519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50350 -00041151 53.42906189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50360 -00041152 53.42906570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50360 -00041153 53.42909622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50370 -00041154 53.42909622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50370 -00041155 53.42912292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50380 -00041156 53.42912674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50380 -00041157 53.42915344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50390 -00041158 53.42915344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50390 -00041159 53.42918015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a0 -00041160 53.42918396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a0 -00041161 53.42921066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503b0 -00041162 53.42921066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503b0 -00041163 53.42923355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503c0 -00041164 53.42923737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503c0 -00041165 53.42926407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503d0 -00041166 53.42926788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503d0 -00041167 53.42929459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503e0 -00041168 53.42929459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503e0 -00041169 53.42932129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503f0 -00041170 53.42932510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x503f0 -00041171 53.42935181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50400 -00041172 53.42935181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50400 -00041173 53.42937851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50410 -00041174 53.42938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50410 -00041175 53.42940903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50420 -00041176 53.42941284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50420 -00041177 53.42943573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50430 -00041178 53.42943954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50430 -00041179 53.42946625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50440 -00041180 53.42946625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50440 -00041181 53.42949295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50450 -00041182 53.42949295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50450 -00041183 53.42951965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50460 -00041184 53.42952347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50460 -00041185 53.42955017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50470 -00041186 53.42955017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50470 -00041187 53.42957687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50480 -00041188 53.42958069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50480 -00041189 53.42960739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50490 -00041190 53.42961121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50490 -00041191 53.42963409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504a0 -00041192 53.42963791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504a0 -00041193 53.42966461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504b0 -00041194 53.42966843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504b0 -00041195 53.42969131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504c0 -00041196 53.42969513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504c0 -00041197 53.42972183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504d0 -00041198 53.42972565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504d0 -00041199 53.42974854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504e0 -00041200 53.42975235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504e0 -00041201 53.42977905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504f0 -00041202 53.42977905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x504f0 -00041203 53.42980957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50500 -00041204 53.42980957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50500 -00041205 53.42983246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50510 -00041206 53.42983627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50510 -00041207 53.42986298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50520 -00041208 53.42986679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50520 -00041209 53.42988968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50530 -00041210 53.42989349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50530 -00041211 53.42992020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50540 -00041212 53.42992401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50540 -00041213 53.42994690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50550 -00041214 53.42995071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50550 -00041215 53.42997742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50560 -00041216 53.42998123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50560 -00041217 53.43000793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50570 -00041218 53.43000793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50570 -00041219 53.43003464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50580 -00041220 53.43003464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50580 -00041221 53.43006516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50590 -00041222 53.43006516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50590 -00041223 53.43008804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a0 -00041224 53.43009186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a0 -00041225 53.43011856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b0 -00041226 53.43012238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b0 -00041227 53.43014908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c0 -00041228 53.43014908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c0 -00041229 53.43017578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d0 -00041230 53.43017960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d0 -00041231 53.43020630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e0 -00041232 53.43020630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e0 -00041233 53.43023300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f0 -00041234 53.43023682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f0 -00041235 53.43026352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50600 -00041236 53.43026352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50600 -00041237 53.43029022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50610 -00041238 53.43029022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50610 -00041239 53.43032074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50620 -00041240 53.43032455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50620 -00041241 53.43034744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50630 -00041242 53.43034744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50630 -00041243 53.43037796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50640 -00041244 53.43037796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50640 -00041245 53.43040466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50650 -00041246 53.43040466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50650 -00041247 53.43043518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50660 -00041248 53.43043900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50660 -00041249 53.43046570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50670 -00041250 53.43046570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50670 -00041251 53.43049240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50680 -00041252 53.43049622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50680 -00041253 53.43052292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50690 -00041254 53.43052292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50690 -00041255 53.43054962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a0 -00041256 53.43054962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a0 -00041257 53.43058395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b0 -00041258 53.43058395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b0 -00041259 53.43061829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c0 -00041260 53.43062210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c0 -00041261 53.43064499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d0 -00041262 53.43064880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d0 -00041263 53.43067551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e0 -00041264 53.43067932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e0 -00041265 53.43070221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f0 -00041266 53.43070602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f0 -00041267 53.43073273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -00041268 53.43073654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -00041269 53.43077469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -00041270 53.43078232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -00041271 53.43082047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50720 -00041272 53.43082428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50720 -00041273 53.43086243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50730 -00041274 53.43086624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50730 -00041275 53.43090439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50740 -00041276 53.43090820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50740 -00041277 53.43095016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -00041278 53.43095779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -00041279 53.43099594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -00041280 53.43099976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -00041281 53.43104172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -00041282 53.43104172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -00041283 53.43107986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -00041284 53.43108749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -00041285 53.43112564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -00041286 53.43112946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -00041287 53.43117142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -00041288 53.43117523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -00041289 53.43121338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -00041290 53.43122101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -00041291 53.43125916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -00041292 53.43125916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -00041293 53.43130112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -00041294 53.43130493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -00041295 53.43134308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -00041296 53.43135071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -00041297 53.43138885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -00041298 53.43139648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -00041299 53.43143463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50800 -00041300 53.43143845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50800 -00041301 53.43147659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50810 -00041302 53.43148041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50810 -00041303 53.43151855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50820 -00041304 53.43152618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50820 -00041305 53.43156433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50830 -00041306 53.43157196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50830 -00041307 53.43161011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50840 -00041308 53.43161774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50840 -00041309 53.43165588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50850 -00041310 53.43165970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50850 -00041311 53.43169785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50860 -00041312 53.43170166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50860 -00041313 53.43174362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50870 -00041314 53.43174744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50870 -00041315 53.43178558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50880 -00041316 53.43178940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50880 -00041317 53.43181610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50890 -00041318 53.43181610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50890 -00041319 53.43184280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a0 -00041320 53.43184662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a0 -00041321 53.43187332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b0 -00041322 53.43187332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b0 -00041323 53.43190002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c0 -00041324 53.43190384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c0 -00041325 53.43193054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508d0 -00041326 53.43193436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508d0 -00041327 53.43195724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508e0 -00041328 53.43196106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508e0 -00041329 53.43198776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508f0 -00041330 53.43199158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x508f0 -00041331 53.43201447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50900 -00041332 53.43201828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50900 -00041333 53.43204498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50910 -00041334 53.43204880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50910 -00041335 53.43207550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50920 -00041336 53.43207550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50920 -00041337 53.43210220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50930 -00041338 53.43210220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50930 -00041339 53.43213272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50940 -00041340 53.43213272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50940 -00041341 53.43215561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50950 -00041342 53.43215942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50950 -00041343 53.43218613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50960 -00041344 53.43218994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50960 -00041345 53.43221664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50970 -00041346 53.43221664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50970 -00041347 53.43224335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50980 -00041348 53.43224716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50980 -00041349 53.43227386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50990 -00041350 53.43227386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50990 -00041351 53.43230057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a0 -00041352 53.43230438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a0 -00041353 53.43233109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b0 -00041354 53.43233109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b0 -00041355 53.43235779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c0 -00041356 53.43236160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c0 -00041357 53.43238831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d0 -00041358 53.43239212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d0 -00041359 53.43241501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e0 -00041360 53.43241882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e0 -00041361 53.43244553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f0 -00041362 53.43244934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f0 -00041363 53.43247223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a00 -00041364 53.43247604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a00 -00041365 53.43250275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a10 -00041366 53.43250656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a10 -00041367 53.43252945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a20 -00041368 53.43253326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a20 -00041369 53.43255997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a30 -00041370 53.43255997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a30 -00041371 53.43259048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a40 -00041372 53.43259048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a40 -00041373 53.43261719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a50 -00041374 53.43261719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a50 -00041375 53.43264771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a60 -00041376 53.43264771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a60 -00041377 53.43267059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a70 -00041378 53.43267441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a70 -00041379 53.43270493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a80 -00041380 53.43270874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a80 -00041381 53.43273163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a90 -00041382 53.43273544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a90 -00041383 53.43276215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa0 -00041384 53.43276596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa0 -00041385 53.43278885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab0 -00041386 53.43279266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab0 -00041387 53.43281937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac0 -00041388 53.43282318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac0 -00041389 53.43284988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad0 -00041390 53.43284988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad0 -00041391 53.43287659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae0 -00041392 53.43288040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae0 -00041393 53.43290710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af0 -00041394 53.43290710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af0 -00041395 53.43293381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b00 -00041396 53.43293762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b00 -00041397 53.43296432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b10 -00041398 53.43296814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b10 -00041399 53.43299103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b20 -00041400 53.43299484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b20 -00041401 53.43302155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b30 -00041402 53.43302536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b30 -00041403 53.43304825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b40 -00041404 53.43305206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b40 -00041405 53.43307877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b50 -00041406 53.43308258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b50 -00041407 53.43310547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b60 -00041408 53.43310928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b60 -00041409 53.43313599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b70 -00041410 53.43313599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b70 -00041411 53.43316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b80 -00041412 53.43316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b80 -00041413 53.43318939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b90 -00041414 53.43319321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b90 -00041415 53.43321991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ba0 -00041416 53.43322372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ba0 -00041417 53.43324661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bb0 -00041418 53.43325043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bb0 -00041419 53.43327713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bc0 -00041420 53.43328094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bc0 -00041421 53.43330383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bd0 -00041422 53.43330765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bd0 -00041423 53.43333435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50be0 -00041424 53.43333817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50be0 -00041425 53.43336487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bf0 -00041426 53.43336487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bf0 -00041427 53.43339157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c00 -00041428 53.43339539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c00 -00041429 53.43342209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c10 -00041430 53.43342590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c10 -00041431 53.43344879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c20 -00041432 53.43345261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c20 -00041433 53.43347931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c30 -00041434 53.43348312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c30 -00041435 53.43350601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c40 -00041436 53.43350983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c40 -00041437 53.43353653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c50 -00041438 53.43354034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c50 -00041439 53.43356323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c60 -00041440 53.43356705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c60 -00041441 53.43359375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c70 -00041442 53.43359756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c70 -00041443 53.43362427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c80 -00041444 53.43362427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c80 -00041445 53.43365097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c90 -00041446 53.43365097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c90 -00041447 53.43368149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ca0 -00041448 53.43368149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ca0 -00041449 53.43370438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cb0 -00041450 53.43370819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cb0 -00041451 53.43373489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cc0 -00041452 53.43373871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cc0 -00041453 53.43376160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cd0 -00041454 53.43376541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cd0 -00041455 53.43379211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ce0 -00041456 53.43379593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ce0 -00041457 53.43382263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cf0 -00041458 53.43382263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cf0 -00041459 53.43384933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d00 -00041460 53.43385315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d00 -00041461 53.43387985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d10 -00041462 53.43387985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d10 -00041463 53.43390656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d20 -00041464 53.43391037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d20 -00041465 53.43393707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d30 -00041466 53.43394089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d30 -00041467 53.43396378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d40 -00041468 53.43396378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d40 -00041469 53.43399429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d50 -00041470 53.43399429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d50 -00041471 53.43402100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d60 -00041472 53.43402100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d60 -00041473 53.43404770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d70 -00041474 53.43405151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d70 -00041475 53.43407822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d80 -00041476 53.43407822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d80 -00041477 53.43410492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d90 -00041478 53.43410873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d90 -00041479 53.43413544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50da0 -00041480 53.43413925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50da0 -00041481 53.43416214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50db0 -00041482 53.43416595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50db0 -00041483 53.43419266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dc0 -00041484 53.43419647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dc0 -00041485 53.43421936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dd0 -00041486 53.43421936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dd0 -00041487 53.43424988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50de0 -00041488 53.43424988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50de0 -00041489 53.43427658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50df0 -00041490 53.43427658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50df0 -00041491 53.43430328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e00 -00041492 53.43430710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e00 -00041493 53.43433380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e10 -00041494 53.43433762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e10 -00041495 53.43436050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e20 -00041496 53.43436432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e20 -00041497 53.43439102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e30 -00041498 53.43439484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e30 -00041499 53.43441772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e40 -00041500 53.43442154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e40 -00041501 53.43444824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e50 -00041502 53.43445206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e50 -00041503 53.43447495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e60 -00041504 53.43447495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e60 -00041505 53.43450546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e70 -00041506 53.43450546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e70 -00041507 53.43453598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e80 -00041508 53.43453598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e80 -00041509 53.43455887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e90 -00041510 53.43456268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e90 -00041511 53.43458939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ea0 -00041512 53.43459320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ea0 -00041513 53.43461609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50eb0 -00041514 53.43461990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50eb0 -00041515 53.43464661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ec0 -00041516 53.43465042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ec0 -00041517 53.43467331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ed0 -00041518 53.43467712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ed0 -00041519 53.43470383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ee0 -00041520 53.43470764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ee0 -00041521 53.43473434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef0 -00041522 53.43473434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef0 -00041523 53.43476105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f00 -00041524 53.43476486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f00 -00041525 53.43479156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f10 -00041526 53.43479538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f10 -00041527 53.43481827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f20 -00041528 53.43482208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f20 -00041529 53.43484879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f30 -00041530 53.43484879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f30 -00041531 53.43487549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f40 -00041532 53.43487549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f40 -00041533 53.43490219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f50 -00041534 53.43490601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f50 -00041535 53.43493271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f60 -00041536 53.43493271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f60 -00041537 53.43495941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f70 -00041538 53.43496323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f70 -00041539 53.43498993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f80 -00041540 53.43499374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f80 -00041541 53.43501663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f90 -00041542 53.43502045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f90 -00041543 53.43504715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa0 -00041544 53.43504715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa0 -00041545 53.43507385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb0 -00041546 53.43507385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb0 -00041547 53.43510056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc0 -00041548 53.43510437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc0 -00041549 53.43513107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd0 -00041550 53.43513107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd0 -00041551 53.43515778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe0 -00041552 53.43516159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe0 -00041553 53.43518829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff0 -00041554 53.43519211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff0 -00041555 53.43521500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51000 -00041556 53.43521881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51000 -00041557 53.43524551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51010 -00041558 53.43524933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51010 -00041559 53.43527222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51020 -00041560 53.43527603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51020 -00041561 53.43530273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51030 -00041562 53.43530655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51030 -00041563 53.43532944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51040 -00041564 53.43533325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51040 -00041565 53.43535995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51050 -00041566 53.43536377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51050 -00041567 53.43539429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51060 -00041568 53.43539810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51060 -00041569 53.43543243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51070 -00041570 53.43544006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51070 -00041571 53.43547821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51080 -00041572 53.43548203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51080 -00041573 53.43552399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51090 -00041574 53.43552780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51090 -00041575 53.43556976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a0 -00041576 53.43556976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a0 -00041577 53.43560791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b0 -00041578 53.43561554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b0 -00041579 53.43564987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c0 -00041580 53.43565369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c0 -00041581 53.43569183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d0 -00041582 53.43569946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d0 -00041583 53.43573380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e0 -00041584 53.43574142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e0 -00041585 53.43577957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510f0 -00041586 53.43578339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x510f0 -00041587 53.43582153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51100 -00041588 53.43582535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51100 -00041589 53.43585587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51110 -00041590 53.43585968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51110 -00041591 53.43588638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51120 -00041592 53.43588638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51120 -00041593 53.43591309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51130 -00041594 53.43591690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51130 -00041595 53.43594360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51140 -00041596 53.43594742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51140 -00041597 53.43597031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51150 -00041598 53.43597412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51150 -00041599 53.43600082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51160 -00041600 53.43600464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51160 -00041601 53.43602753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51170 -00041602 53.43603134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51170 -00041603 53.43605804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51180 -00041604 53.43606186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51180 -00041605 53.43608475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51190 -00041606 53.43608856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51190 -00041607 53.43611526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a0 -00041608 53.43611908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a0 -00041609 53.43614578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b0 -00041610 53.43614578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b0 -00041611 53.43617249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c0 -00041612 53.43617630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c0 -00041613 53.43620300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d0 -00041614 53.43620300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d0 -00041615 53.43622971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e0 -00041616 53.43622971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e0 -00041617 53.43625641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f0 -00041618 53.43626022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f0 -00041619 53.43628311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51200 -00041620 53.43628693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51200 -00041621 53.43631363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51210 -00041622 53.43631744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51210 -00041623 53.43634415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51220 -00041624 53.43634415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51220 -00041625 53.43637085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51230 -00041626 53.43637466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51230 -00041627 53.43640137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51240 -00041628 53.43640137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51240 -00041629 53.43642807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51250 -00041630 53.43642807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51250 -00041631 53.43645859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51260 -00041632 53.43645859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51260 -00041633 53.43648529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51270 -00041634 53.43648529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51270 -00041635 53.43651199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51280 -00041636 53.43651581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51280 -00041637 53.43654251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51290 -00041638 53.43654251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51290 -00041639 53.43657303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512a0 -00041640 53.43657684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512a0 -00041641 53.43659973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512b0 -00041642 53.43660355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512b0 -00041643 53.43663025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512c0 -00041644 53.43663406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512c0 -00041645 53.43666077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512d0 -00041646 53.43666077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512d0 -00041647 53.43668365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512e0 -00041648 53.43668747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512e0 -00041649 53.43671417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512f0 -00041650 53.43671799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x512f0 -00041651 53.43674088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51300 -00041652 53.43674469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51300 -00041653 53.43677139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51310 -00041654 53.43677521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51310 -00041655 53.43679810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51320 -00041656 53.43680191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51320 -00041657 53.43682861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51330 -00041658 53.43683243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51330 -00041659 53.43685913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51340 -00041660 53.43685913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51340 -00041661 53.43688583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51350 -00041662 53.43688583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51350 -00041663 53.43691635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51360 -00041664 53.43691635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51360 -00041665 53.43693924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51370 -00041666 53.43694305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51370 -00041667 53.43696976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51380 -00041668 53.43697357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51380 -00041669 53.43700027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51390 -00041670 53.43700027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51390 -00041671 53.43702698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513a0 -00041672 53.43703079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513a0 -00041673 53.43705750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513b0 -00041674 53.43705750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513b0 -00041675 53.43708420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513c0 -00041676 53.43708801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513c0 -00041677 53.43711472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513d0 -00041678 53.43711472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513d0 -00041679 53.43714142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513e0 -00041680 53.43714142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513e0 -00041681 53.43716812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513f0 -00041682 53.43717194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x513f0 -00041683 53.43719864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51400 -00041684 53.43720245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51400 -00041685 53.43722916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51410 -00041686 53.43722916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51410 -00041687 53.43725586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51420 -00041688 53.43725586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51420 -00041689 53.43728638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51430 -00041690 53.43728638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51430 -00041691 53.43731308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51440 -00041692 53.43731689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51440 -00041693 53.43733978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51450 -00041694 53.43734360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51450 -00041695 53.43737030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51460 -00041696 53.43737411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51460 -00041697 53.43739700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51470 -00041698 53.43740082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51470 -00041699 53.43742752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51480 -00041700 53.43743134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51480 -00041701 53.43745422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51490 -00041702 53.43745804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51490 -00041703 53.43748474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a0 -00041704 53.43748856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a0 -00041705 53.43751526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -00041706 53.43751526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -00041707 53.43754196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -00041708 53.43754196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -00041709 53.43756866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -00041710 53.43757248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -00041711 53.43759537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -00041712 53.43759918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -00041713 53.43762589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -00041714 53.43762970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -00041715 53.43765259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -00041716 53.43765640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -00041717 53.43768311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -00041718 53.43768692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -00041719 53.43771362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -00041720 53.43771362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -00041721 53.43774033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -00041722 53.43774414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -00041723 53.43777084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -00041724 53.43777466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -00041725 53.43780136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -00041726 53.43780136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -00041727 53.43783188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -00041728 53.43783188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -00041729 53.43785858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -00041730 53.43786240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -00041731 53.43788910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -00041732 53.43789291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -00041733 53.43791580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -00041734 53.43791962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -00041735 53.43794632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -00041736 53.43795013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -00041737 53.43797302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -00041738 53.43797684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -00041739 53.43800354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -00041740 53.43800735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -00041741 53.43803024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -00041742 53.43803406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -00041743 53.43806076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -00041744 53.43806458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -00041745 53.43809128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -00041746 53.43809128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -00041747 53.43811798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51600 -00041748 53.43812180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51600 -00041749 53.43814850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51610 -00041750 53.43815231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51610 -00041751 53.43819046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51620 -00041752 53.43819046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51620 -00041753 53.43821716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51630 -00041754 53.43822098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51630 -00041755 53.43824768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51640 -00041756 53.43825150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51640 -00041757 53.43827438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51650 -00041758 53.43827820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51650 -00041759 53.43830490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51660 -00041760 53.43830872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51660 -00041761 53.43833160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51670 -00041762 53.43833542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51670 -00041763 53.43836212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51680 -00041764 53.43836594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51680 -00041765 53.43838882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51690 -00041766 53.43839264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51690 -00041767 53.43841934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a0 -00041768 53.43842316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a0 -00041769 53.43844986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b0 -00041770 53.43844986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b0 -00041771 53.43847656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c0 -00041772 53.43848038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c0 -00041773 53.43850708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d0 -00041774 53.43850708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d0 -00041775 53.43853378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e0 -00041776 53.43853760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e0 -00041777 53.43856430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f0 -00041778 53.43856812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f0 -00041779 53.43859100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51700 -00041780 53.43859482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51700 -00041781 53.43862152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51710 -00041782 53.43862534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51710 -00041783 53.43864822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51720 -00041784 53.43864822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51720 -00041785 53.43867493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51730 -00041786 53.43867874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51730 -00041787 53.43870544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51740 -00041788 53.43870544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51740 -00041789 53.43873215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51750 -00041790 53.43873596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51750 -00041791 53.43876266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51760 -00041792 53.43876648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51760 -00041793 53.43878937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51770 -00041794 53.43879318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51770 -00041795 53.43881989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51780 -00041796 53.43882370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51780 -00041797 53.43884659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51790 -00041798 53.43885040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51790 -00041799 53.43887711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517a0 -00041800 53.43888092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517a0 -00041801 53.43890381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517b0 -00041802 53.43890762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517b0 -00041803 53.43893433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517c0 -00041804 53.43893433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517c0 -00041805 53.43896484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517d0 -00041806 53.43896484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517d0 -00041807 53.43898773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517e0 -00041808 53.43899155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517e0 -00041809 53.43901825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517f0 -00041810 53.43902206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x517f0 -00041811 53.43904495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51800 -00041812 53.43904877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51800 -00041813 53.43907547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51810 -00041814 53.43907928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51810 -00041815 53.43910599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51820 -00041816 53.43910599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51820 -00041817 53.43913651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51830 -00041818 53.43914032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51830 -00041819 53.43916321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51840 -00041820 53.43916702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51840 -00041821 53.43919373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51850 -00041822 53.43919754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51850 -00041823 53.43923569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51860 -00041824 53.43923950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51860 -00041825 53.43927383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51870 -00041826 53.43927765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51870 -00041827 53.43930054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51880 -00041828 53.43930435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51880 -00041829 53.43933105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51890 -00041830 53.43933487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51890 -00041831 53.43936157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a0 -00041832 53.43936157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a0 -00041833 53.43938828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b0 -00041834 53.43939209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b0 -00041835 53.43941879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c0 -00041836 53.43942261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c0 -00041837 53.43944550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d0 -00041838 53.43944931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d0 -00041839 53.43947601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e0 -00041840 53.43947983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e0 -00041841 53.43950272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f0 -00041842 53.43950272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f0 -00041843 53.43953323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51900 -00041844 53.43953323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51900 -00041845 53.43955994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51910 -00041846 53.43955994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51910 -00041847 53.43958664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51920 -00041848 53.43959045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51920 -00041849 53.43961716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51930 -00041850 53.43962097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51930 -00041851 53.43964386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51940 -00041852 53.43964767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51940 -00041853 53.43967438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51950 -00041854 53.43967819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51950 -00041855 53.43970108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51960 -00041856 53.43970490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51960 -00041857 53.43973160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51970 -00041858 53.43973541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51970 -00041859 53.43976212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51980 -00041860 53.43976593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51980 -00041861 53.43979263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51990 -00041862 53.43979645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51990 -00041863 53.43981934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a0 -00041864 53.43982315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a0 -00041865 53.43984985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b0 -00041866 53.43985367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b0 -00041867 53.43987656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c0 -00041868 53.43988037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c0 -00041869 53.43990707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d0 -00041870 53.43991089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d0 -00041871 53.43993759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e0 -00041872 53.43993759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e0 -00041873 53.43996429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f0 -00041874 53.43996811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f0 -00041875 53.43999481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a00 -00041876 53.43999863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a00 -00041877 53.44002151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a10 -00041878 53.44002151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a10 -00041879 53.44005203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a20 -00041880 53.44005203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a20 -00041881 53.44007492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a30 -00041882 53.44007874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a30 -00041883 53.44010544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a40 -00041884 53.44010925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a40 -00041885 53.44013596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a50 -00041886 53.44013596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a50 -00041887 53.44016266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a60 -00041888 53.44016647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a60 -00041889 53.44019318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a70 -00041890 53.44019699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a70 -00041891 53.44021988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a80 -00041892 53.44022369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a80 -00041893 53.44025040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a90 -00041894 53.44025421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a90 -00041895 53.44027710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa0 -00041896 53.44028091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa0 -00041897 53.44030762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab0 -00041898 53.44030762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab0 -00041899 53.44033432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac0 -00041900 53.44033432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac0 -00041901 53.44036484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad0 -00041902 53.44036484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad0 -00041903 53.44039536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae0 -00041904 53.44039536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae0 -00041905 53.44042206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af0 -00041906 53.44042206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af0 -00041907 53.44044876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b00 -00041908 53.44045258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b00 -00041909 53.44047546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b10 -00041910 53.44047928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b10 -00041911 53.44050598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b20 -00041912 53.44050980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b20 -00041913 53.44053268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b30 -00041914 53.44053650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b30 -00041915 53.44056320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b40 -00041916 53.44056702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b40 -00041917 53.44059372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b50 -00041918 53.44059372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b50 -00041919 53.44062042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b60 -00041920 53.44062424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b60 -00041921 53.44065094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b70 -00041922 53.44065094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b70 -00041923 53.44067764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b80 -00041924 53.44067764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b80 -00041925 53.44070435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b90 -00041926 53.44070816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b90 -00041927 53.44073105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ba0 -00041928 53.44073486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ba0 -00041929 53.44076157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bb0 -00041930 53.44076538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bb0 -00041931 53.44079208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bc0 -00041932 53.44079208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bc0 -00041933 53.44081879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd0 -00041934 53.44082260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd0 -00041935 53.44084930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be0 -00041936 53.44084930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be0 -00041937 53.44087601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf0 -00041938 53.44087982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf0 -00041939 53.44090652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c00 -00041940 53.44091034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c00 -00041941 53.44093323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c10 -00041942 53.44093323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c10 -00041943 53.44096375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c20 -00041944 53.44096375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c20 -00041945 53.44099045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c30 -00041946 53.44099045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c30 -00041947 53.44102097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c40 -00041948 53.44102097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c40 -00041949 53.44105148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c50 -00041950 53.44105148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c50 -00041951 53.44107437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c60 -00041952 53.44107819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c60 -00041953 53.44110489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c70 -00041954 53.44110870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c70 -00041955 53.44113159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c80 -00041956 53.44113541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c80 -00041957 53.44116211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c90 -00041958 53.44116592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c90 -00041959 53.44118881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca0 -00041960 53.44119263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca0 -00041961 53.44121933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb0 -00041962 53.44122314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb0 -00041963 53.44124985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc0 -00041964 53.44124985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc0 -00041965 53.44127655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd0 -00041966 53.44128036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd0 -00041967 53.44130707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce0 -00041968 53.44130707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce0 -00041969 53.44132996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf0 -00041970 53.44133377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf0 -00041971 53.44136047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d00 -00041972 53.44136429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d00 -00041973 53.44138718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d10 -00041974 53.44139099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d10 -00041975 53.44141769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d20 -00041976 53.44142151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d20 -00041977 53.44144821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d30 -00041978 53.44144821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d30 -00041979 53.44147491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d40 -00041980 53.44147873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d40 -00041981 53.44150543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d50 -00041982 53.44150543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d50 -00041983 53.44153214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d60 -00041984 53.44153214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d60 -00041985 53.44156265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d70 -00041986 53.44156265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d70 -00041987 53.44158936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d80 -00041988 53.44158936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d80 -00041989 53.44161987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d90 -00041990 53.44161987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d90 -00041991 53.44164658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da0 -00041992 53.44164658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da0 -00041993 53.44167328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db0 -00041994 53.44167709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db0 -00041995 53.44170380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc0 -00041996 53.44170380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc0 -00041997 53.44173050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd0 -00041998 53.44173431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd0 -00041999 53.44176102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de0 -00042000 53.44176483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de0 -00042001 53.44178772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df0 -00042002 53.44179153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df0 -00042003 53.44181824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e00 -00042004 53.44182205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e00 -00042005 53.44184494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e10 -00042006 53.44184875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e10 -00042007 53.44187546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e20 -00042008 53.44187927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e20 -00042009 53.44190216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e30 -00042010 53.44190598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e30 -00042011 53.44193268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e40 -00042012 53.44193268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e40 -00042013 53.44195938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e50 -00042014 53.44196320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e50 -00042015 53.44198608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e60 -00042016 53.44198990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e60 -00042017 53.44201660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e70 -00042018 53.44202042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e70 -00042019 53.44204330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e80 -00042020 53.44204712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e80 -00042021 53.44207382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e90 -00042022 53.44207764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e90 -00042023 53.44210052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ea0 -00042024 53.44210434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ea0 -00042025 53.44213104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51eb0 -00042026 53.44213104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51eb0 -00042027 53.44216156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ec0 -00042028 53.44216156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ec0 -00042029 53.44218445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ed0 -00042030 53.44218826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ed0 -00042031 53.44221878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ee0 -00042032 53.44221878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ee0 -00042033 53.44224548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ef0 -00042034 53.44224548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ef0 -00042035 53.44227219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f00 -00042036 53.44227600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f00 -00042037 53.44230270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f10 -00042038 53.44230270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f10 -00042039 53.44232941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f20 -00042040 53.44233322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f20 -00042041 53.44235992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f30 -00042042 53.44235992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f30 -00042043 53.44238663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f40 -00042044 53.44239044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f40 -00042045 53.44241714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f50 -00042046 53.44242096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f50 -00042047 53.44244385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f60 -00042048 53.44244766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f60 -00042049 53.44247437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f70 -00042050 53.44247818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f70 -00042051 53.44250107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f80 -00042052 53.44250488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f80 -00042053 53.44253159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f90 -00042054 53.44253159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f90 -00042055 53.44255829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fa0 -00042056 53.44255829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fa0 -00042057 53.44258499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fb0 -00042058 53.44258881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fb0 -00042059 53.44261551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fc0 -00042060 53.44261932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fc0 -00042061 53.44264221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fd0 -00042062 53.44264603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fd0 -00042063 53.44267273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fe0 -00042064 53.44267654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fe0 -00042065 53.44269943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ff0 -00042066 53.44270325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ff0 -00042067 53.44272995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52000 -00042068 53.44273376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52000 -00042069 53.44275665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52010 -00042070 53.44276047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52010 -00042071 53.44278717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52020 -00042072 53.44278717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52020 -00042073 53.44281769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52030 -00042074 53.44281769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52030 -00042075 53.44284439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52040 -00042076 53.44284439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52040 -00042077 53.44287491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52050 -00042078 53.44287491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52050 -00042079 53.44289780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52060 -00042080 53.44290161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52060 -00042081 53.44292831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52070 -00042082 53.44293213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52070 -00042083 53.44295502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52080 -00042084 53.44295883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52080 -00042085 53.44298553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52090 -00042086 53.44298935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52090 -00042087 53.44301605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520a0 -00042088 53.44301605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520a0 -00042089 53.44304276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520b0 -00042090 53.44304657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520b0 -00042091 53.44307327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520c0 -00042092 53.44307327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520c0 -00042093 53.44309998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520d0 -00042094 53.44309998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520d0 -00042095 53.44312668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e0 -00042096 53.44313049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e0 -00042097 53.44315338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f0 -00042098 53.44315720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f0 -00042099 53.44318390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52100 -00042100 53.44318771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52100 -00042101 53.44321442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52110 -00042102 53.44321442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52110 -00042103 53.44324112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52120 -00042104 53.44324493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52120 -00042105 53.44327164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52130 -00042106 53.44327545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52130 -00042107 53.44329834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52140 -00042108 53.44330215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52140 -00042109 53.44332886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52150 -00042110 53.44332886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52150 -00042111 53.44335175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52160 -00042112 53.44335556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52160 -00042113 53.44338226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52170 -00042114 53.44338608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52170 -00042115 53.44341278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52180 -00042116 53.44341278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52180 -00042117 53.44343948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52190 -00042118 53.44344330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52190 -00042119 53.44347000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a0 -00042120 53.44347382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a0 -00042121 53.44349670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b0 -00042122 53.44350052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b0 -00042123 53.44352722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c0 -00042124 53.44353104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c0 -00042125 53.44355392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d0 -00042126 53.44355774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d0 -00042127 53.44358444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e0 -00042128 53.44358826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e0 -00042129 53.44361115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f0 -00042130 53.44361115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f0 -00042131 53.44364166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52200 -00042132 53.44364166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52200 -00042133 53.44366837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52210 -00042134 53.44367218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52210 -00042135 53.44369507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52220 -00042136 53.44369888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52220 -00042137 53.44372559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52230 -00042138 53.44372940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52230 -00042139 53.44375229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52240 -00042140 53.44375610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52240 -00042141 53.44378281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52250 -00042142 53.44378662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52250 -00042143 53.44380951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52260 -00042144 53.44381332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52260 -00042145 53.44384003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52270 -00042146 53.44384003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52270 -00042147 53.44387054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52280 -00042148 53.44387054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52280 -00042149 53.44389343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52290 -00042150 53.44389725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52290 -00042151 53.44392395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a0 -00042152 53.44392776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a0 -00042153 53.44395065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b0 -00042154 53.44395447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b0 -00042155 53.44398117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c0 -00042156 53.44398499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c0 -00042157 53.44400787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522d0 -00042158 53.44401169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522d0 -00042159 53.44403839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522e0 -00042160 53.44404221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522e0 -00042161 53.44406891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522f0 -00042162 53.44406891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x522f0 -00042163 53.44409561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52300 -00042164 53.44409943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52300 -00042165 53.44412613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52310 -00042166 53.44412613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52310 -00042167 53.44415283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52320 -00042168 53.44415283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52320 -00042169 53.44417953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52330 -00042170 53.44418335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52330 -00042171 53.44420624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52340 -00042172 53.44421005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52340 -00042173 53.44423676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52350 -00042174 53.44424057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52350 -00042175 53.44426727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52360 -00042176 53.44426727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52360 -00042177 53.44429398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52370 -00042178 53.44429779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52370 -00042179 53.44432449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52380 -00042180 53.44432449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52380 -00042181 53.44435120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52390 -00042182 53.44435501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52390 -00042183 53.44438171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a0 -00042184 53.44438553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a0 -00042185 53.44440842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b0 -00042186 53.44441223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b0 -00042187 53.44443893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c0 -00042188 53.44444275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c0 -00042189 53.44446564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d0 -00042190 53.44446945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d0 -00042191 53.44449615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e0 -00042192 53.44449997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e0 -00042193 53.44452667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f0 -00042194 53.44452667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f0 -00042195 53.44455338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52400 -00042196 53.44455719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52400 -00042197 53.44458389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52410 -00042198 53.44458389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52410 -00042199 53.44461060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52420 -00042200 53.44461441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52420 -00042201 53.44464111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52430 -00042202 53.44464493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52430 -00042203 53.44466782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52440 -00042204 53.44467163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52440 -00042205 53.44469833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52450 -00042206 53.44470215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52450 -00042207 53.44472504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52460 -00042208 53.44472885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52460 -00042209 53.44475555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52470 -00042210 53.44475555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52470 -00042211 53.44478226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52480 -00042212 53.44478226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52480 -00042213 53.44480896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52490 -00042214 53.44481277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52490 -00042215 53.44483948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524a0 -00042216 53.44484329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524a0 -00042217 53.44486618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524b0 -00042218 53.44487000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524b0 -00042219 53.44489670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524c0 -00042220 53.44490051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524c0 -00042221 53.44492340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524d0 -00042222 53.44492722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524d0 -00042223 53.44495392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524e0 -00042224 53.44495773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524e0 -00042225 53.44498062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524f0 -00042226 53.44498444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x524f0 -00042227 53.44501114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52500 -00042228 53.44501495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52500 -00042229 53.44504166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52510 -00042230 53.44504166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52510 -00042231 53.44506836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52520 -00042232 53.44506836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52520 -00042233 53.44509506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52530 -00042234 53.44509888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52530 -00042235 53.44512177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52540 -00042236 53.44512558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52540 -00042237 53.44515228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52550 -00042238 53.44515610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52550 -00042239 53.44517899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52560 -00042240 53.44518280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52560 -00042241 53.44520950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52570 -00042242 53.44521332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52570 -00042243 53.44524002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52580 -00042244 53.44524002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52580 -00042245 53.44526672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52590 -00042246 53.44527054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52590 -00042247 53.44529724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a0 -00042248 53.44530106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a0 -00042249 53.44532394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b0 -00042250 53.44532776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b0 -00042251 53.44535446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c0 -00042252 53.44535828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c0 -00042253 53.44538116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d0 -00042254 53.44538498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d0 -00042255 53.44541168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525e0 -00042256 53.44541550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525e0 -00042257 53.44543839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525f0 -00042258 53.44544220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x525f0 -00042259 53.44546890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52600 -00042260 53.44547272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52600 -00042261 53.44549942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52610 -00042262 53.44549942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52610 -00042263 53.44552612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52620 -00042264 53.44552994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52620 -00042265 53.44555664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52630 -00042266 53.44555664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52630 -00042267 53.44558334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52640 -00042268 53.44558716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52640 -00042269 53.44561386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52650 -00042270 53.44561768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52650 -00042271 53.44564056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52660 -00042272 53.44564438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52660 -00042273 53.44567108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52670 -00042274 53.44567108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52670 -00042275 53.44569778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52680 -00042276 53.44570160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52680 -00042277 53.44573593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52690 -00042278 53.44573975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52690 -00042279 53.44577408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526a0 -00042280 53.44577789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526a0 -00042281 53.44580078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526b0 -00042282 53.44580460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526b0 -00042283 53.44583130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526c0 -00042284 53.44583511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526c0 -00042285 53.44585800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526d0 -00042286 53.44586182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526d0 -00042287 53.44588852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526e0 -00042288 53.44589233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526e0 -00042289 53.44591522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526f0 -00042290 53.44591904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x526f0 -00042291 53.44594574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52700 -00042292 53.44594955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52700 -00042293 53.44597626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52710 -00042294 53.44597626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52710 -00042295 53.44600296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52720 -00042296 53.44600677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52720 -00042297 53.44603348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52730 -00042298 53.44603348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52730 -00042299 53.44606018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52740 -00042300 53.44606400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52740 -00042301 53.44609070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52750 -00042302 53.44609451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52750 -00042303 53.44611740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52760 -00042304 53.44611740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52760 -00042305 53.44614410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52770 -00042306 53.44614792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52770 -00042307 53.44617462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52780 -00042308 53.44617462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52780 -00042309 53.44620132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52790 -00042310 53.44620514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52790 -00042311 53.44623184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527a0 -00042312 53.44623184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527a0 -00042313 53.44625854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527b0 -00042314 53.44626236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527b0 -00042315 53.44628906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527c0 -00042316 53.44629288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527c0 -00042317 53.44631577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527d0 -00042318 53.44631577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527d0 -00042319 53.44634628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527e0 -00042320 53.44634628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527e0 -00042321 53.44637299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527f0 -00042322 53.44637299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x527f0 -00042323 53.44639969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52800 -00042324 53.44640350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52800 -00042325 53.44643021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52810 -00042326 53.44643021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52810 -00042327 53.44645691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52820 -00042328 53.44646072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52820 -00042329 53.44648743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52830 -00042330 53.44649124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52830 -00042331 53.44651413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52840 -00042332 53.44651794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52840 -00042333 53.44654465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52850 -00042334 53.44654846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52850 -00042335 53.44657135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52860 -00042336 53.44657516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52860 -00042337 53.44660187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52870 -00042338 53.44660187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52870 -00042339 53.44662857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52880 -00042340 53.44662857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52880 -00042341 53.44665527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52890 -00042342 53.44665909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52890 -00042343 53.44668579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a0 -00042344 53.44668961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a0 -00042345 53.44671249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b0 -00042346 53.44671631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b0 -00042347 53.44674301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c0 -00042348 53.44674683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c0 -00042349 53.44676971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d0 -00042350 53.44677353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d0 -00042351 53.44680023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e0 -00042352 53.44680405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e0 -00042353 53.44682693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f0 -00042354 53.44682693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f0 -00042355 53.44685745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52900 -00042356 53.44685745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52900 -00042357 53.44688416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52910 -00042358 53.44688797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52910 -00042359 53.44691086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52920 -00042360 53.44691467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52920 -00042361 53.44694138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52930 -00042362 53.44694519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52930 -00042363 53.44696808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52940 -00042364 53.44697189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52940 -00042365 53.44699860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52950 -00042366 53.44700241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52950 -00042367 53.44702530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52960 -00042368 53.44702911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52960 -00042369 53.44705582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52970 -00042370 53.44705963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52970 -00042371 53.44708633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52980 -00042372 53.44708633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52980 -00042373 53.44710922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52990 -00042374 53.44711304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52990 -00042375 53.44713974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a0 -00042376 53.44714355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a0 -00042377 53.44716644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b0 -00042378 53.44717026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b0 -00042379 53.44719696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c0 -00042380 53.44720078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c0 -00042381 53.44722748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d0 -00042382 53.44722748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d0 -00042383 53.44725418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e0 -00042384 53.44725800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e0 -00042385 53.44728470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f0 -00042386 53.44728470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f0 -00042387 53.44731140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a00 -00042388 53.44731522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a00 -00042389 53.44734192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a10 -00042390 53.44734573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a10 -00042391 53.44736862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a20 -00042392 53.44737244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a20 -00042393 53.44739914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a30 -00042394 53.44740295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a30 -00042395 53.44742584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a40 -00042396 53.44742584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a40 -00042397 53.44745636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a50 -00042398 53.44745636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a50 -00042399 53.44748306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a60 -00042400 53.44748306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a60 -00042401 53.44750977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a70 -00042402 53.44751358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a70 -00042403 53.44754028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a80 -00042404 53.44754410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a80 -00042405 53.44756699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a90 -00042406 53.44757080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a90 -00042407 53.44759750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa0 -00042408 53.44760132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa0 -00042409 53.44762421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab0 -00042410 53.44762802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab0 -00042411 53.44765472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac0 -00042412 53.44765472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac0 -00042413 53.44768143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad0 -00042414 53.44768143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad0 -00042415 53.44770813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae0 -00042416 53.44771194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae0 -00042417 53.44773865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af0 -00042418 53.44774246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af0 -00042419 53.44776535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b00 -00042420 53.44776917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b00 -00042421 53.44779587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b10 -00042422 53.44779968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b10 -00042423 53.44782257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b20 -00042424 53.44782639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b20 -00042425 53.44785309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b30 -00042426 53.44785690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b30 -00042427 53.44787979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b40 -00042428 53.44788361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b40 -00042429 53.44791031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b50 -00042430 53.44791412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b50 -00042431 53.44794083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b60 -00042432 53.44794083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b60 -00042433 53.44796753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b70 -00042434 53.44797134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b70 -00042435 53.44799805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b80 -00042436 53.44800186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b80 -00042437 53.44802475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b90 -00042438 53.44802856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b90 -00042439 53.44805527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba0 -00042440 53.44805527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba0 -00042441 53.44807816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb0 -00042442 53.44808197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb0 -00042443 53.44810867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc0 -00042444 53.44811249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc0 -00042445 53.44813919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd0 -00042446 53.44813919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd0 -00042447 53.44816589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be0 -00042448 53.44816971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be0 -00042449 53.44819641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf0 -00042450 53.44820023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf0 -00042451 53.44822311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c00 -00042452 53.44822693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c00 -00042453 53.44825363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c10 -00042454 53.44825745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c10 -00042455 53.44828033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c20 -00042456 53.44828033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c20 -00042457 53.44830704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c30 -00042458 53.44831085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c30 -00042459 53.44833755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c40 -00042460 53.44833755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c40 -00042461 53.44836426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c50 -00042462 53.44836807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c50 -00042463 53.44839478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c60 -00042464 53.44839859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c60 -00042465 53.44842148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c70 -00042466 53.44842529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c70 -00042467 53.44845200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c80 -00042468 53.44845581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c80 -00042469 53.44847870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c90 -00042470 53.44848251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c90 -00042471 53.44850922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ca0 -00042472 53.44851303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ca0 -00042473 53.44853592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cb0 -00042474 53.44853973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cb0 -00042475 53.44856644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cc0 -00042476 53.44857025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cc0 -00042477 53.44859695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cd0 -00042478 53.44859695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cd0 -00042479 53.44862366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ce0 -00042480 53.44862747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ce0 -00042481 53.44865417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cf0 -00042482 53.44865417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cf0 -00042483 53.44867706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d00 -00042484 53.44868088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d00 -00042485 53.44870758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d10 -00042486 53.44871140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d10 -00042487 53.44873428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d20 -00042488 53.44873810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d20 -00042489 53.44875336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce90 -00042490 53.45420074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64718 -00042491 53.45420456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d678 -00042492 53.45420837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d67a -00042493 53.45423508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x647a0 -00042494 53.45423508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d700 -00042495 53.45423508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d702 -00042496 53.45426178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64780 -00042497 53.45426559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d6e0 -00042498 53.45426559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d6e2 -00042499 53.45429230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x642e0 -00042500 53.45429611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d240 -00042501 53.45429611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d242 -00042502 53.45435333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8f -00042503 53.45435715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce80 -00042504 53.45436096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce80 -00042505 53.45438766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce81 -00042506 53.45439148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8e -00042507 53.45439529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8e -00042508 53.45441437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8d -00042509 53.45441818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce82 -00042510 53.45442200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce82 -00042511 53.45444870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce83 -00042512 53.45445251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8c -00042513 53.45445251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8c -00042514 53.45447540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8b -00042515 53.45447922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce84 -00042516 53.45448303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce84 -00042517 53.45450974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce85 -00042518 53.45451355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8a -00042519 53.45451355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8a -00042520 53.45453644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce89 -00042521 53.45454407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce86 -00042522 53.45454407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce86 -00042523 53.45457077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce87 -00042524 53.45457458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce88 -00042525 53.45457458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce88 -00042526 53.50094986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00042527 53.50114059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00042528 53.50121689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00042529 53.50121689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00042530 53.50124359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00042531 53.50124359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00042532 53.50127029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00042533 53.50127411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00042534 53.50130081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00042535 53.50130081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00042536 53.50132751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00042537 53.50133133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00042538 53.50135803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00042539 53.50136185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00042540 53.50138474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00042541 53.50138855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00042542 53.50141525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00042543 53.50141907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00042544 53.50144196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00042545 53.50144196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00042546 53.50147247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00042547 53.50147247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00042548 53.50149918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00042549 53.50149918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00042550 53.50152588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00042551 53.50152969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00042552 53.50155640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00042553 53.50156021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00042554 53.50158310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00042555 53.50158691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00042556 53.50161362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00042557 53.50161743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00042558 53.50164032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00042559 53.50164032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00042560 53.50167084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00042561 53.50167084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00042562 53.50169754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00042563 53.50169754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00042564 53.50172424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00042565 53.50172806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00042566 53.50175476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00042567 53.50175858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00042568 53.50178146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00042569 53.50178528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00042570 53.50181198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00042571 53.50181580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00042572 53.50183868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00042573 53.50184250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00042574 53.50186920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00042575 53.50186920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00042576 53.50189590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00042577 53.50189590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00042578 53.50192261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00042579 53.50192642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00042580 53.50195313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00042581 53.50195694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00042582 53.50197983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00042583 53.50198364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00042584 53.50201035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00042585 53.50201416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00042586 53.50203705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00042587 53.50203705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00042588 53.50206757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00042589 53.50206757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00042590 53.50209427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00042591 53.50209427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00042592 53.50212097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00042593 53.50212479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00042594 53.50215149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00042595 53.50215530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00042596 53.50217819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00042597 53.50218201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00042598 53.50220871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00042599 53.50221252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00042600 53.50223541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00042601 53.50223541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00042602 53.50226593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00042603 53.50226593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00042604 53.50229263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00042605 53.50229263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00042606 53.50231934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00042607 53.50232315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00042608 53.50234985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00042609 53.50235367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00042610 53.50237656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00042611 53.50238037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00042612 53.50240707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00042613 53.50241089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00042614 53.50243378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00042615 53.50243759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00042616 53.50246429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00042617 53.50246811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00042618 53.50249100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00042619 53.50249100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00042620 53.50251770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00042621 53.50252151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00042622 53.50254822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00042623 53.50255203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00042624 53.50257492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00042625 53.50257874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00042626 53.50260544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00042627 53.50260925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00042628 53.50263214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00042629 53.50263596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00042630 53.50266266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00042631 53.50266266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00042632 53.50268936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00042633 53.50268936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00042634 53.50271606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00042635 53.50271988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00042636 53.50274658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00042637 53.50275040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00042638 53.50277328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00042639 53.50277710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00042640 53.50280380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00042641 53.50280380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00042642 53.50283051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00042643 53.50283432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00042644 53.50286102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00042645 53.50286102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00042646 53.50288773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00042647 53.50288773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00042648 53.50291443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00042649 53.50291824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00042650 53.50294495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00042651 53.50294876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00042652 53.50299072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00042653 53.50299454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00042654 53.50302124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00042655 53.50302505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00042656 53.50304794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00042657 53.50304794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00042658 53.50307846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00042659 53.50307846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00042660 53.50310516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00042661 53.50310898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00042662 53.50313187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00042663 53.50313568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00042664 53.50316238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00042665 53.50316620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00042666 53.50318909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00042667 53.50319290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00042668 53.50321960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00042669 53.50321960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00042670 53.50324631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00042671 53.50324631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00042672 53.50327301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00042673 53.50327682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00042674 53.50330353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00042675 53.50330734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00042676 53.50333023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00042677 53.50333405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00042678 53.50336075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00042679 53.50336456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00042680 53.50338745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00042681 53.50338745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00042682 53.50341415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00042683 53.50341797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00042684 53.50344467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00042685 53.50344467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00042686 53.50347137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00042687 53.50347519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00042688 53.50350189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00042689 53.50350571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00042690 53.50352859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00042691 53.50353241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00042692 53.50355911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00042693 53.50356293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00042694 53.50358582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00042695 53.50358963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00042696 53.50361633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00042697 53.50362015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00042698 53.50364304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00042699 53.50364304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00042700 53.50367355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00042701 53.50367355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00042702 53.50370026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00042703 53.50370407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00042704 53.50372696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00042705 53.50373077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00042706 53.50375748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00042707 53.50376129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00042708 53.50378418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00042709 53.50378799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00042710 53.50381470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00042711 53.50381851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00042712 53.50384140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00042713 53.50384140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00042714 53.50387192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00042715 53.50387192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00042716 53.50390244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00042717 53.50390244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00042718 53.50392914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00042719 53.50392914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00042720 53.50395966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00042721 53.50395966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00042722 53.50398254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00042723 53.50398636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00042724 53.50401306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00042725 53.50401688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00042726 53.50403976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00042727 53.50404358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00042728 53.50407028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00042729 53.50407410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00042730 53.50410080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00042731 53.50410080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00042732 53.50412750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00042733 53.50412750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00042734 53.50415421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00042735 53.50415802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00042736 53.50418091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00042737 53.50418472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00042738 53.50421143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00042739 53.50421524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00042740 53.50423813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00042741 53.50424194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00042742 53.50426865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00042743 53.50427246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00042744 53.50429916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00042745 53.50429916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00042746 53.50432587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00042747 53.50432587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00042748 53.50435257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00042749 53.50435638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00042750 53.50437927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00042751 53.50438309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00042752 53.50440979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00042753 53.50441360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00042754 53.50443649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00042755 53.50444031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00042756 53.50446701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00042757 53.50446701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00042758 53.50449371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00042759 53.50449753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00042760 53.50452042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00042761 53.50452423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00042762 53.50455093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00042763 53.50455475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00042764 53.50457764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00042765 53.50458145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00042766 53.50460815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00042767 53.50461197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00042768 53.50463867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00042769 53.50463867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00042770 53.50466156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00042771 53.50466537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00042772 53.50469208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00042773 53.50469589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00042774 53.50471878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00042775 53.50472260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00042776 53.50474930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00042777 53.50475311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00042778 53.50477600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00042779 53.50477982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00042780 53.50480652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00042781 53.50481033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00042782 53.50483704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00042783 53.50483704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00042784 53.50485992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00042785 53.50486374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00042786 53.50489044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00042787 53.50489426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00042788 53.50491714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00042789 53.50492096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00042790 53.50494766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00042791 53.50495148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00042792 53.50497437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00042793 53.50497818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00042794 53.50500488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00042795 53.50500488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00042796 53.50503159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00042797 53.50503540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00042798 53.50505829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00042799 53.50506210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00042800 53.50508881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00042801 53.50509262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00042802 53.50511551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00042803 53.50511932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00042804 53.50514603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00042805 53.50514603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00042806 53.50517273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00042807 53.50517273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00042808 53.50519943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00042809 53.50520325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00042810 53.50522995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00042811 53.50523376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00042812 53.50525665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00042813 53.50526047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00042814 53.50528717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00042815 53.50529099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00042816 53.50531387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00042817 53.50531769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00042818 53.50534439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00042819 53.50534821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00042820 53.50537109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00042821 53.50537109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00042822 53.50540161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00042823 53.50540161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00042824 53.50542831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00042825 53.50543213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00042826 53.50545502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00042827 53.50545883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00042828 53.50548553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00042829 53.50548935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00042830 53.50551224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00042831 53.50551605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00042832 53.50554276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00042833 53.50554276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00042834 53.50556946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00042835 53.50556946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00042836 53.50559616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00042837 53.50559998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00042838 53.50562668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00042839 53.50563049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00042840 53.50565338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00042841 53.50565720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00042842 53.50568390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00042843 53.50568771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00042844 53.50571060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00042845 53.50571060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00042846 53.50574112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00042847 53.50574112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00042848 53.50576782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00042849 53.50576782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00042850 53.50579453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00042851 53.50579834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00042852 53.50582504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00042853 53.50582886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00042854 53.50585175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00042855 53.50585556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00042856 53.50588226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00042857 53.50588226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00042858 53.50590897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00042859 53.50590897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00042860 53.50593567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00042861 53.50593948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00042862 53.50596619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00042863 53.50596619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00042864 53.50599289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00042865 53.50599670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00042866 53.50602341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00042867 53.50602722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00042868 53.50605011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00042869 53.50605392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00042870 53.50608063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00042871 53.50608063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00042872 53.50610733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00042873 53.50610733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00042874 53.50613403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00042875 53.50613785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00042876 53.50616455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00042877 53.50616455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00042878 53.50619125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00042879 53.50619507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00042880 53.50622177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00042881 53.50622559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00042882 53.50624847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00042883 53.50625229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00042884 53.50627899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00042885 53.50627899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00042886 53.50630569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00042887 53.50630569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00042888 53.50633240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00042889 53.50633621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00042890 53.50636292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00042891 53.50636292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00042892 53.50638962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00042893 53.50639343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00042894 53.50642014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00042895 53.50642395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00042896 53.50644684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00042897 53.50644684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00042898 53.50647354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00042899 53.50647736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00042900 53.50650406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00042901 53.50650406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00042902 53.50653076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00042903 53.50653458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00042904 53.50656128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00042905 53.50656509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00042906 53.50658798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00042907 53.50659180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00042908 53.50661850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00042909 53.50662231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00042910 53.50664520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00042911 53.50664520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00042912 53.50667191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00042913 53.50667572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00042914 53.50670242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00042915 53.50670242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00042916 53.50672913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00042917 53.50673294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00042918 53.50675964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00042919 53.50676346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00042920 53.50678635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00042921 53.50679016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00042922 53.50681686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00042923 53.50681686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00042924 53.50684357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00042925 53.50684357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00042926 53.50687408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00042927 53.50687408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00042928 53.50690079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00042929 53.50690079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00042930 53.50692749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00042931 53.50693130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00042932 53.50695801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00042933 53.50696182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00042934 53.50698471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00042935 53.50698853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00042936 53.50701523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00042937 53.50701904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00042938 53.50704193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00042939 53.50704193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00042940 53.50706863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00042941 53.50707245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00042942 53.50709915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00042943 53.50709915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00042944 53.50712585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00042945 53.50712967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00042946 53.50715637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00042947 53.50716019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00042948 53.50718689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00042949 53.50718689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00042950 53.50721359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00042951 53.50721741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00042952 53.50724411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00042953 53.50724792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00042954 53.50727463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00042955 53.50727844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00042956 53.50730133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00042957 53.50730515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00042958 53.50733185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00042959 53.50733566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00042960 53.50735855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00042961 53.50736237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00042962 53.50738907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00042963 53.50739288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00042964 53.50741577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00042965 53.50741959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00042966 53.50744629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00042967 53.50745010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00042968 53.50747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00042969 53.50747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00042970 53.50750351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00042971 53.50750732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00042972 53.50753403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00042973 53.50753784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00042974 53.50756073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00042975 53.50756073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00042976 53.50759125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00042977 53.50759125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00042978 53.50762558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00042979 53.50762939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00042980 53.50765991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00042981 53.50765991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00042982 53.50769043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00042983 53.50769043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00042984 53.50771332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00042985 53.50771713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00042986 53.50774384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00042987 53.50774765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00042988 53.50777817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00042989 53.50778198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00042990 53.50781250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00042991 53.50781631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00042992 53.50785446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00042993 53.50785828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00042994 53.50789261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00042995 53.50789642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00042996 53.50792313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00042997 53.50792694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00042998 53.50795364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00042999 53.50795364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00043000 53.50798035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00043001 53.50798416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00043002 53.50801086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00043003 53.50801468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00043004 53.50803757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00043005 53.50804138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00043006 53.50806808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00043007 53.50806808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00043008 53.50809479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00043009 53.50809860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00043010 53.50812531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00043011 53.50812912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00043012 53.50815201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00043013 53.50815582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00043014 53.50818253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00043015 53.50818253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00043016 53.50821304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00043017 53.50821304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00043018 53.50823593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00043019 53.50823975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00043020 53.50826645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00043021 53.50827026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00043022 53.50829315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00043023 53.50829697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00043024 53.50832367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00043025 53.50832748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00043026 53.50835037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00043027 53.50835419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00043028 53.50838089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00043029 53.50838089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00043030 53.50841141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00043031 53.50841141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00043032 53.50843811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00043033 53.50843811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00043034 53.50846863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00043035 53.50846863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00043036 53.50849152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00043037 53.50849533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00043038 53.50852203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00043039 53.50852585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00043040 53.50854874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00043041 53.50855255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00043042 53.50857925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00043043 53.50858307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00043044 53.50860977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00043045 53.50860977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00043046 53.50863647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00043047 53.50864029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00043048 53.50866699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00043049 53.50866699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00043050 53.50869370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00043051 53.50869370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00043052 53.50872040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00043053 53.50872421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00043054 53.50874710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00043055 53.50875092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00043056 53.50877762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00043057 53.50878143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00043058 53.50880814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00043059 53.50880814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00043060 53.50883484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00043061 53.50883865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00043062 53.50886536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00043063 53.50886536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00043064 53.50889206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00043065 53.50889206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00043066 53.50891876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00043067 53.50892258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00043068 53.50894547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00043069 53.50894928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00043070 53.50897598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00043071 53.50897980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00043072 53.50900650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00043073 53.50900650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00043074 53.50903320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00043075 53.50903702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00043076 53.50906372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00043077 53.50906372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00043078 53.50908661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00043079 53.50909042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00043080 53.50911713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00043081 53.50912094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00043082 53.50914383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00043083 53.50914764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00043084 53.50917435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00043085 53.50917816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00043086 53.50920486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00043087 53.50920486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00043088 53.50923157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00043089 53.50923538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00043090 53.50926590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00043091 53.50926590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00043092 53.50929260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00043093 53.50929260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00043094 53.50932312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00043095 53.50932312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00043096 53.50934982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00043097 53.50934982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00043098 53.50937653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00043099 53.50938034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00043100 53.50940323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00043101 53.50940704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00043102 53.50943375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00043103 53.50943756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00043104 53.50946426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00043105 53.50946426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00043106 53.50949097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00043107 53.50949478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00043108 53.50952148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00043109 53.50952148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00043110 53.50954819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00043111 53.50955200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00043112 53.50957870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00043113 53.50957870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00043114 53.50960541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00043115 53.50960541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00043116 53.50963211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00043117 53.50963593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00043118 53.50966263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00043119 53.50966263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00043120 53.50968933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00043121 53.50969315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00043122 53.50971985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00043123 53.50971985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00043124 53.50974655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00043125 53.50975037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00043126 53.50977707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00043127 53.50978088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00043128 53.50980377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00043129 53.50980377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00043130 53.50983429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00043131 53.50983429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00043132 53.50986099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00043133 53.50986099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00043134 53.50988770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00043135 53.50989151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00043136 53.50991821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00043137 53.50991821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00043138 53.50994492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00043139 53.50994873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00043140 53.50997543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00043141 53.50997925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00043142 53.51000214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00043143 53.51000214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00043144 53.51002884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00043145 53.51003265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00043146 53.51005936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00043147 53.51005936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00043148 53.51008606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00043149 53.51008987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00043150 53.51011658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00043151 53.51011658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00043152 53.51014328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00043153 53.51014709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00043154 53.51017380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00043155 53.51017761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00043156 53.51020050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00043157 53.51020050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00043158 53.51023102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00043159 53.51023102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00043160 53.51025772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00043161 53.51025772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00043162 53.51028442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00043163 53.51028824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00043164 53.51031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00043165 53.51031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00043166 53.51034164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00043167 53.51034546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00043168 53.51037216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00043169 53.51037598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00043170 53.51039886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00043171 53.51040268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00043172 53.51042938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00043173 53.51043320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00043174 53.51045609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00043175 53.51045609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00043176 53.51048660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00043177 53.51048660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00043178 53.51051331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00043179 53.51051331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00043180 53.51054001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00043181 53.51054382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00043182 53.51057053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00043183 53.51057434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00043184 53.51059723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00043185 53.51060104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00043186 53.51062775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00043187 53.51063156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00043188 53.51065445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00043189 53.51065826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00043190 53.51068497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00043191 53.51068878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00043192 53.51071548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00043193 53.51071548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00043194 53.51073837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00043195 53.51074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00043196 53.51076889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00043197 53.51077271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00043198 53.51079559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00043199 53.51079941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00043200 53.51082611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00043201 53.51082993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00043202 53.51085281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00043203 53.51085663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00043204 53.51088333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00043205 53.51088715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00043206 53.51091385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00043207 53.51091385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00043208 53.51094055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00043209 53.51094055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00043210 53.51096725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00043211 53.51097107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00043212 53.51099396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00043213 53.51099777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00043214 53.51102448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00043215 53.51102829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00043216 53.51105118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00043217 53.51105499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00043218 53.51108170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00043219 53.51108551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00043220 53.51111221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00043221 53.51111221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00043222 53.51113892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00043223 53.51113892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00043224 53.51116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00043225 53.51116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00043226 53.51119232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00043227 53.51119614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00043228 53.51122284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00043229 53.51122665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00043230 53.51124954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00043231 53.51125336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00043232 53.51128006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00043233 53.51128387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00043234 53.51131058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00043235 53.51131058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00043236 53.51133728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00043237 53.51134109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00043238 53.51136780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00043239 53.51136780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00043240 53.51139069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00043241 53.51139450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00043242 53.51142120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00043243 53.51142502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00043244 53.51144791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00043245 53.51145172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00043246 53.51147842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00043247 53.51148224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00043248 53.51150894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00043249 53.51150894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00043250 53.51153564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00043251 53.51153564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00043252 53.51156616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00043253 53.51156616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00043254 53.51158905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00043255 53.51159286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00043256 53.51161957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00043257 53.51162338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00043258 53.51164627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00043259 53.51165009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00043260 53.51167679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00043261 53.51168060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00043262 53.51170731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00043263 53.51170731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00043264 53.51173401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00043265 53.51173401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00043266 53.51176071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00043267 53.51176453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00043268 53.51178741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00043269 53.51179123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00043270 53.51181793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00043271 53.51182175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00043272 53.51184464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00043273 53.51184845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00043274 53.51187515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00043275 53.51187897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00043276 53.51190567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00043277 53.51190567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00043278 53.51192856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00043279 53.51193237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00043280 53.51195908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00043281 53.51196289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00043282 53.51198578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00043283 53.51198959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00043284 53.51201630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00043285 53.51202011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00043286 53.51204300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00043287 53.51204681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00043288 53.51207352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00043289 53.51207352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00043290 53.51210403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00043291 53.51210403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00043292 53.51212692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00043293 53.51213074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00043294 53.51215744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00043295 53.51216125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00043296 53.51218414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00043297 53.51218796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00043298 53.51221466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00043299 53.51221848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00043300 53.51224136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00043301 53.51224518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00043302 53.51227188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00043303 53.51227570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00043304 53.51230240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00043305 53.51230240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00043306 53.51232529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00043307 53.51232910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00043308 53.51235580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00043309 53.51235962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00043310 53.51238251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00043311 53.51238632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00043312 53.51241302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00043313 53.51241684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00043314 53.51243973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00043315 53.51244354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00043316 53.51247025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00043317 53.51247025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00043318 53.51249695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00043319 53.51250076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00043320 53.51252365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00043321 53.51252747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00043322 53.51255417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00043323 53.51255798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00043324 53.51258087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00043325 53.51258469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00043326 53.51261139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00043327 53.51261520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00043328 53.51264191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00043329 53.51264191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00043330 53.51266479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00043331 53.51266861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00043332 53.51269531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00043333 53.51269913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00043334 53.51272202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00043335 53.51272583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00043336 53.51275253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00043337 53.51275635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00043338 53.51277924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00043339 53.51278305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00043340 53.51280975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00043341 53.51281357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00043342 53.51284027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00043343 53.51284027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00043344 53.51286697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00043345 53.51286697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00043346 53.51289368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00043347 53.51289749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00043348 53.51292038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00043349 53.51292419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00043350 53.51295090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00043351 53.51295471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00043352 53.51297760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00043353 53.51298141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00043354 53.51300812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00043355 53.51301193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00043356 53.51303864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00043357 53.51303864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00043358 53.51306534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00043359 53.51306534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00043360 53.51309204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00043361 53.51309586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00043362 53.51311874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00043363 53.51312256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00043364 53.51314926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00043365 53.51315308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00043366 53.51317596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00043367 53.51317978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00043368 53.51320648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00043369 53.51320648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00043370 53.51323700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00043371 53.51323700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00043372 53.51325989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00043373 53.51326370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00043374 53.51329041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00043375 53.51329422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00043376 53.51331711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00043377 53.51332092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00043378 53.51334763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00043379 53.51335144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00043380 53.51337433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00043381 53.51337433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00043382 53.51340103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00043383 53.51340485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00043384 53.51343155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00043385 53.51343536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00043386 53.51345825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00043387 53.51346207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00043388 53.51348877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00043389 53.51349258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00043390 53.51351547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00043391 53.51351929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00043392 53.51354599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00043393 53.51354980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00043394 53.51357269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00043395 53.51357269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00043396 53.51360321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -00069544 53.72840881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -00069545 53.72840881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f990 -00069546 53.72841644 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -00069547 53.72841644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f990 -00069548 53.72844315 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -00069549 53.72844315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a0 -00069550 53.72844315 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -00069551 53.72844315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a0 -00069552 53.72846603 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -00069553 53.72846603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b0 -00069554 53.72847366 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -00069555 53.72847366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b0 -00069556 53.72850037 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -00069557 53.72850037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c0 -00069558 53.72850037 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -00069559 53.72850037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c0 -00069560 53.72852325 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -00069561 53.72852325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d0 -00069562 53.72853088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -00069563 53.72853088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d0 -00069564 53.72855759 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -00069565 53.72855759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e0 -00069566 53.72855759 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -00069567 53.72855759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e0 -00069568 53.72858429 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -00069569 53.72858429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f0 -00069570 53.72858810 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -00069571 53.72858810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f0 -00069572 53.72861481 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -00069573 53.72861481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa00 -00069574 53.72861481 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -00069575 53.72861481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa00 -00069576 53.72864151 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -00069577 53.72864151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa10 -00069578 53.72864532 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -00069579 53.72864532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa10 -00069580 53.72867203 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -00069581 53.72867203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa20 -00069582 53.72867203 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -00069583 53.72867203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa20 -00069584 53.72869873 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -00069585 53.72869873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa30 -00069586 53.72870255 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -00069587 53.72870255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa30 -00104004 53.97953415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41690 -00104005 53.97953415 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b00 -00104006 53.97953415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41690 -00104007 53.97953796 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b00 -00104008 53.97956467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a0 -00104009 53.97956467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b10 -00104010 53.97956467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a0 -00104011 53.97956467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b10 -00104012 53.97959137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b0 -00104013 53.97959137 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b20 -00104014 53.97959137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b0 -00104015 53.97959137 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b20 -00104016 53.97961426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c0 -00104017 53.97962189 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b30 -00104018 53.97962189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c0 -00104019 53.97962189 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b30 -00104020 53.97964859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d0 -00104021 53.97964859 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b40 -00104022 53.97964859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d0 -00104023 53.97965622 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b40 -00104024 53.97967529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e0 -00104025 53.97967911 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b50 -00104026 53.97967911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e0 -00104027 53.97967911 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b50 -00104028 53.97970581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f0 -00104029 53.97971344 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b60 -00104030 53.97971344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f0 -00104031 53.97971344 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b60 -00104032 53.97973633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41700 -00104033 53.97973633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b70 -00104034 53.97973633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41700 -00104035 53.97974396 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b70 -00104036 53.97976303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41710 -00104037 53.97977066 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b80 -00104038 53.97977066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41710 -00104039 53.97977066 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b80 -00104040 53.97979355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41720 -00104041 53.97979355 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b90 -00104042 53.97979355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41720 -00104043 53.97980118 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b90 -00104044 53.97982025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41730 -00104045 53.97982788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41730 -00104046 53.97982788 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -00104047 53.97982788 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -00126318 54.30333328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53210 -00126319 54.30342865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126320 54.30344391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126321 54.30351257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126322 54.30352020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00126323 54.30352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126324 54.30354691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126325 54.30371857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00126326 54.30665588 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126327 54.30672455 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126328 54.30680466 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126329 54.30686188 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126330 54.30709839 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126331 54.30717468 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126332 54.30723953 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126333 54.30744171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126334 54.32195282 [vmhook-eac [core number = 1]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7467BF0 -00126335 54.32316208 [vmhook-eac [core number = 1]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7467BF0 -00126336 54.33184814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53210 -00126337 54.33190918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00126338 54.33192444 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126339 54.33192825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126340 54.33194351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126341 54.33196259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126342 54.33208847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126343 54.33225632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53210 -00126344 54.33233261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126345 54.33234024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126346 54.33242416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126347 54.33242798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00126348 54.33244324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126349 54.33246231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126350 54.33262253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00126351 54.33301163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126352 54.35371017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126353 54.35394669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126354 54.44403076 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126355 54.44406891 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126356 54.44408798 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00126357 54.44410324 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00126358 54.44422531 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126359 54.44422531 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126360 54.44428635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126364 56.95072174 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126365 56.95075989 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126366 56.95077896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00126367 56.95079041 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00126368 56.95092010 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126369 56.95092010 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126370 56.95098114 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126371 56.95100784 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126372 58.60789108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126373 58.60815430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126374 58.60982895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126375 58.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126376 58.61029816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126377 58.61083984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126378 58.61086655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126379 58.61119843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126380 58.61122513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126381 58.61152649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126382 58.61154556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126383 58.61258316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126384 58.61260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126385 58.61301804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126386 58.61304474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126387 58.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126388 58.61336136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126389 58.61380386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126390 58.61382294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126391 58.61434937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126392 58.61437607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126393 58.61489105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126394 58.61491013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126395 58.61532211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126396 58.61534882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126397 58.61579514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126398 58.61582184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126399 58.61626053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126400 58.61628723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126401 58.61683273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126402 58.61685181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126403 58.61743927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126404 58.61747360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126405 58.61805344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126406 58.61808014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126407 58.61838531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126408 58.61841202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126409 58.61877060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126410 58.61879730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126411 58.61932755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126412 58.61935425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126413 58.61985397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126414 58.61987686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126415 58.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126416 58.62057114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126417 58.62140274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126418 58.62142563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126419 58.62187576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126420 58.62189484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126421 58.62241745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126422 58.62244415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126423 58.62303543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126424 58.62305450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126425 58.62345123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126426 58.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126427 58.62396622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126428 58.62399292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126429 58.62453079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126430 58.62455750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126431 58.62540054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126432 58.62541962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126433 58.62592697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126434 58.62594604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126435 58.62700272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126436 58.62702179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126437 58.62736130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126438 58.62738419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126439 58.62790298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126440 58.62792969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126441 58.62826157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126442 58.62828827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126443 58.62882614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126444 58.62885284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126445 58.62918472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126446 58.62921143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126447 58.62956238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126448 58.62958908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126449 58.63007355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126450 58.63009262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126451 58.63056183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126452 58.63058472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126453 58.63112259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126454 58.63114929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126455 58.63171387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126456 58.63173294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126457 58.63217926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126458 58.63220596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126459 58.63270950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126460 58.63272858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126461 58.63314438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126462 58.63316345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126463 58.63354111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126464 58.63356018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126465 58.63408661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126466 58.63411331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126467 58.63454056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126468 58.63456726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126469 58.63506699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126470 58.63508987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126471 58.63560867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126472 58.63563538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126473 58.63597488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126474 58.63600159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126475 58.63655090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126476 58.63657761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126477 58.63695526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126478 58.63697433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126479 58.63743210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126480 58.63745880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126481 58.63782883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126482 58.63785553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126483 58.63830566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126484 58.63832855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126485 58.63883591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126486 58.63885498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126487 58.63927078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126488 58.63928986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126489 58.63982773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126490 58.63985443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126491 58.64034653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126492 58.64036560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126493 58.64083862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126494 58.64085770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126495 58.64130402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126496 58.64133072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126497 58.64181900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126498 58.64184189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126499 58.64236069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126500 58.64238739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126501 58.64271927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126502 58.64274597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126503 58.64318848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126504 58.64321136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126505 58.64358521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126506 58.64360809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126507 58.64419174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126508 58.64421844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126509 58.64476013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126510 58.64478683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126511 58.64519501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126512 58.64521790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126513 58.64577866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126514 58.64580536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126515 58.64613724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126516 58.64616394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126517 58.64657211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126518 58.64659882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126519 58.64699554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126520 58.64702225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126521 58.64749908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126522 58.64752579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126523 58.64805222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126524 58.64807129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126525 58.64878082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126526 58.64880753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126527 58.64944458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126528 58.64947128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126529 58.64986801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126530 58.64988708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126531 58.65028381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126532 58.65031052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126533 58.65077591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126534 58.65079498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126535 58.65113449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126536 58.65116119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126537 58.65152740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126538 58.65155029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126539 58.65203094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126540 58.65205765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126541 58.65246582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126542 58.65250015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126543 58.65297318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126544 58.65299225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126545 58.65333176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126546 58.65335083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126547 58.65387344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126548 58.65389252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126549 58.65430450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126550 58.65433121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126551 58.65483475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126552 58.65486145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126553 58.65534210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126554 58.65536499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126555 58.65570450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126556 58.65573120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126557 58.65617752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126558 58.65619659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126559 58.65662766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126560 58.65665436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126561 58.65699387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126562 58.65701294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126563 58.65753555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126564 58.65755463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126565 58.65811920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126566 58.65813828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126567 58.65868759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126568 58.65871429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126569 58.65938568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126570 58.65940475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126571 58.65978241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126572 58.65980911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126573 58.66014099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126574 58.66016769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126575 58.66066742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126576 58.66069031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126577 58.66136169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126578 58.66138840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126579 58.66183853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126580 58.66186142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126581 58.66255951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126582 58.66258621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126583 58.66299438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126584 58.66302109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126585 58.66342926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126586 58.66345596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126587 58.66397476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126588 58.66400146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126589 58.66453934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126590 58.66456223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126591 58.66508865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126592 58.66510773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126593 58.66564941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126594 58.66567612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126595 58.66616440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126596 58.66618347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126597 58.66657257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126598 58.66659927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126599 58.66690445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126600 58.66694260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126601 58.66765594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126602 58.66768646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126603 58.66834641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126604 58.66836929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126605 58.66887665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126606 58.66890335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126607 58.66934967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126608 58.66937637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126609 58.66985703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126610 58.66987991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126611 58.67036819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126612 58.67038727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126613 58.67089462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126614 58.67091751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126615 58.67143631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126616 58.67146301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126617 58.67196274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126618 58.67198563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126619 58.67254257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126620 58.67256927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126621 58.67308807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126622 58.67311478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126623 58.67362595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126624 58.67365265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126625 58.67441177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126626 58.67443848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126627 58.67492294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126628 58.67494583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126629 58.67539215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126630 58.67541885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126631 58.67639160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126632 58.67641068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126633 58.67687607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126634 58.67690277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126635 58.67731094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126636 58.67733765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126637 58.67787552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126638 58.67790222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126639 58.67842102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126640 58.67844391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126641 58.67895508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126642 58.67898178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126643 58.67947006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126644 58.67949295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126645 58.67994308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126646 58.67996216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126647 58.68056488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126648 58.68059540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126649 58.68117905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126650 58.68120193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126651 58.68165207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126652 58.68167496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126653 58.68219376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126654 58.68222046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126655 58.68268967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126656 58.68270874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126657 58.68323135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126658 58.68325806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126659 58.68379593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126660 58.68382263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126661 58.68426132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126662 58.68428802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126663 58.68490219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126664 58.68492889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126665 58.68552399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126666 58.68555069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126667 58.68622208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126668 58.68624115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126669 58.68685913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126670 58.68687820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126671 58.68755341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126672 58.68757629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126673 58.68805695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126674 58.68808365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126675 58.68858719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126676 58.68861389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126677 58.68894577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126678 58.68897247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126679 58.68938065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126680 58.68939972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126681 58.68985748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126682 58.68987656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126683 58.69071198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126684 58.69073868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126685 58.69133377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126686 58.69136047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126687 58.69183350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126688 58.69186020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126689 58.69234085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126690 58.69236374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126691 58.69295883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126692 58.69298553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126693 58.69339371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126694 58.69341278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126695 58.69386292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126696 58.69388962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126697 58.69433594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126698 58.69435501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126699 58.69482422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126700 58.69484711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126701 58.69529724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126702 58.69532013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126703 58.69583893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126704 58.69586563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126705 58.69638443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126706 58.69641113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126707 58.69706726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126708 58.69709396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126709 58.69754410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126710 58.69756699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126711 58.69820023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126712 58.69821930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126713 58.69868851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126714 58.69871521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126715 58.69916153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126716 58.69918823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126717 58.69957733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126718 58.69960403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126719 58.70001221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126720 58.70003891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126721 58.70049286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126722 58.70052338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126723 58.70093536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126724 58.70095825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126725 58.70137024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126726 58.70139694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126727 58.70173264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126728 58.70175934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126729 58.70220947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126730 58.70222855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126731 58.70269394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126732 58.70272064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126733 58.70324326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126734 58.70326996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126735 58.70395660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126736 58.70398712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126737 58.70435715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126738 58.70438385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126739 58.70489120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126740 58.70491409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126741 58.70541382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126742 58.70544052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126743 58.70597076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126744 58.70599747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126745 58.70648956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126746 58.70652771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126747 58.70700836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126748 58.70703506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126749 58.70755768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126750 58.70757675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126751 58.70810318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126752 58.70812988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126753 58.70862579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126754 58.70865250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126755 58.70916367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126756 58.70918274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126757 58.70972824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126758 58.70975494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126759 58.71020126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126760 58.71022797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126761 58.71062469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126762 58.71065140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126763 58.71124649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126764 58.71126938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126765 58.71199417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126766 58.71214676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126767 58.71269226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126768 58.71271515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126769 58.71305466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126770 58.71307373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126771 58.71337509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126772 58.71340179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126773 58.71441269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126774 58.71443939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126775 58.71486664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126776 58.71489334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126777 58.71519470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126778 58.71521378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126779 58.71565628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126780 58.71567535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126781 58.71619797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126782 58.71622467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126783 58.71673584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126784 58.71676254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126785 58.71717072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126786 58.71719742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126787 58.71763992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126788 58.71766281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126789 58.71811295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126790 58.71813583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126791 58.71867371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126792 58.71870041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126793 58.71925735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126794 58.71928406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126795 58.71976852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126796 58.71978760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126797 58.72009659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126798 58.72012329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126799 58.72045898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126800 58.72049332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126801 58.72103119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126802 58.72105789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126803 58.72154999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126804 58.72157288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126805 58.72222137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126806 58.72224045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126807 58.72309875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126808 58.72312164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126809 58.72357178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126810 58.72359085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126811 58.72411346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126812 58.72413254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126813 58.72472382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126814 58.72475052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126815 58.72514725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126816 58.72516632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126817 58.72566223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126818 58.72568893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126819 58.72620773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126820 58.72623444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126821 58.72709656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126822 58.72711563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126823 58.72761536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126824 58.72764206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126825 58.72869873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126826 58.72871780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126827 58.72905731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126828 58.72908020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126829 58.72972107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126830 58.72974777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126831 58.73008728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126832 58.73011017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126833 58.73067474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126834 58.73070145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126835 58.73104095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126836 58.73106384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126837 58.73141861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126838 58.73143768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126839 58.73192215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126840 58.73194885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126841 58.73239136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126842 58.73241425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126843 58.73297882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126844 58.73299789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126845 58.73356247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126846 58.73358154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126847 58.73402786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126848 58.73405457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126849 58.73455811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126850 58.73458099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126851 58.73498917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126852 58.73501587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126853 58.73539352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126854 58.73541641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126855 58.73593521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126856 58.73596191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126857 58.73637009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126858 58.73639679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126859 58.73691559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126860 58.73694229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126861 58.73746490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126862 58.73749161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126863 58.73783112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126864 58.73785782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126865 58.73838806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126866 58.73841095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126867 58.73881149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126868 58.73883438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126869 58.73928833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126870 58.73931503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126871 58.73968506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126872 58.73971176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126873 58.74016571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126874 58.74019241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126875 58.74069214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126876 58.74071503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126877 58.74112701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126878 58.74115372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126879 58.74166870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126880 58.74169540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126881 58.74218369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126882 58.74220657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126883 58.74268723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126884 58.74271393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126885 58.74317551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126886 58.74319458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126887 58.74367905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126888 58.74370575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126889 58.74423218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126890 58.74425125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126891 58.74460983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126892 58.74463272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126893 58.74508286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126894 58.74510193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126895 58.74547958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126896 58.74549866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126897 58.74607849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126898 58.74610519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126899 58.74664307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126900 58.74666977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126901 58.74707794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126902 58.74710464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126903 58.74766159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126904 58.74768829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126905 58.74802017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126906 58.74804306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126907 58.74843979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126908 58.74846649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126909 58.74887848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126910 58.74890137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126911 58.74938965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126912 58.74940872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126913 58.74993134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126914 58.74995804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126915 58.75066376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126916 58.75068283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126917 58.75132751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126918 58.75135422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126919 58.75174332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126920 58.75177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126921 58.75216675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126922 58.75218582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126923 58.75264740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126924 58.75267029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126925 58.75300980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126926 58.75302887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126927 58.75340271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126928 58.75342560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126929 58.75390625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126930 58.75393295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126931 58.75434113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126932 58.75436783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126933 58.75482941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126934 58.75485611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126935 58.75519180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126936 58.75521469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126937 58.75573730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126938 58.75575638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126939 58.75616455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126940 58.75619125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126941 58.75669861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126942 58.75672150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126943 58.75720978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126944 58.75722885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126945 58.75756836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126946 58.75759506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126947 58.75804138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126948 58.75806808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126949 58.75848389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126950 58.75851440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126951 58.75885391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126952 58.75888062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126953 58.75939941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126954 58.75942230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126955 58.75997925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126956 58.76000595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126957 58.76054382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126958 58.76057053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126959 58.76124191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126960 58.76126099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126961 58.76163864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126962 58.76165771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126963 58.76199722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126964 58.76201630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126965 58.76251984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126966 58.76254654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126967 58.76321793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126968 58.76323700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126969 58.76369095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126970 58.76371765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126971 58.76439667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126972 58.76442337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126973 58.76483154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126974 58.76485825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126975 58.76526642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126976 58.76529312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126977 58.76581192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126978 58.76583862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126979 58.76635361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126980 58.76638031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126981 58.76692581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126982 58.76694489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126983 58.76748657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126984 58.76751328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126985 58.76800156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126986 58.76802063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126987 58.76839828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126988 58.76841736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126989 58.76873779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126990 58.76876068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126991 58.76924896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126992 58.76926804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126993 58.76980591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126994 58.76982880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126995 58.77031708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126996 58.77034378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126997 58.77080154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126998 58.77082825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126999 58.77131653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127000 58.77133942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127001 58.77183914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127002 58.77185822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127003 58.77234650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127004 58.77236938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127005 58.77291489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127006 58.77294159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127007 58.77344131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127008 58.77346420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127009 58.77400208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127010 58.77402878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127011 58.77457428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127012 58.77459717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127013 58.77511215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127014 58.77513123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127015 58.77589035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127016 58.77591705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127017 58.77636337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127018 58.77639008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127019 58.77685928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127020 58.77687836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127021 58.77785110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127022 58.77788162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127023 58.77832794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127024 58.77835464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127025 58.77878571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127026 58.77880859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127027 58.77934647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127028 58.77936554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127029 58.77989197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127030 58.77991867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127031 58.78041077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127032 58.78043365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127033 58.78092194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127034 58.78094101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127035 58.78138733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127036 58.78141403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127037 58.78199768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127038 58.78201675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127039 58.78261948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127040 58.78264236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127041 58.78309250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127042 58.78311539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127043 58.78363419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127044 58.78366089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127045 58.78410721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127046 58.78412628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127047 58.78467178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127048 58.78469849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127049 58.78523636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127050 58.78525925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127051 58.78570175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127052 58.78572845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127053 58.78632355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127054 58.78635025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127055 58.78696442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127056 58.78698730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127057 58.78766251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127058 58.78768158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127059 58.78828049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127060 58.78829956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127061 58.78899384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127062 58.78901672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127063 58.78949738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127064 58.78952408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127065 58.79000854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127066 58.79002762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127067 58.79036713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127068 58.79039383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127069 58.79082108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127070 58.79084015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127071 58.79129028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127072 58.79131699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127073 58.79213333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127074 58.79216003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127075 58.79278183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127076 58.79280472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127077 58.79328156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127078 58.79330444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127079 58.79379272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127080 58.79381180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127081 58.79439545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127082 58.79441833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127083 58.79484940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127084 58.79486847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127085 58.79532242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127086 58.79534149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127087 58.79578781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127088 58.79581451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127089 58.79626083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127090 58.79628754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127091 58.79675674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127092 58.79677963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127093 58.79730606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127094 58.79732513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127095 58.79784775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127096 58.79787064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127097 58.79852295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127098 58.79854584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127099 58.79899979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127100 58.79902267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127101 58.79965973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127102 58.79968643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127103 58.80013275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127104 58.80015182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127105 58.80062866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127106 58.80065155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127107 58.80104446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127108 58.80106735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127109 58.80147934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127110 58.80150223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127111 58.80195236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127112 58.80197144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127113 58.80237961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127114 58.80240631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127115 58.80283356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127116 58.80286026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127117 58.80319977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127118 58.80322647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127119 58.80367279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127120 58.80369186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127121 58.80414200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127122 58.80416489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127123 58.80470276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127124 58.80472946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127125 58.80532455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127126 58.80535126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127127 58.80572128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127128 58.80574799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127129 58.80623245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127130 58.80625916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127131 58.80678558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127132 58.80680466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127133 58.80734253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127134 58.80736160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127135 58.80784607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127136 58.80787277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127137 58.80835724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127138 58.80837631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127139 58.80892181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127140 58.80894852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127141 58.80946732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127142 58.80949020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127143 58.80997086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127144 58.81000137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127145 58.81052780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127146 58.81054688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127147 58.81109238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127148 58.81111526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127149 58.81156540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127150 58.81159210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127151 58.81196976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127152 58.81198883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127153 58.81260681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127154 58.81262589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127155 58.81335831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127156 58.81341553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127157 58.81355667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127158 58.81436157 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127159 58.81438828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127160 58.81451416 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127161 58.81529617 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127162 58.81532288 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127163 58.81544495 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127164 58.81627655 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127165 58.81629944 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127166 58.81642151 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127167 58.81720352 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127168 58.81723022 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127169 58.81735229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127170 58.81814957 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127171 58.81817627 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127172 58.81829071 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127173 58.81905746 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127174 58.81908417 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127175 58.81919861 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127176 58.82003784 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127177 58.82006454 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127178 58.82018661 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127179 58.82097244 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127180 58.82099915 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127181 58.82112122 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127182 58.82191849 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127183 58.82194519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127184 58.82206726 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127185 58.82284927 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127186 58.82286835 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127187 58.82299042 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127188 58.82381439 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127189 58.82384109 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127190 58.82396317 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127191 58.82476044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127192 58.82478714 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127193 58.82490921 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127194 58.82572937 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127195 58.82575226 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127196 58.82587433 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127197 58.82666397 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127198 58.82668686 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127199 58.82680893 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127200 58.82761002 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127201 58.82762909 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127202 58.82775116 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127203 58.82854462 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127204 58.82857132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127205 58.82868576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127206 58.82950974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127207 58.82953644 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127208 58.82965851 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127209 58.83045197 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127210 58.83047867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127211 58.83059311 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127212 58.83137894 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127213 58.83140564 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127214 58.83152008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127215 58.83234406 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127216 58.83236313 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127217 58.83248520 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127218 58.83327866 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127219 58.83330536 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127220 58.83346558 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127221 58.83427811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127222 58.83430481 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127223 58.83444595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127224 58.83525085 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127225 58.83528137 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127226 58.83541870 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127227 58.83625412 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127228 58.83628845 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127229 58.83642197 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127230 58.83721542 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127231 58.83724976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127232 58.83738327 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127233 58.83819580 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127234 58.83822250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127235 58.83834839 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127236 58.83915710 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127237 58.83918762 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127238 58.83932877 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127239 58.84016800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127240 58.84019089 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127241 58.84032822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127242 58.84111404 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127243 58.84114075 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127244 58.84125900 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127245 58.84209824 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127246 58.84213257 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127247 58.84229660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127248 58.84311676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127249 58.84314728 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127250 58.84330368 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127251 58.84412766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127252 58.84415817 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127253 58.84430695 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127254 58.84510040 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127255 58.84512711 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127256 58.84525299 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127257 58.84613800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127258 58.84617615 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127259 58.84635544 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127260 58.84723663 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127261 58.84727859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127262 58.84746170 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127263 58.84838867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127264 58.84843063 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127265 58.84861374 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127266 58.84951019 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127267 58.84955597 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127268 58.84973907 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127269 58.85057831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127270 58.85061646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127271 58.85080338 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127272 58.85168457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127273 58.85172653 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127274 58.85190582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127275 58.85276031 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127276 58.85279465 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127277 58.85297775 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127278 58.85387039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127279 58.85391235 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127280 58.85409927 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127281 58.85496140 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127282 58.85500336 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127283 58.85519409 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127284 58.85605240 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127285 58.85607529 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127286 58.85620499 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127287 58.85699081 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127288 58.85701752 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127289 58.85714722 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127290 58.85796356 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127291 58.85799026 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127292 58.85811234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127293 58.85887527 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127294 58.85889816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127295 58.85902023 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127296 58.85985184 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127297 58.85987854 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127298 58.86000061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127299 58.86076736 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127300 58.86079407 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127301 58.86091614 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127302 58.86171341 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127303 58.86174011 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127304 58.86186218 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127305 58.86262894 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127306 58.86264801 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127307 58.86277771 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127308 58.86359787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127309 58.86362076 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127310 58.86374283 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127311 58.86454391 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127312 58.86457062 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127313 58.86469269 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127314 58.86551666 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127315 58.86554337 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127316 58.86566544 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127317 58.86645126 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127318 58.86647797 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127319 58.86660004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127320 58.86739731 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127321 58.86742401 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127322 58.86754608 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127323 58.86832809 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127324 58.86835098 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127325 58.86847305 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127326 58.86928558 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127327 58.86931229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127328 58.86943817 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127329 58.87031174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127330 58.87033463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127331 58.87047577 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127332 58.87126541 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127333 58.87128830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127334 58.87140656 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127335 58.87223053 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127336 58.87225723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127337 58.87239075 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127338 58.87323380 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127339 58.87327194 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127340 58.87345886 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127341 58.87436676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127342 58.87440491 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127343 58.87459183 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127344 58.87546921 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127345 58.87550735 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127346 58.87569427 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127347 58.87654495 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127348 58.87658310 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127473 58.95877075 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127474 58.96082687 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127475 58.96119690 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00127476 58.96120453 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00127477 58.96122742 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00127478 58.96122742 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00127479 58.96125412 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00127480 58.96125412 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00127481 58.96128082 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00127482 58.96128464 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00127483 58.96131134 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00127484 58.96131134 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00127485 58.96133804 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00127486 58.96134567 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00127487 58.96136856 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00127488 58.96136856 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00127489 58.96139526 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00127490 58.96139526 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00127491 58.96142197 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00127492 58.96142578 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00127493 58.96145248 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00127494 58.96145248 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00127495 58.96147919 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00127496 58.96148300 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00127497 58.96150970 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00127498 58.96150970 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00127499 58.96153641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00127500 58.96153641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00127501 58.96156311 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00127502 58.96156693 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00127503 58.96159363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00127504 58.96159363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00127505 58.96162033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00127506 58.96162033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00127507 58.96165085 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00127508 58.96165085 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00127509 58.96167755 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00127510 58.96167755 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00127511 58.96170425 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00127512 58.96170807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00127513 58.96173477 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00127514 58.96173477 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00127515 58.96176147 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00127516 58.96176529 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00135831 59.07977676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11568 -00135832 59.07977676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11568 -00135833 59.07980347 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11578 -00135834 59.07980347 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11578 -00135835 59.07982635 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11588 -00135836 59.07983398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11588 -00135837 59.07986069 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11598 -00135838 59.07986069 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11598 -00135839 59.07988358 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a8 -00135840 59.07989120 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a8 -00135841 59.07991791 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b8 -00135842 59.07991791 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b8 -00135843 59.07994080 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115c8 -00135844 59.07994843 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115c8 -00135845 59.07997513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115d8 -00135846 59.07997513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115d8 -00135847 59.08000183 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115e8 -00135848 59.08000565 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115e8 -00135849 59.08003235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115f8 -00135850 59.08003235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x115f8 -00135851 59.08005905 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11608 -00135852 59.08005905 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11608 -00135853 59.08008194 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11618 -00135854 59.08008957 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11618 -00135855 59.08011627 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11628 -00135856 59.08011627 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11628 -00135857 59.08013916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11638 -00135858 59.08014679 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11638 -00135859 59.08017349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11648 -00135860 59.08017349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11648 -00135861 59.08020020 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11658 -00135862 59.08020020 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11658 -00135863 59.08022308 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11668 -00135864 59.08023071 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11668 -00135865 59.08025742 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11678 -00135866 59.08025742 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11678 -00135867 59.08028030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11688 -00135868 59.08028030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11688 -00135869 59.08030701 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11698 -00135870 59.08031464 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11698 -00135871 59.08033752 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x116a8 -00135872 59.08033752 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x116a8 -00135873 59.08036423 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x116b8 -00135874 59.08037186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x116b8 -00138921 59.12381363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -00138922 59.12381363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -00138923 59.12384033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -00138924 59.12384033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -00138925 59.12386703 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -00138926 59.12387085 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -00138927 59.12389755 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -00138928 59.12389755 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -00138929 59.12392426 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -00138930 59.12392807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -00138931 59.12395477 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -00138932 59.12395477 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -00138933 59.12398148 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -00138934 59.12398148 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -00138935 59.12400818 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -00138936 59.12401199 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -00138937 59.12403870 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -00138938 59.12403870 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -00138939 59.12406540 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -00138940 59.12406921 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -00138941 59.12409592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -00138942 59.12409592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -00138943 59.12412262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -00138944 59.12412262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -00138945 59.12414551 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -00138946 59.12415314 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -00138947 59.12417984 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c8 -00138948 59.12417984 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c8 -00138949 59.12420654 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d8 -00138950 59.12421036 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d8 -00138951 59.12423706 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e8 -00138952 59.12423706 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e8 -00138953 59.12426376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f8 -00138954 59.12426376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f8 -00138955 59.12428665 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17708 -00138956 59.12429428 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17708 -00138957 59.12432098 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17718 -00138958 59.12432098 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17718 -00138959 59.12434387 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17728 -00138960 59.12435150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17728 -00138961 59.12437820 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17738 -00138962 59.12437820 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17738 -00138963 59.12440491 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17748 -00138964 59.12440491 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17748 -00143317 59.18557358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00143318 59.18557358 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca8 -00143319 59.18558121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00143320 59.18558121 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca8 -00143321 59.18560791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00143322 59.18560791 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb8 -00143323 59.18560791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00143324 59.18560791 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb8 -00143325 59.18563080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00143326 59.18563080 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc8 -00143327 59.18563080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00143328 59.18563080 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc8 -00143329 59.18565750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00143330 59.18565750 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd8 -00143331 59.18566513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00143332 59.18566513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd8 -00143333 59.18568802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00143334 59.18568802 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce8 -00143335 59.18568802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00143336 59.18568802 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce8 -00143337 59.18571472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00143338 59.18571472 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf8 -00143339 59.18572235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00143340 59.18572235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf8 -00143341 59.18574905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00143342 59.18574905 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd08 -00143343 59.18574905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00143344 59.18574905 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd08 -00143345 59.18577194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00143346 59.18577194 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd18 -00143347 59.18577957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00143348 59.18577957 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd18 -00143349 59.18580627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00143350 59.18580627 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd28 -00143351 59.18580627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00143352 59.18580627 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd28 -00143353 59.18582916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00143354 59.18582916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd38 -00143355 59.18582916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00143356 59.18582916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd38 -00143357 59.18585587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00143358 59.18585587 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd48 -00143359 59.18586349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00143360 59.18586349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd48 -00151447 59.24425507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -00151448 59.24425507 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x279f8 -00151449 59.24426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -00151450 59.24426270 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x279f8 -00151451 59.24428940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -00151452 59.24428940 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a08 -00151453 59.24428940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -00151454 59.24428940 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a08 -00151455 59.24431229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -00151456 59.24431229 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a18 -00151457 59.24431992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -00151458 59.24431992 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a18 -00151459 59.24434662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -00151460 59.24434662 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a28 -00151461 59.24434662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -00151462 59.24434662 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a28 -00151463 59.24436951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -00151464 59.24436951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a38 -00151465 59.24436951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -00151466 59.24436951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a38 -00151467 59.24439621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -00151468 59.24439621 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a48 -00151469 59.24440384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -00151470 59.24440384 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a48 -00151471 59.24443054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -00151472 59.24443054 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a58 -00151473 59.24443054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -00151474 59.24443054 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a58 -00151475 59.24445343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -00151476 59.24445343 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a68 -00151477 59.24446106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -00151478 59.24446106 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a68 -00151479 59.24448776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -00151480 59.24448776 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a78 -00151481 59.24448776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -00151482 59.24448776 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a78 -00151483 59.24451065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -00151484 59.24451065 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a88 -00151485 59.24451065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -00151486 59.24451828 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a88 -00151487 59.24453735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -00151488 59.24454498 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a98 -00151489 59.24454498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -00151490 59.24454498 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a98 -00163495 59.32142639 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f8 -00163496 59.32142639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00163497 59.32142639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -00163498 59.32143402 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f8 -00163499 59.32143402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00163500 59.32143402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -00163501 59.32146072 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32308 -00163502 59.32146072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00163503 59.32146072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -00163504 59.32146072 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32308 -00163505 59.32146072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00163506 59.32146454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -00163507 59.32148361 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32318 -00163508 59.32148361 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32318 -00163509 59.32149124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00163510 59.32149124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -00163511 59.32149124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00163512 59.32149124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -00163513 59.32151794 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32328 -00163514 59.32151794 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32328 -00163515 59.32151794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00163516 59.32151794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -00163517 59.32152176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00163518 59.32152176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -00163519 59.32154083 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32338 -00163520 59.32154083 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32338 -00163521 59.32154846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00163522 59.32154846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -00163523 59.32154846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00163524 59.32154846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -00163525 59.32156754 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32348 -00163526 59.32157516 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32348 -00163527 59.32157516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00163528 59.32157898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d18 -00163529 59.32157898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00163530 59.32157898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d18 -00163531 59.32160187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32358 -00163532 59.32160187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32358 -00163533 59.32160568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00163534 59.32160568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d28 -00163535 59.32160568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00163536 59.32161331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d28 -00163537 59.32162476 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32368 -00163538 59.32163239 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x32368 -00204828 59.47780991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -00204829 59.47780991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a8 -00204830 59.47780991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c8 -00204831 59.47780991 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -00204832 59.47780991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a8 -00204833 59.47780991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c8 -00204834 59.47781754 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -00204835 59.47783661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -00204836 59.47783661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -00204837 59.47783661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b8 -00204838 59.47784424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d8 -00204839 59.47784424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -00204840 59.47784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b8 -00204841 59.47784424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d8 -00204842 59.47784424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -00204843 59.47786331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -00204844 59.47786713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -00204845 59.47786713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c8 -00204846 59.47786713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e8 -00204847 59.47786713 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46908 -00204848 59.47786713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c8 -00204849 59.47786713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e8 -00204850 59.47786713 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46908 -00204851 59.47789383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -00204852 59.47789383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -00204853 59.47789383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d8 -00204854 59.47790146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -00204855 59.47790146 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46918 -00204856 59.47790146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d8 -00204857 59.47790146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -00204858 59.47790146 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46918 -00204859 59.47792053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -00204860 59.47792816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -00204861 59.47792816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e8 -00204862 59.47792816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28108 -00204863 59.47792816 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -00204864 59.47792816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e8 -00204865 59.47792816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28108 -00204866 59.47792816 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -00204867 59.47795105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -00204868 59.47795105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -00204869 59.47795105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f8 -00204870 59.47795105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28118 -00204871 59.47795868 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46938 -00254812 59.69449615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30498 -00254813 59.69449615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -00254814 59.69449615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44648 -00254815 59.69449615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30498 -00254816 59.69449615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -00254817 59.69450378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44648 -00254818 59.69452286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a8 -00254819 59.69452286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -00254820 59.69452667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a8 -00254821 59.69452667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44658 -00254822 59.69452667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -00254823 59.69452667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44658 -00254824 59.69455338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b8 -00254825 59.69455338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -00254826 59.69455338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b8 -00254827 59.69455338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44668 -00254828 59.69455338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -00254829 59.69456100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44668 -00254830 59.69458008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c8 -00254831 59.69458008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -00254832 59.69458389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c8 -00254833 59.69458389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44678 -00254834 59.69458389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -00254835 59.69458389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44678 -00254836 59.69461060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d8 -00254837 59.69461060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -00254838 59.69461060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d8 -00254839 59.69461060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44688 -00254840 59.69461060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -00254841 59.69461823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44688 -00254842 59.69463730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e8 -00254843 59.69464493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -00254844 59.69464493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e8 -00254845 59.69464493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44698 -00254846 59.69464493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -00254847 59.69464493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44698 -00254848 59.69466782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f8 -00254849 59.69466782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -00254850 59.69466782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f8 -00254851 59.69466782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446a8 -00254852 59.69467545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -00254853 59.69467545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x446a8 -00254854 59.69469452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30508 -00254855 59.69470215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30508 -00295119 59.98145294 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295120 59.98206711 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295121 59.98434067 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295122 59.98750687 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295123 59.99156570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295124 59.99251175 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295125 59.99945068 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295126 60.00307846 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295127 60.03053284 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295128 60.03259659 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295129 60.03680038 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295130 60.04606247 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295131 60.05163574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295132 60.05601120 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295133 60.06433868 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295134 60.06940079 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295135 60.07124329 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295136 60.07457733 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295137 60.07658768 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295138 60.08143234 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295139 60.09137344 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295140 60.09575653 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295141 60.10356522 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295142 60.10759735 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295143 60.11317825 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295144 60.11464310 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295145 60.11798859 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295146 60.12230301 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295147 60.12916565 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295148 60.13272858 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295149 60.13347244 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295150 60.14711761 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295151 60.15639496 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295152 60.19471359 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295153 60.21071243 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295154 60.21784210 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295155 60.22023773 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295156 60.22107697 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295157 60.22246552 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295158 60.23001480 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295159 60.23335648 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295160 60.23503876 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295161 60.23816299 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295162 60.24991226 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295163 60.25392532 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295164 60.25545120 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295165 60.27796936 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295166 60.28727722 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295167 60.29085541 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295168 60.29383087 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295169 60.29685211 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295170 60.30763626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295171 60.31153870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295172 60.31314087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295173 60.32022858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295174 60.33099365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295175 60.34780121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295176 60.35070801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295177 60.35605240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295178 60.35987091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295179 60.36832047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295180 60.38683701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295181 60.39347076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295182 60.39612198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295183 60.40075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295184 60.40760803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295185 60.40929413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295186 60.41019058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295187 60.41178131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295188 60.41648483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295189 60.41888046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295190 60.42604065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295195 60.47717285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295196 60.47918701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295197 60.48160172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295198 60.48352814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295199 60.48887634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295200 60.50402069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295201 60.50790405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295202 60.51306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295203 60.51372910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295204 60.51522064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295205 60.52252197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295206 60.53153992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295207 60.53754807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295208 60.54296494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295209 60.54677200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295210 60.55726242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295211 60.56056213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295212 60.56880188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295213 60.58121109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295214 60.58604050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295215 60.58725739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295216 60.59477615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295217 60.59646225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295218 60.59948349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295219 60.60493469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295220 60.61000824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295221 60.61196136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295222 60.61429214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295223 60.62755203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295224 60.63465500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295225 60.64044189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295226 60.64554977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295227 60.64664841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295228 60.64881897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295229 60.64986420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295230 60.65076447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295231 60.65449142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295232 60.65589905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295233 60.66019058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295234 60.66095352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295235 60.66342545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295236 60.66549301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295237 60.66683578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295238 60.66759109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295244 60.69265366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295245 60.69361877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295246 60.69704819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295247 60.70116425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295248 60.70405579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295249 60.70895386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295250 60.72441101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295251 60.72624588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295252 60.72714996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295253 60.72995377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295254 60.74164581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295255 60.74327850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295256 60.74436951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295257 60.74515915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295258 60.74919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295259 60.74964523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295260 60.75291061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295261 60.75729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295262 60.76308441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295263 60.76632309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295264 60.76774216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295265 60.76845932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295266 60.77518082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295267 60.77845001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295268 60.77919388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295269 60.78238678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295270 60.78318787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295271 60.78750610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295272 60.78830719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295273 60.79348373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295274 60.80025101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295275 60.80295181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295276 60.80690002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295277 60.80825043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295278 60.81076431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295279 60.81209564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295280 60.81840515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295281 60.82250214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295282 60.82306671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295283 60.82651520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295284 60.82695770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295285 60.82761765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295286 60.83007813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295287 60.83107376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295343 61.02199173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295344 61.02453232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295345 61.03610992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295346 61.03685760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295347 61.03807831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295348 61.04835129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295349 61.05749893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295350 61.06142044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295351 61.06632233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295352 61.07124329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295353 61.07200623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295354 61.07415009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295355 61.07465744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295356 61.07785034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295357 61.08164978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295358 61.08291245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295359 61.08747482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295360 61.09003067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295361 61.09277344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295362 61.09656143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295363 61.09710693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295364 61.09809875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295365 61.09859085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295366 61.10147858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295367 61.10205460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295368 61.10313416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295369 61.10584259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295370 61.10951614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295371 61.11020660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295372 61.11211014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295373 61.11587143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295374 61.11788177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295375 61.11932755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295376 61.11985397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295377 61.12461472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295378 61.12881851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295379 61.13552094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295380 61.13687515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295381 61.13736343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295382 61.14256668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295383 61.14762878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295384 61.14899063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295385 61.15050888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295386 61.15206528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295441 61.28470230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295442 61.28696823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295443 61.29375839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295444 61.30046082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295445 61.30303192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295446 61.30446625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295447 61.30582428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295448 61.30758286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295449 61.30928040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295450 61.31087875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295451 61.31580734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295452 61.31782532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295453 61.31932068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295454 61.32044983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295455 61.32481766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295456 61.32974243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295457 61.33366394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295458 61.33475113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295459 61.33560944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295460 61.34471512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295461 61.34957504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295462 61.35064316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295463 61.36195755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295464 61.37779236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295465 61.37870026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295466 61.37962341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295467 61.38613129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295468 61.38765335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295469 61.39678574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295470 61.40064621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295471 61.40106964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295472 61.40248489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295473 61.40445328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295474 61.40627670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295475 61.40702820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295476 61.40770721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295477 61.41622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295478 61.41740799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295479 61.42216492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295480 61.42442322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295481 61.42627335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295482 61.42891693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295483 61.42997742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295484 61.43105316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295532 61.67928314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295533 61.69842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295534 61.70175934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295535 61.70212936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295536 61.71421432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295537 61.73608398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295538 61.74528122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295539 61.75640869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295540 61.76836395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295541 61.78162003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295542 61.78482437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295543 61.79518890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295544 61.79750443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295545 61.79854584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295546 61.96352768 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295547 61.96356583 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295548 61.96358490 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00295549 61.96359634 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00295550 61.96371841 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295551 61.96372604 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00295552 61.96378326 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295553 61.96380615 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00295554 62.13695908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295555 62.14711761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295556 62.14788437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295557 62.14842224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295558 62.16524887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295559 62.17174530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295560 62.17383194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295561 62.17804718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295562 62.18456268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295563 62.18791199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295564 62.19104767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295565 62.19869995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295566 62.21051407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295567 62.22407150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295568 62.22513199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295569 62.23377991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295570 62.23448181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295571 62.25452042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295572 62.25511551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295573 62.25912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295574 62.26041412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295575 62.28153610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295576 62.29094315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295577 62.30263519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295578 62.30797577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295579 62.30942154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295580 62.31118011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295581 62.31566620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295582 62.31809998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295583 62.32189560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295584 62.33240509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295585 62.35255051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295586 62.36540222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295587 62.37418365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295588 62.37897491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295589 62.41239548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295590 62.41410446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295591 62.42744827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295592 62.47647858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295593 62.54810715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295594 62.55689621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295595 62.56124878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295596 62.56920242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295597 62.57772064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295598 62.58045959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295599 62.58245850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295600 62.58426285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295601 62.58819962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295602 62.58922958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295603 62.59594727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295604 62.61246109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295605 62.61409378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295606 62.61490631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295607 62.62073135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295608 62.62271500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295609 62.63087845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295610 62.64471817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295611 62.65272141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295612 62.65946960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295613 62.67066193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295614 62.67806244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295615 62.67984009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295616 62.68130493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295617 62.70182419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295618 62.72185516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295619 62.73012543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295620 62.73203278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295621 62.73962784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295622 62.74441147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295623 62.75757599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295624 62.75855255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295625 62.76334000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295626 62.77213287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295627 62.82014847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295628 62.82449341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295629 62.82690048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295630 62.82762146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295631 62.83987808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295632 62.85887909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295633 62.86831284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295634 62.87044525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295635 62.87166214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295636 62.87450790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295637 62.87502670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295638 62.87861252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295639 62.88266754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295640 62.88836670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295641 62.89193726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295642 62.90914536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295643 62.92842865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295644 62.94506836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295645 62.94670105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295646 62.95381927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295647 62.96030045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295648 62.96675873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295649 62.97821426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295650 62.98096085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295651 62.99228287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295652 62.99267197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295653 62.99996948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295654 63.00048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295655 63.00463486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295656 63.02074051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295657 63.02126694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295658 63.02188110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295659 63.02867126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295660 63.03327942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295661 63.04710388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295662 63.05001068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295663 63.05955887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295664 63.06134415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295665 63.06560135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295666 63.09432983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295667 63.09651184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295668 63.09738922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295669 63.11136627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295670 63.11856079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295671 63.12645721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295672 63.12890244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295673 63.16279221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295674 63.17639542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295675 63.20266724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295676 63.20790482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295677 63.23139191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295678 63.23323441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295679 63.24223328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295680 63.24292374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295681 63.25081635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295682 63.25422668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295683 63.25471878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295684 63.26248169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295685 63.27288818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295686 63.27699280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295687 63.28921127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295688 63.29222870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295689 63.29656982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295690 63.29979706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295691 63.30430222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295692 63.33850098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295693 63.34972000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295694 63.36804962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295695 63.37615204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295696 63.37897491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295697 63.38567734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295698 63.38637924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295699 63.39361191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295700 63.39571762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295701 63.42471695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295702 63.43436813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295703 63.44633484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295704 63.45953751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295705 63.46047211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295706 63.46298218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295707 63.46485138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295708 63.47294617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295709 63.47387695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295710 63.47885895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295711 63.48136902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295712 63.50345612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295713 63.52997208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295714 63.54972076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295715 63.55440140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295716 63.55935287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295717 63.56147385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295718 63.56328964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295719 63.56380844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295720 63.56533813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295721 63.56636047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295722 63.56790924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295723 63.56938934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295724 63.57061768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295725 63.57372665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295726 63.57503891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295727 63.57553864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295728 63.57760620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295729 63.57855988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295730 63.57936478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295731 63.58131790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295732 63.58283615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295733 63.58828735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295734 63.59068298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295735 63.59432220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295736 63.59605789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295737 63.59817505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295738 63.60341263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295739 63.61074066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295740 63.61424637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295741 63.61585236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295742 63.61729431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295743 63.61922455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295744 63.61999893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295745 63.62206650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295746 63.62695694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295747 63.63022614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295748 63.63143158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295749 63.64457703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295750 63.64503098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295751 63.64936829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295752 63.65607071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295753 63.65856171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295754 63.65955353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295755 63.66312408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295756 63.66583633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295757 63.66988754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295758 63.67543030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295759 63.68066025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295760 63.69336319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295761 63.69516754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295762 63.69964218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295763 63.70069122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295764 63.70165253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295765 63.70449829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295766 63.70566940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295767 63.70647812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295768 63.70743179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295769 63.71056747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295770 63.71495819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295771 63.71847153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295772 63.71892548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295773 63.71969223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295774 63.72078705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295775 63.72273254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295776 63.72323990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295777 63.72465897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295778 63.72799301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295779 63.72992706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295780 63.73281860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295781 63.73606491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295782 63.73662567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295783 63.73862457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295784 63.74254227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295785 63.74856186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295786 63.74921036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295787 63.74993896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295788 63.75066376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295789 63.75169373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295790 63.75637817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295791 63.75919342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295792 63.76348877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295793 63.77213287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295794 63.77259064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295795 63.79030991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295796 63.79269028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295797 63.79710770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295798 63.79877090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295799 63.80220032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295800 63.80270767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295801 63.80508041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295802 63.80575943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295803 63.81114960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295804 63.81246567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295805 63.82023621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295806 63.82276535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295807 63.82369995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295808 63.82728958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295809 63.83010101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295810 63.83246613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295811 63.83368301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295812 63.83585739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295813 63.83861923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295814 63.84157944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295815 63.84295654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295816 63.84451294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295817 63.84766006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295818 63.84944153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295819 63.85002899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295820 63.85598755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295821 63.86189270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295822 63.86250305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295823 63.86735535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295824 63.86946106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295825 63.87345886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295826 63.87511063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295858 63.98368454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295859 63.98524857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295860 63.98675156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295861 63.98733902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295862 63.99117279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295863 63.99354935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295864 63.99409103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295865 63.99555206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295866 63.99766541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295867 63.99887848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295868 64.00001526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295869 64.00775146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295870 64.01066589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295871 64.01392365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295872 64.01786041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295873 64.02231598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295874 64.03050232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295875 64.03556824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295876 64.03668213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295877 64.04048157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295878 64.05316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295879 64.05498505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295880 64.05585480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295881 64.05654144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295882 64.05705261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295883 64.05899048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295884 64.06746674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295885 64.06971741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295886 64.07160950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295887 64.07634735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295888 64.07865906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295889 64.09352112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295890 64.10674286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295891 64.10770416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295892 64.10929871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295893 64.11347198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295894 64.12008667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295895 64.12126923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295896 64.12349701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295897 64.12469482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295898 64.12699890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295899 64.12935638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295900 64.13092041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295901 64.13376617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295902 64.14482880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295903 64.14533234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295904 64.15801239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295905 64.15863800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295906 64.15936279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295907 64.16148376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295908 64.16363525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295909 64.16622162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295910 64.17802429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295911 64.18448639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295912 64.18766022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295913 64.18879700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295914 64.19143677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295915 64.19536591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295916 64.19742584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295917 64.19971466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295918 64.20433044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295919 64.21288300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295920 64.21606445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295921 64.23727417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295922 64.24348450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295923 64.24718475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295924 64.25222778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295925 64.25421143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295926 64.25496674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295927 64.25585175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295928 64.25916290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295929 64.26116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295930 64.26229095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295931 64.26481628 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295932 64.26668549 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295933 64.27344513 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295934 64.28163147 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295935 64.28219604 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295936 64.28493500 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295937 64.28640747 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295938 64.28697968 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295939 64.29029083 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295940 64.29171753 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295941 64.29408264 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295942 64.29502106 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295943 64.30123138 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295944 64.30295563 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295945 64.30564880 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295946 64.30999756 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295947 64.31185913 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295948 64.31452942 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295949 64.31952667 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295950 64.32030487 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295951 64.32180023 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295952 64.32250977 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295953 64.32302094 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295954 64.32714081 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295955 64.34101868 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295956 64.35754395 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295957 64.36165619 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295958 64.36305237 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295959 64.36466217 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295960 64.36581421 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295961 64.36640930 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295962 64.36758423 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295963 64.37547302 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295964 64.38080597 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296003 64.47861481 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296004 64.47903442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296005 64.48238373 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296006 64.48284912 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296007 64.48809814 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296008 64.48851776 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296009 64.48892212 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296010 64.48936462 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296011 64.49550629 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296012 64.49594879 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296013 64.49933624 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296014 64.49977875 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296015 64.50101471 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296016 64.50144196 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296017 64.50379181 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296018 64.50422668 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296019 64.50485229 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296020 64.50524902 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296021 64.50955963 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296022 64.50994873 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296023 64.52492523 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296024 64.52537537 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296025 64.53398895 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296026 64.53445435 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296027 64.53675079 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296028 64.53716278 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296029 64.53732300 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296030 64.53776550 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296031 64.54425049 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296032 64.54471588 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296033 64.54815674 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296034 64.54860687 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296035 64.55069733 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296036 64.55110168 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296037 64.56833649 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296038 64.56871796 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296039 64.57350159 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296040 64.57391357 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296041 64.57662201 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296042 64.57698822 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296043 64.58720398 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296044 64.58763885 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296045 64.59076691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296046 64.59116364 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296047 64.61740112 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296048 64.61780548 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296049 64.65332031 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296050 64.65372467 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296051 64.67526245 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296052 64.67567444 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296053 64.67727661 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296054 64.67774963 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296055 64.67954254 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296056 64.67990112 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296057 64.68888855 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296058 64.68927002 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296059 64.72743988 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296060 64.72789764 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296061 64.73064423 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296062 64.73107910 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296063 64.73416901 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296064 64.73455048 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296065 64.74008179 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296066 64.74046326 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296067 64.77243805 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296068 64.77288818 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296069 64.77727509 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296070 64.77769470 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296071 64.80756378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00296072 64.80757141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00296073 64.80759430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00296074 64.80760193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00296075 64.80763245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00296076 64.80763245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00296077 64.80765533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00296078 64.80765533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00296079 64.80767822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00296080 64.80768585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00296081 64.80770874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00296082 64.80770874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00296083 64.80773926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00296084 64.80774689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00296085 64.80776978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00296086 64.80776978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00296087 64.80779266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00296088 64.80779266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00296089 64.80782318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00296090 64.80783081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00296091 64.80785370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00296092 64.80785370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00296093 64.80787659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00296094 64.80787659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00296095 64.80790710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00296096 64.80790710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00296097 64.80793762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00296098 64.80793762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00296099 64.80796051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00296100 64.80796814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00296101 64.80799103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00296102 64.80799103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00296103 64.80802155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00296104 64.80802155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00296105 64.80804443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00296106 64.80805206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00296107 64.80807495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00296108 64.80807495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00296109 64.80810547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00296110 64.80810547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00313263 64.98167419 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -00313264 64.98167419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -00313265 64.98167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00313266 64.98167419 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -00313267 64.98167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00313268 64.98167419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -00313269 64.98170471 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -00313270 64.98170471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -00313271 64.98170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00313272 64.98170471 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -00313273 64.98170471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -00313274 64.98170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00313275 64.98172760 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -00313276 64.98172760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -00313277 64.98172760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00313278 64.98173523 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -00313279 64.98173523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -00313280 64.98173523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00313281 64.98175812 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -00313282 64.98175812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -00313283 64.98175812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00313284 64.98175812 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -00313285 64.98175812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -00313286 64.98175812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00313287 64.98178864 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -00313288 64.98178864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18518 -00313289 64.98178864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00313290 64.98178864 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -00313291 64.98178864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18518 -00313292 64.98178864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00313293 64.98181915 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -00313294 64.98181915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00313295 64.98181915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18528 -00313296 64.98182678 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -00313297 64.98182678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00313298 64.98182678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18528 -00313299 64.98184967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00313300 64.98184967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18538 -00313301 64.98184967 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -00313302 64.98184967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00313303 64.98184967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18538 -00313304 64.98185730 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -00313305 64.98187256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00313306 64.98187256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18548 -00322433 65.02726746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -00322434 65.02727509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -00322435 65.02727509 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf288 -00322436 65.02727509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -00322437 65.02727509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -00322438 65.02727509 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf288 -00322439 65.02730560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -00322440 65.02730560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -00322441 65.02730560 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf298 -00322442 65.02730560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -00322443 65.02730560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -00322444 65.02730560 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf298 -00322445 65.02733612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -00322446 65.02733612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -00322447 65.02733612 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2a8 -00322448 65.02733612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -00322449 65.02733612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -00322450 65.02733612 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2a8 -00322451 65.02735901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -00322452 65.02735901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -00322453 65.02735901 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2b8 -00322454 65.02736664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -00322455 65.02736664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -00322456 65.02736664 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2b8 -00322457 65.02738953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -00322458 65.02738953 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2c8 -00322459 65.02738953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e308 -00322460 65.02738953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -00322461 65.02738953 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2c8 -00322462 65.02738953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e308 -00322463 65.02742004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -00322464 65.02742004 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d8 -00322465 65.02742767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e318 -00322466 65.02742767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -00322467 65.02742767 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d8 -00322468 65.02742767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e318 -00322469 65.02745056 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e8 -00322470 65.02745056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -00322471 65.02745056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e328 -00322472 65.02745056 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e8 -00322473 65.02745056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -00322474 65.02745819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e328 -00322475 65.02747345 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2f8 -00322476 65.02747345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -00334063 65.08779144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f8 -00334064 65.08779144 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17208 -00334065 65.08779144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be8 -00334066 65.08779144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f8 -00334067 65.08779144 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17208 -00334068 65.08779144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be8 -00334069 65.08782196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10408 -00334070 65.08782196 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17218 -00334071 65.08782196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf8 -00334072 65.08782959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10408 -00334073 65.08782959 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17218 -00334074 65.08782959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf8 -00334075 65.08785248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10418 -00334076 65.08785248 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17228 -00334077 65.08785248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c08 -00334078 65.08785248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10418 -00334079 65.08785248 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17228 -00334080 65.08785248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c08 -00334081 65.08787537 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17238 -00334082 65.08787537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10428 -00334083 65.08787537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c18 -00334084 65.08788300 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17238 -00334085 65.08788300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10428 -00334086 65.08788300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c18 -00334087 65.08790588 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17248 -00334088 65.08791351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10438 -00334089 65.08791351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c28 -00334090 65.08791351 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17248 -00334091 65.08791351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10438 -00334092 65.08791351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c28 -00334093 65.08793640 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17258 -00334094 65.08793640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10448 -00334095 65.08793640 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17258 -00334096 65.08794403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c38 -00334097 65.08794403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10448 -00334098 65.08794403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c38 -00334099 65.08795929 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17268 -00334100 65.08796692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17268 -00334101 65.08796692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10458 -00334102 65.08796692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c48 -00334103 65.08796692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10458 -00334104 65.08796692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c48 -00334105 65.08798981 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17278 -00334106 65.08798981 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17278 -00345809 65.14621735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d8 -00345810 65.14621735 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee28 -00345811 65.14621735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -00345812 65.14621735 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee28 -00345813 65.14621735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -00345814 65.14621735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d8 -00345815 65.14624786 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee38 -00345816 65.14624786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -00345817 65.14624786 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee38 -00345818 65.14625549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -00345819 65.14625549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e8 -00345820 65.14625549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e8 -00345821 65.14627838 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee48 -00345822 65.14627838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -00345823 65.14627838 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee48 -00345824 65.14627838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -00345825 65.14627838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f8 -00345826 65.14628601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f8 -00345827 65.14630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -00345828 65.14630127 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee58 -00345829 65.14630890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -00345830 65.14630890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d508 -00345831 65.14630890 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee58 -00345832 65.14630890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d508 -00345833 65.14633942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -00345834 65.14633942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee68 -00345835 65.14633942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -00345836 65.14633942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee68 -00345837 65.14633942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d518 -00345838 65.14633942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d518 -00345839 65.14636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -00345840 65.14636230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee78 -00345841 65.14636993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -00345842 65.14636993 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee78 -00345843 65.14636993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d528 -00345844 65.14636993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d528 -00345845 65.14639282 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee88 -00345846 65.14639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -00345847 65.14639282 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee88 -00345848 65.14639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -00345849 65.14639282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d538 -00345850 65.14640045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d538 -00345851 65.14641571 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee98 -00345852 65.14641571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -00357077 65.20332336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34908 -00357078 65.20333099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f118 -00357079 65.20333099 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -00357080 65.20333099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34908 -00357081 65.20333099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f118 -00357082 65.20333099 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -00357083 65.20335388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34918 -00357084 65.20335388 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -00357085 65.20335388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f128 -00357086 65.20335388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34918 -00357087 65.20336151 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -00357088 65.20336151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f128 -00357089 65.20338440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34928 -00357090 65.20338440 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -00357091 65.20338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f138 -00357092 65.20338440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34928 -00357093 65.20338440 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -00357094 65.20338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f138 -00357095 65.20341492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34938 -00357096 65.20341492 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -00357097 65.20341492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f148 -00357098 65.20341492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34938 -00357099 65.20341492 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -00357100 65.20341492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f148 -00357101 65.20343781 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -00357102 65.20344543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34948 -00357103 65.20344543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -00357104 65.20344543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -00357105 65.20344543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34948 -00357106 65.20344543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -00357107 65.20346832 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -00357108 65.20346832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34958 -00357109 65.20346832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -00357110 65.20346832 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -00357111 65.20347595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34958 -00357112 65.20347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -00357113 65.20349121 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -00357114 65.20349884 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -00357115 65.20349884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34968 -00357116 65.20349884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -00357117 65.20349884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34968 -00357118 65.20349884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -00357119 65.20352936 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -00357120 65.20352936 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -00368397 65.26056671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26638 -00368398 65.26056671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc78 -00368399 65.26056671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb8 -00368400 65.26057434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26638 -00368401 65.26057434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc78 -00368402 65.26057434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb8 -00368403 65.26060486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26648 -00368404 65.26060486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc8 -00368405 65.26060486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26648 -00368406 65.26060486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc8 -00368407 65.26060486 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc88 -00368408 65.26060486 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc88 -00368409 65.26062775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26658 -00368410 65.26062775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd8 -00368411 65.26062775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26658 -00368412 65.26063538 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc98 -00368413 65.26063538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd8 -00368414 65.26063538 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc98 -00368415 65.26065826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26668 -00368416 65.26065826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde8 -00368417 65.26065826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26668 -00368418 65.26065826 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca8 -00368419 65.26065826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde8 -00368420 65.26066589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca8 -00368421 65.26068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26678 -00368422 65.26068115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf8 -00368423 65.26068878 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb8 -00368424 65.26068878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26678 -00368425 65.26068878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf8 -00368426 65.26068878 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb8 -00368427 65.26071930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26688 -00368428 65.26071930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be08 -00368429 65.26071930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc8 -00368430 65.26071930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26688 -00368431 65.26071930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be08 -00368432 65.26071930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc8 -00368433 65.26074219 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd8 -00368434 65.26074219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26698 -00368435 65.26074982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be18 -00368436 65.26074982 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd8 -00368437 65.26074982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26698 -00368438 65.26074982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be18 -00368439 65.26077271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dce8 -00368440 65.26077271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x266a8 -00409361 65.48196411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f8 -00409362 65.48197174 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb8 -00409363 65.48197174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f8 -00409364 65.48197174 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb8 -00409365 65.48199463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42408 -00409366 65.48199463 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc8 -00409367 65.48199463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42408 -00409368 65.48200226 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc8 -00409369 65.48202515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42418 -00409370 65.48202515 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd8 -00409371 65.48202515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42418 -00409372 65.48203278 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd8 -00409373 65.48205566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42428 -00409374 65.48206329 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe8 -00409375 65.48206329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42428 -00409376 65.48206329 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe8 -00409377 65.48208618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42438 -00409378 65.48208618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42438 -00409379 65.48209381 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf8 -00409380 65.48209381 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf8 -00409381 65.48210907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42448 -00409382 65.48211670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42448 -00409383 65.48211670 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac08 -00409384 65.48211670 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac08 -00409385 65.48214722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42458 -00409386 65.48214722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42458 -00409387 65.48214722 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac18 -00409388 65.48214722 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac18 -00409389 65.48217010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42468 -00409390 65.48217773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac28 -00409391 65.48217773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42468 -00409392 65.48217773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac28 -00409393 65.48220062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42478 -00409394 65.48220062 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac38 -00409395 65.48220062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42478 -00409396 65.48220825 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac38 -00409397 65.48222351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42488 -00409398 65.48223114 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac48 -00409399 65.48223114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42488 -00409400 65.48223114 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac48 -00409401 65.48226166 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac58 -00409402 65.48226166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42498 -00409403 65.48226929 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac58 -00409404 65.48226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42498 -00415355 65.52688599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a8 -00415356 65.52688599 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a8 -00415357 65.52688599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a8 -00415358 65.52688599 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a8 -00415359 65.52690887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -00415360 65.52691650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -00415361 65.52691650 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b8 -00415362 65.52691650 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b8 -00415363 65.52694702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -00415364 65.52694702 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c8 -00415365 65.52694702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -00415366 65.52694702 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c8 -00415367 65.52696991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -00415368 65.52697754 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d8 -00415369 65.52697754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -00415370 65.52697754 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d8 -00415371 65.52700043 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e8 -00415372 65.52700043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -00415373 65.52700043 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e8 -00415374 65.52700043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -00415375 65.52703094 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f8 -00415376 65.52703094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -00415377 65.52703094 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f8 -00415378 65.52703094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -00415379 65.52706146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a08 -00415380 65.52706146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a08 -00415381 65.52706146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -00415382 65.52706146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -00415383 65.52708435 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a18 -00415384 65.52708435 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a18 -00415385 65.52708435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -00415386 65.52709198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -00415387 65.52710724 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a28 -00415388 65.52710724 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a28 -00415389 65.52711487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -00415390 65.52711487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -00415391 65.52713776 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a38 -00415392 65.52714539 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a38 -00415393 65.52714539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -00415394 65.52714539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -00415395 65.52716827 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a48 -00415396 65.52716827 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a48 -00415397 65.52717590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -00415398 65.52717590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -00421177 65.59744263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e8 -00421178 65.59744263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e8 -00421179 65.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f8 -00421180 65.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f8 -00421181 65.59749603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51208 -00421182 65.59750366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51208 -00421183 65.59752655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51218 -00421184 65.59752655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51218 -00421185 65.59755707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51228 -00421186 65.59755707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51228 -00421187 65.59757996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51238 -00421188 65.59758759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51238 -00421189 65.59761047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51248 -00421190 65.59761047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51248 -00421191 65.59764099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51258 -00421192 65.59764099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51258 -00421193 65.59767914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51268 -00421194 65.59768677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51268 -00421195 65.59771729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51278 -00421196 65.59771729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51278 -00421197 65.59774017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51288 -00421198 65.59774017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51288 -00421199 65.59777069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51298 -00421200 65.59777069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51298 -00421201 65.59780121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512a8 -00421202 65.59780121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512a8 -00421203 65.59783936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512b8 -00421204 65.59783936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512b8 -00421205 65.59786224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512c8 -00421206 65.59786987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512c8 -00421207 65.59789276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512d8 -00421208 65.59789276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512d8 -00421209 65.59792328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512e8 -00421210 65.59793091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512e8 -00421211 65.59796143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512f8 -00421212 65.59796143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x512f8 -00421213 65.59798431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51308 -00421214 65.59798431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51308 -00421215 65.59800720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51318 -00421216 65.59801483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51318 -00421217 65.59804535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51328 -00421218 65.59804535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51328 -00421219 65.59806824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51338 -00421220 65.59807587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51338 -00422073 65.66059875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422074 65.66103363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422075 65.67273712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422076 65.67317963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422077 65.67689514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422078 65.67736053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422079 65.67981720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422080 65.68022156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422081 65.68103027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422082 65.68140411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422083 65.68816376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422084 65.68862152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422085 65.69181824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422086 65.69225311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422087 65.70375061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422088 65.70415497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422089 65.71842957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422090 65.71884918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422091 65.72235107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422092 65.72281647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422093 65.72634888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422094 65.72678375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422095 65.73364258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422096 65.73413086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422097 65.73712921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422098 65.73757935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422099 65.73787689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422100 65.73830414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422101 65.80594635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422102 65.81532288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422103 65.81575775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422104 65.87786102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422105 65.87832642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422106 65.87852478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422107 65.87895203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422108 65.88133240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422109 65.88177490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422110 65.88208008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422111 65.88249207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422112 65.88793182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422113 65.88838959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422114 65.89032745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422115 65.89076996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422116 65.89147186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422117 65.89190674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422118 65.90084839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422119 65.90128326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422120 65.93289948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422121 65.93335724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422122 65.93388367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422123 65.93433380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422124 65.93892670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422125 65.93936920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422126 65.95965576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422127 65.96009827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422128 65.96077728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422129 65.96123505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422130 65.96266937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422131 65.96302795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422132 65.96323395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422133 65.96363831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422134 65.96887970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422135 65.96929169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422136 65.97213745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422137 65.97249603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422138 65.97633362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422139 65.97676086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422140 65.97753906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422141 65.97797394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422142 65.98036957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422143 65.98078918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422144 65.98316193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422146 65.99018097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422147 65.99058533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422148 65.99312592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422149 65.99354553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422150 65.99475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422151 65.99520874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422152 65.99862671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422153 65.99905396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422154 66.00022125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422155 66.00069427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422156 66.01412964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422157 66.01461792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422158 66.01666260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422159 66.01708984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422160 66.01760864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422161 66.01807404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422162 66.01870728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422163 66.01911926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422164 66.02167511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422165 66.02210236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422166 66.02759552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422167 66.02802277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422168 66.03092957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422169 66.03131866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422170 66.03365326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422171 66.03410339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422172 66.03825378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422173 66.03866577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422174 66.03984833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422175 66.04027557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422176 66.04132843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422177 66.04175568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422178 66.04343414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422179 66.04386902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422180 66.04809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422181 66.04847717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422182 66.05895233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422183 66.05936432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422184 66.06298065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422185 66.06353760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422186 66.06606293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422187 66.06644440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422188 66.07262421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422189 66.07305908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422190 66.07344818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422191 66.07387543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422192 66.07937622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422193 66.07974243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422194 66.08247375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422195 66.08286285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422196 66.09057617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422197 66.09102631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422198 66.09471893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422199 66.09515381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422200 66.10224915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422201 66.10272980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422202 66.10476685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422203 66.10520172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422204 66.10574341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422205 66.10617828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422206 66.10760498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422207 66.10803223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422208 66.11608124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422209 66.11652374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422210 66.11827850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422211 66.11869049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422212 66.11932373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422213 66.11972046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422214 66.12339783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422215 66.12381744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422216 66.12675476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422217 66.12719727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422218 66.12917328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422219 66.12957764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422220 66.13175201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422221 66.13219452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422222 66.13475800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422223 66.13524628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422224 66.13809967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422225 66.13852692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422226 66.13996124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422227 66.14042664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422228 66.14109802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422229 66.14152527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422230 66.14253998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422231 66.14296722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422232 66.14433289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422233 66.14475250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422234 66.14823151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422235 66.14860535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422236 66.14898682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422237 66.14935303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422238 66.15002441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422239 66.15039063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422240 66.15170288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422241 66.15207672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422242 66.15233612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422243 66.15272522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422252 66.16433716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422253 66.16476440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422254 66.16989136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422255 66.17028809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422256 66.18737793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422257 66.18779755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422258 66.21501160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422259 66.21545410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422260 66.21571350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422261 66.21611786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422262 66.23207855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422263 66.23252106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422264 66.26042175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422265 66.26089478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422266 66.26146698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422267 66.26195526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422268 66.28144073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422269 66.28184509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422270 66.28251648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422271 66.28291321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422272 66.28573608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422273 66.28612518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422274 66.28652954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422275 66.28692627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422276 66.28818512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422277 66.28860474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422278 66.29174042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422279 66.29214478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422280 66.29301453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422281 66.29343414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422282 66.29505920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422283 66.29550934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422284 66.29614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422285 66.29656982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422286 66.29740143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422287 66.29783630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422288 66.30489349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422289 66.30533600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422290 66.31118011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422291 66.31158447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422292 66.31259918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422293 66.31301880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422294 66.31642151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422295 66.31684875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422296 66.31722260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422297 66.31764221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422298 66.32001495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422299 66.32043457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422300 66.35008240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422301 66.35054016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422302 66.35168457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422303 66.35211182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422304 66.35309601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422305 66.35355377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422306 66.35551453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422307 66.35592651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422308 66.35822296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422309 66.35864258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422310 66.36406708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422311 66.36449432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422360 66.47779846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422361 66.47816467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422362 66.48441315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422363 66.48478699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422364 66.48809052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422365 66.48848724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422366 66.48945618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422367 66.48983765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422368 66.49632263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422369 66.49671936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422370 66.49814606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422371 66.49851227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422372 66.50302887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422373 66.50340271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422374 66.50514221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422375 66.50550079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422376 66.50644684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422377 66.50681305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422378 66.51058197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422379 66.51096344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422380 66.51566315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422381 66.51601410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422382 66.51895142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422383 66.51934052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422384 66.52301025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422385 66.52339935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422386 66.52426147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422387 66.52461243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422388 66.53357697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422389 66.53394318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422390 66.53616333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422391 66.53654480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422392 66.53762817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422393 66.53798676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422394 66.54621124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422395 66.54656219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422396 66.54998016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422397 66.55032349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422398 66.55253601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422399 66.55292511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422400 66.55546570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422401 66.55586243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422402 66.55629730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422403 66.55666351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422530 66.75777435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422531 66.75816345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422532 66.76266479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422533 66.76303101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422534 66.76454163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422535 66.76486969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422536 66.76718903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422537 66.76759338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422538 66.77463531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422539 66.77502441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422540 66.78678131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422541 66.78721619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422542 66.78784180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422543 66.78821564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422544 66.78837585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422545 66.78878021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422546 66.79769897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422547 66.79807281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422548 66.79882050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422549 66.79933167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422550 66.79972076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422551 66.80018616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422552 66.80072784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422553 66.80108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422554 66.80323792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422555 66.80361938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422556 66.80584717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422557 66.80620575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422558 66.80641937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422559 66.80677795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422560 66.80764771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422561 66.80800629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422562 66.81443024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422563 66.81478882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422564 66.81983185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422565 66.82021332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422566 66.82084656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422567 66.82125092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422568 66.82464600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422569 66.82506561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422570 66.83344269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422571 66.83383942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422572 66.83421326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422573 66.83460999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422642 66.98208618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422643 66.98246765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422644 66.98389435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422645 66.98426819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422646 66.98589325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422647 66.98625946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422648 66.98882294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422649 66.98917389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422650 66.99105835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422651 66.99143982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422652 66.99418640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422653 66.99459839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422654 66.99625397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422655 66.99665070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422656 67.00006866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422657 67.00041962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422658 67.00177765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422659 67.00216675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422660 67.00423431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422661 67.00463104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422662 67.00924683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422663 67.00960541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422664 67.01246643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422665 67.01284027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422666 67.01370239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422667 67.01406097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422668 67.01662445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422669 67.01699829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422670 67.01779938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422671 67.01818848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422672 67.02053070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422673 67.02095795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422674 67.02411652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422675 67.02455902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422676 67.02583313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422677 67.02626038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422678 67.09407043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422679 67.16222382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422680 67.23538208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422681 67.30393219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422682 67.37161255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422683 67.43974304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422684 67.50753021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422685 67.57536316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422686 67.64408875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422687 67.71194458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422688 67.77973175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422689 67.84739685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422690 67.91554260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422691 67.98229218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422692 68.05006409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422693 68.11825562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422694 68.15770721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422695 68.15817261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422696 68.15840149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422697 68.15885162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422698 68.15959167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422699 68.16003418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422700 68.16020966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422701 68.16062164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422702 68.16089630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422703 68.16133118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422704 68.17270660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422705 68.17312622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422706 68.18363190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422707 68.18399048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422708 68.19995880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422709 68.20040894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422710 68.21603394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422711 68.21640778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422712 68.23782349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422713 68.23825073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422714 68.24037170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422715 68.24077606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422716 68.24549866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422717 68.24587250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422718 68.27532196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422719 68.27574921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422720 68.27834320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422721 68.27873993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422722 68.27993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422723 68.28035736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422724 68.28826141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422725 68.28870392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422726 68.30126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422727 68.30173492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422728 68.30326843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422729 68.30371094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422730 68.30697632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422731 68.30738831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422732 68.35272217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422733 68.35315704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422734 68.35527802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422735 68.35569000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422736 68.38378906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422737 68.38424683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422738 68.41089630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422739 68.41133118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422740 68.41201782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422741 68.41243744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422742 68.44107819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422743 68.44153595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422744 68.45628357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422745 68.45671844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422746 68.47277069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422747 68.47322845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422748 68.47395325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422749 68.47440338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422750 68.47742462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422751 68.47787476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422752 68.50530243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422753 68.50576019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422754 68.51631927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422755 68.51673889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422756 68.52960968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422757 68.53001404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422758 68.53780365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422759 68.53826141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422760 68.54871368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422761 68.54914856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422762 68.56317902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422763 68.56359863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422764 68.56668091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422765 68.56712341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422766 68.56896210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422767 68.56932831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422768 68.57032013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422769 68.57068634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422770 68.58705139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422771 68.58748627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422772 68.58885193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422773 68.58927917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422774 68.61318970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422775 68.61357117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422776 68.62050629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422777 68.62090302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422778 68.64475250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422779 68.64518738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422780 68.67969513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422781 68.68016052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422782 68.69055939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422783 68.69097900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422784 68.69763947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422785 68.69809723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422786 68.70014954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422787 68.70057678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422788 68.70146179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422789 68.70186615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422790 68.70423126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422791 68.70475006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422792 68.71403503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422793 68.71446228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422794 68.72689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422795 68.72743988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422796 68.72847748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422797 68.72893524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422798 68.72980499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422799 68.73030090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422800 68.73177338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422801 68.73228455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422802 68.73346710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422803 68.73399353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422804 68.75080109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422805 68.75127411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422806 68.75450897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422807 68.75504303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422808 68.78042603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422809 68.78086090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422810 68.80975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422811 68.81018066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422812 68.81700897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422813 68.81742859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422814 68.88570404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422815 68.88852692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422816 68.88896179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422817 68.89714813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422818 68.89758301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422819 68.89950562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422820 68.89994049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422821 68.90422058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422822 68.90469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422823 68.90959167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422824 68.91002655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422825 68.94350433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422826 68.94396210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422827 68.96125793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422828 68.96169281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422829 69.02980804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422830 69.03120422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422831 69.03164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422832 69.03497314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422833 69.03536987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422834 69.03888702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422835 69.03933716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422836 69.04572296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422837 69.04608917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422838 69.05975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422839 69.06013489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422840 69.06318665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422841 69.06364441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422842 69.06892395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422843 69.06932831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422844 69.07064056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422845 69.07102966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422846 69.07785034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422847 69.07822418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422848 69.09634399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422849 69.09684753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422850 69.09707642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422851 69.09751129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422852 69.09987640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422853 69.10032654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422854 69.10998535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422855 69.11042023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422856 69.11224365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422857 69.11267853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422858 69.11326599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422859 69.11370087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422860 69.11975098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422861 69.12014008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422862 69.12274170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422863 69.12316132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422864 69.12876129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422865 69.12921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422866 69.13080597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422867 69.13123322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422868 69.14220428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422869 69.14256287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422870 69.16317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422871 69.16361237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422872 69.16550446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422873 69.16596222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422874 69.20668030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422875 69.20713806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422876 69.20767975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422877 69.20812225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422878 69.21673584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422879 69.21715546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422880 69.25929260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422881 69.25972748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422882 69.26334381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422883 69.26373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422884 69.26791382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422885 69.26832581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422886 69.26937866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422887 69.26972961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422888 69.27044678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422889 69.27080536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422890 69.27401733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422891 69.27440643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422892 69.29637909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422893 69.29678345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422894 69.29925537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422895 69.29967499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422896 69.30626678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422897 69.30666351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422898 69.35220337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422899 69.35260773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422900 69.36228180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422901 69.36267853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422902 69.37303925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422903 69.37339020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422904 69.37762451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422905 69.37800598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422906 69.37970734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422907 69.38006592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422908 69.39764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422909 69.39806366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422910 69.43668365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422911 69.43707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422912 69.45968628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422913 69.46013641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422914 69.46348572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422915 69.46385193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422916 69.47089386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422917 69.47130585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422918 69.47853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422919 69.47891235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422920 69.48438263 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422921 69.48442841 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422922 69.48445129 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00422923 69.48445892 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00422924 69.48458862 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422925 69.48459625 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00422926 69.48464966 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422927 69.48468018 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00422928 69.49989319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422929 69.50028992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422930 69.51010895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422931 69.51050568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422932 69.51498413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422933 69.51537323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422934 69.52841949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422935 69.52880096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422936 69.52974701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422937 69.53011322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422938 69.53285217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422939 69.53324890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422940 69.53723145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422941 69.53763580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422942 69.56205750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422943 69.56248474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422944 69.56264496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422945 69.56307983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422946 69.61340332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422947 69.61383057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422948 69.62042999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422949 69.62086487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422950 69.64160919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422951 69.64206696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422952 69.65188599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422953 69.65225983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422954 69.67260742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422955 69.67314148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422956 69.71034241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422957 69.71091461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422958 69.72340393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422959 69.72377777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422960 69.73161316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422961 69.73204803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422962 69.73945618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422963 69.73995209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422964 69.75916290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422965 69.75960541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422966 69.78918457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422967 69.78956604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422968 69.79726410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53358 -00422969 69.79863739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422970 69.79870605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422971 69.79892731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422972 69.79895020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422973 69.79898834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422974 69.79910278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422975 69.79930878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422976 69.79933167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422977 69.79936981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422978 69.79948425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422979 69.79968262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422980 69.79970551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422981 69.79973602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422982 69.79984283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422983 69.80004120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422984 69.80005646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422985 69.80009460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422986 69.80020142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422987 69.80039215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422988 69.80041504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422989 69.80045319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422990 69.80056000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422991 69.80075073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422992 69.80076599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422993 69.80080414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422994 69.80091095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422995 69.80111694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00422996 69.80113983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422997 69.80117035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00422998 69.80127716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00422999 69.80147552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423000 69.80149078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423001 69.80152893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423002 69.80163574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423003 69.80182648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423004 69.80184937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423005 69.80188751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423006 69.80319977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423007 69.80339050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423045 69.81047058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423046 69.81076813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423047 69.81096649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423048 69.81098938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423049 69.81102753 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423050 69.81112671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423051 69.81132507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423052 69.81134796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423053 69.81138611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423054 69.81407166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423055 69.81427002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423056 69.81429291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423057 69.81433105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423058 69.81443024 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423059 69.81462860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423060 69.81465149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423061 69.81468964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423062 69.81701660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423063 69.81723785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423064 69.81728363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423065 69.81732178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423066 69.81743622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423067 69.81762695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423068 69.81764984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423069 69.81768799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423070 69.81779480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423071 69.81799316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423072 69.81802368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423073 69.81806183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423074 69.81816101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423075 69.81835175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423076 69.81838226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423077 69.81842041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423078 69.81853485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423079 69.81874084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423080 69.81876373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423081 69.81880188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423082 69.81890869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423083 69.81911469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423084 69.81914520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423085 69.81918335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00423086 69.81928253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00423087 69.81948090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00423088 69.81950378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00427425 69.97928619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -00427426 69.97928619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -00427427 69.97931671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -00427428 69.97931671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -00427429 69.97933960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -00427430 69.97934723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -00427431 69.97937012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -00427432 69.97937012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -00427433 69.97940826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -00427434 69.97940826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -00427435 69.97943115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -00427436 69.97943115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -00427437 69.97945404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -00427438 69.97946167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -00427439 69.97948456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -00427440 69.97948456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -00427441 69.97952271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -00427442 69.97952271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -00427443 69.97955322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -00427444 69.97955322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -00427445 69.97957611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -00427446 69.97957611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -00427447 69.97960663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -00427448 69.97960663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -00427449 69.97963715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -00427450 69.97964478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -00427451 69.97966766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -00427452 69.97966766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -00427453 69.97969055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -00427454 69.97969818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -00427455 69.97972107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -00427456 69.97972107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -00427457 69.97975159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -00427458 69.97975159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -00427459 69.97977448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -00427460 69.97977448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -00427461 69.97980499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -00427462 69.97980499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -00427463 69.97982788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -00427464 69.97983551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -00427465 69.97985840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -00427466 69.97985840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -00427467 69.97988129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -00427468 69.97988129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -00430801 70.02763367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -00430802 70.02764130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -00430803 70.02766418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -00430804 70.02766418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -00430805 70.02769470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -00430806 70.02769470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -00430807 70.02771759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -00430808 70.02771759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -00430809 70.02774048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -00430810 70.02774811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -00430811 70.02777863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -00430812 70.02777863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -00430813 70.02780151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -00430814 70.02780914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -00430815 70.02783203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -00430816 70.02783203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -00430817 70.02786255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -00430818 70.02786255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -00430819 70.02788544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -00430820 70.02789307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -00430821 70.02791595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -00430822 70.02791595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -00430823 70.02793884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -00430824 70.02793884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -00430825 70.02796936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd98 -00430826 70.02797699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd98 -00430827 70.02799988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda8 -00430828 70.02799988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda8 -00430829 70.02802277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -00430830 70.02803040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -00430831 70.02806091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -00430832 70.02806091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -00430833 70.02808380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -00430834 70.02808380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -00430835 70.02810669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -00430836 70.02811432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -00430837 70.02813721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -00430838 70.02813721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -00430839 70.02816772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -00430840 70.02816772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -00430841 70.02819061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -00430842 70.02819824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -00430843 70.02822113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -00430844 70.02822113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -00435221 70.09044647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16658 -00435222 70.09045410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16658 -00435223 70.09047699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16668 -00435224 70.09047699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16668 -00435225 70.09049988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -00435226 70.09050751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -00435227 70.09053802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -00435228 70.09053802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -00435229 70.09056091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -00435230 70.09056854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -00435231 70.09059143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -00435232 70.09059143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -00435233 70.09061432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -00435234 70.09061432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -00435235 70.09064484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -00435236 70.09065247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -00435237 70.09067535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -00435238 70.09068298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -00435239 70.09069824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e8 -00435240 70.09070587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e8 -00435241 70.09073639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f8 -00435242 70.09073639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f8 -00435243 70.09075928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16708 -00435244 70.09075928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16708 -00435245 70.09078217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16718 -00435246 70.09078979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16718 -00435247 70.09081268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16728 -00435248 70.09081268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16728 -00435249 70.09084320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16738 -00435250 70.09084320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16738 -00435251 70.09086609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16748 -00435252 70.09086609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16748 -00435253 70.09089661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16758 -00435254 70.09089661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16758 -00435255 70.09091949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16768 -00435256 70.09092712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16768 -00435257 70.09094238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16778 -00435258 70.09095001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16778 -00435259 70.09097290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16788 -00435260 70.09097290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16788 -00435261 70.09100342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16798 -00435262 70.09100342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16798 -00435263 70.09103394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a8 -00435264 70.09103394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a8 -00439462 70.15070343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00439463 70.15070343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea48 -00439464 70.15070343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea48 -00439465 70.15073395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea58 -00439466 70.15074158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea58 -00439467 70.15076447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea68 -00439468 70.15076447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea68 -00439469 70.15078735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea78 -00439470 70.15079498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea78 -00439471 70.15082550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea88 -00439472 70.15082550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea88 -00439473 70.15084839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea98 -00439474 70.15084839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea98 -00439475 70.15087128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa8 -00439476 70.15087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa8 -00439477 70.15090179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab8 -00439478 70.15090179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab8 -00439479 70.15093231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac8 -00439480 70.15093231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac8 -00439481 70.15095520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead8 -00439482 70.15095520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead8 -00439483 70.15098572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae8 -00439484 70.15098572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae8 -00439485 70.15100861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf8 -00439486 70.15101624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf8 -00439487 70.15103912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb08 -00439488 70.15103912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb08 -00439489 70.15106201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb18 -00439490 70.15106201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb18 -00439491 70.15109253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb28 -00439492 70.15109253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb28 -00439493 70.15111542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb38 -00439494 70.15112305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb38 -00439495 70.15114594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb48 -00439496 70.15114594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb48 -00439497 70.15117645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb58 -00439498 70.15117645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb58 -00439499 70.15119934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb68 -00439500 70.15119934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb68 -00439501 70.15122223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb78 -00439502 70.15122986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb78 -00439503 70.15125275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb88 -00439504 70.15126038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb88 -00439505 70.15128326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb98 -00443525 70.20951080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26878 -00443526 70.20951843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26878 -00443527 70.20954132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26888 -00443528 70.20954132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26888 -00443529 70.20956421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26898 -00443530 70.20957184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26898 -00443531 70.20960236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268a8 -00443532 70.20960236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268a8 -00443533 70.20962524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b8 -00443534 70.20962524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b8 -00443535 70.20964813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c8 -00443536 70.20965576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c8 -00443537 70.20967865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d8 -00443538 70.20968628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d8 -00443539 70.20970917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e8 -00443540 70.20970917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e8 -00443541 70.20973206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f8 -00443542 70.20973206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f8 -00443543 70.20976257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26908 -00443544 70.20976257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26908 -00443545 70.20978546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26918 -00443546 70.20979309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26918 -00443547 70.20980835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26928 -00443548 70.20981598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26928 -00443549 70.20983887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26938 -00443550 70.20984650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26938 -00443551 70.20986938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26948 -00443552 70.20986938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26948 -00443553 70.20989227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26958 -00443554 70.20989227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26958 -00443555 70.20992279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26968 -00443556 70.20992279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26968 -00443557 70.20994568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26978 -00443558 70.20995331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26978 -00443559 70.20996857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26988 -00443560 70.20997620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26988 -00443561 70.21000671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26998 -00443562 70.21000671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26998 -00443563 70.21002960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x269a8 -00443564 70.21002960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x269a8 -00443565 70.21005249 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x269b8 -00443566 70.21005249 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x269b8 -00443567 70.21008301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x269c8 -00443568 70.21008301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x269c8 -00447973 70.27410126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f288 -00447974 70.27410889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f288 -00447975 70.27413177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f298 -00447976 70.27413177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f298 -00447977 70.27415466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a8 -00447978 70.27415466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a8 -00447979 70.27418518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -00447980 70.27418518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -00447981 70.27421570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -00447982 70.27421570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -00447983 70.27423859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -00447984 70.27423859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -00447985 70.27426910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -00447986 70.27426910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -00447987 70.27429962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -00447988 70.27429962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -00447989 70.27432251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -00447990 70.27433014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -00447991 70.27435303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -00447992 70.27435303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -00447993 70.27438354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -00447994 70.27438354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -00447995 70.27440643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -00447996 70.27441406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -00447997 70.27443695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -00447998 70.27443695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -00447999 70.27446747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -00448000 70.27446747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -00448001 70.27449799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -00448002 70.27449799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -00448003 70.27452087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -00448004 70.27452087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -00448005 70.27454376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -00448006 70.27455139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -00448007 70.27458191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -00448008 70.27458191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -00448009 70.27460480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -00448010 70.27460480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -00448011 70.27462769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -00448012 70.27463531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -00448013 70.27466583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -00448014 70.27466583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -00448015 70.27468872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -00448016 70.27468872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -00465459 70.48628235 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -00465460 70.48628998 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad8 -00465461 70.48628998 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -00465462 70.48628998 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad8 -00465463 70.48632050 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -00465464 70.48632050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae8 -00465465 70.48632050 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -00465466 70.48632050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae8 -00465467 70.48635101 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -00465468 70.48635101 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf8 -00465469 70.48635101 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -00465470 70.48635101 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf8 -00465471 70.48637390 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -00465472 70.48637390 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb08 -00465473 70.48638153 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -00465474 70.48638153 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb08 -00465475 70.48640442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -00465476 70.48640442 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb18 -00465477 70.48640442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -00465478 70.48640442 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb18 -00465479 70.48643494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb28 -00465480 70.48643494 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -00465481 70.48643494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb28 -00465482 70.48643494 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -00465483 70.48646545 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb38 -00465484 70.48646545 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -00465485 70.48646545 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb38 -00465486 70.48646545 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -00465487 70.48648834 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb48 -00465488 70.48648834 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -00465489 70.48649597 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb48 -00465490 70.48649597 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -00465491 70.48651886 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb58 -00465492 70.48651886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -00465493 70.48651886 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb58 -00465494 70.48651886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -00465495 70.48654938 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb68 -00465496 70.48655701 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -00465497 70.48655701 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb68 -00465498 70.48655701 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -00465499 70.48657990 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb78 -00465500 70.48657990 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -00465501 70.48657990 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb78 -00465502 70.48657990 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -00472005 70.53683472 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -00472006 70.53683472 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -00472007 70.53684235 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -00472008 70.53684235 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -00472009 70.53687286 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -00472010 70.53687286 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -00472011 70.53687286 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -00472012 70.53687286 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -00472013 70.53689575 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -00472014 70.53689575 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -00472015 70.53690338 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -00472016 70.53690338 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -00472017 70.53692627 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -00472018 70.53692627 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -00472019 70.53692627 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -00472020 70.53693390 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -00472021 70.53695679 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -00472022 70.53695679 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -00472023 70.53695679 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52268 -00472024 70.53695679 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52268 -00472025 70.53698730 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -00472026 70.53698730 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52278 -00472027 70.53698730 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -00472028 70.53699493 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52278 -00472029 70.53701782 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -00472030 70.53701782 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52288 -00472031 70.53701782 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -00472032 70.53701782 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52288 -00472033 70.53704071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52298 -00472034 70.53704071 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -00472035 70.53704071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x52298 -00472036 70.53704834 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -00472037 70.53707123 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a8 -00472038 70.53707886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -00472039 70.53707886 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a8 -00472040 70.53707886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -00472041 70.53710175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b8 -00472042 70.53710175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b8 -00472043 70.53710175 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -00472044 70.53710938 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -00472045 70.53712463 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c8 -00472046 70.53712463 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c8 -00472047 70.53713226 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -00472048 70.53713226 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -00479551 70.59589386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -00479552 70.59589386 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14328 -00479553 70.59589386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -00479554 70.59589386 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14328 -00479555 70.59591675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -00479556 70.59592438 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14338 -00479557 70.59592438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -00479558 70.59592438 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14338 -00479559 70.59594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -00479560 70.59594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -00479561 70.59594727 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14348 -00479562 70.59595490 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14348 -00479563 70.59597778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -00479564 70.59597778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -00479565 70.59597778 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14358 -00479566 70.59597778 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14358 -00479567 70.59600067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -00479568 70.59600830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -00479569 70.59600830 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14368 -00479570 70.59601593 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14368 -00479571 70.59603119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -00479572 70.59603119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -00479573 70.59603882 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14378 -00479574 70.59603882 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14378 -00479575 70.59605408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -00479576 70.59605408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -00479577 70.59606171 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14388 -00479578 70.59606934 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14388 -00479579 70.59608459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -00479580 70.59609222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -00479581 70.59609222 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14398 -00479582 70.59609222 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14398 -00479583 70.59611511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -00479584 70.59611511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -00479585 70.59612274 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a8 -00479586 70.59612274 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a8 -00479587 70.59613800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -00479588 70.59613800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -00479589 70.59615326 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b8 -00479590 70.59615326 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b8 -00479591 70.59616852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -00479592 70.59617615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -00479593 70.59617615 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c8 -00479594 70.59617615 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c8 -00489552 70.65260315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -00489553 70.65260315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed48 -00489554 70.65260315 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b8 -00489555 70.65260315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -00489556 70.65260315 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b8 -00489557 70.65262604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed58 -00489558 70.65262604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -00489559 70.65262604 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c8 -00489560 70.65263367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed58 -00489561 70.65263367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -00489562 70.65263367 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c8 -00489563 70.65265656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed68 -00489564 70.65265656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -00489565 70.65265656 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d8 -00489566 70.65265656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed68 -00489567 70.65265656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -00489568 70.65265656 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d8 -00489569 70.65268707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -00489570 70.65268707 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e8 -00489571 70.65269470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -00489572 70.65269470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -00489573 70.65269470 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e8 -00489574 70.65269470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -00489575 70.65271759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -00489576 70.65271759 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f8 -00489577 70.65271759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed88 -00489578 70.65272522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -00489579 70.65272522 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f8 -00489580 70.65272522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed88 -00489581 70.65274811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed98 -00489582 70.65274811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -00489583 70.65274811 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b608 -00489584 70.65274811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xed98 -00489585 70.65274811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -00489586 70.65274811 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b608 -00489587 70.65277100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -00489588 70.65277100 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b618 -00489589 70.65277863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda8 -00489590 70.65277863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -00489591 70.65277863 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b618 -00489592 70.65277863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda8 -00489593 70.65280914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -00489594 70.65280914 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b628 -00489595 70.65280914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb8 -00500129 70.70777893 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -00500130 70.70777893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f28 -00500131 70.70778656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -00500132 70.70778656 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -00500133 70.70778656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f28 -00500134 70.70778656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -00500135 70.70781708 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -00500136 70.70781708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f38 -00500137 70.70781708 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -00500138 70.70781708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -00500139 70.70781708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f38 -00500140 70.70781708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -00500141 70.70783997 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -00500142 70.70784760 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -00500143 70.70784760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f48 -00500144 70.70784760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -00500145 70.70784760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f48 -00500146 70.70784760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -00500147 70.70787048 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -00500148 70.70787048 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -00500149 70.70787048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f58 -00500150 70.70787048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -00500151 70.70787811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f58 -00500152 70.70787811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -00500153 70.70790100 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -00500154 70.70790100 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -00500155 70.70790100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f68 -00500156 70.70790100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -00500157 70.70790100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f68 -00500158 70.70790100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -00500159 70.70792389 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -00500160 70.70793152 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -00500161 70.70793152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f78 -00500162 70.70793915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -00500163 70.70793915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f78 -00500164 70.70793915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -00500165 70.70795441 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -00500166 70.70795441 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -00500167 70.70796204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f88 -00500168 70.70796204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -00500169 70.70796967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f88 -00500170 70.70796967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -00500171 70.70797729 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -00500172 70.70798492 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -00512083 70.76831818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd18 -00512084 70.76831818 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ca8 -00512085 70.76831818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14798 -00512086 70.76831818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd18 -00512087 70.76832581 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ca8 -00512088 70.76832581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14798 -00512089 70.76834869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd28 -00512090 70.76834869 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cb8 -00512091 70.76834869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147a8 -00512092 70.76834869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd28 -00512093 70.76834869 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cb8 -00512094 70.76834869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147a8 -00512095 70.76837921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd38 -00512096 70.76837921 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cc8 -00512097 70.76837921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147b8 -00512098 70.76838684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd38 -00512099 70.76838684 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cc8 -00512100 70.76838684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147b8 -00512101 70.76840973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd48 -00512102 70.76840973 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cd8 -00512103 70.76840973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147c8 -00512104 70.76840973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd48 -00512105 70.76840973 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cd8 -00512106 70.76840973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147c8 -00512107 70.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd58 -00512108 70.76843262 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce8 -00512109 70.76843262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147d8 -00512110 70.76844025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd58 -00512111 70.76844025 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce8 -00512112 70.76844025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147d8 -00512113 70.76847076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd68 -00512114 70.76847076 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf8 -00512115 70.76847076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e8 -00512116 70.76847076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd68 -00512117 70.76847076 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf8 -00512118 70.76847076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e8 -00512119 70.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd78 -00512120 70.76850128 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d08 -00512121 70.76850128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f8 -00512122 70.76850128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd78 -00512123 70.76850128 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d08 -00512124 70.76850128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f8 -00512125 70.76852417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd88 -00512126 70.76852417 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d18 -00554007 70.98164368 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -00554008 70.98164368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb8 -00554009 70.98164368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f598 -00554010 70.98164368 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -00554011 70.98164368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb8 -00554012 70.98165131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f598 -00554013 70.98167419 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -00554014 70.98167419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc8 -00554015 70.98167419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a8 -00554016 70.98167419 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -00554017 70.98167419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc8 -00554018 70.98167419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a8 -00554019 70.98170471 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -00554020 70.98170471 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -00554021 70.98170471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd8 -00554022 70.98170471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b8 -00554023 70.98171234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd8 -00554024 70.98171234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b8 -00554025 70.98172760 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -00554026 70.98173523 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -00554027 70.98173523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c8 -00554028 70.98173523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce8 -00554029 70.98173523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c8 -00554030 70.98174286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce8 -00554031 70.98175812 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -00554032 70.98175812 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -00554033 70.98175812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d8 -00554034 70.98176575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d8 -00554035 70.98176575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf8 -00554036 70.98177338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf8 -00554037 70.98178864 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -00554038 70.98178864 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -00554039 70.98178864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e8 -00554040 70.98178864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e8 -00554041 70.98179626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d08 -00554042 70.98179626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d08 -00554043 70.98181915 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -00554044 70.98181915 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -00554045 70.98181915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f8 -00554046 70.98182678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f8 -00554047 70.98182678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d18 -00554048 70.98182678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d18 -00554049 70.98184204 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -00554050 70.98184204 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -00562387 71.02341461 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a058 -00562388 71.02341461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -00562389 71.02341461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c98 -00562390 71.02341461 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a058 -00562391 71.02342224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -00562392 71.02342224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c98 -00562393 71.02344513 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a068 -00562394 71.02345276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -00562395 71.02345276 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a068 -00562396 71.02345276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca8 -00562397 71.02345276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -00562398 71.02345276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca8 -00562399 71.02347565 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a078 -00562400 71.02347565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -00562401 71.02347565 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a078 -00562402 71.02347565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -00562403 71.02348328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb8 -00562404 71.02348328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb8 -00562405 71.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -00562406 71.02349854 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a088 -00562407 71.02350616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -00562408 71.02350616 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a088 -00562409 71.02350616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc8 -00562410 71.02350616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc8 -00562411 71.02352905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -00562412 71.02352905 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a098 -00562413 71.02352905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -00562414 71.02352905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd8 -00562415 71.02353668 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a098 -00562416 71.02353668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd8 -00562417 71.02355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -00562418 71.02355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -00562419 71.02356720 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0a8 -00562420 71.02356720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce8 -00562421 71.02356720 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0a8 -00562422 71.02356720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce8 -00562423 71.02358246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -00562424 71.02359009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -00562425 71.02359009 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0b8 -00562426 71.02359009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf8 -00562427 71.02359009 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0b8 -00562428 71.02359772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf8 -00562429 71.02361298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -00562430 71.02361298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -00574767 71.08766174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc28 -00574768 71.08766174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477c8 -00574769 71.08766174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f38 -00574770 71.08766937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477c8 -00574771 71.08768463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc38 -00574772 71.08768463 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f48 -00574773 71.08769226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc38 -00574774 71.08769226 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f48 -00574775 71.08769989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477d8 -00574776 71.08769989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477d8 -00574777 71.08771515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc48 -00574778 71.08771515 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f58 -00574779 71.08771515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc48 -00574780 71.08771515 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f58 -00574781 71.08772278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477e8 -00574782 71.08773041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477e8 -00574783 71.08774567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc58 -00574784 71.08774567 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f68 -00574785 71.08775330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc58 -00574786 71.08775330 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f68 -00574787 71.08775330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477f8 -00574788 71.08776093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x477f8 -00574789 71.08777618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc68 -00574790 71.08777618 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f78 -00574791 71.08777618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc68 -00574792 71.08777618 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f78 -00574793 71.08779144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47808 -00574794 71.08779144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47808 -00574795 71.08779907 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f88 -00574796 71.08779907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc78 -00574797 71.08780670 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f88 -00574798 71.08780670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc78 -00574799 71.08781433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47818 -00574800 71.08782196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47818 -00574801 71.08783722 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f98 -00574802 71.08783722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc88 -00574803 71.08783722 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f98 -00574804 71.08783722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc88 -00574805 71.08784485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47828 -00574806 71.08784485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47828 -00574807 71.08786011 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fa8 -00574808 71.08786011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc98 -00574809 71.08786011 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fa8 -00574810 71.08786774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc98 -00582591 71.14288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc8 -00582592 71.14288330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d18 -00582593 71.14288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc8 -00582594 71.14289093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d18 -00582595 71.14291382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd8 -00582596 71.14292145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d28 -00582597 71.14292145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd8 -00582598 71.14292145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d28 -00582599 71.14294434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece8 -00582600 71.14294434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece8 -00582601 71.14294434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d38 -00582602 71.14295197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d38 -00582603 71.14296722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf8 -00582604 71.14296722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf8 -00582605 71.14297485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d48 -00582606 71.14297485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d48 -00582607 71.14299774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed08 -00582608 71.14300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed08 -00582609 71.14300537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d58 -00582610 71.14300537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d58 -00582611 71.14302826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed18 -00582612 71.14302826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed18 -00582613 71.14303589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d68 -00582614 71.14303589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d68 -00582615 71.14305115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed28 -00582616 71.14305115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed28 -00582617 71.14305878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d78 -00582618 71.14306641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d78 -00582619 71.14308167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed38 -00582620 71.14308167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed38 -00582621 71.14308929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d88 -00582622 71.14308929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d88 -00582623 71.14311218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed48 -00582624 71.14311218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed48 -00582625 71.14311981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d98 -00582626 71.14311981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d98 -00582627 71.14313507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed58 -00582628 71.14313507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed58 -00582629 71.14314270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43da8 -00582630 71.14315033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43da8 -00582631 71.14315796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed68 -00582632 71.14315796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed68 -00582633 71.14317322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43db8 -00582634 71.14317322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43db8 -00588429 71.19732666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e8 -00588430 71.19732666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e8 -00588431 71.19734955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f8 -00588432 71.19735718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f8 -00588433 71.19738007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b308 -00588434 71.19738007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b308 -00588435 71.19741058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b318 -00588436 71.19741821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b318 -00588437 71.19744110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b328 -00588438 71.19744110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b328 -00588439 71.19746399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b338 -00588440 71.19746399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b338 -00588441 71.19749451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b348 -00588442 71.19749451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b348 -00588443 71.19752502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b358 -00588444 71.19752502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b358 -00588445 71.19754791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b368 -00588446 71.19755554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b368 -00588447 71.19757843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -00588448 71.19757843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -00588449 71.19760895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -00588450 71.19760895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -00588451 71.19763184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -00588452 71.19763947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -00588453 71.19766235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -00588454 71.19766235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -00588455 71.19769287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -00588456 71.19769287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -00588457 71.19771576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -00588458 71.19772339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -00588459 71.19774628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -00588460 71.19774628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -00588461 71.19776917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e8 -00588462 71.19777679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e8 -00588463 71.19780731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -00588464 71.19780731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -00588465 71.19783020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -00588466 71.19783020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -00588467 71.19785309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -00588468 71.19786072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -00588469 71.19789124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b428 -00588470 71.19789124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b428 -00588471 71.19791412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b438 -00588472 71.19791412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b438 -00592346 71.29503632 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592347 71.29547882 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592348 71.34349060 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592349 71.34396362 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592350 71.36561584 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592351 71.36607361 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592352 71.37014771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592353 71.37058258 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592354 71.37142181 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592355 71.37187195 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592356 71.43808746 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592357 71.50620270 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592358 71.57456207 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592359 71.64284515 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592360 71.65396118 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592361 71.65436554 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592362 71.65541840 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592363 71.65579224 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592364 71.65765381 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592365 71.65805817 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592366 71.68264008 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592367 71.68305206 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592368 71.68762207 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592369 71.68807220 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592370 71.69071198 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592371 71.69112396 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592372 71.69157410 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592373 71.69198608 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592374 71.69530487 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592375 71.69570923 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592376 71.69693756 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592377 71.69738770 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592378 71.70172119 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592379 71.70218658 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592380 71.70658875 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592381 71.70702362 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592382 71.70820618 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592383 71.70863342 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592384 71.71250916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592385 71.71294403 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592386 71.71807098 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592387 71.71847534 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592388 71.71970367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592389 71.72016907 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592390 71.72075653 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592391 71.72115326 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592392 71.72372437 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592393 71.72412109 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592394 71.72462463 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592395 71.72505188 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592396 71.72807312 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592397 71.72848511 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592398 71.72992706 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592399 71.73033905 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592400 71.74736023 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592401 71.74784851 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592402 71.76520538 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592403 71.76565552 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592404 71.76824188 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592405 71.76862335 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592406 71.77227783 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592407 71.77279663 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592408 71.78000641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592409 71.78038788 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592410 71.78362274 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592411 71.78409576 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592412 71.78633118 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592413 71.78673553 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592414 71.80183411 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592415 71.80229187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592416 71.80570984 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592417 71.80614471 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592418 71.80870056 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592419 71.80910492 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592420 71.80926514 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592421 71.80967712 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592422 71.81314850 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592423 71.81352234 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592424 71.81688690 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592425 71.81729889 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592426 71.82109070 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592427 71.82151031 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592428 71.82386017 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592429 71.82429504 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592430 71.82542419 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592431 71.82586670 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592432 71.82624817 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592433 71.82669067 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592434 71.89558411 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592435 71.89604187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592436 71.89677429 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592437 71.89725494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592438 71.90281677 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592439 71.90325928 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592440 71.90389252 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592441 71.90435028 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592442 71.90476227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592443 71.90519714 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592444 71.90684509 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592445 71.90727997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592451 71.99100494 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592452 71.99108124 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592453 71.99109650 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00592454 71.99111938 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00592455 71.99124146 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592456 71.99124146 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00592457 71.99129486 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592458 71.99132538 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00592459 72.04903412 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592460 72.11714172 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592461 72.18609619 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592462 72.25386047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592463 72.31997681 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592464 72.32036591 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592465 72.32072449 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592466 72.32109070 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592467 72.38893127 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592468 72.41681671 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592469 72.41719818 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592470 72.42391205 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592471 72.42429352 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592472 72.42462158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592473 72.42499542 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592474 72.43234253 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592475 72.43270111 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592476 72.43453217 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592477 72.43490601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592478 72.43849182 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592479 72.43885040 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592480 72.43968964 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592481 72.44004822 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592482 72.44392395 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592483 72.44434357 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592484 72.44528198 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592485 72.44564056 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592486 72.44725037 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592487 72.44760895 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592488 72.44977570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592489 72.45017242 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592490 72.45118713 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592491 72.45156860 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592492 72.45690918 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592493 72.45728302 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592494 72.45928955 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592495 72.45969391 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592496 72.46101379 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592497 72.46139526 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592498 72.46188354 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592499 72.46229553 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592500 72.46278381 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592501 72.46315765 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592502 72.46469879 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592503 72.46507263 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592504 72.46649933 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592505 72.46686554 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592520 72.48398590 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592521 72.48437500 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592522 72.48538971 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592523 72.48576355 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592524 72.48632813 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592525 72.48666382 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592526 72.48833466 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592527 72.48872375 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592528 72.48894501 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592529 72.48931122 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592530 72.49167633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592531 72.49203491 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592532 72.49333191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592533 72.49369049 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592534 72.49552917 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592535 72.49591064 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592536 72.49689484 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592537 72.49728394 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592538 72.49782562 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592539 72.49819946 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592540 72.49980164 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592541 72.50019836 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592542 72.50319672 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592543 72.50356293 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592544 72.50402832 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592545 72.50440979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592546 72.50488281 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592547 72.50526428 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592548 72.50567627 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592549 72.50604248 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592550 72.50801849 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592551 72.50846100 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592552 72.55760956 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592553 72.55804443 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592554 72.56661224 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592555 72.56700897 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592556 72.56718445 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592557 72.56764984 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592558 72.56828308 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592559 72.56865692 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592560 72.57095337 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592561 72.57131958 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592562 72.57224274 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592563 72.57262421 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592564 72.57657623 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592565 72.57695007 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592566 72.59232330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592567 72.59272003 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592568 72.60680389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592569 72.60723877 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592570 72.60880280 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592571 72.61301422 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592572 72.61698914 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592573 72.62370300 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592574 72.62500763 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592575 72.63173676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592576 72.63513184 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00592577 72.63597870 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00592578 72.63597870 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00592579 72.63600922 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00592580 72.63600922 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00592581 72.63603973 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00592582 72.63603973 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00592583 72.63606262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00592584 72.63606262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00592585 72.63609314 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00592586 72.63609314 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00592587 72.63612366 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00592588 72.63612366 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00592589 72.63614655 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00592590 72.63615417 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00592591 72.63617706 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00592592 72.63617706 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00592593 72.63620758 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00592594 72.63620758 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00592595 72.63623047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00592596 72.63623810 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00592597 72.63626099 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00592598 72.63626099 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00592599 72.63629150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00592600 72.63629150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00592601 72.63632202 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00592602 72.63632202 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00592603 72.63636017 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00592604 72.63636017 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00592605 72.63639832 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00592606 72.63640594 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00592607 72.63644409 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00592608 72.63645172 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00592609 72.63648987 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00592610 72.63648987 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00592611 72.63652802 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00594745 72.66720581 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -00594746 72.66720581 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -00594747 72.66722870 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -00594748 72.66723633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -00594749 72.66726685 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -00594750 72.66726685 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -00594751 72.66728973 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -00594752 72.66728973 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -00594753 72.66731262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -00594754 72.66732025 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -00594755 72.66735077 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -00594756 72.66735077 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -00594757 72.66737366 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -00594758 72.66738129 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -00594759 72.66740417 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -00594760 72.66740417 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -00594761 72.66742706 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -00594762 72.66742706 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -00594763 72.66745758 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -00594764 72.66746521 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -00594765 72.66748810 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -00594766 72.66748810 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -00594767 72.66751099 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -00594768 72.66751099 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -00594769 72.66754150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -00594770 72.66754913 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -00594771 72.66757202 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -00594772 72.66757202 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -00594773 72.66759491 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -00594774 72.66760254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -00594775 72.66762543 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -00594776 72.66762543 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -00594777 72.66765594 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -00594778 72.66765594 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -00594779 72.66767883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -00594780 72.66768646 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -00594781 72.66770935 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -00594782 72.66770935 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -00594783 72.66773987 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -00594784 72.66774750 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -00594785 72.66777039 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -00594786 72.66777039 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -00594787 72.66779327 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -00594788 72.66779327 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -00598761 72.72377777 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -00598762 72.72377777 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -00598763 72.72380066 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -00598764 72.72380829 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -00598765 72.72383118 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -00598766 72.72383118 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -00598767 72.72386169 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -00598768 72.72386932 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -00598769 72.72388458 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -00598770 72.72389221 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -00598771 72.72391510 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -00598772 72.72391510 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -00598773 72.72394562 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -00598774 72.72394562 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -00598775 72.72397614 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -00598776 72.72397614 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -00598777 72.72399902 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -00598778 72.72399902 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -00598779 72.72402191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -00598780 72.72402954 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -00598781 72.72406006 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -00598782 72.72406006 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -00598783 72.72408295 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -00598784 72.72409058 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -00598785 72.72411346 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -00598786 72.72411346 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -00598787 72.72414398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -00598788 72.72414398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -00598789 72.72416687 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -00598790 72.72417450 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -00598791 72.72419739 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -00598792 72.72419739 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -00598793 72.72422028 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -00598794 72.72422028 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -00598795 72.72425079 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -00598796 72.72425842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -00598797 72.72428131 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -00598798 72.72428131 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -00598799 72.72430420 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -00598800 72.72431183 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -00598801 72.72434235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -00598802 72.72434235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -00598803 72.72436523 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -00598804 72.72436523 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -00603075 72.78480530 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15858 -00603076 72.78480530 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15858 -00603077 72.78482819 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15868 -00603078 72.78483582 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15868 -00603079 72.78486633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15878 -00603080 72.78486633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15878 -00603081 72.78488922 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15888 -00603082 72.78488922 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15888 -00603083 72.78491211 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15898 -00603084 72.78491974 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15898 -00603085 72.78495026 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a8 -00603086 72.78495789 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a8 -00603087 72.78498840 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b8 -00603088 72.78498840 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b8 -00603089 72.78501892 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c8 -00603090 72.78501892 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c8 -00603091 72.78504181 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d8 -00603092 72.78504944 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d8 -00603093 72.78507233 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e8 -00603094 72.78507233 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e8 -00603095 72.78510284 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f8 -00603096 72.78510284 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f8 -00603097 72.78512573 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15908 -00603098 72.78513336 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15908 -00603099 72.78515625 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15918 -00603100 72.78515625 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15918 -00603101 72.78518677 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15928 -00603102 72.78518677 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15928 -00603103 72.78521729 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15938 -00603104 72.78521729 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15938 -00603105 72.78524017 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15948 -00603106 72.78524017 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15948 -00603107 72.78527069 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15958 -00603108 72.78527069 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15958 -00603109 72.78530121 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15968 -00603110 72.78530121 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15968 -00603111 72.78532410 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15978 -00603112 72.78533173 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15978 -00603113 72.78535461 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15988 -00603114 72.78535461 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15988 -00603115 72.78538513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15998 -00603116 72.78538513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15998 -00603117 72.78540802 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -00603118 72.78541565 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -00617361 72.98549652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c8 -00617362 72.98549652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c8 -00617363 72.98551941 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d8 -00617364 72.98552704 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d8 -00617365 72.98555756 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e8 -00617366 72.98555756 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e8 -00617367 72.98558044 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f8 -00617368 72.98558044 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f8 -00617369 72.98560333 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31708 -00617370 72.98561096 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31708 -00617371 72.98564148 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31718 -00617372 72.98564148 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31718 -00617373 72.98566437 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31728 -00617374 72.98566437 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31728 -00617375 72.98568726 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31738 -00617376 72.98569489 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31738 -00617377 72.98572540 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31748 -00617378 72.98572540 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31748 -00617379 72.98574829 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31758 -00617380 72.98575592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31758 -00617381 72.98577881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31768 -00617382 72.98577881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31768 -00617383 72.98580170 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31778 -00617384 72.98580170 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31778 -00617385 72.98583221 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31788 -00617386 72.98583984 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31788 -00617387 72.98586273 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31798 -00617388 72.98586273 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31798 -00617389 72.98588562 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a8 -00617390 72.98589325 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a8 -00617391 72.98592377 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b8 -00617392 72.98592377 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b8 -00617393 72.98594666 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c8 -00617394 72.98594666 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c8 -00617395 72.98596954 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d8 -00617396 72.98597717 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d8 -00617397 72.98600006 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e8 -00617398 72.98600006 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e8 -00617399 72.98603058 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f8 -00617400 72.98603821 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f8 -00617401 72.98606110 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31808 -00617402 72.98606110 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31808 -00617403 72.98608398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31818 -00617404 72.98608398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31818 -00620479 73.02953339 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -00620480 73.02954102 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -00620481 73.02957153 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -00620482 73.02957153 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -00620483 73.02959442 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -00620484 73.02960205 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -00620485 73.02962494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37868 -00620486 73.02962494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37868 -00620487 73.02964783 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37878 -00620488 73.02964783 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37878 -00620489 73.02967834 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37888 -00620490 73.02968597 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37888 -00620491 73.02970886 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37898 -00620492 73.02970886 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37898 -00620493 73.02973175 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a8 -00620494 73.02973938 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a8 -00620495 73.02976990 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b8 -00620496 73.02976990 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b8 -00620497 73.02979279 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c8 -00620498 73.02979279 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c8 -00620499 73.02981567 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d8 -00620500 73.02982330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d8 -00620501 73.02984619 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e8 -00620502 73.02984619 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e8 -00620503 73.02987671 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f8 -00620504 73.02987671 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f8 -00620505 73.02989960 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37908 -00620506 73.02990723 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37908 -00620507 73.02993011 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37918 -00620508 73.02993011 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37918 -00620509 73.02996063 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37928 -00620510 73.02996826 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37928 -00620511 73.02999115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37938 -00620512 73.02999115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37938 -00620513 73.03001404 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37948 -00620514 73.03002167 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37948 -00620515 73.03004456 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37958 -00620516 73.03004456 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37958 -00620517 73.03007507 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37968 -00620518 73.03007507 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37968 -00620519 73.03009796 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37978 -00620520 73.03010559 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37978 -00620521 73.03012848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37988 -00620522 73.03012848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x37988 -00624673 73.08862305 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -00624674 73.08862305 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -00624675 73.08864594 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -00624676 73.08865356 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -00624677 73.08867645 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -00624678 73.08867645 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -00624679 73.08870697 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -00624680 73.08870697 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -00624681 73.08872986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -00624682 73.08873749 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -00624683 73.08876038 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb98 -00624684 73.08876038 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb98 -00624685 73.08879089 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -00624686 73.08879089 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -00624687 73.08882141 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -00624688 73.08882141 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -00624689 73.08884430 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -00624690 73.08884430 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -00624691 73.08886719 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -00624692 73.08887482 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -00624693 73.08890533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -00624694 73.08890533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -00624695 73.08892822 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -00624696 73.08892822 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -00624697 73.08895111 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -00624698 73.08895874 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -00624699 73.08898926 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -00624700 73.08898926 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -00624701 73.08901215 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc28 -00624702 73.08901978 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc28 -00624703 73.08904266 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc38 -00624704 73.08904266 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc38 -00624705 73.08906555 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc48 -00624706 73.08906555 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc48 -00624707 73.08909607 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc58 -00624708 73.08910370 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc58 -00624709 73.08912659 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc68 -00624710 73.08912659 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc68 -00624711 73.08914948 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc78 -00624712 73.08915710 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc78 -00624713 73.08918762 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc88 -00624714 73.08918762 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc88 -00624715 73.08921051 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc98 -00624716 73.08921051 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc98 -00628923 73.14951324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48018 -00628924 73.14951324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48018 -00628925 73.14954376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48028 -00628926 73.14955139 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48028 -00628927 73.14957428 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48038 -00628928 73.14957428 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48038 -00628929 73.14959717 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48048 -00628930 73.14959717 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48048 -00628931 73.14962769 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48058 -00628932 73.14963531 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48058 -00628933 73.14965820 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48068 -00628934 73.14965820 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48068 -00628935 73.14968109 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48078 -00628936 73.14968109 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48078 -00628937 73.14971161 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48088 -00628938 73.14971161 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48088 -00628939 73.14974213 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48098 -00628940 73.14974213 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48098 -00628941 73.14976501 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a8 -00628942 73.14977264 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a8 -00628943 73.14979553 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -00628944 73.14979553 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -00628945 73.14982605 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -00628946 73.14982605 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -00628947 73.14984894 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -00628948 73.14985657 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -00628949 73.14987946 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -00628950 73.14987946 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -00628951 73.14990997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -00628952 73.14990997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -00628953 73.14993286 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -00628954 73.14994049 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -00628955 73.14996338 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -00628956 73.14996338 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -00628957 73.14999390 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -00628958 73.14999390 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -00628959 73.15001678 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -00628960 73.15002441 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -00628961 73.15004730 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -00628962 73.15004730 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -00628963 73.15007019 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48158 -00628964 73.15007782 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48158 -00628965 73.15010834 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48168 -00628966 73.15012360 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48168 -00632892 73.20775604 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -00632893 73.20777893 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -00632894 73.20777893 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -00632895 73.20780945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -00632896 73.20780945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -00632897 73.20783234 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -00632898 73.20783997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -00632899 73.20786285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -00632900 73.20786285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -00632901 73.20789337 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -00632902 73.20790100 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -00632903 73.20792389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -00632904 73.20792389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -00632905 73.20794678 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -00632906 73.20794678 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -00632907 73.20797729 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -00632908 73.20797729 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -00632909 73.20800781 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -00632910 73.20800781 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -00632911 73.20803070 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -00632912 73.20803070 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -00632913 73.20806122 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc8 -00632914 73.20806122 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc8 -00632915 73.20809174 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd8 -00632916 73.20809174 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd8 -00632917 73.20811462 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce8 -00632918 73.20812225 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce8 -00632919 73.20814514 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf8 -00632920 73.20814514 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf8 -00632921 73.20817566 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd08 -00632922 73.20817566 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd08 -00632923 73.20819855 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd18 -00632924 73.20820618 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd18 -00632925 73.20822906 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd28 -00632926 73.20822906 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd28 -00632927 73.20825958 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd38 -00632928 73.20825958 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd38 -00632929 73.20828247 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd48 -00632930 73.20829010 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd48 -00632931 73.20831299 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd58 -00632932 73.20831299 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd58 -00632933 73.20833588 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd68 -00632934 73.20834351 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd68 -00632935 73.20837402 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd78 -00634463 73.52005005 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00634464 73.52037048 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00634465 74.12292480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634466 74.12305450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634467 74.12317657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634468 74.12329865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634469 74.12342072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634470 74.12354279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634471 74.12367249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634472 74.12379456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634473 74.12392426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634474 74.12404633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634475 74.12417603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634476 74.12429810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634477 74.12442017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634478 74.12454224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634479 74.12466431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634480 74.12479401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634481 74.12491608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634482 74.12504578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634483 74.12512970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634484 74.12525940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634485 74.12538147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634486 74.12550354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634487 74.12563324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634488 74.12575531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634489 74.12588501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634490 74.12599945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634491 74.12612915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634492 74.12625122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634493 74.12638092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634494 74.12650299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634495 74.12663269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634496 74.12675476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634497 74.12687683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634498 74.12699890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634499 74.12712097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634500 74.12725067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634501 74.12737274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634502 74.12750244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634503 74.12762451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634504 74.12775421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634505 74.12786865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634506 74.12799835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634507 74.12812042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634508 74.12825012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634509 74.12837219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634510 74.12849426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634511 74.12859344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634512 74.12871552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634513 74.12884521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634514 74.12896729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634515 74.12909698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634516 74.12921906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634517 74.12934113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634518 74.12946320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634519 74.12958527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634520 74.12971497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634521 74.12983704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634522 74.12996674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634523 74.13005829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634524 74.13018036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634525 74.13031006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634526 74.13043213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634527 74.13056183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634528 74.13068390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634529 74.13080597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634530 74.13092804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634531 74.13103485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634532 74.13115692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634533 74.13127899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634534 74.13140106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634535 74.13152313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634536 74.13165283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634537 74.13177490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634538 74.13190460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634539 74.13202667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634540 74.13212585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634541 74.13224792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634542 74.13237000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634543 74.13249969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634544 74.13262177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634545 74.13275146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634546 74.13287354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634547 74.13299561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634548 74.13311768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634549 74.13323975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634550 74.13334656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634551 74.13346863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634552 74.13359070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634553 74.13371277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634554 74.13381195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634555 74.13394165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634556 74.13406372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634557 74.13418579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634558 74.13430786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634559 74.13443756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634560 74.13455963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634561 74.13468933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634562 74.13481140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634563 74.13493347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634564 74.13505554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634565 74.13517761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634566 74.13530731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634567 74.13542938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634568 74.13555908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634569 74.13568115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634570 74.13578033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634571 74.13590240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634572 74.13602448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634573 74.13615417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634574 74.13627625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634575 74.13640594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634576 74.13652802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634577 74.13665009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634578 74.13677216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634579 74.13690186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634580 74.13702393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634581 74.13714600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634582 74.13727570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634583 74.13739777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634584 74.13751984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634585 74.13764191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634586 74.13777161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634587 74.13789368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634588 74.13802338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634589 74.13814545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634590 74.13827515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634591 74.13839722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634592 74.13851166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634593 74.13864136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634594 74.13876343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634595 74.13889313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634596 74.13901520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634597 74.13914490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634598 74.13926697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634599 74.13938904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634600 74.13951111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634601 74.13963318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634602 74.13976288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634603 74.13988495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634604 74.14001465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634605 74.14013672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634606 74.14025879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634607 74.14038086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634608 74.14051056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634609 74.14063263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634610 74.14075470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634611 74.14088440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634612 74.14100647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634613 74.14118958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634614 74.14131165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634615 74.14144135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634616 74.14156342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634617 74.14169312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634618 74.14180756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634619 74.14193726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634620 74.14205933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634621 74.14218903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634622 74.14231110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634623 74.14243317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634624 74.14330292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634625 74.23960114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634626 74.24068451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634627 74.24095917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634628 74.24153900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634629 74.24183655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634630 74.24211121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634631 74.24242401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634632 74.24277496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634633 74.24311829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634634 74.24343872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634635 74.24377441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634636 74.24411774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634637 74.24449158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634638 74.24488831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634639 74.24523926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634640 74.25247955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634641 74.25276947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634642 74.25313568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634643 74.25347137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634644 74.25388336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634645 74.25437927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634646 74.25471497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634647 74.25508118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634648 74.25545502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634649 74.25576019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634650 74.25608826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634651 74.25646210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634652 74.25695038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634653 74.25730133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634654 74.25788116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634655 74.25816345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634656 74.25852966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634657 74.25881958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634658 74.25917816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634659 74.25946045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634660 74.25975037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634661 74.26012421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634662 74.26045227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634663 74.26080322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634664 74.26118469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634665 74.26152039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634666 74.26187134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634667 74.26218414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634668 74.26248169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634669 74.26284790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634670 74.26316833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634671 74.26351929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634672 74.26388550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634673 74.26416779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634674 74.26453400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634675 74.26483154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634676 74.26517487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634677 74.27624512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634678 74.27657318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634679 74.27691650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634680 74.27723694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634681 74.27760315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634682 74.27795410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634683 74.27828217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634684 74.27861786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634685 74.27896881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634686 74.27933502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634687 74.27967072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634688 74.28001404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634689 74.28217316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634690 74.28253937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634691 74.28290558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634692 74.28321838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634693 74.28359985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634694 74.28388214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634695 74.28418732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634696 74.28542328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634697 74.31278992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634698 74.31315613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634699 74.31359100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634700 74.31401825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634701 74.31431580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634702 74.31462097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634703 74.31494141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634704 74.31521606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634705 74.31550598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634706 74.31585693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634707 74.31616974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634708 74.31650543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634709 74.31679535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634710 74.31716156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634711 74.31961060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634712 74.31996155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634713 74.32031250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634714 74.32060242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634715 74.32093811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634716 74.32125092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634717 74.32153320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634718 74.32189941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634719 74.32228088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634720 74.32263947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634721 74.32308197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634722 74.32337952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634723 74.32366180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634724 74.32401276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634725 74.32444000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634726 74.32475281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634727 74.32518768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634728 74.32550049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634729 74.32582092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634730 74.32618713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634731 74.32655334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634732 74.32691956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634733 74.32728577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634734 74.32763672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634735 74.32793427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634736 74.32820129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634737 74.32855225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634738 74.32890320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634739 74.32924652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634740 74.32958221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634741 74.32993317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634742 74.33028412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634743 74.33062744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634744 74.49755859 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00634745 74.49761200 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00634746 74.49763489 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00634747 74.49764252 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00634748 74.49777222 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00634749 74.49777222 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00634750 74.49783325 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00634751 74.49786377 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00634752 74.52468109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634753 74.52503967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634754 74.52539063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634755 74.52575684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634756 74.52610779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634757 74.52656555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634758 74.52690125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634759 74.52722931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634760 74.52779388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634761 74.52812958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634762 74.52842712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634763 74.52879333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634764 74.52915955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634765 74.52951050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634766 74.52985382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634767 74.53019714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634768 74.53056335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634769 74.53092194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634770 74.53125763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634771 74.53162384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634772 74.53195190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634773 74.53232574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634774 74.53266907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634775 74.53300476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634776 74.53340912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634777 74.53380585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634778 74.53423309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634779 74.53462982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634780 74.53506470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634781 74.53540802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634782 74.53576660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634783 74.53604126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634784 74.53636169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634785 74.53669739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634786 74.53719330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634787 74.53759003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634788 74.53791809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634789 74.53826904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634790 74.53865814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634791 74.53897095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634792 74.53929901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634793 74.53963470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634794 74.53997040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634795 74.54029846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634796 74.54067230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634797 74.54103851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634798 74.54145050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634799 74.54178619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634800 74.54219818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634801 74.54253387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634802 74.54287720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634803 74.54317474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634804 74.54349518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634805 74.54383087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634806 74.54414368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634807 74.54446411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634808 74.54474640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634809 74.54508972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634810 74.54541779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634811 74.54578400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634812 74.54618073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634813 74.54648590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634814 74.54683685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634815 74.54718018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634816 74.54755402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634817 74.54789734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634818 74.54824829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634819 74.54861450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634820 74.54898071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634821 74.54933167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634822 74.54967499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634823 74.55004120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634824 74.55037689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634825 74.55067444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634826 74.55107117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00634827 74.71131134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00634828 74.71164703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00634829 74.71179199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00634830 74.71179962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00634831 74.71183014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00634832 74.71183014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00634833 74.71185303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00634834 74.71186066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00634835 74.71188354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00634836 74.71188354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00634837 74.71191406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00634838 74.71191406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00634839 74.71193695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00634840 74.71194458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00634841 74.71196747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00634842 74.71196747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00634843 74.71199036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00634844 74.71199799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00634845 74.71202850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00634846 74.71202850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00634847 74.71205139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00634848 74.71205139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00634849 74.71208191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00634850 74.71208191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00634851 74.71211243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00634852 74.71211243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00634853 74.71214294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00634854 74.71214294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00634855 74.71216583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00634856 74.71216583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00634857 74.71218872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00634858 74.71219635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00634859 74.71222687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00634860 74.71222687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00634861 74.71224976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00634862 74.71225739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00634863 74.71228027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00634864 74.71228027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00634865 74.71231079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00634866 74.71231079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00634867 74.71234131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00634868 74.71234131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00634869 74.71236420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00634870 74.71236420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00634871 74.71239471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00634872 74.71239471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00634873 74.71242523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00634874 74.71242523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00634875 74.71244812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00634876 74.71245575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00634877 74.71247864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00634878 74.71247864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00634879 74.71250916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00634880 74.71250916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00634881 74.71253967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00634882 74.71253967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00634883 74.71256256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00634884 74.71256256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00634885 74.71259308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00634886 74.71259308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00634887 74.71262360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00634888 74.71262360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00634889 74.71264648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00634890 74.71265411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00634891 74.71267700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00634892 74.71267700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00634893 74.71270752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00634894 74.71270752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00634895 74.71273804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00634896 74.71273804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00634897 74.71276093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00634898 74.71276093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00634899 74.71279144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00634900 74.71279144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00634901 74.71282196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00634902 74.71282196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00634903 74.71284485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00634904 74.71285248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00634905 74.71287537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00634906 74.71287537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00634907 74.71290588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00634908 74.71290588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00634909 74.71293640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00634910 74.71293640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00634911 74.71295929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00634912 74.71295929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00634913 74.71298218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00634914 74.71298981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00634915 74.71302032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00634916 74.71302032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00634917 74.71304321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00634918 74.71305084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00634919 74.71307373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00634920 74.71307373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00634921 74.71310425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00634922 74.71310425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00634923 74.71313477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00634924 74.71313477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00634925 74.71315765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00634926 74.71315765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00634927 74.71318817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00634928 74.71318817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00634929 74.71321869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00634930 74.71321869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00634931 74.71324158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00634932 74.71324921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00634933 74.71327209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00634934 74.71327209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00634935 74.71330261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00634936 74.71330261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00634937 74.71333313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00634938 74.71333313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00634939 74.71335602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00634940 74.71335602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00634941 74.71337891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00634942 74.71338654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00634943 74.71341705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00634944 74.71341705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00634945 74.71343994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00634946 74.71344757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00634947 74.71347046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00634948 74.71347046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00634949 74.71350098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00634950 74.71350098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00634951 74.71353149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00634952 74.71353149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00634953 74.71357727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00634954 74.71357727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00634955 74.71360016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00634956 74.71360779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00634957 74.71363068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00634958 74.71363068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00634959 74.71366119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00634960 74.71366119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00634961 74.71369171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00634962 74.71369171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00634963 74.71371460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00634964 74.71371460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00634965 74.71374512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00634966 74.71374512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00634967 74.71377563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00634968 74.71377563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00634969 74.71379852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00634970 74.71380615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00634971 74.71382904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00634972 74.71382904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00634973 74.71385956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00634974 74.71385956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00634975 74.71389008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00634976 74.71389008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00634977 74.71391296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00634978 74.71391296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00634979 74.71393585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00634980 74.71394348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00634981 74.71397400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00634982 74.71397400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00634983 74.71399689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00634984 74.71400452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00634985 74.71402740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00634986 74.71402740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00634987 74.71405792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00634988 74.71405792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00634989 74.71408844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00634990 74.71408844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00634991 74.71411133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00634992 74.71411133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00634993 74.71413422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00634994 74.71414185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00634995 74.71417236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00634996 74.71417236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00634997 74.71419525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00634998 74.71420288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00634999 74.71422577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00635000 74.71422577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00635001 74.71425629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00635002 74.71425629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00635003 74.71428680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00635004 74.71428680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00635005 74.71430969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00635006 74.71430969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00635007 74.71433258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00635008 74.71434021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00635009 74.71437073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00635010 74.71437073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00635011 74.71439362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00635012 74.71440125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00635013 74.71442413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00635014 74.71442413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00635015 74.71445465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00635016 74.71445465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00635017 74.71448517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00635018 74.71448517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00635019 74.71450806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00635020 74.71450806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00635021 74.71453094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00635022 74.71453857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00635023 74.71456909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00635024 74.71456909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00635025 74.71459198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00635026 74.71459961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00635027 74.71462250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00635028 74.71462250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00635029 74.71465302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00635030 74.71465302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00635031 74.71468353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00635032 74.71468353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00635033 74.71470642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00635034 74.71470642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00635035 74.71472931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00635036 74.71473694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00635037 74.71476746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00635038 74.71476746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00635039 74.71479034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00635040 74.71479797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00635041 74.71482086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00635042 74.71482086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00635043 74.71485138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00635044 74.71485138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00635045 74.71487427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00635046 74.71488190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00638305 74.76135254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -00638306 74.76136017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -00638307 74.76138306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -00638308 74.76138306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -00638309 74.76140594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -00638310 74.76140594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -00638311 74.76143646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -00638312 74.76143646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -00638313 74.76146698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -00638314 74.76146698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -00638315 74.76148987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -00638316 74.76149750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -00638317 74.76152039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -00638318 74.76152039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -00638319 74.76155090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -00638320 74.76155853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -00638321 74.76158142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -00638322 74.76158142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -00638323 74.76160431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -00638324 74.76160431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -00638325 74.76163483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -00638326 74.76163483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -00638327 74.76166534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -00638328 74.76166534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -00638329 74.76168823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -00638330 74.76169586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -00638331 74.76171875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -00638332 74.76171875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -00638333 74.76174927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -00638334 74.76175690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -00638335 74.76177979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -00638336 74.76177979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -00638337 74.76180267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -00638338 74.76180267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -00638339 74.76183319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -00638340 74.76183319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -00638341 74.76186371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -00638342 74.76186371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -00638343 74.76188660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -00638344 74.76189423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -00638345 74.76191711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -00638346 74.76191711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -00638347 74.76194763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -00638348 74.76194763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -00653845 74.98188782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26288 -00653846 74.98188782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26288 -00653847 74.98191071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26298 -00653848 74.98191071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26298 -00653849 74.98194122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a8 -00653850 74.98194885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a8 -00653851 74.98197174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b8 -00653852 74.98197174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b8 -00653853 74.98199463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c8 -00653854 74.98200226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c8 -00653855 74.98202515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d8 -00653856 74.98202515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d8 -00653857 74.98205566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e8 -00653858 74.98206329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e8 -00653859 74.98208618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f8 -00653860 74.98208618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f8 -00653861 74.98210907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26308 -00653862 74.98211670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26308 -00653863 74.98214722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26318 -00653864 74.98214722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26318 -00653865 74.98217010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26328 -00653866 74.98217773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26328 -00653867 74.98220062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26338 -00653868 74.98220062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26338 -00653869 74.98222351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26348 -00653870 74.98222351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26348 -00653871 74.98225403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26358 -00653872 74.98226166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26358 -00653873 74.98228455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26368 -00653874 74.98228455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26368 -00653875 74.98230743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26378 -00653876 74.98231506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26378 -00653877 74.98234558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26388 -00653878 74.98234558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26388 -00653879 74.98236847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26398 -00653880 74.98236847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26398 -00653881 74.98239136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a8 -00653882 74.98239899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a8 -00653883 74.98242188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b8 -00653884 74.98242188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b8 -00653885 74.98245239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c8 -00653886 74.98246002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c8 -00653887 74.98248291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d8 -00653888 74.98248291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d8 -00657437 75.03301239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -00657438 75.03302002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -00657439 75.03305054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -00657440 75.03305817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -00657441 75.03308105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -00657442 75.03308105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -00657443 75.03310394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -00657444 75.03311157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -00657445 75.03314209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -00657446 75.03314209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -00657447 75.03316498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -00657448 75.03317261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -00657449 75.03319550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -00657450 75.03319550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -00657451 75.03322601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -00657452 75.03322601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -00657453 75.03325653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -00657454 75.03325653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -00657455 75.03327942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -00657456 75.03327942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -00657457 75.03330231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -00657458 75.03330994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -00657459 75.03334045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -00657460 75.03334045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -00657461 75.03336334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -00657462 75.03337097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -00657463 75.03339386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -00657464 75.03339386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -00657465 75.03342438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -00657466 75.03342438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -00657467 75.03345490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -00657468 75.03345490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -00657469 75.03347778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -00657470 75.03347778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -00657471 75.03350067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d8 -00657472 75.03350830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d8 -00657473 75.03353882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e8 -00657474 75.03353882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e8 -00657475 75.03356171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f8 -00657476 75.03356934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f8 -00657477 75.03359222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d408 -00657478 75.03359222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d408 -00657479 75.03362274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d418 -00657480 75.03362274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d418 -00661973 75.09860992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36088 -00661974 75.09861755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36088 -00661975 75.09864044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36098 -00661976 75.09864044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36098 -00661977 75.09867096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360a8 -00661978 75.09867096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360a8 -00661979 75.09870148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360b8 -00661980 75.09870148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360b8 -00661981 75.09872437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360c8 -00661982 75.09872437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360c8 -00661983 75.09875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360d8 -00661984 75.09875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360d8 -00661985 75.09878540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360e8 -00661986 75.09878540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360e8 -00661987 75.09880829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f8 -00661988 75.09881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f8 -00661989 75.09883881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36108 -00661990 75.09883881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36108 -00661991 75.09886932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36118 -00661992 75.09886932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36118 -00661993 75.09889984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36128 -00661994 75.09889984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36128 -00661995 75.09892273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36138 -00661996 75.09892273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36138 -00661997 75.09895325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36148 -00661998 75.09895325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36148 -00661999 75.09898376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36158 -00662000 75.09898376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36158 -00662001 75.09900665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36168 -00662002 75.09901428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36168 -00662003 75.09903717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36178 -00662004 75.09903717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36178 -00662005 75.09906769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36188 -00662006 75.09906769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36188 -00662007 75.09909058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -00662008 75.09909821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -00662009 75.09912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -00662010 75.09912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -00662011 75.09915161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -00662012 75.09915161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -00662013 75.09918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -00662014 75.09918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -00662015 75.09920502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -00662016 75.09921265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -00666119 75.15788269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e218 -00666120 75.15788269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e218 -00666121 75.15790558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e228 -00666122 75.15791321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e228 -00666123 75.15793610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e238 -00666124 75.15793610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e238 -00666125 75.15796661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e248 -00666126 75.15796661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e248 -00666127 75.15798950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e258 -00666128 75.15799713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e258 -00666129 75.15802002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e268 -00666130 75.15802002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e268 -00666131 75.15805054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e278 -00666132 75.15805817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e278 -00666133 75.15808105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e288 -00666134 75.15808105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e288 -00666135 75.15810394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e298 -00666136 75.15810394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e298 -00666137 75.15813446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a8 -00666138 75.15813446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a8 -00666139 75.15816498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b8 -00666140 75.15816498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b8 -00666141 75.15818787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c8 -00666142 75.15819550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c8 -00666143 75.15821838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d8 -00666144 75.15821838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d8 -00666145 75.15824890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e8 -00666146 75.15825653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e8 -00666147 75.15827942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f8 -00666148 75.15827942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f8 -00666149 75.15830231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e308 -00666150 75.15830994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e308 -00666151 75.15833282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e318 -00666152 75.15833282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e318 -00666153 75.15836334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e328 -00666154 75.15836334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e328 -00666155 75.15838623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e338 -00666156 75.15839386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e338 -00666157 75.15841675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e348 -00666158 75.15841675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e348 -00666159 75.15844727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e358 -00666160 75.15845490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e358 -00666161 75.15847778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e368 -00666162 75.15847778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e368 -00670205 75.21623230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c8 -00670206 75.21623993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c8 -00670207 75.21626282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d8 -00670208 75.21626282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d8 -00670209 75.21628571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e8 -00670210 75.21629333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e8 -00670211 75.21631622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f8 -00670212 75.21631622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f8 -00670213 75.21634674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46208 -00670214 75.21634674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46208 -00670215 75.21636963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46218 -00670216 75.21637726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46218 -00670217 75.21640015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46228 -00670218 75.21640015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46228 -00670219 75.21643066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46238 -00670220 75.21643829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46238 -00670221 75.21646118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46248 -00670222 75.21646118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46248 -00670223 75.21648407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46258 -00670224 75.21649170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46258 -00670225 75.21651459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46268 -00670226 75.21651459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46268 -00670227 75.21654510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46278 -00670228 75.21654510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46278 -00670229 75.21656799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46288 -00670230 75.21657562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46288 -00670231 75.21659851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46298 -00670232 75.21659851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46298 -00670233 75.21662903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a8 -00670234 75.21663666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a8 -00670235 75.21665955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b8 -00670236 75.21665955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b8 -00670237 75.21668243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c8 -00670238 75.21669006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c8 -00670239 75.21672058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d8 -00670240 75.21672058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d8 -00670241 75.21674347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e8 -00670242 75.21674347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e8 -00670243 75.21676636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f8 -00670244 75.21677399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f8 -00670245 75.21679688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46308 -00670246 75.21679688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46308 -00670247 75.21682739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46318 -00670248 75.21683502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46318 -00674505 75.27735901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e828 -00674506 75.27736664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e828 -00674507 75.27738953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e838 -00674508 75.27738953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e838 -00674509 75.27741241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e848 -00674510 75.27741241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e848 -00674511 75.27744293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e858 -00674512 75.27744293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e858 -00674513 75.27747345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e868 -00674514 75.27747345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e868 -00674515 75.27749634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e878 -00674516 75.27750397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e878 -00674517 75.27752686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e888 -00674518 75.27752686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e888 -00674519 75.27755737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e898 -00674520 75.27756500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e898 -00674521 75.27758789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a8 -00674522 75.27758789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a8 -00674523 75.27761078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b8 -00674524 75.27761841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b8 -00674525 75.27764130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c8 -00674526 75.27764130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c8 -00674527 75.27767181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d8 -00674528 75.27767181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d8 -00674529 75.27769470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e8 -00674530 75.27770233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e8 -00674531 75.27772522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f8 -00674532 75.27772522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f8 -00674533 75.27775574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e908 -00674534 75.27776337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e908 -00674535 75.27778625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e918 -00674536 75.27778625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e918 -00674537 75.27780914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e928 -00674538 75.27780914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e928 -00674539 75.27783966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e938 -00674540 75.27783966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e938 -00674541 75.27787018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e948 -00674542 75.27787018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e948 -00674543 75.27789307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e958 -00674544 75.27790070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e958 -00674545 75.27792358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e968 -00674546 75.27792358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e968 -00674547 75.27795410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e978 -00674548 75.27796173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e978 -00676714 75.90522766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676715 75.90539551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676716 75.90554810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676717 75.90572357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676718 75.90650940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676719 75.90666962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676720 75.90887451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676721 75.90904999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676722 75.90921021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676723 75.90937042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676724 75.91104889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676725 75.91121674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676726 75.91222382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676727 75.91439056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676728 75.92678070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676729 75.92919922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676730 75.92936707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676731 75.93040466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676732 75.93141174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00676733 75.93148041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00676734 75.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676735 75.93174744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676736 75.93376923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676737 75.93454742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676738 75.93778229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676739 75.93848419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676740 75.93864441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676741 76.07653809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676742 76.08003235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676743 76.08360291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676744 76.08996582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676745 76.09224701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676746 76.09278870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676747 76.09458160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676748 76.09489441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676749 76.09501648 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00676750 76.09501648 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00676751 76.09503937 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00676752 76.09504700 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00676753 76.09506226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676754 76.09506989 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00676755 76.09506989 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00676756 76.09510040 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00676757 76.09510040 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00676758 76.09513092 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00676759 76.09513092 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00676760 76.09515381 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00676761 76.09515381 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00676762 76.09518433 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00676763 76.09518433 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00676764 76.09521484 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00676765 76.09521484 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00676766 76.09523773 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00676767 76.09524536 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00676768 76.09526825 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00676769 76.09526825 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00676770 76.09529877 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00676771 76.09529877 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00676772 76.09532166 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00676773 76.09532928 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00676774 76.09535217 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00676775 76.09535217 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00676776 76.09538269 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00676777 76.09538269 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00676778 76.09540558 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00676779 76.09541321 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00676780 76.09543610 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00676781 76.09543610 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00676782 76.09545898 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00676783 76.09546661 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00676784 76.09549713 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00676785 76.09549713 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00676786 76.09552002 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00676787 76.09552002 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00676788 76.09554291 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00676789 76.09555054 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00676790 76.09558105 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00676791 76.09558105 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00676792 76.09560394 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00676793 76.09561157 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00676794 76.09563446 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00676795 76.09563446 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00676796 76.09565735 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00676797 76.09566498 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00676798 76.09569550 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00676799 76.09569550 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00676800 76.09571838 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00676801 76.09572601 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00676802 76.09575653 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00676803 76.09576416 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00676804 76.09579468 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00676805 76.09580231 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00676806 76.09584808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676807 76.09586334 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00676808 76.09586334 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00676809 76.09589386 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00676810 76.09589386 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00676811 76.09592438 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00676812 76.09592438 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00676813 76.09594727 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00676814 76.09595490 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00676815 76.09597778 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00676816 76.09597778 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00676817 76.09600830 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00676818 76.09600830 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00676819 76.09603119 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00676820 76.09603882 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00676821 76.09606171 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00676822 76.09606171 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00676823 76.09609222 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00676824 76.09609222 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00676825 76.09612274 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00676826 76.09612274 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00676827 76.09614563 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00676828 76.09614563 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00676829 76.09617615 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00676830 76.09617615 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00676831 76.09620667 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00676832 76.09620667 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00676833 76.09622955 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00676834 76.09623718 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00676835 76.09626007 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00676836 76.09626007 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00676837 76.09629059 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00676838 76.09629059 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00676839 76.09632111 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00676840 76.09632111 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00676841 76.09634399 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00676842 76.09634399 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00676843 76.09637451 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00676844 76.09637451 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00676845 76.09640503 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00676846 76.09640503 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00676847 76.09642792 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00676848 76.09642792 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00676849 76.09645081 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00676850 76.09645844 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00676851 76.09648895 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00676852 76.09648895 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00676853 76.09651184 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00676854 76.09651947 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00676855 76.09654236 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00676856 76.09654236 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00676857 76.09657288 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00676858 76.09657288 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00676859 76.09659576 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00676860 76.09660339 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00676861 76.09662628 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00676862 76.09662628 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00676863 76.09664917 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00676864 76.09664917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676865 76.09664917 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00676866 76.09667969 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00676867 76.09668732 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00676868 76.09671021 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00676869 76.09671021 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00676870 76.09673309 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00676871 76.09674072 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00676872 76.09677124 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00676873 76.09677124 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00676874 76.09679413 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00676875 76.09679413 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00676876 76.09681702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676877 76.09683990 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00676878 76.09684753 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00676879 76.09687042 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00676880 76.09687042 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00676881 76.09689331 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00676882 76.09690094 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00676883 76.09693146 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00676884 76.09693146 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00676885 76.09695435 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00676886 76.09695435 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00676887 76.09697723 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00676888 76.09698486 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00676889 76.09700775 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00676890 76.09700775 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00676891 76.09703827 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00676892 76.09703827 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00676893 76.09706116 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00676894 76.09706879 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00676895 76.09709167 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00676896 76.09709167 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00676897 76.09712219 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00676898 76.09712982 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00676899 76.09715271 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00676900 76.09715271 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00676901 76.09717560 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00676902 76.09717560 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00676903 76.09720612 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00676904 76.09720612 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00676905 76.09723663 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00676906 76.09723663 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00676907 76.09725952 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00676908 76.09725952 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00676909 76.09729004 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00676910 76.09729004 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00676911 76.09732056 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00676912 76.09732056 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00676913 76.09734344 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00676914 76.09735107 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00676915 76.09737396 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00676916 76.09737396 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00676917 76.09740448 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00676918 76.09740448 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00676919 76.09742737 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00676920 76.09743500 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00676921 76.09745789 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00676922 76.09745789 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00676923 76.09748840 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00676924 76.09748840 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00676925 76.09751892 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00676926 76.09752655 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00676927 76.09755707 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00676928 76.09755707 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00676929 76.09757996 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00676930 76.09757996 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00676931 76.09760284 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00676932 76.09761047 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00676933 76.09764099 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00676934 76.09764099 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00676935 76.09764099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676936 76.09766388 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00676937 76.09767151 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00676938 76.09769440 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00676939 76.09769440 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00676940 76.09772491 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00676941 76.09772491 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00676942 76.09774780 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00676943 76.09775543 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00676944 76.09777832 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00676945 76.09777832 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00676946 76.09780121 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00676947 76.09780884 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00676948 76.09782410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00676949 76.09783936 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00676950 76.09783936 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00676951 76.09786224 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00676952 76.09786224 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00676953 76.09788513 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00676954 76.09789276 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00676955 76.09792328 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00676956 76.09792328 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00676957 76.09794617 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00676958 76.09794617 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00676959 76.09796906 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00676960 76.09797668 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00676961 76.09799957 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00676962 76.09799957 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00676963 76.09803009 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00676964 76.09803772 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00676965 76.09806061 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00676966 76.09806061 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00676967 76.09808350 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00676968 76.09809113 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00676969 76.09812164 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00676970 76.09812164 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00676971 76.09814453 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00676972 76.09814453 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00676973 76.09816742 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00676974 76.09817505 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00676975 76.09819794 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00676976 76.09819794 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00676977 76.09822845 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00676978 76.09822845 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00676979 76.09825134 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00676980 76.09825897 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00676981 76.09828186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00676982 76.09828186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00676983 76.09831238 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00676984 76.09832001 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00676985 76.09834290 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00676986 76.09834290 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00676987 76.09836578 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00676988 76.09836578 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00676989 76.09839630 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00676990 76.09839630 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00676991 76.09842682 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00676992 76.09842682 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00676993 76.09844971 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00676994 76.09844971 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00676995 76.09848022 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00676996 76.09848022 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00676997 76.09851074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00676998 76.09851074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00676999 76.09853363 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00677000 76.09854126 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00677001 76.09856415 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00677002 76.09856415 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00677003 76.09856415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00677004 76.09859467 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00677005 76.09859467 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00677006 76.09861755 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00677007 76.09862518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00677008 76.09864807 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00677009 76.09864807 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00677010 76.09867859 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00677011 76.09867859 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00677012 76.09870911 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00677013 76.09870911 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00677014 76.09873199 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00677015 76.09873962 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00677016 76.09876251 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00677017 76.09876251 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00677018 76.09879303 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00677019 76.09879303 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00677020 76.09881592 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00677021 76.09882355 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00677022 76.09884644 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00677023 76.09884644 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00677024 76.09887695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00677025 76.09887695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00677026 76.09889984 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00677027 76.09890747 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00677028 76.09893036 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00677029 76.09893036 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00677030 76.09895325 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00677031 76.09896088 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00677032 76.09898376 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00677033 76.09899139 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00677034 76.09901428 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00677035 76.09901428 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00677036 76.09903717 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00677037 76.09904480 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00677038 76.09907532 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00677039 76.09907532 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00677040 76.09909821 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00677041 76.09909821 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00677042 76.09912109 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00677043 76.09912872 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00677044 76.09915161 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00677045 76.09915161 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00677046 76.09918213 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00677047 76.09918976 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00677048 76.09921265 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00677049 76.09921265 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00677050 76.09923553 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00679981 76.14122772 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -00679982 76.14122772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00679983 76.14123535 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -00679984 76.14125824 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -00679985 76.14125824 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -00679986 76.14128876 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -00679987 76.14128876 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -00679988 76.14131165 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -00679989 76.14131927 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -00679990 76.14133453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00679991 76.14134216 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -00679992 76.14134216 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -00679993 76.14137268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -00679994 76.14137268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -00679995 76.14139557 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -00679996 76.14140320 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -00679997 76.14142609 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -00679998 76.14142609 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -00679999 76.14145660 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -00680000 76.14145660 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -00680001 76.14148712 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -00680002 76.14148712 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -00680003 76.14151001 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -00680004 76.14151001 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -00680005 76.14153290 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -00680006 76.14154053 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -00680007 76.14157104 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -00680008 76.14157104 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -00680009 76.14159393 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -00680010 76.14159393 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -00680011 76.14161682 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -00680012 76.14162445 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -00680013 76.14165497 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -00680014 76.14165497 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -00680015 76.14167786 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -00680016 76.14168549 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -00680017 76.14170837 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -00680018 76.14170837 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -00680019 76.14173126 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -00680020 76.14173126 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -00680021 76.14176178 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -00680022 76.14176941 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -00680023 76.14179230 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -00680024 76.14179230 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -00686125 76.20098877 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -00686126 76.20098877 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -00686127 76.20099640 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -00686128 76.20101929 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00686129 76.20102692 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -00686130 76.20102692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00686131 76.20102692 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -00686132 76.20104980 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00686133 76.20104980 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -00686134 76.20104980 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00686135 76.20105743 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -00686136 76.20107269 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00686137 76.20108032 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -00686138 76.20108032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00686139 76.20108032 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -00686140 76.20111084 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00686141 76.20111084 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -00686142 76.20111084 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00686143 76.20111084 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -00686144 76.20114136 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00686145 76.20114136 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -00686146 76.20114136 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00686147 76.20114136 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -00686148 76.20116425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00686149 76.20116425 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -00686150 76.20117188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00686151 76.20117188 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -00686152 76.20119476 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -00686153 76.20119476 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00686154 76.20119476 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -00686155 76.20119476 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00686156 76.20122528 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -00686157 76.20122528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00686158 76.20122528 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -00686159 76.20122528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00686160 76.20125580 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00686161 76.20125580 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -00686162 76.20125580 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00686163 76.20125580 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -00686164 76.20127869 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00686165 76.20127869 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -00686166 76.20128632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00686167 76.20128632 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -00686168 76.20130920 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -00694146 76.25715637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00694147 76.25715637 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -00694148 76.25715637 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e18 -00694149 76.25716400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00694150 76.25716400 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -00694151 76.25716400 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e18 -00694152 76.25718689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00694153 76.25718689 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -00694154 76.25718689 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e28 -00694155 76.25718689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00694156 76.25718689 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -00694157 76.25719452 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e28 -00694158 76.25721741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00694159 76.25722504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00694160 76.25722504 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -00694161 76.25722504 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -00694162 76.25722504 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -00694163 76.25722504 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -00694164 76.25724792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00694165 76.25724792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00694166 76.25724792 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -00694167 76.25725555 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -00694168 76.25725555 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e48 -00694169 76.25726318 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e48 -00694170 76.25727081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00694171 76.25727081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00694172 76.25727844 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -00694173 76.25727844 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -00694174 76.25729370 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e58 -00694175 76.25729370 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e58 -00694176 76.25730133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00694177 76.25730896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00694178 76.25730896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -00694179 76.25730896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -00694180 76.25732422 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e68 -00694181 76.25732422 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e68 -00694182 76.25733948 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -00694183 76.25733948 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -00694184 76.25733948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00694185 76.25734711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00694186 76.25734711 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e78 -00694187 76.25735474 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e78 -00694188 76.25736237 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -00694189 76.25737000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -00740251 76.48147583 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a8 -00740252 76.48147583 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b108 -00740253 76.48148346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f008 -00740254 76.48148346 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a8 -00740255 76.48148346 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b108 -00740256 76.48151398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f018 -00740257 76.48151398 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b8 -00740258 76.48151398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f018 -00740259 76.48151398 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b8 -00740260 76.48151398 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b118 -00740261 76.48151398 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b118 -00740262 76.48153687 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c8 -00740263 76.48153687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f028 -00740264 76.48154449 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c8 -00740265 76.48154449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f028 -00740266 76.48154449 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -00740267 76.48154449 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -00740268 76.48156738 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -00740269 76.48156738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f038 -00740270 76.48156738 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -00740271 76.48156738 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -00740272 76.48156738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f038 -00740273 76.48157501 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -00740274 76.48159027 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -00740275 76.48159027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f048 -00740276 76.48159790 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -00740277 76.48159790 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -00740278 76.48159790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f048 -00740279 76.48159790 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -00740280 76.48162842 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -00740281 76.48162842 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -00740282 76.48162842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f058 -00740283 76.48162842 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -00740284 76.48162842 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -00740285 76.48162842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f058 -00740286 76.48165131 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -00740287 76.48165894 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -00740288 76.48165894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f068 -00740289 76.48165894 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -00740290 76.48165894 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -00740291 76.48165894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f068 -00740292 76.48168182 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -00740293 76.48168182 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -00740294 76.48168182 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -00749378 76.52610779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e58 -00749379 76.52610779 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31208 -00749380 76.52610779 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a398 -00749381 76.52610779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e58 -00749382 76.52611542 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a398 -00749383 76.52611542 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31208 -00749384 76.52613068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e68 -00749385 76.52613831 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a8 -00749386 76.52613831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e68 -00749387 76.52613831 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31218 -00749388 76.52613831 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a8 -00749389 76.52614594 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31218 -00749390 76.52616119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e78 -00749391 76.52616119 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b8 -00749392 76.52616119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e78 -00749393 76.52616882 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b8 -00749394 76.52616882 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31228 -00749395 76.52616882 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31228 -00749396 76.52619171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e88 -00749397 76.52619171 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c8 -00749398 76.52619171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e88 -00749399 76.52619171 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c8 -00749400 76.52619934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31238 -00749401 76.52619934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31238 -00749402 76.52622223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e98 -00749403 76.52622223 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d8 -00749404 76.52622223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e98 -00749405 76.52622223 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d8 -00749406 76.52622986 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31248 -00749407 76.52622986 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31248 -00749408 76.52624512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea8 -00749409 76.52625275 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e8 -00749410 76.52625275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea8 -00749411 76.52625275 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e8 -00749412 76.52625275 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -00749413 76.52626038 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -00749414 76.52627563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb8 -00749415 76.52627563 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f8 -00749416 76.52627563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb8 -00749417 76.52628326 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -00749418 76.52628326 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f8 -00749419 76.52628326 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -00749420 76.52631378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec8 -00749421 76.52631378 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a408 -00760950 76.58311462 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d8 -00760951 76.58311462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c598 -00760952 76.58311462 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e28 -00760953 76.58311462 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e28 -00760954 76.58312225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c598 -00760955 76.58312225 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d8 -00760956 76.58314514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a8 -00760957 76.58314514 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e38 -00760958 76.58314514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a8 -00760959 76.58314514 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e38 -00760960 76.58315277 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e8 -00760961 76.58316040 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e8 -00760962 76.58317566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b8 -00760963 76.58317566 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e48 -00760964 76.58318329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b8 -00760965 76.58318329 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e48 -00760966 76.58320618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c8 -00760967 76.58320618 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -00760968 76.58320618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c8 -00760969 76.58321381 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -00760970 76.58322906 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f8 -00760971 76.58322906 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f8 -00760972 76.58323669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d8 -00760973 76.58323669 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -00760974 76.58323669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d8 -00760975 76.58323669 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -00760976 76.58326721 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -00760977 76.58326721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e8 -00760978 76.58326721 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a08 -00760979 76.58326721 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -00760980 76.58326721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e8 -00760981 76.58327484 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a08 -00760982 76.58329773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -00760983 76.58329773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -00760984 76.58330536 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a18 -00760985 76.58330536 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a18 -00760986 76.58331299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f8 -00760987 76.58331299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f8 -00760988 76.58332825 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -00760989 76.58332825 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -00760990 76.58334351 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a28 -00760991 76.58334351 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a28 -00760992 76.58335114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c608 -00760993 76.58335876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea8 -00789568 76.73281860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e8 -00789569 76.73281860 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b8 -00789570 76.73282623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e8 -00789571 76.73282623 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b8 -00789572 76.73284912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f8 -00789573 76.73284912 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c8 -00789574 76.73284912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f8 -00789575 76.73285675 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c8 -00789576 76.73287964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f708 -00789577 76.73287964 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d8 -00789578 76.73287964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f708 -00789579 76.73287964 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d8 -00789580 76.73291016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f718 -00789581 76.73291016 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e8 -00789582 76.73291779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f718 -00789583 76.73291779 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e8 -00789584 76.73294067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f728 -00789585 76.73294067 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f8 -00789586 76.73294067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f728 -00789587 76.73294067 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f8 -00789588 76.73296356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f738 -00789589 76.73296356 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c808 -00789590 76.73297119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f738 -00789591 76.73297119 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c808 -00789592 76.73300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f748 -00789593 76.73300171 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c818 -00789594 76.73300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f748 -00789595 76.73300171 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c818 -00789596 76.73302460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f758 -00789597 76.73303223 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c828 -00789598 76.73303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f758 -00789599 76.73303223 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c828 -00789600 76.73305511 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c838 -00789601 76.73305511 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c838 -00789602 76.73306274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f768 -00789603 76.73306274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f768 -00789604 76.73308563 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c848 -00789605 76.73308563 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c848 -00789606 76.73310089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f778 -00789607 76.73310089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f778 -00789608 76.73311615 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c858 -00789609 76.73311615 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c858 -00789610 76.73313904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f788 -00789611 76.73313904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f788 -00802746 77.00416565 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802747 77.00420380 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802748 77.00422668 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00802749 77.00423431 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00802750 77.00436401 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802751 77.00436401 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00802752 77.00442505 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802753 77.00445557 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00802754 79.51047516 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802755 79.51052094 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802756 79.51054382 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00802757 79.51055145 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00802758 79.51068115 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802759 79.51068115 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00802760 79.51074219 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802761 79.51077271 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00802762 81.72035980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00802763 81.72036743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00802764 81.72039032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00802765 81.72039795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00802766 81.72042084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00802767 81.72042084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00802768 81.72045135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00802769 81.72045135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00802770 81.72048187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00802771 81.72048187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00802772 81.72050476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00802773 81.72051239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00802774 81.72052765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00802775 81.72053528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00802776 81.72056580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00802777 81.72056580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00802778 81.72058868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00802779 81.72058868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00802780 81.72061157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00802781 81.72061157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00802782 81.72064209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00802783 81.72064209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00802784 81.72066498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00802785 81.72067261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00802786 81.72068787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00802787 81.72069550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00802788 81.72072601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00802789 81.72072601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00802790 81.72074890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00802791 81.72074890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00802792 81.72077179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00802793 81.72077179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00802794 81.72080231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00802795 81.72080994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00802796 81.72082520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00802797 81.72083282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00802798 81.72085571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00802799 81.72085571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00802800 81.72088623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00802801 81.72088623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00802802 81.72090912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00802803 81.72091675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00802804 81.72093201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00802805 81.72093964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00802806 81.72097015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00802807 81.72097015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00802808 81.72099304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00802809 81.72099304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00802810 81.72101593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00802811 81.72101593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00802812 81.72104645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00802813 81.72104645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00802814 81.72106934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00802815 81.72107697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00802816 81.72109985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00802817 81.72109985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00802818 81.72112274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00802819 81.72112274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00802820 81.72115326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00802821 81.72115326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00802822 81.72117615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00802823 81.72118378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00802824 81.72120667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00802825 81.72120667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00802826 81.72123718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00802827 81.72123718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00802828 81.72126007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00802829 81.72126007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00802830 81.72128296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00802831 81.72128296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00802832 81.72131348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00802833 81.72132111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00802834 81.72133636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00802835 81.72134399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00802836 81.72136688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00802837 81.72136688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00802838 81.72139740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00802839 81.72139740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00802840 81.72142029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00802841 81.72142029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00802842 81.72144318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00802843 81.72144318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00802844 81.72147369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00802845 81.72148132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00802846 81.72150421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00802847 81.72150421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00802848 81.72152710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00802849 81.72153473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00802850 81.72156525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00802851 81.72156525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00802852 81.72158813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00802853 81.72159576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00802854 81.72161865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00802855 81.72161865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00802856 81.72164154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00802857 81.72164917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00802858 81.72167969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00802859 81.72167969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00802860 81.72170258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00802861 81.72170258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00802862 81.72172546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00802863 81.72172546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00802864 81.72175598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00802865 81.72175598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00802866 81.72177887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00802867 81.72178650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00802868 81.72180176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00802869 81.72180939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00802870 81.72183990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00802871 81.72183990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00802872 81.72186279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00802873 81.72186279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00802874 81.72188568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00802875 81.72188568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00802876 81.72191620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00802877 81.72191620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00802878 81.72193909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00802879 81.72194672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00802880 81.72196960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00802881 81.72196960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00802882 81.72200012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00802883 81.72200012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00802884 81.72202301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00802885 81.72202301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00802886 81.72206879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00802887 81.72206879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00802888 81.72209167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00802889 81.72209167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00802890 81.72212219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00802891 81.72212219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00802892 81.72215271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00802893 81.72215271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00802894 81.72218323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00802895 81.72218323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00802896 81.72220612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00802897 81.72221375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00802898 81.72223663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00802899 81.72223663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00802900 81.72226715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00802901 81.72226715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00802902 81.72229004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00802903 81.72229004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00802904 81.72232056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00802905 81.72232056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00802906 81.72234344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00802907 81.72235107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00802908 81.72236633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00802909 81.72237396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00802910 81.72239685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00802911 81.72239685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00802912 81.72242737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00802913 81.72243500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00802914 81.72245789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00802915 81.72245789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00802916 81.72248077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00802917 81.72248840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00802918 81.72251892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00802919 81.72251892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00802920 81.72254181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00802921 81.72254181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00802922 81.72256470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00802923 81.72257233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00802924 81.72259521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00802925 81.72259521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00802926 81.72262573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00802927 81.72262573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00802928 81.72264862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00802929 81.72265625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00802930 81.72267914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00802931 81.72267914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00802932 81.72270966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00802933 81.72271729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00802934 81.72274017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00802935 81.72274017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00802936 81.72276306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00802937 81.72276306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00802938 81.72279358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00802939 81.72279358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00802940 81.72282410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00802941 81.72282410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00802942 81.72284698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00802943 81.72285461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00802944 81.72287750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00802945 81.72287750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00802946 81.72290802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00802947 81.72290802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00802948 81.72293091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00802949 81.72293091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00802950 81.72295380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00802951 81.72295380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00802952 81.72298431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00802953 81.72299194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00802954 81.72301483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00802955 81.72301483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00802956 81.72303772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00802957 81.72303772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00802958 81.72306824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00802959 81.72306824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00802960 81.72309113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00802961 81.72309113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00802962 81.72311401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00802963 81.72312164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00802964 81.72314453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00802965 81.72315216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00802966 81.72317505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00802967 81.72317505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00802968 81.72319794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00802969 81.72319794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00802970 81.72322845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00802971 81.72322845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00802972 81.72325134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00802973 81.72325897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00802974 81.72327423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00802975 81.72328186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00802976 81.72331238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00802977 81.72331238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00802978 81.72333527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00802979 81.72333527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00802980 81.72335815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00802981 81.72335815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00802982 81.72338867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00802983 81.72338867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00802984 81.72341156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00802985 81.72341919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00802986 81.72344208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00802987 81.72344208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00802988 81.72347260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00802989 81.72347260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00802990 81.72349548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00802991 81.72350311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00802992 81.72352600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00802993 81.72352600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00802994 81.72354889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00802995 81.72355652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00802996 81.72358704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00802997 81.72358704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00802998 81.72360992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00802999 81.72361755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00803000 81.72364044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00803001 81.72364044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00803002 81.72367096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00803003 81.72367096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00803004 81.72369385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00803005 81.72369385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00803006 81.72371674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00803007 81.72372437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00803008 81.72374725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00803009 81.72374725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00803010 81.72377777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00803011 81.72377777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00803012 81.72380066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00803013 81.72380066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00803014 81.72382355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00803015 81.72382355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00803016 81.72385406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00803017 81.72385406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00803018 81.72387695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00803019 81.72388458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00803020 81.72390747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00803021 81.72390747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00803022 81.72393799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00803023 81.72393799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00803024 81.72396088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00803025 81.72396088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00803026 81.72398376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00803027 81.72399139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00803028 81.72402191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00803029 81.72402191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00803030 81.72404480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00803031 81.72405243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00803032 81.72407532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00803033 81.72407532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00803034 81.72410583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00803035 81.72410583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00803036 81.72412872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00803037 81.72413635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00803038 81.72415924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00803039 81.72415924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00803040 81.72418976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00803041 81.72418976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00803042 81.72422028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00803043 81.72422028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00803044 81.72424316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00803045 81.72424316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00803046 81.72426605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00803047 81.72426605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00803048 81.72429657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00803049 81.72430420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00803050 81.72431946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00803051 81.72432709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00803052 81.72434998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00803053 81.72434998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00803054 81.72438049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00803055 81.72438049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00803056 81.72440338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00803057 81.72440338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00803058 81.72442627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00803059 81.72443390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00803060 81.72445679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00803061 81.72446442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00803062 81.72448730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00803063 81.72448730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00803064 81.72451019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00803065 81.72451019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00803066 81.72454071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00803067 81.72454071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00803068 81.72456360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00803069 81.72456360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00803070 81.72458649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00803071 81.72459412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00803072 81.72461700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00803073 81.72461700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00803074 81.72464752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00803075 81.72464752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00803076 81.72467041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00803077 81.72467041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00803078 81.72470093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00803079 81.72470093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00803080 81.72472382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00803081 81.72473145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00803082 81.72474670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00803083 81.72475433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00803084 81.72477722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00803085 81.72477722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00803086 81.72480774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00803087 81.72480774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00803088 81.72483063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00803089 81.72483063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00803090 81.72486115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00803091 81.72486115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00803092 81.72488403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00803093 81.72489166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00803094 81.72491455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00803095 81.72491455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00803096 81.72493744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00803097 81.72493744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00803098 81.72496796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00803099 81.72496796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00803100 81.72499084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00803101 81.72499084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00803102 81.72502136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00803103 81.72502136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00803104 81.72504425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00803105 81.72505188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00803106 81.72507477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00803107 81.72507477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00803108 81.72509766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00803109 81.72509766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00803110 81.72512817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00803111 81.72512817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00803112 81.72515106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00803113 81.72515869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00803114 81.72517395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00803115 81.72518158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00803116 81.72521210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00803117 81.72521210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00803118 81.72523499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00803119 81.72523499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00803120 81.72525787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00803121 81.72525787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00803122 81.72528839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00803123 81.72529602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00803124 81.72531128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00803125 81.72531891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00803126 81.72534180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00803127 81.72534180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00803128 81.72537231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00803129 81.72537231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00803130 81.72539520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00803131 81.72539520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00803132 81.72541809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00803133 81.72542572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00803134 81.72544861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00803135 81.72545624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00803136 81.72547913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00803137 81.72547913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00803138 81.72550201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00803139 81.72550201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00803140 81.72553253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00803141 81.72553253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00803142 81.72555542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00803143 81.72555542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00803144 81.72557831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00803145 81.72558594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00803146 81.72560883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00803147 81.72561646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00803148 81.72563934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00803149 81.72563934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00803150 81.72566223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00803151 81.72566223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00803152 81.72569275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00803153 81.72569275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00803154 81.72571564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00803155 81.72572327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00803156 81.72573853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00803157 81.72574615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00803158 81.72576904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00803159 81.72576904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00803160 81.72579956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00803161 81.72579956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00803162 81.72582245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00803163 81.72582245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00803164 81.72585297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00803165 81.72585297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00803166 81.72587585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00803167 81.72588348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00803168 81.72590637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00803169 81.72591400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00803170 81.72593689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00803171 81.72593689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00803172 81.72596741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00803173 81.72596741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00803174 81.72599792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00803175 81.72599792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00803176 81.72602081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00803177 81.72602081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00803178 81.72605133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00803179 81.72605133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00803180 81.72607422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00803181 81.72608185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00803182 81.72609711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00803183 81.72610474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00803184 81.72612762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00803185 81.72612762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00803186 81.72616577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00803187 81.72616577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00803188 81.72618866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00803189 81.72619629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00803190 81.72621155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00803191 81.72621918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00803192 81.72624969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00803193 81.72624969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00803194 81.72627258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00803195 81.72627258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00803196 81.72629547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00803197 81.72629547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00803198 81.72632599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00803199 81.72632599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00803200 81.72634888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00803201 81.72635651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00803202 81.72637939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00803203 81.72637939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00803204 81.72640991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00803205 81.72640991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00803206 81.72643280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00803207 81.72643280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00803208 81.72645569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00803209 81.72646332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00803210 81.72648621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00803211 81.72648621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00803212 81.72651672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00803213 81.72651672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00803214 81.72653961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00803215 81.72653961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00803216 81.72657013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00803217 81.72657013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00803218 81.72659302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00803219 81.72660065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00803220 81.72661591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00803221 81.72662354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00803222 81.72664642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00803223 81.72664642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00803224 81.72667694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00803225 81.72667694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00803226 81.72669983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00803227 81.72669983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00803228 81.72672272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00803229 81.72672272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00803230 81.72675323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00803231 81.72676086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00803232 81.72677612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00803233 81.72678375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00803234 81.72680664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00803235 81.72681427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00803236 81.72684479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00803237 81.72684479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00803238 81.72686768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00803239 81.72687531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00803240 81.72689056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00803241 81.72689819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00803242 81.72692108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00803243 81.72692108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00803244 81.72695160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00803245 81.72695160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00803246 81.72697449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00803247 81.72697449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00803248 81.72700500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00803249 81.72700500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00803250 81.72702789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00803251 81.72703552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00803252 81.72705841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00803253 81.72705841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00803254 81.72708130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00803255 81.72708130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00803256 81.72711182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00803257 81.72711182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00803258 81.72713470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00803259 81.72714233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00803260 81.72716522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00803261 81.72716522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00803262 81.72719574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00803263 81.72719574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00803264 81.72721863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00803265 81.72721863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00803266 81.72724152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00803267 81.72724152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00803268 81.72727203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00803269 81.72727203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00803270 81.72729492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00803271 81.72730255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00803272 81.72731781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00803273 81.72732544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00803274 81.72735596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00803275 81.72735596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00803276 81.72737885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00803277 81.72738647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00803278 81.72740936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00803279 81.72740936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00803280 81.72743988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00803281 81.72743988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00803282 81.72747040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00803283 81.72747040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00803284 81.72749329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00803285 81.72749329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00803286 81.72752380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00803287 81.72752380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00803288 81.72754669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00803289 81.72755432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00803290 81.72756958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00803291 81.72757721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00803292 81.72760010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00803293 81.72760010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00803294 81.72763062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00803295 81.72763062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00803296 81.72765350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00803297 81.72765350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00803298 81.72767639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00803299 81.72767639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00803300 81.72770691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00803301 81.72771454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00803302 81.72772980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00803303 81.72773743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00803304 81.72776031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00803305 81.72776794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00803306 81.72779846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00803307 81.72779846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00803308 81.72782135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00803309 81.72782135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00803310 81.72784424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00803311 81.72785187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00803312 81.72787476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00803313 81.72787476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00803314 81.72790527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00803315 81.72791290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00803316 81.72793579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00803317 81.72793579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00803318 81.72795868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00803319 81.72795868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00803320 81.72798920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00803321 81.72799683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00803322 81.72801971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00803323 81.72801971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00803324 81.72804260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00803325 81.72804260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00803326 81.72807312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00803327 81.72807312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00803328 81.72810364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00803329 81.72811127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00803330 81.72812653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00803331 81.72813416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00803332 81.72815704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00803333 81.72815704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00803334 81.72818756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00803335 81.72819519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00803336 81.72821808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00803337 81.72822571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00803338 81.72824097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00803339 81.72824860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00803340 81.72827148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00803341 81.72827148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00803342 81.72830200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00803343 81.72830200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00803344 81.72832489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00803345 81.72832489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00803346 81.72835541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00803347 81.72835541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00803348 81.72838593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00803349 81.72838593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00803350 81.72840881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00803351 81.72841644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00803352 81.72843933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00803353 81.72843933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00803354 81.72846985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00803355 81.72846985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00803356 81.72849274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00803357 81.72850037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00803358 81.72852325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00803359 81.72852325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00803360 81.72855377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00803361 81.72855377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00803362 81.72858429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00803363 81.72858429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00803364 81.72860718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00803365 81.72860718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00803366 81.72863007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00803367 81.72863770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00803368 81.72866821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00803369 81.72866821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00803370 81.72869110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00803371 81.72869873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00803372 81.72872162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00803373 81.72872162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00803374 81.72875214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00803375 81.72875214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00803376 81.72877502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00803377 81.72877502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00803378 81.72879791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00803379 81.72880554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00803380 81.72882843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00803381 81.72882843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00803382 81.72885895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00803383 81.72885895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00803384 81.72888184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00803385 81.72888184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00803386 81.72891235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00803387 81.72891235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00803388 81.72894287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00803389 81.72894287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00803390 81.72897339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00803391 81.72897339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00803392 81.72899628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00803393 81.72900391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00803394 81.72902679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00803395 81.72902679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00803396 81.72905731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00803397 81.72905731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00803398 81.72908020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00803399 81.72908783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00803400 81.72911072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00803401 81.72911072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00803402 81.72914124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00803403 81.72914886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00803404 81.72917175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00803405 81.72917175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00803406 81.72919464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00803407 81.72919464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00803408 81.72922516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00803409 81.72922516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00803410 81.72925568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00803411 81.72925568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00803412 81.72927856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00803413 81.72928619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00803414 81.72930908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00803415 81.72930908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00803416 81.72933960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00803417 81.72933960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00803418 81.72936249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00803419 81.72936249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00803420 81.72939301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00803421 81.72939301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00803422 81.72942352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00803423 81.72942352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00803424 81.72945404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00803425 81.72945404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00803426 81.72947693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00803427 81.72947693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00803428 81.72950745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00803429 81.72950745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00803430 81.72953796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00803431 81.72953796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00803432 81.72956085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00803433 81.72956848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00803434 81.72959137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00803435 81.72959137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00803436 81.72962189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00803437 81.72962189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00803438 81.72965240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00803439 81.72966003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00803440 81.72969818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00803441 81.72970581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00803442 81.72974396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00803443 81.72974396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00803444 81.72978210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00803445 81.72978210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00803446 81.72982025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00803447 81.72982025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00803448 81.72985840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00803449 81.72986603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00803450 81.72988892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00803451 81.72989655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00803452 81.72991943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00803453 81.72991943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00803454 81.72994232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00803455 81.72994995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00803456 81.72998047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00803457 81.72998047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00803458 81.73000336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00803459 81.73000336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00803460 81.73002625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00803461 81.73003387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00803462 81.73006439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00803463 81.73006439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00803464 81.73008728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00803465 81.73009491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00803466 81.73011780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00803467 81.73011780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00803468 81.73014069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00803469 81.73014832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00803470 81.73017120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00803471 81.73017883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00803472 81.73020172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00803473 81.73020172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00803474 81.73022461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00803475 81.73022461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00803476 81.73025513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00803477 81.73026276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00803478 81.73028564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00803479 81.73028564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00803480 81.73030853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00803481 81.73031616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00803482 81.73033905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00803483 81.73033905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00803484 81.73037720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00803485 81.73037720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00803486 81.73040009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00803487 81.73040771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00803488 81.73043060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00803489 81.73043060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00803490 81.73046112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00803491 81.73046112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00803492 81.73048401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00803493 81.73049164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00803494 81.73051453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00803495 81.73051453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00803496 81.73053741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00803497 81.73053741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00803498 81.73056793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00803499 81.73057556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00803500 81.73059845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00803501 81.73059845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00803502 81.73062134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00803503 81.73062897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00803504 81.73065948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00803505 81.73065948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00803506 81.73068237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00803507 81.73068237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00803508 81.73070526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00803509 81.73071289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00803510 81.73073578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00803511 81.73073578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00803512 81.73076630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00803513 81.73076630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00803514 81.73078918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00803515 81.73079681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00803516 81.73081970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00803517 81.73081970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00803518 81.73085022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00803519 81.73085785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00803520 81.73088074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00803521 81.73088837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00803522 81.73090363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00803523 81.73091125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00803524 81.73093414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00803525 81.73093414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00803526 81.73096466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00803527 81.73096466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00803528 81.73098755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00803529 81.73098755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00803530 81.73101807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00803531 81.73101807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00803532 81.73104858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00803533 81.73104858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00803534 81.73107910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00803535 81.73107910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00803536 81.73110199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00803537 81.73110199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00803538 81.73113251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00803539 81.73113251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00803540 81.73115540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00803541 81.73116302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00803542 81.73118591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00803543 81.73118591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00803544 81.73121643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00803545 81.73121643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00803546 81.73123932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00803547 81.73123932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00803548 81.73126221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00803549 81.73126221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00803550 81.73129272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00803551 81.73129272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00803552 81.73131561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00803553 81.73132324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00803554 81.73134613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00803555 81.73134613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00803556 81.73136902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00803557 81.73136902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00803558 81.73139954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00803559 81.73139954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00803560 81.73142242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00803561 81.73143005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00803562 81.73145294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00803563 81.73145294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00803564 81.73148346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00803565 81.73148346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00803566 81.73151398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00803567 81.73151398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00803568 81.73153687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00803569 81.73153687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00803570 81.73156738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00803571 81.73157501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00803572 81.73159790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00803573 81.73159790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00803574 81.73162079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00803575 81.73162079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00803576 81.73165131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00803577 81.73165131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00803578 81.73168182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00803579 81.73168182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00803580 81.73170471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00803581 81.73171234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00803582 81.73173523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00803583 81.73173523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00803584 81.73176575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00803585 81.73176575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00803586 81.73178864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00803587 81.73179626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00803588 81.73181915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00803589 81.73181915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00803590 81.73184967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00803591 81.73184967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00803592 81.73187256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00803593 81.73188019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00803594 81.73190308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00803595 81.73190308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00803596 81.73192596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00803597 81.73193359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00803598 81.73196411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00803599 81.73196411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00803600 81.73198700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00803601 81.73198700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00803602 81.73200989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00803603 81.73201752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00803604 81.73204803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00803605 81.73204803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00803606 81.73207092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00803607 81.73207855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00803608 81.73210144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00803609 81.73210144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00803610 81.73212433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00803611 81.73213196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00803612 81.73215485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00803613 81.73216248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00803614 81.73218536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00803615 81.73218536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00803616 81.73220825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00803617 81.73220825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00803618 81.73223877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00803619 81.73223877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00803620 81.73226166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00803621 81.73226166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00803622 81.73228455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00803623 81.73229218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00803624 81.73232269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00803625 81.73232269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00803626 81.73235321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00803627 81.73235321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00803628 81.73237610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00803629 81.73237610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00803630 81.73240662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00803631 81.73240662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00803632 81.73242950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00803633 81.73243713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00803634 81.73246002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00803635 81.73246002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00803636 81.73248291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00803637 81.73248291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00803638 81.73251343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00803639 81.73251343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00803640 81.73253632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00803641 81.73254395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00803642 81.73256683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00803643 81.73256683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00803644 81.73259735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00803645 81.73259735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00803646 81.73262024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00803647 81.73262024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00803648 81.73264313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00803649 81.73264313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00803650 81.73267365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00803651 81.73268127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00803652 81.73269653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00803653 81.73270416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00803654 81.73272705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00803655 81.73272705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00803656 81.73275757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00803657 81.73275757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00803658 81.73278046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00803659 81.73278046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00803660 81.73280334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00803661 81.73281097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00803662 81.73283386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00803663 81.73284149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00803664 81.73286438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00803665 81.73286438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00803666 81.73288727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00803667 81.73289490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00803668 81.73291779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00803669 81.73291779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00803670 81.73294830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00803671 81.73295593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00803672 81.73297882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00803673 81.73297882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00803674 81.73300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00803675 81.73300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00803676 81.73303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00803677 81.73303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00803678 81.73305511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00803679 81.73305511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00803680 81.73307800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00803681 81.73308563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00803682 81.73310852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00803683 81.73311615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00803684 81.73313904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00803685 81.73313904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00803686 81.73316193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00803687 81.73316193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00803688 81.73319244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00803689 81.73319244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00803690 81.73321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00803691 81.73322296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00803692 81.73324585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00803693 81.73324585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00803694 81.73327637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00803695 81.73327637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00803696 81.73329926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00803697 81.73329926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00803698 81.73332214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00803699 81.73332214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00803700 81.73335266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00803701 81.73336029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00803702 81.73338318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00803703 81.73338318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00803704 81.73340607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00803705 81.73340607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00803706 81.73343658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00803707 81.73343658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00803708 81.73345947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00803709 81.73345947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00803710 81.73348236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00803711 81.73348999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00803712 81.73352051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00803713 81.73352051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00803714 81.73354340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00803715 81.73355103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00803716 81.73357391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00803717 81.73357391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00803718 81.73359680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00803719 81.73360443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00803720 81.73362732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00803721 81.73363495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00803722 81.73365784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00803723 81.73365784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00803724 81.73368073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00803725 81.73368073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00803726 81.73371124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00803727 81.73371124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00803728 81.73373413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00803729 81.73373413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00803730 81.73375702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00803731 81.73376465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00803732 81.73379517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00803733 81.73379517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00803734 81.73381805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00803735 81.73381805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00803736 81.73384094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00803737 81.73384094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00803738 81.73387146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00803739 81.73387146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00803740 81.73389435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00803741 81.73390198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00803742 81.73392487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00803743 81.73392487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00803744 81.73395538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00803745 81.73395538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00803746 81.73397827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00803747 81.73397827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00803748 81.73400879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00803749 81.73400879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00803750 81.73403168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00803751 81.73403168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00803752 81.73406982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00803753 81.73406982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00803754 81.73409271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00803755 81.73409271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00803756 81.73411560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00803757 81.73412323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00803758 81.73415375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00803759 81.73415375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00803760 81.73418427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00803761 81.73418427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00803762 81.73420715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00803763 81.73420715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00803764 81.73423004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00803765 81.73423767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00803766 81.73426056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00803767 81.73426819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00803768 81.73429108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00803769 81.73429108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00803770 81.73431396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00803771 81.73431396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00803772 81.73434448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00803773 81.73434448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00803774 81.73436737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00803775 81.73437500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00803776 81.73439026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00803777 81.73439789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00803778 81.73442841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00803779 81.73442841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00803780 81.73445129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00803781 81.73445129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00803782 81.73447418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00803783 81.73447418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00803784 81.73450470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00803785 81.73451233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00803786 81.73452759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00803787 81.73453522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00803788 81.73455811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00803789 81.73455811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00803790 81.73458862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00803791 81.73458862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00803792 81.73461151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00803793 81.73461151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00803794 81.73464203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00803795 81.73464203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00803796 81.73467255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00803797 81.73467255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00803798 81.73470306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00803799 81.73470306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00803800 81.73472595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00803801 81.73472595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00803802 81.73474884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00803803 81.73475647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00803804 81.73478699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00803805 81.73478699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00803806 81.73480988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00803807 81.73480988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00803808 81.73484039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00803809 81.73484039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00803810 81.73487091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00803811 81.73487091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00803812 81.73489380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00803813 81.73490143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00803814 81.73491669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00803815 81.73492432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00803816 81.73494720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00803817 81.73494720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00803818 81.73497772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00803819 81.73497772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00803820 81.73500061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00803821 81.73500061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00803822 81.73502350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00803823 81.73503113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00803824 81.73505402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00803825 81.73506165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00803826 81.73508453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00803827 81.73508453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00803828 81.73510742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00803829 81.73510742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00803830 81.73513794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00803831 81.73513794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00803832 81.73516083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00803833 81.73516846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00803834 81.73518372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00803835 81.73519135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00803836 81.73522186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00803837 81.73522186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00803838 81.73524475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00803839 81.73524475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00803840 81.73526764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00803841 81.73526764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00803842 81.73529816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00803843 81.73530579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00803844 81.73532867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00803845 81.73532867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00803846 81.73535156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00803847 81.73535919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00803848 81.73538208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00803849 81.73538208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00803850 81.73541260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00803851 81.73542023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00803852 81.73544312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00803853 81.73544312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00803854 81.73546600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00803855 81.73546600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00803856 81.73549652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00803857 81.73550415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00803858 81.73552704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00803859 81.73552704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00803860 81.73554993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00803861 81.73554993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00803862 81.73558044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00803863 81.73558044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00803864 81.73561096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00803865 81.73561096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00803866 81.73563385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00803867 81.73564148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00803868 81.73566437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00803869 81.73566437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00803870 81.73569489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00803871 81.73569489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00803872 81.73571777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00803873 81.73572540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00803874 81.73574829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00803875 81.73574829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00803876 81.73577881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00803877 81.73577881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00803878 81.73580170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00803879 81.73580933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00803880 81.73583221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00803881 81.73583221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00803882 81.73586273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00803883 81.73586273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00803884 81.73589325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00803885 81.73589325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00803886 81.73591614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00803887 81.73591614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00803888 81.73593903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00803889 81.73594666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00803890 81.73597717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00803891 81.73597717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00803892 81.73600006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00803893 81.73600769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00803894 81.73603058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00803895 81.73603058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00803896 81.73606110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -00803897 81.73606110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -00803898 81.73608398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -00803899 81.73609161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -00803900 81.73611450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -00803901 81.73611450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -00803902 81.73613739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -00803903 81.73613739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -00803904 81.73616791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -00803905 81.73617554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -00803906 81.73619843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -00803907 81.73620605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -00803908 81.73622131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -00803909 81.73622894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -00803910 81.73625946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -00803911 81.73625946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -00803912 81.73628235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -00803913 81.73628235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -00803914 81.73631287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -00803915 81.73631287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -00803916 81.73633575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -00803917 81.73633575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -00803918 81.73636627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -00803919 81.73637390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -00803920 81.73639679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -00803921 81.73639679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -00803922 81.73641968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -00803923 81.73641968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -00803924 81.73645020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -00803925 81.73645782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -00803926 81.73648071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -00803927 81.73648071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -00803928 81.73651123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -00803929 81.73651123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -00803930 81.73653412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -00803931 81.73653412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -00803932 81.73656464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -00803933 81.73656464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -00803934 81.73658752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -00803935 81.73659515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -00803936 81.73661804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -00803937 81.73661804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -00803938 81.73664856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -00803939 81.73665619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -00803940 81.73667908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -00803941 81.73667908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -00803942 81.73670197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -00803943 81.73670197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -00803944 81.73673248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -00803945 81.73673248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -00803946 81.73676300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -00803947 81.73677063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -00803948 81.73679352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -00803949 81.73679352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -00803950 81.73681641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -00803951 81.73682404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -00803952 81.73685455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -00803953 81.73685455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -00803954 81.73688507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -00803955 81.73688507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -00803956 81.73690796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -00803957 81.73690796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -00803958 81.73693085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -00803959 81.73693085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -00803960 81.73696136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -00803961 81.73696136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -00803962 81.73698425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -00803963 81.73699188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -00803964 81.73701477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -00803965 81.73701477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -00803966 81.73704529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -00803967 81.73704529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -00803968 81.73706818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -00803969 81.73706818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -00803970 81.73709106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -00803971 81.73709106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -00803972 81.73712158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -00803973 81.73712921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -00803974 81.73715210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -00803975 81.73715210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -00803976 81.73717499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -00803977 81.73718262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -00803978 81.73721313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -00803979 81.73721313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -00803980 81.73723602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -00803981 81.73724365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -00803982 81.73726654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -00803983 81.73726654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -00803984 81.73728943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -00803985 81.73729706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -00803986 81.73731995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -00803987 81.73732758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -00803988 81.73735046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -00803989 81.73735046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -00803990 81.73737335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -00803991 81.73737335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -00803992 81.73740387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00803993 81.73740387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00803994 81.73742676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00803995 81.73743439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00803996 81.73744965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00803997 81.73745728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00803998 81.73748779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00803999 81.73748779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00804000 81.73751068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00804001 81.73751068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00804002 81.73753357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00804003 81.73753357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00804004 81.73756409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00804005 81.73756409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00804006 81.73758698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -00804007 81.73759460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -00804008 81.73760986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -00804009 81.73761749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -00804010 81.73764801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -00804011 81.73764801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -00804012 81.73767090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -00804013 81.73767090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -00804014 81.73769379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -00804015 81.73769379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -00804016 81.73772430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -00804017 81.73772430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -00804018 81.73775482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -00804019 81.73776245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -00804020 81.73778534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -00804021 81.73778534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -00804022 81.73780823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -00804023 81.73780823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -00804024 81.73784637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -00804025 81.73784637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -00804026 81.73786926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -00804027 81.73786926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -00804028 81.73789215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -00804029 81.73789215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -00804030 81.73792267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -00804031 81.73792267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -00804032 81.73794556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -00804033 81.73795319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -00804034 81.73797607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -00804035 81.73797607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -00804036 81.73800659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -00804037 81.73800659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -00804038 81.73802948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -00804039 81.73802948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -00804040 81.73805237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -00804041 81.73806000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -00804042 81.73808289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -00804043 81.73808289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -00804044 81.73811340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -00804045 81.73811340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -00804046 81.73813629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -00804047 81.73813629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -00804048 81.73816681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00804049 81.73816681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00804050 81.73818970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00804051 81.73819733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00804052 81.73821259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00804053 81.73822021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00804054 81.73824310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00804055 81.73824310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00804056 81.73827362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00804057 81.73827362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00804058 81.73829651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00804059 81.73829651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00804060 81.73831940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -00804061 81.73831940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -00804062 81.73834991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -00804063 81.73835754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -00804064 81.73838043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -00804065 81.73838806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -00804066 81.73841095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -00804067 81.73841095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -00804068 81.73844147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -00804069 81.73844147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -00804070 81.73846436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -00804071 81.73847198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -00804072 81.73849487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -00804073 81.73849487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -00804074 81.73852539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -00804075 81.73852539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -00804076 81.73855591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -00804077 81.73855591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -00804078 81.73857880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -00804079 81.73858643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -00804080 81.73860931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -00804081 81.73860931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -00804082 81.73863983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -00804083 81.73863983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -00804084 81.73866272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -00804085 81.73866272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -00804086 81.73868561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -00804087 81.73868561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -00804088 81.73871613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -00804089 81.73872375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -00804090 81.73873901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -00804091 81.73874664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -00804092 81.73876953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -00804093 81.73876953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -00804094 81.73880005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -00804095 81.73880005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -00804096 81.73882294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -00804097 81.73882294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -00804098 81.73884583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -00804099 81.73885345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -00804100 81.73887634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -00804101 81.73887634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -00804102 81.73890686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -00804103 81.73890686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -00804104 81.73892975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -00804105 81.73892975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -00804106 81.73896027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -00804107 81.73896027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -00804108 81.73898315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -00804109 81.73898315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -00804110 81.73900604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -00804111 81.73901367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -00804112 81.73903656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -00804113 81.73904419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -00804114 81.73907471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -00804115 81.73907471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -00804116 81.73909760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -00804117 81.73909760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -00804118 81.73912048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -00804119 81.73912811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -00804120 81.73915863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -00804121 81.73915863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -00804122 81.73918152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -00804123 81.73918152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -00804124 81.73921204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -00804125 81.73921204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -00804126 81.73923492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -00804127 81.73923492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -00804128 81.73926544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -00804129 81.73927307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -00804130 81.73928833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -00804131 81.73929596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -00804132 81.73931885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -00804133 81.73931885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -00804134 81.73934937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -00804135 81.73934937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -00804136 81.73937225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -00804137 81.73937225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -00804138 81.73939514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -00804139 81.73940277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -00804140 81.73942566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -00804141 81.73943329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -00804142 81.73945618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -00804143 81.73945618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -00804144 81.73947906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -00804145 81.73947906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -00804146 81.73950958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -00804147 81.73950958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -00804148 81.73953247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -00804149 81.73953247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -00804150 81.73955536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -00804151 81.73956299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -00804152 81.73958588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -00804153 81.73959351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -00804154 81.73961639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -00804155 81.73962402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -00804156 81.73964691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -00804157 81.73964691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -00804158 81.73966980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -00804159 81.73966980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -00804160 81.73970032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -00804161 81.73970795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -00804162 81.73973083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -00804163 81.73973083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -00804164 81.73975372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -00804165 81.73976135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -00804166 81.73979187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -00804167 81.73979187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -00804168 81.73981476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -00804169 81.73981476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -00804170 81.73983765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -00804171 81.73984528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -00804172 81.73987579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -00804173 81.73987579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -00804174 81.73989868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -00804175 81.73990631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -00804176 81.73992920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -00804177 81.73992920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -00804178 81.73995209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -00804179 81.73995209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -00804180 81.73998260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -00804181 81.73999023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -00804182 81.74001312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -00804183 81.74001312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -00804184 81.74003601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -00804185 81.74003601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -00804186 81.74006653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -00804187 81.74007416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -00804188 81.74009705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -00804189 81.74009705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -00804190 81.74011993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -00804191 81.74011993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -00804192 81.74015045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -00804193 81.74015045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -00804194 81.74018097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -00804195 81.74018097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -00804196 81.74020386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -00804197 81.74021149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -00804198 81.74023438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -00804199 81.74023438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -00804200 81.74026489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -00804201 81.74026489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -00804202 81.74028778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -00804203 81.74029541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -00804204 81.74031830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -00804205 81.74031830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -00804206 81.74034882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -00804207 81.74034882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -00804208 81.74037933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -00804209 81.74038696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -00804210 81.74040985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -00804211 81.74040985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -00804212 81.74043274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -00804213 81.74043274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -00804214 81.74046326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -00804215 81.74047089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -00804216 81.74048615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -00804217 81.74049377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -00804218 81.74051666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -00804219 81.74051666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -00804220 81.74054718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -00804221 81.74054718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -00804222 81.74057007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -00804223 81.74057007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -00804224 81.74059296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -00804225 81.74060059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -00804226 81.74062347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -00804227 81.74062347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -00804228 81.74065399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -00804229 81.74065399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -00804230 81.74067688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -00804231 81.74067688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -00804232 81.74070740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -00804233 81.74070740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -00804234 81.74073029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -00804235 81.74073029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -00804236 81.74075317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -00804237 81.74076080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -00804238 81.74078369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -00804239 81.74078369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -00804240 81.74081421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -00804241 81.74081421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -00804242 81.74083710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -00804243 81.74083710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -00804244 81.74086761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -00804245 81.74086761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -00804246 81.74089813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -00804247 81.74089813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -00804248 81.74092102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -00804249 81.74092865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -00804250 81.74095154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -00804251 81.74095154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -00804252 81.74098206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -00804253 81.74098206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -00804254 81.74100494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -00804255 81.74101257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -00804256 81.74103546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -00804257 81.74103546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -00804258 81.74106598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -00804259 81.74106598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -00804260 81.74109650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00804261 81.74109650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00804262 81.74111938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00804263 81.74111938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00804264 81.74114227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00804265 81.74114990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00804266 81.74117279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00804267 81.74118042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00804268 81.74120331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00804269 81.74120331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00804270 81.74122620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00804271 81.74122620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00804272 81.74125671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00804273 81.74125671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00804274 81.74127960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00804275 81.74128723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00804276 81.74130249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -00804277 81.74131012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -00804278 81.74134064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -00804279 81.74134064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -00804280 81.74136353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -00804281 81.74136353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -00804282 81.74138641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -00804283 81.74138641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -00804284 81.74141693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -00804285 81.74141693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -00804286 81.74143982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -00804287 81.74144745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -00804288 81.74146271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -00804289 81.74147034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -00804290 81.74150085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -00804291 81.74150085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -00804292 81.74153137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -00804293 81.74153137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -00804294 81.74155426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -00804295 81.74155426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -00804296 81.74157715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -00804297 81.74158478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -00804298 81.74161530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -00804299 81.74161530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -00804300 81.74164581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -00804301 81.74164581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -00804302 81.74167633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -00804303 81.74167633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -00804304 81.74169922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -00804305 81.74169922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -00804306 81.74172974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -00804307 81.74172974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -00804308 81.74175262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -00804309 81.74176025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -00804310 81.74177551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -00804311 81.74178314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -00804312 81.74181366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -00804313 81.74181366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -00804314 81.74183655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -00804315 81.74183655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -00804316 81.74185944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -00804317 81.74185944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -00804318 81.74188995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -00804319 81.74188995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -00804320 81.74191284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -00804321 81.74192047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -00804322 81.74193573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -00804323 81.74194336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -00804324 81.74197388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -00804325 81.74197388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -00804326 81.74199677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -00804327 81.74199677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -00804328 81.74201965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -00804329 81.74201965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -00804330 81.74205017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -00804331 81.74205780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -00804332 81.74207306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -00804333 81.74208069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -00804334 81.74210358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -00804335 81.74210358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -00804336 81.74213409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -00804337 81.74213409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -00804338 81.74215698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -00804339 81.74215698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -00804340 81.74217987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -00804341 81.74218750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -00804342 81.74221039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -00804343 81.74221802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -00804344 81.74224091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -00804345 81.74224854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -00804346 81.74227142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -00804347 81.74227142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -00804348 81.74229431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -00804349 81.74230194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -00804350 81.74232483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -00804351 81.74233246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -00804352 81.74235535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -00804353 81.74235535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -00804354 81.74237823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -00804355 81.74237823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -00804356 81.74240875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -00804357 81.74240875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -00804358 81.74243164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -00804359 81.74243927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -00804360 81.74245453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -00804361 81.74246216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -00804362 81.74249268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -00804363 81.74249268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -00804364 81.74251556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -00804365 81.74251556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -00804366 81.74253845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -00804367 81.74253845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -00804368 81.74256897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -00804369 81.74256897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -00804370 81.74259186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -00804371 81.74259949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -00804372 81.74261475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -00804373 81.74262238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -00804374 81.74265289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -00804375 81.74265289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -00804376 81.74267578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -00804377 81.74267578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -00804378 81.74269867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -00804379 81.74269867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -00804380 81.74272919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -00804381 81.74272919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -00804382 81.74275970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -00804383 81.74275970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -00804384 81.74278259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -00804385 81.74279022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -00804386 81.74281311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -00804387 81.74281311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -00804388 81.74284363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -00804389 81.74284363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -00804390 81.74287415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -00804391 81.74287415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -00804392 81.74289703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -00804393 81.74289703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -00804394 81.74292755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -00804395 81.74292755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -00804396 81.74295807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -00804397 81.74295807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -00804398 81.74298096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -00804399 81.74298096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -00804400 81.74301147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -00804401 81.74301147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -00804402 81.74304199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -00804403 81.74304199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -00804404 81.74306488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -00804405 81.74307251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -00804406 81.74309540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -00804407 81.74309540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -00804408 81.74312592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -00804409 81.74312592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -00804410 81.74315643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -00804411 81.74315643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -00804412 81.74317932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -00804413 81.74317932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -00804414 81.74320984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -00804415 81.74320984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -00804416 81.74324036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -00804417 81.74324036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -00804418 81.74326324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -00804419 81.74327087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -00804420 81.74329376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -00804421 81.74329376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -00804422 81.74332428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -00804423 81.74332428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -00804424 81.74334717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -00804425 81.74335480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -00804426 81.74337769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -00804427 81.74337769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -00804428 81.74340820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -00804429 81.74340820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -00804430 81.74343872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -00804431 81.74343872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -00804432 81.74346161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -00804433 81.74346924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -00804434 81.74349213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -00804435 81.74349213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -00804436 81.74352264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -00804437 81.74352264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -00804438 81.74355316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -00804439 81.74355316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -00804440 81.74357605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -00804441 81.74358368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -00804442 81.74360657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -00804443 81.74360657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -00804444 81.74363708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -00804445 81.74364471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -00804446 81.74366760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -00804447 81.74366760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -00804448 81.74369049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -00804449 81.74369049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -00804450 81.74372101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -00804451 81.74372101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -00804452 81.74375153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -00804453 81.74375153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -00804454 81.74378204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -00804455 81.74378967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -00804456 81.74381256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -00804457 81.74382019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -00804458 81.74384308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -00804459 81.74384308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -00804460 81.74387360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -00804461 81.74387360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -00804462 81.74389648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -00804463 81.74390411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -00804464 81.74394989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -00804465 81.74394989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -00804466 81.74398804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -00804467 81.74399567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -00804468 81.74404144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -00804469 81.74404144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -00804470 81.74407959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -00804471 81.74407959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -00804472 81.74412537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -00804473 81.74412537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -00804474 81.74416351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -00804475 81.74417114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -00804476 81.74420166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -00804477 81.74420166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -00804478 81.74423981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -00804479 81.74423981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -00804480 81.74426270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -00804481 81.74426270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -00804482 81.74428558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -00804483 81.74429321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -00804484 81.74432373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -00804485 81.74432373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -00804486 81.74434662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -00804487 81.74435425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -00804488 81.74437714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -00804489 81.74437714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -00804490 81.74440002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -00804491 81.74440002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -00804492 81.74443054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -00804493 81.74443817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -00804494 81.74446106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -00804495 81.74446869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -00804496 81.74450684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -00804497 81.74450684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -00804498 81.74454498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -00804499 81.74455261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -00804500 81.74459076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -00804501 81.74459839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -00804502 81.74463654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -00804503 81.74463654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -00804504 81.74467468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -00804505 81.74468231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -00804506 81.74472046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -00804507 81.74472809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -00804508 81.74475861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -00804509 81.74475861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -00804510 81.74478149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -00804511 81.74478912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -00804512 81.74481201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -00804513 81.74481201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -00804514 81.74483490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -00804515 81.74483490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -00804516 81.74486542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -00804517 81.74487305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -00804518 81.74489594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -00804519 81.74489594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -00804520 81.74491882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -00804521 81.74492645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -00804522 81.74495697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -00804523 81.74495697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -00804524 81.74497986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -00804525 81.74497986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -00804526 81.74500275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -00804527 81.74501038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -00804528 81.74503326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -00804529 81.74503326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -00804530 81.74506378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -00804531 81.74507141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -00804532 81.74509430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -00804533 81.74509430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -00804534 81.74511719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -00804535 81.74511719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -00804536 81.74514771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -00804537 81.74515533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -00804538 81.74517822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -00804539 81.74517822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -00804540 81.74520111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -00804541 81.74520874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -00804542 81.74523163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -00804543 81.74523163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -00804544 81.74526215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -00804545 81.74526215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -00804546 81.74529266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -00804547 81.74529266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -00804548 81.74531555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -00804549 81.74531555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -00804550 81.74534607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -00804551 81.74535370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -00804552 81.74537659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -00804553 81.74537659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -00804554 81.74539948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -00804555 81.74540710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -00804556 81.74542999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -00804557 81.74542999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -00804558 81.74546051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -00804559 81.74546051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -00804560 81.74548340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -00804561 81.74549103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -00804562 81.74551392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -00804563 81.74551392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -00804564 81.74554443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -00804565 81.74555206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -00804566 81.74557495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -00804567 81.74557495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -00804568 81.74559784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -00804569 81.74560547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -00804570 81.74562836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -00804571 81.74562836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -00804572 81.74565887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -00804573 81.74565887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -00804574 81.74568176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -00804575 81.74568939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -00804576 81.74571228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -00804577 81.74571228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -00804578 81.74574280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -00804579 81.74575043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -00804580 81.74577332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -00804581 81.74577332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -00804582 81.74579620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -00804583 81.74579620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -00804584 81.74582672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -00804585 81.74582672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -00804586 81.74585724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -00804587 81.74585724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -00804588 81.74588013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -00804589 81.74588776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -00804590 81.74591064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -00804591 81.74591064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -00804592 81.74594879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -00804593 81.74594879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -00804594 81.74598694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -00804595 81.74598694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -00804596 81.74601746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -00804597 81.74601746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -00804598 81.74604034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -00804599 81.74604797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -00804600 81.74607086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -00804601 81.74607086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -00804602 81.74610138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -00804603 81.74610901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -00804604 81.74613190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -00804605 81.74613190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -00804606 81.74615479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -00804607 81.74616241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -00804608 81.74618530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -00804609 81.74618530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -00804610 81.74621582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -00804611 81.74621582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -00804612 81.74623871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -00804613 81.74624634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -00804614 81.74626923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -00804615 81.74626923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -00804616 81.74629974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -00804617 81.74630737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -00804618 81.74633026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -00804619 81.74633026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -00804620 81.74635315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -00804621 81.74635315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -00804622 81.74638367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -00804623 81.74638367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -00804624 81.74641418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -00804625 81.74641418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -00804626 81.74643707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -00804627 81.74644470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -00804628 81.74646759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -00804629 81.74646759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -00804630 81.74649811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -00804631 81.74649811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -00804632 81.74652100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -00804633 81.74652863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -00804634 81.74655151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -00804635 81.74655151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -00804636 81.74658203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -00804637 81.74658203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -00804638 81.74661255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -00804639 81.74661255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -00804640 81.74663544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -00804641 81.74663544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -00804642 81.74666595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -00804643 81.74666595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -00804644 81.74669647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -00804645 81.74669647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -00804646 81.74671936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -00804647 81.74672699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -00804648 81.74674988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -00804649 81.74674988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -00804650 81.74678040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -00804651 81.74678040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -00804652 81.74681091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -00804653 81.74681091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -00804654 81.74683380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -00804655 81.74683380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -00804656 81.74686432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -00804657 81.74686432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -00804658 81.74689484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -00804659 81.74689484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -00804660 81.74691772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -00804661 81.74691772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -00804662 81.74694061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -00804663 81.74694824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -00804664 81.74697876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -00804665 81.74697876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -00804666 81.74700165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -00804667 81.74700928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -00804668 81.74703217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -00804669 81.74703217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -00804670 81.74706268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -00804671 81.74706268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -00804672 81.74708557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -00804673 81.74709320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -00804674 81.74711609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -00804675 81.74711609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -00804676 81.74713898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -00804677 81.74714661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -00804678 81.74717712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -00804679 81.74717712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -00804680 81.74720001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -00804681 81.74720001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -00804682 81.74722290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -00804683 81.74723053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -00804684 81.74726105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -00804685 81.74726105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -00804686 81.74728394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -00804687 81.74728394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -00804688 81.74730682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -00804689 81.74731445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -00804690 81.74733734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -00804691 81.74733734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -00804692 81.74736786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -00804693 81.74737549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -00804694 81.74739838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -00804695 81.74739838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -00804696 81.74742126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00804697 81.74742126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00804698 81.74745178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00804699 81.74745941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00804700 81.74748230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00804701 81.74748230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00804702 81.74750519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00804703 81.74751282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00804704 81.74753571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00804705 81.74753571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00804706 81.74756622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00804707 81.74756622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00804708 81.74758911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00804709 81.74759674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00804710 81.74761963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00804711 81.74761963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00804712 81.74765015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00804713 81.74765778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00804714 81.74768066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00804715 81.74768066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00804716 81.74770355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -00804717 81.74770355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -00804718 81.74773407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -00804719 81.74773407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -00804720 81.74776459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -00804721 81.74776459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -00804722 81.74778748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -00804723 81.74779510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -00804724 81.74781799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -00804725 81.74781799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -00804726 81.74784851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -00804727 81.74784851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -00804728 81.74787903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -00804729 81.74787903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -00804730 81.74790192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -00804731 81.74790192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -00804732 81.74793243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -00804733 81.74793243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -00804734 81.74796295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -00804735 81.74796295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -00804736 81.74798584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -00804737 81.74798584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -00804738 81.74801636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -00804739 81.74801636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -00804740 81.74804688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -00804741 81.74804688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -00804742 81.74806976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -00804743 81.74807739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -00804744 81.74810028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -00804745 81.74810028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -00804746 81.74813080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -00804747 81.74813080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -00804748 81.74815369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -00804749 81.74816132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -00804750 81.74818420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -00804751 81.74818420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -00804752 81.74821472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -00804753 81.74821472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -00804754 81.74824524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -00804755 81.74824524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -00804756 81.74826813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -00804757 81.74826813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -00804758 81.74829102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -00804759 81.74829865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -00804760 81.74832916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -00804761 81.74832916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -00804762 81.74835205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -00804763 81.74835205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -00804764 81.74837494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -00804765 81.74838257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -00804766 81.74841309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -00804767 81.74841309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -00804768 81.74843597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -00804769 81.74844360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -00804770 81.74846649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -00804771 81.74846649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -00804772 81.74848938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -00804773 81.74848938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -00804774 81.74851990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -00804775 81.74852753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -00804776 81.74855042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -00804777 81.74855042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -00804778 81.74857330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -00804779 81.74858093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -00804780 81.74861145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -00804781 81.74861145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -00804782 81.74863434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -00804783 81.74863434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -00804784 81.74865723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -00804785 81.74866486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -00804786 81.74868774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -00804787 81.74868774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -00804788 81.74871826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -00804789 81.74872589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -00804790 81.74874115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -00804791 81.74874878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -00804792 81.74877167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -00804793 81.74877167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -00804794 81.74880219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -00804795 81.74880981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -00804796 81.74883270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -00804797 81.74883270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -00804798 81.74885559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -00804799 81.74885559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -00804800 81.74888611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -00804801 81.74888611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -00804802 81.74891663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -00804803 81.74891663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -00804804 81.74893951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -00804805 81.74893951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -00804806 81.74897003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -00804807 81.74897003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -00804808 81.74900055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -00804809 81.74900055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -00804810 81.74902344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -00804811 81.74903107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -00804812 81.74905396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -00804813 81.74905396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -00804814 81.74908447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -00804815 81.74908447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -00804816 81.74911499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -00804817 81.74912262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -00804818 81.74915314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -00804819 81.74916077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -00804820 81.74918365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -00804821 81.74918365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -00804822 81.74920654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -00804823 81.74920654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -00804824 81.74924469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -00804825 81.74924469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -00804826 81.74927521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -00804827 81.74928284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -00804828 81.74930573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -00804829 81.74930573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -00806390 81.77127838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -00806391 81.77128601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -00806392 81.77130890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -00806393 81.77130890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -00806394 81.77133179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -00806395 81.77133179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -00806396 81.77136230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -00806397 81.77136993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -00806398 81.77139282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -00806399 81.77139282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -00806400 81.77141571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -00806401 81.77141571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -00806402 81.77144623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -00806403 81.77144623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -00806404 81.77147675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -00806405 81.77147675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -00806406 81.77149963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -00806407 81.77150726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -00806408 81.77153015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -00806409 81.77153015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -00806410 81.77156067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -00806411 81.77156067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -00806412 81.77158356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -00806413 81.77159119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -00806414 81.77161407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -00806415 81.77161407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -00806416 81.77164459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -00806417 81.77164459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -00806418 81.77167511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -00806419 81.77167511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -00806420 81.77169800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -00806421 81.77169800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -00806422 81.77172852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -00806423 81.77172852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -00806424 81.77175903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -00806425 81.77175903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -00806426 81.77178192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -00806427 81.77178955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -00806428 81.77181244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -00806429 81.77181244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -00806430 81.77184296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -00806431 81.77184296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -00806432 81.77186584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -00806433 81.77187347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -00843116 81.98310089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25428 -00843117 81.98310089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf998 -00843118 81.98310089 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d018 -00843119 81.98310089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25428 -00843120 81.98310089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf998 -00843121 81.98310089 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d018 -00843122 81.98312378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25438 -00843123 81.98312378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a8 -00843124 81.98312378 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d028 -00843125 81.98313141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25438 -00843126 81.98313141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a8 -00843127 81.98313141 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d028 -00843128 81.98315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25448 -00843129 81.98315430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b8 -00843130 81.98315430 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d038 -00843131 81.98315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25448 -00843132 81.98315430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b8 -00843133 81.98315430 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d038 -00843134 81.98317719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25458 -00843135 81.98317719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c8 -00843136 81.98318481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25458 -00843137 81.98318481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c8 -00843138 81.98318481 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d048 -00843139 81.98318481 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d048 -00843140 81.98321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25468 -00843141 81.98321533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d8 -00843142 81.98321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25468 -00843143 81.98321533 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d058 -00843144 81.98322296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d8 -00843145 81.98322296 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d058 -00843146 81.98323822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25478 -00843147 81.98324585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e8 -00843148 81.98324585 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d068 -00843149 81.98324585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25478 -00843150 81.98324585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e8 -00843151 81.98324585 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d068 -00843152 81.98326874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25488 -00843153 81.98326874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f8 -00843154 81.98326874 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d078 -00843155 81.98326874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25488 -00843156 81.98327637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f8 -00843157 81.98327637 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d078 -00843158 81.98329926 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d088 -00843159 81.98329926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25498 -00852580 82.02971649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b568 -00852581 82.02971649 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23468 -00852582 82.02972412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b88 -00852583 82.02972412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b568 -00852584 82.02972412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b88 -00852585 82.02972412 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23468 -00852586 82.02974701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b578 -00852587 82.02974701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b578 -00852588 82.02975464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b98 -00852589 82.02976227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b98 -00852590 82.02976227 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23478 -00852591 82.02976990 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23478 -00852592 82.02977753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b588 -00852593 82.02977753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b588 -00852594 82.02978516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba8 -00852595 82.02978516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba8 -00852596 82.02980042 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23488 -00852597 82.02980804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b598 -00852598 82.02980804 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23488 -00852599 82.02980804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b598 -00852600 82.02980804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb8 -00852601 82.02980804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb8 -00852602 82.02983093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a8 -00852603 82.02983856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a8 -00852604 82.02984619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc8 -00852605 82.02984619 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23498 -00852606 82.02984619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc8 -00852607 82.02984619 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23498 -00852608 82.02986145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b8 -00852609 82.02986145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b8 -00852610 82.02986908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd8 -00852611 82.02986908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd8 -00852612 82.02988434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a8 -00852613 82.02988434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a8 -00852614 82.02988434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c8 -00852615 82.02989197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c8 -00852616 82.02989197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be8 -00852617 82.02989960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be8 -00852618 82.02992249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d8 -00852619 82.02992249 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b8 -00852620 82.02992249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d8 -00852621 82.02993011 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b8 -00852622 82.02993011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf8 -00852623 82.02993011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf8 -00864852 82.08901978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33558 -00864853 82.08901978 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e8 -00864854 82.08901978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db98 -00864855 82.08901978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33558 -00864856 82.08901978 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e8 -00864857 82.08901978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db98 -00864858 82.08904266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33568 -00864859 82.08904266 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f8 -00864860 82.08904266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dba8 -00864861 82.08904266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33568 -00864862 82.08905029 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f8 -00864863 82.08905029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dba8 -00864864 82.08906555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33578 -00864865 82.08907318 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b408 -00864866 82.08907318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33578 -00864867 82.08907318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbb8 -00864868 82.08907318 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b408 -00864869 82.08907318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbb8 -00864870 82.08910370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33588 -00864871 82.08910370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33588 -00864872 82.08910370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbc8 -00864873 82.08910370 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b418 -00864874 82.08910370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbc8 -00864875 82.08910370 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b418 -00864876 82.08912659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33598 -00864877 82.08913422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33598 -00864878 82.08913422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd8 -00864879 82.08913422 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b428 -00864880 82.08913422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd8 -00864881 82.08914185 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b428 -00864882 82.08915710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x335a8 -00864883 82.08915710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x335a8 -00864884 82.08915710 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b438 -00864885 82.08916473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe8 -00864886 82.08916473 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b438 -00864887 82.08916473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe8 -00864888 82.08918762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x335b8 -00864889 82.08918762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x335b8 -00864890 82.08918762 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b448 -00864891 82.08918762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf8 -00864892 82.08918762 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b448 -00864893 82.08919525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf8 -00864894 82.08921814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x335c8 -00864895 82.08921814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x335c8 -00877340 82.14911652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33648 -00877341 82.14911652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b718 -00877342 82.14911652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25db8 -00877343 82.14912415 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33648 -00877344 82.14912415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b718 -00877345 82.14912415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25db8 -00877346 82.14915466 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33658 -00877347 82.14915466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b728 -00877348 82.14915466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dc8 -00877349 82.14915466 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33658 -00877350 82.14915466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b728 -00877351 82.14915466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dc8 -00877352 82.14917755 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33668 -00877353 82.14918518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dd8 -00877354 82.14918518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b738 -00877355 82.14918518 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33668 -00877356 82.14918518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dd8 -00877357 82.14918518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b738 -00877358 82.14920807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25de8 -00877359 82.14920807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b748 -00877360 82.14920807 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33678 -00877361 82.14920807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25de8 -00877362 82.14921570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b748 -00877363 82.14921570 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33678 -00877364 82.14923859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df8 -00877365 82.14923859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b758 -00877366 82.14923859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33688 -00877367 82.14923859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df8 -00877368 82.14923859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b758 -00877369 82.14923859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33688 -00877370 82.14926910 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33698 -00877371 82.14926910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e08 -00877372 82.14926910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b768 -00877373 82.14927673 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33698 -00877374 82.14927673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b768 -00877375 82.14927673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e08 -00877376 82.14929962 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a8 -00877377 82.14929962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b778 -00877378 82.14929962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e18 -00877379 82.14929962 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a8 -00877380 82.14929962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b778 -00877381 82.14929962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e18 -00877382 82.14932251 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b8 -00877383 82.14932251 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b8 -00889734 82.20870209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43808 -00889735 82.20870209 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d8 -00889736 82.20870972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de88 -00889737 82.20870972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43808 -00889738 82.20870972 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d8 -00889739 82.20870972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de88 -00889740 82.20873260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43818 -00889741 82.20873260 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e8 -00889742 82.20873260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de98 -00889743 82.20873260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43818 -00889744 82.20874023 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e8 -00889745 82.20874023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de98 -00889746 82.20876312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43828 -00889747 82.20877075 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f8 -00889748 82.20877075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43828 -00889749 82.20877075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea8 -00889750 82.20877075 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f8 -00889751 82.20877075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea8 -00889752 82.20879364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43838 -00889753 82.20879364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43838 -00889754 82.20880127 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b808 -00889755 82.20880127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb8 -00889756 82.20880127 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b808 -00889757 82.20880127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb8 -00889758 82.20881653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43848 -00889759 82.20882416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43848 -00889760 82.20882416 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b818 -00889761 82.20882416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec8 -00889762 82.20883179 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b818 -00889763 82.20883179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec8 -00889764 82.20885468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43858 -00889765 82.20885468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43858 -00889766 82.20885468 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b828 -00889767 82.20885468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded8 -00889768 82.20885468 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b828 -00889769 82.20885468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded8 -00889770 82.20887756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43868 -00889771 82.20888519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43868 -00889772 82.20888519 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b838 -00889773 82.20888519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee8 -00889774 82.20889282 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b838 -00889775 82.20889282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee8 -00889776 82.20890808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43878 -00889777 82.20891571 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b848 -00902079 82.26816559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f08 -00902080 82.26816559 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b8 -00902081 82.26816559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b868 -00902082 82.26816559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f08 -00902083 82.26817322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b868 -00902084 82.26818848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c8 -00902085 82.26818848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f18 -00902086 82.26819611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b878 -00902087 82.26819611 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c8 -00902088 82.26819611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f18 -00902089 82.26819611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b878 -00902090 82.26822662 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d8 -00902091 82.26822662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f28 -00902092 82.26822662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b888 -00902093 82.26822662 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d8 -00902094 82.26822662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f28 -00902095 82.26822662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b888 -00902096 82.26824951 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e8 -00902097 82.26825714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f38 -00902098 82.26825714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b898 -00902099 82.26825714 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e8 -00902100 82.26825714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f38 -00902101 82.26825714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b898 -00902102 82.26828003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f8 -00902103 82.26828003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f48 -00902104 82.26828003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a8 -00902105 82.26828003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f8 -00902106 82.26828766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f48 -00902107 82.26828766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a8 -00902108 82.26831055 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43908 -00902109 82.26831055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f58 -00902110 82.26831055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b8 -00902111 82.26831055 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43908 -00902112 82.26831055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f58 -00902113 82.26831055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b8 -00902114 82.26834106 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43918 -00902115 82.26834106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f68 -00902116 82.26834106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c8 -00902117 82.26834106 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43918 -00902118 82.26834869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f68 -00902119 82.26834869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c8 -00902120 82.26837158 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43928 -00902121 82.26837158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f78 -00902122 82.26837158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d8 -00928430 82.55304718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00928431 82.55304718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00928432 82.55307770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00928433 82.55308533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00928434 82.55310822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00928435 82.55310822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00928436 82.55313110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00928437 82.55313873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00928438 82.55316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00928439 82.55316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00928440 82.55319214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00928441 82.55319977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00928442 82.55321503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00928443 82.55322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00928444 82.55324554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00928445 82.55324554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00928446 82.55327606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00928447 82.55328369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00928448 82.55330658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00928449 82.55330658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00928450 82.55332947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00928451 82.55332947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00928452 82.55335999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00928453 82.55335999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00928454 82.55339050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00928455 82.55339050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00928456 82.55341339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00928457 82.55342102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00928458 82.55344391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00928459 82.55344391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00928460 82.55347443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00928461 82.55347443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00928462 82.55350494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00928463 82.55351257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00928464 82.55354309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00928465 82.55354309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00928466 82.55356598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00928467 82.55357361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00928468 82.55359650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00928469 82.55359650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00928470 82.55362701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00928471 82.55363464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00928472 82.55365753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00928473 82.55365753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00928474 82.55368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00928475 82.55368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00928476 82.55371094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00928477 82.55371857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00928478 82.55374146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00928479 82.55374146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00928480 82.55376434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00928481 82.55377197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00928482 82.55379486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00928483 82.55379486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00928484 82.55382538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00928485 82.55382538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00928486 82.55384827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00928487 82.55385590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00928488 82.55387878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00928489 82.55387878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00928490 82.55390930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00928491 82.55391693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00928492 82.55393982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00928493 82.55393982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00928494 82.55396271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00928495 82.55396271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00928496 82.55399323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00928497 82.55399323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00928498 82.55402374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00928499 82.55402374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00928500 82.55404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00928501 82.55404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00928502 82.55407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00928503 82.55407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00928504 82.55410767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00928505 82.55410767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00928506 82.55413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00928507 82.55413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00928508 82.55416107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00928509 82.55416870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00928510 82.55419159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00928511 82.55419159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00928512 82.55422211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00928513 82.55422211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00928514 82.55424500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00928515 82.55425262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00928516 82.55427551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00928517 82.55427551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00930344 82.58124542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -00930345 82.58124542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -00930346 82.58127594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -00930347 82.58128357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -00930348 82.58130646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -00930349 82.58130646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -00930350 82.58132935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -00930351 82.58132935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -00930352 82.58135986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -00930353 82.58135986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -00930354 82.58139038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -00930355 82.58139038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -00930356 82.58141327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -00930357 82.58141327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -00930358 82.58144379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -00930359 82.58144379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -00930360 82.58147430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -00930361 82.58147430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -00930362 82.58149719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -00930363 82.58150482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -00930364 82.58152771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00930365 82.58152771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00930366 82.58155823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00930367 82.58155823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00930368 82.58158112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00930369 82.58158875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00930370 82.58161163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00930371 82.58161926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00930372 82.58164978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00930373 82.58165741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00930374 82.58168793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00930375 82.58168793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00930376 82.58171844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00930377 82.58171844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00930378 82.58174133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00930379 82.58174896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00930380 82.58177185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00930381 82.58177185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00930382 82.58179474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00930383 82.58180237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00930384 82.58183289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -00930385 82.58183289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -00930386 82.58185577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -00930387 82.58185577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -00933998 82.63516998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -00933999 82.63517761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -00934000 82.63519287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -00934001 82.63520050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -00934002 82.63522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -00934003 82.63522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -00934004 82.63525391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -00934005 82.63525391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -00934006 82.63527679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -00934007 82.63527679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -00934008 82.63529968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -00934009 82.63530731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -00934010 82.63533020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -00934011 82.63533783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -00934012 82.63536072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -00934013 82.63536835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -00934014 82.63542175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -00934015 82.63542175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -00934016 82.63545227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -00934017 82.63545227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -00934018 82.63548279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -00934019 82.63548279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -00934020 82.63550568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -00934021 82.63551331 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -00934022 82.63553619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -00934023 82.63553619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -00934024 82.63556671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -00934025 82.63556671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -00934026 82.63558960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -00934027 82.63558960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -00934028 82.63561249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -00934029 82.63562012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -00934030 82.63564301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -00934031 82.63565063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -00934032 82.63567352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -00934033 82.63567352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -00934034 82.63569641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -00934035 82.63569641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -00934036 82.63572693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -00934037 82.63572693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -00934038 82.63574982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -00934039 82.63575745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -00934040 82.63577271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -00934041 82.63578033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -00937786 82.69166565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a8 -00937787 82.69167328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a8 -00937788 82.69170380 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b8 -00937789 82.69170380 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b8 -00937790 82.69173431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c8 -00937791 82.69173431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c8 -00937792 82.69175720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d8 -00937793 82.69176483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d8 -00937794 82.69178772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e8 -00937795 82.69178772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e8 -00937796 82.69181061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f8 -00937797 82.69181824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f8 -00937798 82.69184113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13508 -00937799 82.69184875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13508 -00937800 82.69187164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13518 -00937801 82.69187164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13518 -00937802 82.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13528 -00937803 82.69190216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13528 -00937804 82.69193268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13538 -00937805 82.69193268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13538 -00937806 82.69195557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13548 -00937807 82.69195557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13548 -00937808 82.69197845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13558 -00937809 82.69198608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13558 -00937810 82.69201660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13568 -00937811 82.69201660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13568 -00937812 82.69203949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13578 -00937813 82.69204712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13578 -00937814 82.69207001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13588 -00937815 82.69207001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13588 -00937816 82.69209290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13598 -00937817 82.69209290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13598 -00937818 82.69212341 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a8 -00937819 82.69213104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a8 -00937820 82.69215393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b8 -00937821 82.69215393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b8 -00937822 82.69217682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c8 -00937823 82.69217682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c8 -00937824 82.69220734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d8 -00937825 82.69221497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d8 -00937826 82.69226837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e8 -00937827 82.69226837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e8 -00937828 82.69229126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f8 -00937829 82.69229889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f8 -00941423 82.74619293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a648 -00941424 82.74623108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a658 -00941425 82.74623108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a658 -00941426 82.74626160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a668 -00941427 82.74626160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a668 -00941428 82.74628448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a678 -00941429 82.74629211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a678 -00941430 82.74631500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a688 -00941431 82.74631500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a688 -00941432 82.74634552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a698 -00941433 82.74634552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a698 -00941434 82.74637604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a8 -00941435 82.74638367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a8 -00941436 82.74642181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b8 -00941437 82.74642181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b8 -00941438 82.74646759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c8 -00941439 82.74646759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c8 -00941440 82.74650574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -00941441 82.74650574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -00941442 82.74655151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -00941443 82.74655151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -00941444 82.74659729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f8 -00941445 82.74660492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f8 -00941446 82.74664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a708 -00941447 82.74665070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a708 -00941448 82.74668884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a718 -00941449 82.74668884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a718 -00941450 82.74673462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a728 -00941451 82.74673462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a728 -00941452 82.74677277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a738 -00941453 82.74678040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a738 -00941454 82.74681854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a748 -00941455 82.74682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a748 -00941456 82.74686432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a758 -00941457 82.74686432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a758 -00941458 82.74690247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a768 -00941459 82.74691010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a768 -00941460 82.74694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a778 -00941461 82.74695587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a778 -00941462 82.74699402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a788 -00941463 82.74699402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a788 -00941464 82.74703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a798 -00941465 82.74703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a798 -00941466 82.74708557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7a8 -00957958 82.98536682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab08 -00957959 82.98537445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab08 -00957960 82.98541260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab18 -00957961 82.98541260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab18 -00957962 82.98545074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab28 -00957963 82.98545074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab28 -00957964 82.98548889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab38 -00957965 82.98548889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab38 -00957966 82.98559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab48 -00957967 82.98560333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab48 -00957968 82.98562622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab58 -00957969 82.98562622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab58 -00957970 82.98564911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab68 -00957971 82.98564911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab68 -00957972 82.98567963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -00957973 82.98567963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -00957974 82.98571014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -00957975 82.98571014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -00957976 82.98573303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -00957977 82.98574066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -00957978 82.98576355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -00957979 82.98576355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -00957980 82.98579407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -00957981 82.98579407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -00957982 82.98581696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -00957983 82.98582458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -00957984 82.98584747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -00957985 82.98584747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -00957986 82.98587799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe8 -00957987 82.98587799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe8 -00957988 82.98590088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf8 -00957989 82.98590851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf8 -00957990 82.98593140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac08 -00957991 82.98593140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac08 -00957992 82.98596191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac18 -00957993 82.98596954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac18 -00957994 82.98600769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac28 -00957995 82.98600769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac28 -00957996 82.98609161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac38 -00957997 82.98609924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac38 -00957998 82.98612213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac48 -00957999 82.98612213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac48 -00958000 82.98615265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac58 -00958001 82.98616028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac58 -00960780 83.02722931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40338 -00960781 83.02722931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40338 -00960782 83.02725983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40348 -00960783 83.02725983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40348 -00960784 83.02728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40358 -00960785 83.02729034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40358 -00960786 83.02731323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40368 -00960787 83.02731323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40368 -00960788 83.02734375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40378 -00960789 83.02734375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40378 -00960790 83.02736664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40388 -00960791 83.02737427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40388 -00960792 83.02739716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40398 -00960793 83.02739716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40398 -00960794 83.02742767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a8 -00960795 83.02742767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a8 -00960796 83.02745056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b8 -00960797 83.02745819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b8 -00960798 83.02748108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -00960799 83.02748108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -00960800 83.02750397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -00960801 83.02751160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -00960802 83.02754211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -00960803 83.02754211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -00960804 83.02756500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -00960805 83.02756500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -00960806 83.02758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -00960807 83.02759552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -00960808 83.02762604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -00960809 83.02762604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -00960810 83.02764893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -00960811 83.02765656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -00960812 83.02767181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -00960813 83.02767944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -00960814 83.02770233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40448 -00960815 83.02770233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40448 -00960816 83.02773285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40458 -00960817 83.02774048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40458 -00960818 83.02776337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40468 -00960819 83.02776337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40468 -00960820 83.02778625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40478 -00960821 83.02778625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40478 -00960822 83.02782440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40488 -00960823 83.02782440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40488 -00964410 83.08207703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -00964411 83.08207703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -00964412 83.08210754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -00964413 83.08211517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -00964414 83.08213806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -00964415 83.08213806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -00964416 83.08216095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -00964417 83.08216858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -00964418 83.08219147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -00964419 83.08219147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -00964420 83.08222961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f8 -00964421 83.08222961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f8 -00964422 83.08225250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47508 -00964423 83.08225250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47508 -00964424 83.08227539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47518 -00964425 83.08228302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47518 -00964426 83.08231354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47528 -00964427 83.08231354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47528 -00964428 83.08233643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -00964429 83.08233643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -00964430 83.08235931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -00964431 83.08236694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -00964432 83.08238983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -00964433 83.08238983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -00964434 83.08242035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47568 -00964435 83.08242798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47568 -00964436 83.08245087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47578 -00964437 83.08245087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47578 -00964438 83.08247375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47588 -00964439 83.08247375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47588 -00964440 83.08250427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47598 -00964441 83.08251190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47598 -00964442 83.08253479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a8 -00964443 83.08253479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a8 -00964444 83.08255768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b8 -00964445 83.08255768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b8 -00964446 83.08258820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c8 -00964447 83.08258820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c8 -00964448 83.08261871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d8 -00964449 83.08261871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d8 -00964450 83.08264160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e8 -00964451 83.08264923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e8 -00964452 83.08267212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f8 -00964453 83.08267212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f8 -00967962 83.13521576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -00967963 83.13521576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -00967964 83.13523865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -00967965 83.13524628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -00967966 83.13526917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -00967967 83.13526917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -00967968 83.13529968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -00967969 83.13529968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -00967970 83.13532257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -00967971 83.13533020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -00967972 83.13535309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -00967973 83.13535309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -00967974 83.13537598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -00967975 83.13538361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -00967976 83.13541412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -00967977 83.13541412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -00967978 83.13543701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -00967979 83.13543701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -00967980 83.13545990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -00967981 83.13546753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -00967982 83.13549805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -00967983 83.13549805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -00967984 83.13552094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -00967985 83.13552094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -00967986 83.13554382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -00967987 83.13555145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -00967988 83.13557434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -00967989 83.13557434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -00967990 83.13560486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -00967991 83.13561249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -00967992 83.13563538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -00967993 83.13563538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -00967994 83.13565826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -00967995 83.13565826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -00967996 83.13568878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -00967997 83.13569641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -00967998 83.13571930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -00967999 83.13571930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -00968000 83.13574219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -00968001 83.13574219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -00968002 83.13578033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -00968003 83.13578033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -00968004 83.13581848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -00968005 83.13583374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -00970330 83.90796661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00970331 83.90808105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00970332 83.90817261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00970333 83.90818024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00970334 83.90820313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00970335 83.90820313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00970336 83.90823364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00970337 83.90823364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00970338 83.90826416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00970339 83.90826416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00970340 83.90828705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00970341 83.90828705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00970342 83.90830994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00970343 83.90831757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00970344 83.90834808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00970345 83.90834808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00970346 83.90837097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00970347 83.90837097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00970348 83.90839386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00970349 83.90840149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00970350 83.90843201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00970351 83.90843201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00970352 83.90845490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00970353 83.90846252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00970354 83.90848541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00970355 83.90848541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00970356 83.90850830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00970357 83.90850830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00970358 83.90853882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00970359 83.90854645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00970360 83.90856934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00970361 83.90856934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00970362 83.90859222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00970363 83.90859985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00970364 83.90863037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00970365 83.90863037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00970366 83.90865326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00970367 83.90866089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00970368 83.90868378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00970369 83.90868378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00970370 83.90870667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00970371 83.90870667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00970372 83.90873718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00970373 83.90874481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00970374 83.90876770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00970375 83.90876770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00970376 83.90879059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00970377 83.90879822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00970378 83.90882874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00970379 83.90882874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00970380 83.90885162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00970381 83.90885162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00970382 83.90887451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00970383 83.90888214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00970384 83.90890503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00970385 83.90890503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00970386 83.90893555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00970387 83.90894318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00970388 83.90896606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00970389 83.90896606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00970390 83.90898895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00970391 83.90898895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00970392 83.90901947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00970393 83.90902710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00970394 83.90904999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00970395 83.90904999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00970396 83.90907288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00970397 83.90908051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00970398 83.90910339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00970399 83.90910339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00970400 83.90913391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00970401 83.90913391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00970402 83.90915680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00970403 83.90916443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00970404 83.90918732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00970405 83.90918732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00970406 83.90921783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00970407 83.90922546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00970408 83.90924835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00970409 83.90924835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00970410 83.90927887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00970411 83.90928650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00970412 83.90931702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00970413 83.90932465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00970414 83.90935516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00970415 83.90936279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00970416 83.90938568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00970417 83.90938568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00970418 83.90940094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00970419 83.90941620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00970420 83.90941620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00970421 83.90943909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00970422 83.90944672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00970423 83.90946960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00970424 83.90946960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00970425 83.90950012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00970426 83.90950775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00970427 83.90953064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00970428 83.90953064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00970429 83.90955353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00970430 83.90955353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00970431 83.90958405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00970432 83.90958405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00970433 83.90961456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00970434 83.90961456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00970435 83.90963745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00970436 83.90964508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00970437 83.90966797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00970438 83.90966797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00970439 83.90969849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00970440 83.90969849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00970441 83.90972137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00970442 83.90972900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00970443 83.90975189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00970444 83.90975189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00970445 83.90978241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00970446 83.90978241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00970447 83.90981293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00970448 83.90981293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00970449 83.90983582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00970450 83.90983582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00970451 83.90985870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00970452 83.90986633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00970453 83.90989685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00970454 83.90989685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00970455 83.90991974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00970456 83.90992737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00970457 83.90997314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00970458 83.90997314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00970459 83.90999603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00970460 83.90999603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00970461 83.91001892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00970462 83.91002655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00970463 83.91005707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00970464 83.91005707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00970465 83.91007996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00970466 83.91008759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00970467 83.91011047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00970468 83.91011047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00970469 83.91014099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00970470 83.91014099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00970471 83.91017151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00970472 83.91017151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00970473 83.91019440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00970474 83.91019440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00970475 83.91021729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00970476 83.91022491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00970477 83.91025543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00970478 83.91025543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00970479 83.91027832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00970480 83.91028595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00970481 83.91030884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00970482 83.91030884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00970483 83.91033936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00970484 83.91033936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00970485 83.91036987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00970486 83.91036987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00970487 83.91039276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00970488 83.91039276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00970489 83.91041565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00970490 83.91042328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00970491 83.91045380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00970492 83.91045380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00970493 83.91047668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00970494 83.91048431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00970495 83.91050720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00970496 83.91050720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00970497 83.91053772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00970498 83.91053772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00970499 83.91056061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00970500 83.91056824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00970501 83.91059113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00970502 83.91059113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00970503 83.91061401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00970504 83.91061401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00970505 83.91064453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00970506 83.91065216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00970507 83.91067505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00970508 83.91067505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00970509 83.91069794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00970510 83.91070557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00970511 83.91073608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00970512 83.91073608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00970513 83.91075897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00970514 83.91075897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00970515 83.91078186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00970516 83.91078949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00970517 83.91081238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00970518 83.91081238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00970519 83.91084290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00970520 83.91085052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00970521 83.91087341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00970522 83.91087341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00970523 83.91089630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00970524 83.91090393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00970525 83.91093445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00970526 83.91093445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00970527 83.91095734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00970528 83.91095734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00970529 83.91098022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00970530 83.91098785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00970531 83.91101074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00970532 83.91101074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00970533 83.91104126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00970534 83.91104889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00970535 83.91107178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00970536 83.91107178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00970537 83.91109467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00970538 83.91110229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00970539 83.91113281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00970540 83.91113281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00970541 83.91115570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00970542 83.91115570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00970543 83.91117859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00970544 83.91118622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00970545 83.91120911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00970546 83.91120911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00970547 83.91123962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00970548 83.91123962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00970549 83.91127014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00970550 83.91127014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00970551 83.91130066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00970552 83.91130829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00970553 83.91133881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00970554 83.91134644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00970555 83.91136932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00970556 83.91137695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00970557 83.91140747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00970558 83.91140747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00970559 83.91143036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00970560 83.91143799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00970561 83.91146088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00970562 83.91146088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00970563 83.91149139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00970564 83.91149139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00970565 83.91152191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00970566 83.91152191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00970567 83.91154480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00970568 83.91154480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00970569 83.91156769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00970570 83.91157532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00970571 83.91160583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00970572 83.91160583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00970573 83.91162872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00970574 83.91163635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00970575 83.91165924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00970576 83.91165924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00970577 83.91168976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00970578 83.91168976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00970579 83.91172028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00970580 83.91172028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00970581 83.91174316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00970582 83.91174316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00970583 83.91176605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00970584 83.91177368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00970585 83.91180420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00970586 83.91180420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00970587 83.91182709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00970588 83.91182709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00970589 83.91184998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00970590 83.91185760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00970591 83.91188812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00970592 83.91188812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00970593 83.91191101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00970594 83.91191864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00970595 83.91194153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00970596 83.91194153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00970597 83.91196442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00970598 83.91197205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00970599 83.91200256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00970600 83.91200256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00970601 83.91202545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00970602 83.91202545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00970603 83.91204834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00970604 83.91205597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00970605 83.91208649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00970606 83.91208649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00970607 83.91210938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00970608 83.91211700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00970609 83.91213989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00970610 83.91213989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00970611 83.91216278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00970612 83.91217041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00970613 83.91220093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00970614 83.91220093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00970615 83.91222382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00970616 83.91223145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00970617 83.91225433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00970618 83.91225433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00970619 83.91228485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00970620 83.91228485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00970621 83.91231537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00970622 83.91231537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00970623 83.91233826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00970624 83.91233826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00970625 83.91236115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00970626 83.91236877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00970627 83.91239929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00970628 83.91239929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00970629 83.91242218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00970630 83.91242981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00970631 83.91245270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00970632 83.91245270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00970633 83.91248322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00970634 83.91248322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00970635 83.91251373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00970636 83.91251373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00970637 83.91253662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00975175 83.97764587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -00975176 83.97765350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -00975177 83.97767639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -00975178 83.97767639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -00975179 83.97769928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -00975180 83.97769928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -00975181 83.97772980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -00975182 83.97773743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -00975183 83.97776031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -00975184 83.97776031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -00975185 83.97778320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -00975186 83.97778320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -00975187 83.97781372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -00975188 83.97782135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -00975189 83.97784424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -00975190 83.97784424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -00975191 83.97786713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -00975192 83.97787476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -00975193 83.97789764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -00975194 83.97789764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -00975195 83.97792816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -00975196 83.97792816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -00975197 83.97795868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -00975198 83.97795868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -00975199 83.97798157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -00975200 83.97798157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -00975201 83.97801208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -00975202 83.97801971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -00975203 83.97804260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -00975204 83.97804260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -00975205 83.97806549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -00975206 83.97807312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -00975207 83.97809601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -00975208 83.97809601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -00975209 83.97812653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -00975210 83.97812653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -00975211 83.97814941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -00975212 83.97815704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -00975213 83.97817993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -00975214 83.97817993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -00975215 83.97821045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -00975216 83.97821045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -00975217 83.97823334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -00975218 83.97824097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -00979462 84.03880310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d18 -00979463 84.03882599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d28 -00979464 84.03882599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d28 -00979465 84.03885651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d38 -00979466 84.03886414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d38 -00979467 84.03888702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d48 -00979468 84.03888702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d48 -00979469 84.03890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -00979470 84.03890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -00979471 84.03894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -00979472 84.03894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -00979473 84.03897095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -00979474 84.03897095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -00979475 84.03899384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -00979476 84.03900146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -00979477 84.03902435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -00979478 84.03902435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -00979479 84.03905487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -00979480 84.03905487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -00979481 84.03907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -00979482 84.03908539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -00979483 84.03910828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc8 -00979484 84.03910828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc8 -00979485 84.03913879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd8 -00979486 84.03913879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd8 -00979487 84.03916931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de8 -00979488 84.03916931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de8 -00979489 84.03919220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df8 -00979490 84.03919983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df8 -00979491 84.03922272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e08 -00979492 84.03922272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e08 -00979493 84.03925323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e18 -00979494 84.03926086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e18 -00979495 84.03928375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e28 -00979496 84.03928375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e28 -00979497 84.03930664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e38 -00979498 84.03930664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e38 -00979499 84.03933716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e48 -00979500 84.03933716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e48 -00979501 84.03936768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e58 -00979502 84.03936768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e58 -00979503 84.03939056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e68 -00979504 84.03939819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e68 -00979505 84.03942108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e78 -00983961 84.10288239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b8 -00983962 84.10288239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b8 -00983963 84.10290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c8 -00983964 84.10290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c8 -00983965 84.10292816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d8 -00983966 84.10293579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d8 -00983967 84.10296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e8 -00983968 84.10296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e8 -00983969 84.10298920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f8 -00983970 84.10299683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f8 -00983971 84.10301971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba08 -00983972 84.10301971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba08 -00983973 84.10305786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba18 -00983974 84.10305786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba18 -00983975 84.10309601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba28 -00983976 84.10310364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba28 -00983977 84.10314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba38 -00983978 84.10314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba38 -00983979 84.10317230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba48 -00983980 84.10317993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba48 -00983981 84.10320282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba58 -00983982 84.10320282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba58 -00983983 84.10323334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba68 -00983984 84.10323334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba68 -00983985 84.10325623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba78 -00983986 84.10326385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba78 -00983987 84.10328674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba88 -00983988 84.10328674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba88 -00983989 84.10331726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba98 -00983990 84.10332489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba98 -00983991 84.10334778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa8 -00983992 84.10334778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa8 -00983993 84.10337067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab8 -00983994 84.10337067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab8 -00983995 84.10340118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac8 -00983996 84.10340118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac8 -00983997 84.10343170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad8 -00983998 84.10343170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad8 -00983999 84.10345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bae8 -00984000 84.10345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bae8 -00984001 84.10348511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baf8 -00984002 84.10348511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baf8 -00984003 84.10351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb08 -00984004 84.10351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb08 -00989441 84.18221283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f8 -00989442 84.18221283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f8 -00989443 84.18225861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26508 -00989444 84.18226624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26508 -00989445 84.18230438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26518 -00989446 84.18231201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26518 -00989447 84.18235016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26528 -00989448 84.18235016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26528 -00989449 84.18239594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26538 -00989450 84.18239594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26538 -00989451 84.18243408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26548 -00989452 84.18243408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26548 -00989453 84.18247223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26558 -00989454 84.18247986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26558 -00989455 84.18251801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26568 -00989456 84.18251801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26568 -00989457 84.18255615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -00989458 84.18256378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -00989459 84.18260193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -00989460 84.18260193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -00989461 84.18264008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -00989462 84.18264008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -00989463 84.18267822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -00989464 84.18268585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -00989465 84.18272400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -00989466 84.18272400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -00989467 84.18276215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -00989468 84.18276978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -00989469 84.18280792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -00989470 84.18281555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -00989471 84.18285370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -00989472 84.18285370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -00989473 84.18289948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f8 -00989474 84.18289948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f8 -00989475 84.18293762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26608 -00989476 84.18294525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26608 -00989477 84.18298340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26618 -00989478 84.18299103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26618 -00989479 84.18302917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26628 -00989480 84.18303680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26628 -00989481 84.18307495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26638 -00989482 84.18307495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26638 -00989483 84.18311310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26648 -00989484 84.18312073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26648 -00995279 84.26592255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b68 -00995280 84.26593018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b68 -00995281 84.26595306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b78 -00995282 84.26595306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b78 -00995283 84.26597595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b88 -00995284 84.26598358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b88 -00995285 84.26600647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b98 -00995286 84.26600647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b98 -00995287 84.26603699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ba8 -00995288 84.26603699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ba8 -00995289 84.26605988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bb8 -00995290 84.26606750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bb8 -00995291 84.26609039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bc8 -00995292 84.26609039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bc8 -00995293 84.26612091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bd8 -00995294 84.26612854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bd8 -00995295 84.26615143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31be8 -00995296 84.26615143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31be8 -00995297 84.26617432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bf8 -00995298 84.26617432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bf8 -00995299 84.26620483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c08 -00995300 84.26620483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c08 -00995301 84.26623535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c18 -00995302 84.26623535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c18 -00995303 84.26625824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c28 -00995304 84.26626587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c28 -00995305 84.26628876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c38 -00995306 84.26628876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c38 -00995307 84.26631927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c48 -00995308 84.26631927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c48 -00995309 84.26634216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c58 -00995310 84.26634979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c58 -00995311 84.26637268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c68 -00995312 84.26637268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c68 -00995313 84.26640320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c78 -00995314 84.26640320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c78 -00995315 84.26643372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c88 -00995316 84.26643372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c88 -00995317 84.26645660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c98 -00995318 84.26646423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c98 -00995319 84.26648712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ca8 -00995320 84.26649475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ca8 -00995321 84.26652527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cb8 -00995322 84.26652527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cb8 -01010298 84.47890472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b8 -01010299 84.47890472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b8 -01010300 84.47892761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c8 -01010301 84.47893524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c8 -01010302 84.47896576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d8 -01010303 84.47896576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d8 -01010304 84.47898865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e8 -01010305 84.47898865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e8 -01010306 84.47901154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f8 -01010307 84.47901917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f8 -01010308 84.47904968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f108 -01010309 84.47904968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f108 -01010310 84.47907257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f118 -01010311 84.47908020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f118 -01010312 84.47910309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f128 -01010313 84.47910309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f128 -01010314 84.47912598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f138 -01010315 84.47912598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f138 -01010316 84.47915649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f148 -01010317 84.47916412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f148 -01010318 84.47918701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f158 -01010319 84.47918701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f158 -01010320 84.47920990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f168 -01010321 84.47921753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f168 -01010322 84.47924805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f178 -01010323 84.47924805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f178 -01010324 84.47927094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f188 -01010325 84.47927094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f188 -01010326 84.47929382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f198 -01010327 84.47930145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f198 -01010328 84.47932434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a8 -01010329 84.47932434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a8 -01010330 84.47935486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b8 -01010331 84.47936249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b8 -01010332 84.47938538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c8 -01010333 84.47938538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c8 -01010334 84.47940826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d8 -01010335 84.47940826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d8 -01010336 84.47943878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e8 -01010337 84.47944641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e8 -01010338 84.47946930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f8 -01010339 84.47946930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f8 -01010340 84.47949219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f208 -01010341 84.47949982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f208 -01013975 84.53675842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01013976 84.53675842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01013977 84.53678894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01013978 84.53678894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01013979 84.53681183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01013980 84.53681946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01013981 84.53684235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01013982 84.53684235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01013983 84.53687286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01013984 84.53687286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01013985 84.53689575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01013986 84.53690338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01013987 84.53692627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01013988 84.53692627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01013989 84.53695679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01013990 84.53695679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01013991 84.53697968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01013992 84.53698730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01013993 84.53701019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01013994 84.53701019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01013995 84.53703308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01013996 84.53704071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01013997 84.53707123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01013998 84.53707123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01013999 84.53709412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01014000 84.53709412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01014001 84.53711700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01014002 84.53712463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01014003 84.53715515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01014004 84.53715515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01014005 84.53717804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01014006 84.53718567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01014007 84.53720856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01014008 84.53720856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01014009 84.53723145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01014010 84.53723145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01014011 84.53726196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01014012 84.53726959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01014013 84.53729248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01014014 84.53730011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01014015 84.53733063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01014016 84.53733826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01014017 84.53736877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01014018 84.53736877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01019001 84.60854340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe388 -01019002 84.60854340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe388 -01019003 84.60856628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe398 -01019004 84.60856628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe398 -01019005 84.60859680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a8 -01019006 84.60860443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a8 -01019007 84.60862732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b8 -01019008 84.60862732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b8 -01019009 84.60865021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c8 -01019010 84.60865784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c8 -01019011 84.60868835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d8 -01019012 84.60868835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d8 -01019013 84.60871124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e8 -01019014 84.60871124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e8 -01019015 84.60873413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f8 -01019016 84.60874176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f8 -01019017 84.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe408 -01019018 84.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe408 -01019019 84.60879517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe418 -01019020 84.60880280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe418 -01019021 84.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe428 -01019022 84.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe428 -01019023 84.60884857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe438 -01019024 84.60884857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe438 -01019025 84.60887909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe448 -01019026 84.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe448 -01019027 84.60890961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe458 -01019028 84.60890961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe458 -01019029 84.60893250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe468 -01019030 84.60893250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe468 -01019031 84.60896301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe478 -01019032 84.60896301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe478 -01019033 84.60899353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe488 -01019034 84.60899353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe488 -01019035 84.60901642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe498 -01019036 84.60902405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe498 -01019037 84.60904694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a8 -01019038 84.60904694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a8 -01019039 84.60907745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b8 -01019040 84.60908508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b8 -01019041 84.60910797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c8 -01019042 84.60910797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c8 -01019043 84.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d8 -01019044 84.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d8 -01023213 84.66892242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16728 -01023214 84.66892242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16728 -01023215 84.66894531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16738 -01023216 84.66894531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16738 -01023217 84.66897583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16748 -01023218 84.66897583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16748 -01023219 84.66899872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16758 -01023220 84.66900635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16758 -01023221 84.66902161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16768 -01023222 84.66902924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16768 -01023223 84.66905975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16778 -01023224 84.66905975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16778 -01023225 84.66909027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16788 -01023226 84.66909027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16788 -01023227 84.66911316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16798 -01023228 84.66911316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16798 -01023229 84.66913605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a8 -01023230 84.66914368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a8 -01023231 84.66917419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167b8 -01023232 84.66917419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167b8 -01023233 84.66919708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167c8 -01023234 84.66920471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167c8 -01023235 84.66922760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167d8 -01023236 84.66922760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167d8 -01023237 84.66925812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167e8 -01023238 84.66925812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167e8 -01023239 84.66928101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167f8 -01023240 84.66928101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x167f8 -01023241 84.66930389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16808 -01023242 84.66931152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16808 -01023243 84.66933441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16818 -01023244 84.66933441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16818 -01023245 84.66936493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16828 -01023246 84.66936493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16828 -01023247 84.66938782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16838 -01023248 84.66938782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16838 -01023249 84.66941071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16848 -01023250 84.66941071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16848 -01023251 84.66944122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16858 -01023252 84.66944885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16858 -01023253 84.66947174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16868 -01023254 84.66947174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16868 -01023255 84.66949463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16878 -01023256 84.66949463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16878 -01027181 84.72491455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e328 -01027182 84.72491455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e328 -01027183 84.72493744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e338 -01027184 84.72493744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e338 -01027185 84.72496796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e348 -01027186 84.72497559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e348 -01027187 84.72499847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e358 -01027188 84.72499847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e358 -01027189 84.72502136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e368 -01027190 84.72502899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e368 -01027191 84.72505951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e378 -01027192 84.72505951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e378 -01027193 84.72508240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e388 -01027194 84.72508240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e388 -01027195 84.72510529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e398 -01027196 84.72511292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e398 -01027197 84.72513580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3a8 -01027198 84.72513580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3a8 -01027199 84.72516632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3b8 -01027200 84.72517395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3b8 -01027201 84.72519684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3c8 -01027202 84.72519684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3c8 -01027203 84.72521973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3d8 -01027204 84.72521973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3d8 -01027205 84.72525024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3e8 -01027206 84.72525787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3e8 -01027207 84.72528076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3f8 -01027208 84.72528076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3f8 -01027209 84.72530365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e408 -01027210 84.72531128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e408 -01027211 84.72533417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e418 -01027212 84.72533417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e418 -01027213 84.72536469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e428 -01027214 84.72537231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e428 -01027215 84.72539520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e438 -01027216 84.72539520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e438 -01027217 84.72541809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e448 -01027218 84.72541809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e448 -01027219 84.72544861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e458 -01027220 84.72545624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e458 -01027221 84.72547913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e468 -01027222 84.72547913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e468 -01027223 84.72550201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e478 -01027224 84.72550964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e478 -01045056 84.98111725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41198 -01045057 84.98112488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41198 -01045058 84.98115540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a8 -01045059 84.98115540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a8 -01045060 84.98117828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b8 -01045061 84.98117828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b8 -01045062 84.98120117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c8 -01045063 84.98120880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c8 -01045064 84.98123169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d8 -01045065 84.98123169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d8 -01045066 84.98126221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e8 -01045067 84.98126984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e8 -01045068 84.98129272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f8 -01045069 84.98129272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f8 -01045070 84.98132324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41208 -01045071 84.98132324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41208 -01045072 84.98136139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41218 -01045073 84.98136139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41218 -01045074 84.98139954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41228 -01045075 84.98139954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41228 -01045076 84.98143005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41238 -01045077 84.98143005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41238 -01045078 84.98145294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41248 -01045079 84.98146057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41248 -01045080 84.98148346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41258 -01045081 84.98148346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41258 -01045082 84.98151398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41268 -01045083 84.98151398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41268 -01045084 84.98154449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41278 -01045085 84.98154449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41278 -01045086 84.98156738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41288 -01045087 84.98157501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41288 -01045088 84.98159790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41298 -01045089 84.98159790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41298 -01045090 84.98162842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a8 -01045091 84.98162842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a8 -01045092 84.98165894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b8 -01045093 84.98165894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b8 -01045094 84.98168182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c8 -01045095 84.98168182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c8 -01045096 84.98171234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d8 -01045097 84.98171234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d8 -01045098 84.98174286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e8 -01045099 84.98174286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e8 -01049138 85.03876495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -01049139 85.03877258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -01049140 85.03879547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -01049141 85.03879547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -01049142 85.03882599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -01049143 85.03882599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -01049144 85.03885651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -01049145 85.03885651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -01049146 85.03887939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -01049147 85.03888702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -01049148 85.03890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -01049149 85.03890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -01049150 85.03894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -01049151 85.03894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -01049152 85.03896332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49198 -01049153 85.03897095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49198 -01049154 85.03899384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a8 -01049155 85.03899384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a8 -01049156 85.03902435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b8 -01049157 85.03902435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b8 -01049158 85.03905487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491c8 -01049159 85.03905487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491c8 -01049160 85.03907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491d8 -01049161 85.03907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491d8 -01049162 85.03910065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491e8 -01049163 85.03910828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491e8 -01049164 85.03913879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491f8 -01049165 85.03913879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x491f8 -01049166 85.03916168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49208 -01049167 85.03916931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49208 -01049168 85.03919220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49218 -01049169 85.03919220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49218 -01049170 85.03922272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49228 -01049171 85.03922272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49228 -01049172 85.03924561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49238 -01049173 85.03925323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49238 -01049174 85.03927612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49248 -01049175 85.03927612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49248 -01049176 85.03929901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49258 -01049177 85.03930664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49258 -01049178 85.03933716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49268 -01049179 85.03934479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49268 -01049180 85.03938293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49278 -01049181 85.03938293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49278 -01074035 85.47821808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -01074036 85.47821808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -01074037 85.47824097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -01074038 85.47824097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -01074039 85.47827148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -01074040 85.47827148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -01074041 85.47829437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -01074042 85.47830200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -01074043 85.47833252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -01074044 85.47833252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -01074045 85.47835541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -01074046 85.47836304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -01074047 85.47838593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -01074048 85.47838593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -01074049 85.47841644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -01074050 85.47841644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -01074051 85.47844696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -01074052 85.47844696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -01074053 85.47846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -01074054 85.47846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -01074055 85.47849274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -01074056 85.47850037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -01074057 85.47853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -01074058 85.47853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -01074059 85.47855377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e38 -01074060 85.47856140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e38 -01074061 85.47858429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e48 -01074062 85.47858429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e48 -01074063 85.47861481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e58 -01074064 85.47861481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e58 -01074065 85.47864532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -01074066 85.47864532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -01074067 85.47866821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e78 -01074068 85.47867584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e78 -01074069 85.47869873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e88 -01074070 85.47869873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e88 -01074071 85.47872925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e98 -01074072 85.47872925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e98 -01074073 85.47875977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea8 -01074074 85.47875977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea8 -01074075 85.47878265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb8 -01074076 85.47878265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb8 -01074077 85.47881317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec8 -01074078 85.47881317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec8 -01078168 85.53738403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe98 -01078169 85.53740692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea8 -01078170 85.53740692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea8 -01078171 85.53742981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb8 -01078172 85.53742981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb8 -01078173 85.53746796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec8 -01078174 85.53746796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec8 -01078175 85.53749084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed8 -01078176 85.53749084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed8 -01078177 85.53751373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee8 -01078178 85.53752136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee8 -01078179 85.53755188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef8 -01078180 85.53755188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef8 -01078181 85.53757477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff08 -01078182 85.53758240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff08 -01078183 85.53760529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff18 -01078184 85.53760529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff18 -01078185 85.53763580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff28 -01078186 85.53763580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff28 -01078187 85.53766632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff38 -01078188 85.53766632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff38 -01078189 85.53768921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff48 -01078190 85.53769684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff48 -01078191 85.53771973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff58 -01078192 85.53771973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff58 -01078193 85.53775024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff68 -01078194 85.53775024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff68 -01078195 85.53777313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff78 -01078196 85.53778076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff78 -01078197 85.53780365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff88 -01078198 85.53780365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff88 -01078199 85.53783417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff98 -01078200 85.53783417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff98 -01078201 85.53786469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa8 -01078202 85.53786469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa8 -01078203 85.53788757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb8 -01078204 85.53789520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb8 -01078205 85.53791809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc8 -01078206 85.53791809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc8 -01078207 85.53794861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd8 -01078208 85.53794861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd8 -01078209 85.53797913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe8 -01078210 85.53797913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe8 -01078211 85.53800201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff8 -01082367 85.59719086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d8 -01082368 85.59719849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d8 -01082369 85.59722137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e8 -01082370 85.59722137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e8 -01082371 85.59724426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f8 -01082372 85.59724426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f8 -01082373 85.59727478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38208 -01082374 85.59728241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38208 -01082375 85.59730530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38218 -01082376 85.59730530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38218 -01082377 85.59732819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38228 -01082378 85.59732819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38228 -01082379 85.59735870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38238 -01082380 85.59735870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38238 -01082381 85.59738159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38248 -01082382 85.59738922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38248 -01082383 85.59741211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38258 -01082384 85.59741211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38258 -01082385 85.59744263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38268 -01082386 85.59744263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38268 -01082387 85.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38278 -01082388 85.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38278 -01082389 85.59749603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38288 -01082390 85.59750366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38288 -01082391 85.59752655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38298 -01082392 85.59752655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38298 -01082393 85.59755707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382a8 -01082394 85.59755707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382a8 -01082395 85.59758759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382b8 -01082396 85.59758759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382b8 -01082397 85.59761047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382c8 -01082398 85.59761047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382c8 -01082399 85.59764099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382d8 -01082400 85.59764099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382d8 -01082401 85.59767151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382e8 -01082402 85.59767151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382e8 -01082403 85.59769440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382f8 -01082404 85.59770203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x382f8 -01082405 85.59772491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38308 -01082406 85.59772491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38308 -01082407 85.59775543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38318 -01082408 85.59776306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38318 -01082409 85.59778595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38328 -01082410 85.59778595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38328 -01086513 85.65639496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40368 -01086514 85.65639496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40368 -01086515 85.65642548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40378 -01086516 85.65642548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40378 -01086517 85.65644836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40388 -01086518 85.65645599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40388 -01086519 85.65647888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40398 -01086520 85.65647888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40398 -01086521 85.65650940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a8 -01086522 85.65650940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a8 -01086523 85.65653992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b8 -01086524 85.65653992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b8 -01086525 85.65656281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -01086526 85.65657043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -01086527 85.65659332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -01086528 85.65659332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -01086529 85.65662384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -01086530 85.65662384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -01086531 85.65665436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -01086532 85.65665436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -01086533 85.65667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -01086534 85.65667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -01086535 85.65670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -01086536 85.65670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -01086537 85.65673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -01086538 85.65673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -01086539 85.65676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -01086540 85.65676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -01086541 85.65679169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40448 -01086542 85.65679169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40448 -01086543 85.65682220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40458 -01086544 85.65682220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40458 -01086545 85.65685272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40468 -01086546 85.65685272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40468 -01086547 85.65687561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40478 -01086548 85.65688324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40478 -01086549 85.65690613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40488 -01086550 85.65690613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40488 -01086551 85.65693665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40498 -01086552 85.65694427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40498 -01086553 85.65696716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a8 -01086554 85.65696716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a8 -01086555 85.65699005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b8 -01086556 85.65699768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b8 -01091910 85.73470306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac08 -01091911 85.73471069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac08 -01091912 85.73473358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac18 -01091913 85.73473358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac18 -01091914 85.73475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac28 -01091915 85.73476410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac28 -01091916 85.73478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac38 -01091917 85.73478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac38 -01091918 85.73481750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac48 -01091919 85.73482513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac48 -01091920 85.73484802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac58 -01091921 85.73484802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac58 -01091922 85.73487091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac68 -01091923 85.73487854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac68 -01091924 85.73490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac78 -01091925 85.73490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac78 -01091926 85.73493195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac88 -01091927 85.73493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac88 -01091928 85.73496246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac98 -01091929 85.73496246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac98 -01091930 85.73498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca8 -01091931 85.73499298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca8 -01091932 85.73502350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb8 -01091933 85.73502350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb8 -01091934 85.73504639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc8 -01091935 85.73505402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc8 -01091936 85.73507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd8 -01091937 85.73507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd8 -01091938 85.73510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace8 -01091939 85.73510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace8 -01091940 85.73513031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf8 -01091941 85.73513794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf8 -01091942 85.73516083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad08 -01091943 85.73516083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad08 -01091944 85.73518372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad18 -01091945 85.73519135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad18 -01091946 85.73522186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad28 -01091947 85.73522186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad28 -01091948 85.73524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad38 -01091949 85.73525238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad38 -01091950 85.73527527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad48 -01091951 85.73527527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad48 -01091952 85.73530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad58 -01091953 85.73530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad58 -01104900 85.98204041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12448 -01104901 85.98204041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12448 -01104902 85.98207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12458 -01104903 85.98207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12458 -01104904 85.98210144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12468 -01104905 85.98210144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12468 -01104906 85.98213196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12478 -01104907 85.98213196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12478 -01104908 85.98215485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12488 -01104909 85.98215485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12488 -01104910 85.98218536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12498 -01104911 85.98218536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12498 -01104912 85.98221588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124a8 -01104913 85.98221588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124a8 -01104914 85.98223877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124b8 -01104915 85.98224640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124b8 -01104916 85.98226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124c8 -01104917 85.98226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124c8 -01104918 85.98229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124d8 -01104919 85.98230743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124d8 -01104920 85.98233032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124e8 -01104921 85.98233032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124e8 -01104922 85.98235321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124f8 -01104923 85.98235321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x124f8 -01104924 85.98238373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12508 -01104925 85.98238373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12508 -01104926 85.98241425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12518 -01104927 85.98241425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12518 -01104928 85.98243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12528 -01104929 85.98243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12528 -01104930 85.98246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12538 -01104931 85.98246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12538 -01104932 85.98249817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12548 -01104933 85.98249817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12548 -01104934 85.98252106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12558 -01104935 85.98252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12558 -01104936 85.98255157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12568 -01104937 85.98255157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12568 -01104938 85.98258209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12578 -01104939 85.98258209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12578 -01104940 85.98260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12588 -01104941 85.98261261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12588 -01104942 85.98263550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12598 -01104943 85.98263550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12598 -01108108 86.02698517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -01108109 86.02698517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -01108110 86.02701569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -01108111 86.02702332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -01108112 86.02704620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a8 -01108113 86.02704620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a8 -01108114 86.02706909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -01108115 86.02706909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -01108116 86.02709961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -01108117 86.02710724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -01108118 86.02713013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -01108119 86.02713013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -01108120 86.02715302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -01108121 86.02716064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -01108122 86.02718353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f8 -01108123 86.02718353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f8 -01108124 86.02721405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18908 -01108125 86.02721405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18908 -01108126 86.02723694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18918 -01108127 86.02724457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18918 -01108128 86.02726746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18928 -01108129 86.02726746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18928 -01108130 86.02729797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18938 -01108131 86.02730560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18938 -01108132 86.02732849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18948 -01108133 86.02732849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18948 -01108134 86.02735138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18958 -01108135 86.02735138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18958 -01108136 86.02738190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18968 -01108137 86.02738190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18968 -01108138 86.02741241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18978 -01108139 86.02741241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18978 -01108140 86.02743530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18988 -01108141 86.02744293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18988 -01108142 86.02746582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18998 -01108143 86.02746582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18998 -01108144 86.02749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a8 -01108145 86.02749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a8 -01108146 86.02751923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b8 -01108147 86.02752686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b8 -01108148 86.02754974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c8 -01108149 86.02754974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c8 -01108150 86.02758026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d8 -01108151 86.02758026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d8 -01112452 86.08786774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21048 -01112453 86.08787537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21048 -01112454 86.08789063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21058 -01112455 86.08789825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21058 -01112456 86.08792114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21068 -01112457 86.08792114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21068 -01112458 86.08795166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21078 -01112459 86.08795166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21078 -01112460 86.08798218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21088 -01112461 86.08798218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21088 -01112462 86.08800507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21098 -01112463 86.08801270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21098 -01112464 86.08803558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210a8 -01112465 86.08804321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210a8 -01112466 86.08806610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210b8 -01112467 86.08807373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210b8 -01112468 86.08809662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210c8 -01112469 86.08809662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210c8 -01112470 86.08811951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d8 -01112471 86.08811951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d8 -01112472 86.08815002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e8 -01112473 86.08815002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e8 -01112474 86.08817291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f8 -01112475 86.08818054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f8 -01112476 86.08819580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21108 -01112477 86.08820343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21108 -01112478 86.08823395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -01112479 86.08823395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -01112480 86.08825684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -01112481 86.08825684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -01112482 86.08827972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -01112483 86.08827972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -01112484 86.08831024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -01112485 86.08831024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -01112486 86.08833313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -01112487 86.08834076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -01112488 86.08836365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -01112489 86.08836365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -01112490 86.08839417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -01112491 86.08839417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -01112492 86.08841705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -01112493 86.08841705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -01112494 86.08843994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -01112495 86.08844757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -01116628 86.14576721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c8 -01116629 86.14577484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c8 -01116630 86.14579773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d8 -01116631 86.14580536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d8 -01116632 86.14582825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e8 -01116633 86.14582825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e8 -01116634 86.14585876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f8 -01116635 86.14585876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f8 -01116636 86.14588165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29308 -01116637 86.14588928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29308 -01116638 86.14591217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29318 -01116639 86.14591217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29318 -01116640 86.14594269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29328 -01116641 86.14594269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29328 -01116642 86.14597321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29338 -01116643 86.14597321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29338 -01116644 86.14599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29348 -01116645 86.14599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29348 -01116646 86.14601898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29358 -01116647 86.14602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29358 -01116648 86.14605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29368 -01116649 86.14605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29368 -01116650 86.14608002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29378 -01116651 86.14608002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29378 -01116652 86.14611053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29388 -01116653 86.14611053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29388 -01116654 86.14614105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29398 -01116655 86.14614105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29398 -01116656 86.14616394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a8 -01116657 86.14617157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a8 -01116658 86.14619446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b8 -01116659 86.14619446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b8 -01116660 86.14621735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c8 -01116661 86.14621735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c8 -01116662 86.14624786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d8 -01116663 86.14625549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d8 -01116664 86.14627838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e8 -01116665 86.14627838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e8 -01116666 86.14630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f8 -01116667 86.14630890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f8 -01116668 86.14633942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29408 -01116669 86.14633942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29408 -01116670 86.14636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29418 -01116671 86.14636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29418 -01120858 86.20597839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f8 -01120859 86.20597839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f8 -01120860 86.20600128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31708 -01120861 86.20600128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31708 -01120862 86.20603180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31718 -01120863 86.20603180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31718 -01120864 86.20605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31728 -01120865 86.20606232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31728 -01120866 86.20608521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31738 -01120867 86.20608521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31738 -01120868 86.20611572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31748 -01120869 86.20611572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31748 -01120870 86.20613861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31758 -01120871 86.20613861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31758 -01120872 86.20616150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31768 -01120873 86.20616913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31768 -01120874 86.20619202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31778 -01120875 86.20619202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31778 -01120876 86.20622253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31788 -01120877 86.20622253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31788 -01120878 86.20624542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31798 -01120879 86.20624542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31798 -01120880 86.20626831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a8 -01120881 86.20626831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a8 -01120882 86.20629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b8 -01120883 86.20630646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b8 -01120884 86.20632172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c8 -01120885 86.20632935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c8 -01120886 86.20635223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d8 -01120887 86.20635986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d8 -01120888 86.20639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e8 -01120889 86.20639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e8 -01120890 86.20641327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f8 -01120891 86.20641327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f8 -01120892 86.20643616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31808 -01120893 86.20644379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31808 -01120894 86.20646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31818 -01120895 86.20646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31818 -01120896 86.20649719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31828 -01120897 86.20650482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31828 -01120898 86.20652771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31838 -01120899 86.20652771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31838 -01120900 86.20655060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31848 -01120901 86.20655060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31848 -01124878 86.26271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39498 -01124879 86.26271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39498 -01124880 86.26273346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a8 -01124881 86.26273346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a8 -01124882 86.26275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b8 -01124883 86.26276398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b8 -01124884 86.26278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c8 -01124885 86.26278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c8 -01124886 86.26281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d8 -01124887 86.26281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d8 -01124888 86.26284027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e8 -01124889 86.26284027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e8 -01124890 86.26287079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f8 -01124891 86.26287079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f8 -01124892 86.26290131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39508 -01124893 86.26290131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39508 -01124894 86.26292419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39518 -01124895 86.26293182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39518 -01124896 86.26295471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39528 -01124897 86.26295471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39528 -01124898 86.26298523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39538 -01124899 86.26298523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39538 -01124900 86.26301575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39548 -01124901 86.26301575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39548 -01124902 86.26303864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39558 -01124903 86.26303864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39558 -01124904 86.26306915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39568 -01124905 86.26306915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39568 -01124906 86.26309967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39578 -01124907 86.26309967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39578 -01124908 86.26312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39588 -01124909 86.26312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39588 -01124910 86.26314545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39598 -01124911 86.26315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39598 -01124912 86.26318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a8 -01124913 86.26318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a8 -01124914 86.26321411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b8 -01124915 86.26321411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b8 -01124916 86.26323700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c8 -01124917 86.26323700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c8 -01124918 86.26326752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d8 -01124919 86.26326752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d8 -01124920 86.26329041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395e8 -01124921 86.26329803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x395e8 -01137954 86.53674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137955 86.53694916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137956 86.53714752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137957 86.53733063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137958 86.53751373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137959 86.53770447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137960 86.53789520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137961 86.53862000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137962 86.53884125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137963 86.55663300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01137964 86.61006165 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137965 86.61169434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137966 86.61191559 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137967 86.63311005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137968 86.63362885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137969 86.63386536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137970 86.65856934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137971 86.65902710 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137972 86.65921021 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137973 86.70960999 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137974 86.71032715 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137975 86.71055603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137976 86.75019836 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137977 86.75073242 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137978 86.75096893 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137979 86.79917908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137980 86.79985046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137981 86.80002594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137982 86.80012512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137983 86.80027771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137984 86.80053711 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137985 86.80073547 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137986 86.81941223 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137987 86.82000732 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137988 86.82024384 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137989 86.84875488 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137990 86.84941101 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137991 86.84964752 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137992 86.87253571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137993 86.87322998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137994 86.87350464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137995 86.90240479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137996 86.90316010 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137997 86.90340424 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137998 87.01467133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137999 87.01544189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138000 87.01567078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138001 87.03013611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138002 87.03018951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138003 87.03022003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01138004 87.03023529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01138005 87.03040314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138006 87.03040314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01138007 87.03047180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138008 87.03049469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01138009 87.04416656 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138010 87.04482269 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138011 87.04504395 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138012 87.19950104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138013 87.20455933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138014 87.20478821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138015 87.22996521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138016 87.23052216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138017 87.23073578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138018 87.25517273 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138019 87.25581360 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138020 87.25607300 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138021 87.29370880 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138022 87.29422760 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138023 87.29445648 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138024 87.32244110 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01138025 87.32244110 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01138026 87.32247162 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01138027 87.32247925 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01138028 87.32250214 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01138029 87.32250214 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01138030 87.32252502 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01138031 87.32253265 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01138032 87.32256317 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01138033 87.32256317 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01138034 87.32258606 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01138035 87.32258606 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01138036 87.32260895 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01138037 87.32261658 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01138038 87.32263947 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01138039 87.32263947 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01138040 87.32266998 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01138041 87.32267761 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01138042 87.32270050 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01138043 87.32270050 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01138044 87.32272339 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01138045 87.32272339 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01138046 87.32275391 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01138047 87.32276154 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01138048 87.32278442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01138049 87.32278442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01138050 87.32280731 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01138051 87.32281494 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01138052 87.32283783 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01138053 87.32283783 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01138054 87.32286835 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01138055 87.32286835 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01138056 87.32289124 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01138057 87.32289886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01138058 87.32292175 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01138059 87.32292175 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01138060 87.32295227 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01138061 87.32295227 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01138062 87.32298279 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01138063 87.32298279 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01138064 87.32300568 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01138065 87.32300568 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01138066 87.32303619 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01138067 87.32303619 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01138068 87.32306671 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01138069 87.32306671 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01138070 87.32308960 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01138071 87.32309723 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01138072 87.32312012 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01138073 87.32312012 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01138074 87.32315063 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01138075 87.32315063 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01138076 87.32317352 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01138077 87.32318115 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01138078 87.32320404 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01138079 87.32320404 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01138080 87.32323456 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01138081 87.32324219 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01138082 87.32326508 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01138083 87.32326508 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01138084 87.32328796 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01138085 87.32328796 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01138086 87.32331848 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01138087 87.32331848 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01138088 87.32334900 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01138089 87.32334900 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01138090 87.32337189 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01138091 87.32337952 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01138092 87.32340240 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01138093 87.32340240 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01138094 87.32343292 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01138095 87.32343292 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01138096 87.32345581 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01138097 87.32346344 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01138098 87.32348633 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01138099 87.32348633 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01138100 87.32351685 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01138101 87.32351685 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01138102 87.32353973 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01138103 87.32354736 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01138104 87.32357025 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01138105 87.32357025 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01138106 87.32359314 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01138107 87.32360077 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01138108 87.32363129 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01138109 87.32363129 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01138110 87.32365417 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01138111 87.32366180 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01138112 87.32368469 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01138113 87.32368469 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01138114 87.32371521 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01138115 87.32371521 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01138116 87.32373810 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01138117 87.32374573 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01138118 87.32376862 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01138119 87.32376862 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01138120 87.32379150 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01138121 87.32379913 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01138122 87.32382965 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01138123 87.32382965 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01138124 87.32385254 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01138125 87.32385254 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01138126 87.32387543 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01138127 87.32388306 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01138128 87.32391357 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01138129 87.32391357 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01138130 87.32393646 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01138131 87.32393646 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01138132 87.32395935 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01138133 87.32396698 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01138134 87.32398987 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01138135 87.32398987 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01138136 87.32402039 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01138137 87.32402802 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01138138 87.32405090 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01138139 87.32405090 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01138140 87.32407379 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01138141 87.32407379 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01138142 87.32410431 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01138143 87.32411194 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01138144 87.32413483 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01138145 87.32413483 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01138146 87.32415771 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01138147 87.32415771 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01138148 87.32420349 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01138149 87.32421112 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01138150 87.32423401 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01138151 87.32423401 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01138152 87.32426453 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01138153 87.32427216 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01138154 87.32429504 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01138155 87.32429504 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01138156 87.32431793 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01138157 87.32431793 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01138158 87.32434845 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01138159 87.32434845 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01138160 87.32437897 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01138161 87.32437897 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01138162 87.32440186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01138163 87.32440186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01138164 87.32443237 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01138165 87.32443237 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01138166 87.32446289 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01138167 87.32446289 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01138168 87.32448578 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01138169 87.32449341 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01138170 87.32451630 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01138171 87.32451630 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01138172 87.32454681 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01138173 87.32454681 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01138174 87.32456970 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01138175 87.32457733 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01138176 87.32460022 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01138177 87.32460022 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01138178 87.32463074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01138179 87.32463074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01138180 87.32465363 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01138181 87.32466125 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01138182 87.32468414 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01138183 87.32468414 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01138184 87.32470703 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01138185 87.32471466 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01138186 87.32474518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01138187 87.32474518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01138188 87.32476807 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01138189 87.32476807 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01138190 87.32479095 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01138191 87.32479858 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01138192 87.32482910 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01138193 87.32482910 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01156625 87.48106384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01156626 87.48106384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee28 -01156627 87.48106384 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17148 -01156628 87.48106384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01156629 87.48106384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee28 -01156630 87.48106384 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17148 -01156631 87.48108673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01156632 87.48108673 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -01156633 87.48109436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01156634 87.48109436 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17158 -01156635 87.48109436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -01156636 87.48109436 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17158 -01156637 87.48111725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01156638 87.48111725 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -01156639 87.48111725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01156640 87.48111725 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17168 -01156641 87.48111725 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -01156642 87.48112488 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17168 -01156643 87.48114777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01156644 87.48114777 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -01156645 87.48115540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01156646 87.48115540 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17178 -01156647 87.48115540 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -01156648 87.48115540 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17178 -01156649 87.48117828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01156650 87.48117828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01156651 87.48117828 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee68 -01156652 87.48118591 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee68 -01156653 87.48118591 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17188 -01156654 87.48118591 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17188 -01156655 87.48120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01156656 87.48120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01156657 87.48120880 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee78 -01156658 87.48120880 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17198 -01156659 87.48121643 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee78 -01156660 87.48121643 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x17198 -01156661 87.48123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01156662 87.48123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01156663 87.48123932 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee88 -01156664 87.48123932 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a8 -01156665 87.48123932 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0xee88 -01156666 87.48123932 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a8 -01156667 87.48126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01156668 87.48126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01166029 87.52657318 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d348 -01166030 87.52657318 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d8 -01166031 87.52657318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01166032 87.52657318 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d348 -01166033 87.52657318 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d8 -01166034 87.52657318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01166035 87.52659607 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d358 -01166036 87.52659607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e8 -01166037 87.52659607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01166038 87.52660370 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d358 -01166039 87.52660370 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e8 -01166040 87.52660370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01166041 87.52662659 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d368 -01166042 87.52662659 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f8 -01166043 87.52662659 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d368 -01166044 87.52662659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01166045 87.52662659 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f8 -01166046 87.52663422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01166047 87.52665710 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d378 -01166048 87.52665710 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d378 -01166049 87.52666473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01166050 87.52666473 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15108 -01166051 87.52666473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01166052 87.52666473 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15108 -01166053 87.52668762 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d388 -01166054 87.52668762 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d388 -01166055 87.52668762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01166056 87.52668762 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15118 -01166057 87.52669525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01166058 87.52669525 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15118 -01166059 87.52671051 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d398 -01166060 87.52671051 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d398 -01166061 87.52671814 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15128 -01166062 87.52671814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01166063 87.52671814 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15128 -01166064 87.52671814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01166065 87.52674103 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a8 -01166066 87.52674866 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a8 -01166067 87.52674866 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15138 -01166068 87.52674866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01166069 87.52674866 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15138 -01166070 87.52674866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01166071 87.52677155 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b8 -01166072 87.52677155 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b8 -01177708 87.58393860 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb8 -01177709 87.58393860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -01177710 87.58393860 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -01177711 87.58393860 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb8 -01177712 87.58393860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -01177713 87.58393860 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -01177714 87.58396912 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec8 -01177715 87.58396912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed88 -01177716 87.58396912 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -01177717 87.58397675 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec8 -01177718 87.58397675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed88 -01177719 87.58397675 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -01177720 87.58399963 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed8 -01177721 87.58399963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed98 -01177722 87.58399963 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -01177723 87.58399963 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed8 -01177724 87.58399963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed98 -01177725 87.58399963 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -01177726 87.58402252 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee8 -01177727 87.58402252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda8 -01177728 87.58403015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -01177729 87.58403015 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee8 -01177730 87.58403015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda8 -01177731 87.58403015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -01177732 87.58406067 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef8 -01177733 87.58406067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb8 -01177734 87.58406067 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb8 -01177735 87.58406067 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef8 -01177736 87.58406067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb8 -01177737 87.58406067 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb8 -01177738 87.58408356 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f08 -01177739 87.58408356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc8 -01177740 87.58409119 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -01177741 87.58409119 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f08 -01177742 87.58409119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc8 -01177743 87.58409119 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -01177744 87.58411407 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f18 -01177745 87.58411407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd8 -01177746 87.58411407 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -01177747 87.58411407 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f18 -01177748 87.58412170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd8 -01177749 87.58412170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -01177750 87.58414459 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f28 -01177751 87.58414459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xede8 -01189391 87.64163971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -01189392 87.64164734 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24548 -01189393 87.64164734 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d8 -01189394 87.64164734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -01189395 87.64164734 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24548 -01189396 87.64164734 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d8 -01189397 87.64167023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -01189398 87.64167023 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24558 -01189399 87.64167023 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e8 -01189400 87.64167023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -01189401 87.64167786 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24558 -01189402 87.64167786 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e8 -01189403 87.64169312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -01189404 87.64170074 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24568 -01189405 87.64170074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -01189406 87.64170074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f8 -01189407 87.64170074 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24568 -01189408 87.64170837 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f8 -01189409 87.64173126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -01189410 87.64173126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -01189411 87.64173126 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca08 -01189412 87.64173126 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24578 -01189413 87.64173126 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca08 -01189414 87.64173126 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24578 -01189415 87.64175415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -01189416 87.64176178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -01189417 87.64176178 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca18 -01189418 87.64176178 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24588 -01189419 87.64176178 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca18 -01189420 87.64176941 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24588 -01189421 87.64178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -01189422 87.64178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -01189423 87.64179230 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca28 -01189424 87.64179230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24598 -01189425 87.64179230 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca28 -01189426 87.64179230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24598 -01189427 87.64180756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -01189428 87.64181519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -01189429 87.64181519 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca38 -01189430 87.64182281 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca38 -01189431 87.64182281 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a8 -01189432 87.64182281 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a8 -01189433 87.64184570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e8 -01189434 87.64184570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e8 -01202698 87.70711517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec28 -01202699 87.70711517 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -01202700 87.70712280 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x35598 -01202701 87.70712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec28 -01202702 87.70712280 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -01202703 87.70712280 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x35598 -01202704 87.70714569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec38 -01202705 87.70714569 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -01202706 87.70714569 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a8 -01202707 87.70714569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec38 -01202708 87.70715332 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -01202709 87.70715332 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a8 -01202710 87.70717621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec48 -01202711 87.70718384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -01202712 87.70718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec48 -01202713 87.70718384 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355b8 -01202714 87.70718384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -01202715 87.70718384 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355b8 -01202716 87.70720673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec58 -01202717 87.70720673 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -01202718 87.70720673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec58 -01202719 87.70720673 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355c8 -01202720 87.70721436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -01202721 87.70721436 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355c8 -01202722 87.70722961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec68 -01202723 87.70723724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec68 -01202724 87.70723724 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -01202725 87.70723724 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355d8 -01202726 87.70723724 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -01202727 87.70724487 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355d8 -01202728 87.70726776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec78 -01202729 87.70726776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec78 -01202730 87.70726776 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -01202731 87.70726776 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355e8 -01202732 87.70726776 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -01202733 87.70726776 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355e8 -01202734 87.70729065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec88 -01202735 87.70729828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec88 -01202736 87.70729828 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -01202737 87.70729828 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355f8 -01202738 87.70729828 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -01202739 87.70730591 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x355f8 -01202740 87.70732117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -01202741 87.70732117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -01216651 87.77533722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -01216652 87.77533722 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6a8 -01216653 87.77533722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x364c8 -01216654 87.77533722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -01216655 87.77533722 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6a8 -01216656 87.77536774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d8 -01216657 87.77536774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -01216658 87.77536774 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6b8 -01216659 87.77536774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d8 -01216660 87.77537537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -01216661 87.77537537 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6b8 -01216662 87.77539825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x364e8 -01216663 87.77539825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -01216664 87.77539825 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6c8 -01216665 87.77539825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x364e8 -01216666 87.77539825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -01216667 87.77539825 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6c8 -01216668 87.77542114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x364f8 -01216669 87.77542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -01216670 87.77542114 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6d8 -01216671 87.77542877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x364f8 -01216672 87.77542877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -01216673 87.77542877 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6d8 -01216674 87.77545929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36508 -01216675 87.77545929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -01216676 87.77545929 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6e8 -01216677 87.77545929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36508 -01216678 87.77545929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -01216679 87.77545929 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6e8 -01216680 87.77548218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36518 -01216681 87.77548218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -01216682 87.77548218 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f8 -01216683 87.77548981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36518 -01216684 87.77548981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -01216685 87.77548981 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f8 -01216686 87.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36528 -01216687 87.77551270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -01216688 87.77551270 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e708 -01216689 87.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36528 -01216690 87.77552032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -01216691 87.77552032 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e708 -01216692 87.77553558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36538 -01216693 87.77554321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -01216694 87.77554321 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e718 -01255655 87.98146820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af8 -01255656 87.98146820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52378 -01255657 87.98146820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af8 -01255658 87.98146820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52378 -01255659 87.98149872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b08 -01255660 87.98149872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52388 -01255661 87.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b08 -01255662 87.98150635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52388 -01255663 87.98152924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b18 -01255664 87.98152924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b18 -01255665 87.98152924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52398 -01255666 87.98153687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52398 -01255667 87.98155212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b28 -01255668 87.98155975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b28 -01255669 87.98155975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a8 -01255670 87.98155975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a8 -01255671 87.98159027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b38 -01255672 87.98159027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b38 -01255673 87.98159027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b8 -01255674 87.98159027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b8 -01255675 87.98161316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b48 -01255676 87.98162079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b48 -01255677 87.98162079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c8 -01255678 87.98162079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c8 -01255679 87.98164368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b58 -01255680 87.98164368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b58 -01255681 87.98165131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d8 -01255682 87.98165131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d8 -01255683 87.98167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b68 -01255684 87.98167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b68 -01255685 87.98167419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e8 -01255686 87.98167419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e8 -01255687 87.98170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b78 -01255688 87.98170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b78 -01255689 87.98170471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f8 -01255690 87.98171234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f8 -01255691 87.98172760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b88 -01255692 87.98172760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b88 -01255693 87.98173523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52408 -01255694 87.98173523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52408 -01255695 87.98175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b98 -01255696 87.98175812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b98 -01255697 87.98175812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52418 -01255698 87.98176575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52418 -01259809 88.03558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b308 -01259810 88.03558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b308 -01259811 88.03560638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b318 -01259812 88.03561401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b318 -01259813 88.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b328 -01259814 88.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b328 -01259815 88.03566742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b338 -01259816 88.03567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b338 -01259817 88.03569794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b348 -01259818 88.03569794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b348 -01259819 88.03572845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b358 -01259820 88.03572845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b358 -01259821 88.03575134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b368 -01259822 88.03575897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b368 -01259823 88.03578186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -01259824 88.03578186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -01259825 88.03580475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -01259826 88.03581238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -01259827 88.03584290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -01259828 88.03584290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -01259829 88.03586578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -01259830 88.03586578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -01259831 88.03588867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -01259832 88.03589630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -01259833 88.03592682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -01259834 88.03592682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -01259835 88.03594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -01259836 88.03594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -01259837 88.03597260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e8 -01259838 88.03598022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e8 -01259839 88.03600311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -01259840 88.03600311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -01259841 88.03603363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -01259842 88.03604126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -01259843 88.03606415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -01259844 88.03606415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -01259845 88.03608704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b428 -01259846 88.03608704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b428 -01259847 88.03611755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b438 -01259848 88.03612518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b438 -01259849 88.03614807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b448 -01259850 88.03614807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b448 -01259851 88.03617096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b458 -01259852 88.03617859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b458 -01263721 88.10580444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263722 88.12164307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263723 88.13809204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263724 88.13883209 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263725 88.13907623 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263726 88.13925934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263727 88.13948822 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263728 88.13966370 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263729 88.13987732 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263730 88.14005280 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263731 88.14025879 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263732 88.14043427 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263733 88.14064789 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263734 88.14080811 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263735 88.14101410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263736 88.14118195 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263737 88.14138794 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263738 88.14154816 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263739 88.14175415 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263740 88.14192200 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263741 88.14212799 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263742 88.14228821 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263743 88.14248657 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263744 88.14265442 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263745 88.14288330 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263746 88.14304352 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263747 88.14328003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263748 88.14344025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263749 88.14369202 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263750 88.14385986 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263751 88.14406586 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263752 88.14422607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263753 88.14443970 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263754 88.14460754 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263755 88.14482117 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263756 88.14500427 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263757 88.14522552 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263758 88.14539337 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263759 88.14560699 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263760 88.14578247 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263761 88.14597321 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263762 88.14614105 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263763 88.14634705 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263764 88.14652252 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263838 88.16147614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263839 88.16164398 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263840 88.16184235 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263841 88.16201019 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263842 88.16220093 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263843 88.16237640 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263844 88.16256714 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263845 88.16273499 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263846 88.16293335 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263847 88.16310120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263848 88.16329956 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263849 88.16345978 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263850 88.16366577 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263851 88.16384888 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263852 88.16468811 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263853 88.16487122 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263854 88.16516113 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263855 88.16532135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263856 88.16555023 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263857 88.16571808 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263858 88.16593170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263859 88.16609192 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263860 88.16630554 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263861 88.16646576 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263862 88.16667938 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263863 88.16685486 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263864 88.16711426 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263865 88.16732025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263866 88.16917419 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263867 88.16947174 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263868 88.16956329 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263869 88.17130280 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263870 88.17549133 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263871 88.17570496 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263872 88.17774200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263873 88.17776489 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263874 88.17803192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263875 88.17811584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263876 88.17886353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263877 88.17915344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263878 88.18102264 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263879 88.18121338 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263882 88.49995422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263883 88.50498962 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263884 88.50522614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263885 88.52503204 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263886 88.52586365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263887 88.52606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263888 88.54833221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263889 88.54897308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263890 88.54920959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263891 88.59017944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263892 88.59136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263893 88.59160614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263894 88.62156677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263895 88.62799835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263896 88.62822723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263897 88.64232635 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263898 88.66112518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263899 88.66178131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263900 88.66201019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263901 88.70866394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263902 88.70988464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263903 88.71009827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263904 88.71031189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263905 88.71052551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263906 88.71073914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263907 88.71092987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263908 88.71115875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263909 88.71139526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263910 88.71159363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263911 88.71180725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263912 88.71200562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263913 88.71220398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263914 88.71243286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263915 88.71263885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263916 88.71286774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263917 88.71316528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263918 88.71338654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263919 88.71360016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263920 88.71382141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263921 88.71412659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263922 88.71435547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263923 88.71601105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263924 88.71623230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263925 88.71739197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263926 88.71762085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263927 88.72031403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263928 88.72052765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263929 88.72073364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263930 88.84309387 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263931 89.53676605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263932 89.53680420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263933 89.53683472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263934 89.53684235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01263935 89.53697968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263936 89.53697968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01263937 89.53704071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263938 89.53707123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01263939 89.96570587 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01263940 89.98863220 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263941 89.98864746 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263942 90.46875000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263943 90.46896362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263944 90.46917725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263945 90.46943665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263946 90.46966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263947 90.46990967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263948 90.47077942 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263949 90.47106171 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263950 90.50337219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263951 90.50978088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263952 90.51001740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263953 90.53240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263954 90.70821381 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263955 90.70845795 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263956 90.70864868 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263957 90.70918274 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263958 90.74241638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263959 90.74279785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263960 90.75054169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263961 90.75077057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263962 90.78202820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263963 90.86470032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263964 90.86473083 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263965 90.86500549 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263966 90.86530304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263967 90.86541748 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263968 90.86542511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263969 90.86552429 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263970 90.86557770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263971 90.86577606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263972 90.86588287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263973 90.86589813 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263974 90.86593628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263975 90.86607361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263976 90.86618042 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263977 90.86633301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263978 90.86639404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263979 90.86660767 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263980 90.86660767 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263981 90.86661530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263982 90.86691284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263983 90.86692047 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263984 90.86712646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263985 90.86713409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263986 90.86720276 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263987 90.86740112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263988 90.86743164 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263989 90.86749268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263990 90.86752319 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263991 90.86770630 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263992 90.86770630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263993 90.86782837 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263994 90.86800385 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263995 90.86816406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263996 90.86816406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263997 90.86834717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263998 90.86836243 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263999 90.86862183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264000 90.86871338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264001 90.86879730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264002 90.86886597 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264003 90.86893463 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264004 90.86896515 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264005 90.86925507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264006 90.86930847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264007 90.86932373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264008 90.86949921 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264009 90.86953735 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264010 90.86963654 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264011 90.86978912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264012 90.86985016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264013 90.86998749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264014 90.87010193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264015 90.87023926 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264016 90.87025452 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264017 90.87039185 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264018 90.87044525 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264019 90.87044525 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264020 90.87059021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264021 90.87075806 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264022 90.87078094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264023 90.87082672 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264024 90.87097931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264025 90.87099457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264026 90.87102509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264027 90.87121582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264028 90.87130737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264029 90.87145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264030 90.87152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264031 90.87152863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264032 90.87159729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264033 90.87168884 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264034 90.87170410 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264035 90.87193298 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264036 90.87196350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264037 90.87197113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264038 90.87199402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264039 90.87214661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264040 90.87223816 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264041 90.87229919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264042 90.87245178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264043 90.87247467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264044 90.87247467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264045 90.87254333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264046 90.87255859 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264047 90.87267303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264048 90.87286377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264049 90.87289429 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264050 90.87300110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264051 90.87306976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264052 90.87317657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264053 90.87329865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264054 90.87339783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264055 90.87343597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264056 90.87364197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264057 90.87366486 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264058 90.87377930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264059 90.87393188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264060 90.87393951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264061 90.87395477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264062 90.87397766 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264063 90.87421417 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264064 90.87435913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264065 90.87438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264066 90.87439728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264067 90.87447357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264068 90.87451935 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264069 90.87474060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264070 90.87487030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264071 90.87489319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264072 90.87494659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264073 90.87503815 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264074 90.87525940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264075 90.87545776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264076 90.87546539 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264077 90.87567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264078 90.87595367 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264079 90.87625885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264080 90.87641907 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264081 90.87657928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264082 90.87685394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264083 90.87702179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264084 90.87702179 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264085 90.87716675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264086 90.87747192 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264087 90.87758636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264088 90.87794495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264089 90.87805176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264090 90.87818146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264091 90.91679382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264092 90.98520660 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264093 90.98754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264094 90.98774719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264095 91.02778625 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264096 91.03036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264097 91.03060150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264098 91.25924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264099 91.27049255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264100 91.27072906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264101 91.32749176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264102 91.33754730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264103 91.33780670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264104 91.33805847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264105 91.33876801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264106 91.33900452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264107 91.44631195 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264108 91.48562622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264109 91.48587036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264110 91.54062653 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264111 91.56526184 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264112 91.56544495 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264113 91.56570435 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264114 91.56587219 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264115 91.56608582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264116 91.56625366 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264117 91.56898499 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264118 91.56922913 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264119 91.59931183 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264120 91.61048126 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264121 91.61067200 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264122 91.61089325 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264123 91.61106110 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264124 91.61126709 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264125 91.61143494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264126 91.61164093 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264127 91.61180878 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264128 91.61308289 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264129 91.61331177 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264130 91.71307373 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264131 91.72057343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264132 91.72093201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264133 91.72146606 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264134 91.72167969 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264135 91.74547577 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264136 91.82956696 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264137 91.82981110 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264138 91.85237122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264139 91.85333252 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264140 91.85356140 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264141 91.88088226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264142 91.89567566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264143 91.89591980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264144 91.98995972 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01264145 92.00802612 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01264146 92.00803375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01264147 92.04370880 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264148 92.04376221 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264149 92.04378510 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01264150 92.04378510 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01264151 92.04391479 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264152 92.04391479 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01264153 92.04398346 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264154 92.04400635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01264155 92.92773438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01264156 92.92774200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01264157 92.92777252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01264158 92.92777252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01264159 92.92780304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01264160 92.92780304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01264161 92.92782593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01264162 92.92782593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01264163 92.92785645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01264164 92.92785645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01264165 92.92787933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01264166 92.92788696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01264167 92.92790985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01264168 92.92790985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01264169 92.92793274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01264170 92.92793274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01264171 92.92796326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01264172 92.92796326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01264173 92.92798615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01264174 92.92798615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01264175 92.92800903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01264176 92.92801666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01264177 92.92803955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01264178 92.92804718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01264179 92.92807007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01264180 92.92807007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01264181 92.92809296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01264182 92.92809296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01264183 92.92812347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01264184 92.92812347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01264185 92.92814636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01264186 92.92815399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01264187 92.92816925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01264188 92.92817688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01264189 92.92820740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01264190 92.92820740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01264191 92.92823029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01264192 92.92823029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01264193 92.92826080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01264194 92.92826080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01264195 92.92829132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01264196 92.92829132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01264197 92.92831421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01264198 92.92832184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01264199 92.92834473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01264200 92.92834473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01264201 92.92836761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01264202 92.92837524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01264203 92.92840576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01264204 92.92840576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01264205 92.92842865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01264206 92.92843628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01264207 92.92845154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01264208 92.92845917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01264209 92.92848969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01264210 92.92848969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01264211 92.92851257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01264212 92.92851257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01264213 92.92853546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01264214 92.92854309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01264215 92.92856598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01264216 92.92857361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01264217 92.92860413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01264218 92.92860413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01264219 92.92862701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01264220 92.92863464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01264221 92.92865753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01264222 92.92865753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01264223 92.92868805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01264224 92.92868805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01264225 92.92871094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01264226 92.92871094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01264227 92.92873383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01264228 92.92874146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01264229 92.92876434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01264230 92.92876434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01264231 92.92879486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01264232 92.92879486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01264233 92.92881775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01264234 92.92881775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01264235 92.92884827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01264236 92.92884827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01264237 92.92887878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01264238 92.92887878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01264239 92.92890167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01264240 92.92890930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01264241 92.92893219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01264242 92.92893982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01264243 92.92896271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01264244 92.92896271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01264245 92.92899323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01264246 92.92900085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01264247 92.92902374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01264248 92.92902374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01264249 92.92904663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01264250 92.92904663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01264251 92.92908478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01264252 92.92908478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01264253 92.92910767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01264254 92.92910767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01264255 92.92913055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01264256 92.92913818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01264257 92.92916107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01264258 92.92916107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01264259 92.92919159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01264260 92.92919159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01264261 92.92921448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01264262 92.92921448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01264263 92.92924500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01264264 92.92924500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01264265 92.92926788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01264266 92.92926788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01264267 92.92929077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01264268 92.92929840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01264269 92.92932129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01264270 92.92932129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01264271 92.92935181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01264272 92.92935181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01264273 92.92937469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01264274 92.92937469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01264275 92.92940521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01264276 92.92940521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01264277 92.92942810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01264278 92.92943573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01264279 92.92948151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01264280 92.92948151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01264281 92.92950439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01264282 92.92951202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01264283 92.92953491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01264284 92.92953491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01264285 92.92955780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01264286 92.92956543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01264287 92.92959595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01264288 92.92959595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01264289 92.92961884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01264290 92.92961884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01264291 92.92964172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01264292 92.92964935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01264293 92.92967987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01264294 92.92967987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01264295 92.92971039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01264296 92.92971039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01264297 92.92973328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01264298 92.92973328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01264299 92.92976379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01264300 92.92976379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01264301 92.92978668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01264302 92.92979431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01264303 92.92980957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01264304 92.92981720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01264305 92.92984009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01264306 92.92984009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01264307 92.92987061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01264308 92.92987061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01264309 92.92989349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01264310 92.92989349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01264311 92.92991638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01264312 92.92991638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01264313 92.92994690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01264314 92.92995453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01264315 92.92997742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01264316 92.92998505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01264317 92.93000793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01264318 92.93000793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01264319 92.93003845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01264320 92.93003845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01264321 92.93006897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01264322 92.93006897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01264323 92.93009186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01264324 92.93009949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01264325 92.93012238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01264326 92.93013000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01264327 92.93016052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01264328 92.93016052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01264329 92.93018341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01264330 92.93018341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01264331 92.93020630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01264332 92.93021393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01264333 92.93023682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01264334 92.93024445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01264335 92.93026733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01264336 92.93027496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01264337 92.93029785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01264338 92.93029785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01264339 92.93032074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01264340 92.93032074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01264341 92.93035126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01264342 92.93035126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01264343 92.93037415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01264344 92.93038177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01264345 92.93039703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01264346 92.93040466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01264347 92.93043518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01264348 92.93043518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01264349 92.93045807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01264350 92.93045807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01264351 92.93048096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01264352 92.93048096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01264353 92.93051147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01264354 92.93051147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01264355 92.93054199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01264356 92.93054199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01264357 92.93057251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01264358 92.93057251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01264359 92.93059540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01264360 92.93059540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01264361 92.93062592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01264362 92.93063354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01264363 92.93065643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01264364 92.93065643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01264365 92.93067932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01264366 92.93068695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01264367 92.93070984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01264368 92.93070984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01264369 92.93074036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01264370 92.93074036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01264371 92.93076324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01264372 92.93077087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01264373 92.93079376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01264374 92.93079376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01264375 92.93082428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01264376 92.93083191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01264377 92.93085480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01264378 92.93085480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01264379 92.93087769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01264380 92.93088531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01264381 92.93090820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01264382 92.93090820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01264383 92.93093872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01264384 92.93093872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01264385 92.93096161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01264386 92.93096924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01264387 92.93099213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01264388 92.93099213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01264389 92.93102264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01264390 92.93103027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01264391 92.93105316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01264392 92.93105316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01264393 92.93107605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01264394 92.93107605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01264395 92.93110657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01264396 92.93111420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01264397 92.93113708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01264398 92.93113708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01264399 92.93115997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01264400 92.93115997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01264401 92.93119049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01264402 92.93119049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01264403 92.93122101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01264404 92.93122101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01264405 92.93124390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01264406 92.93125153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01264407 92.93127441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01264408 92.93127441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01264409 92.93130493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01264410 92.93131256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01264411 92.93132782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01264412 92.93133545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01264413 92.93135834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01264414 92.93135834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01264415 92.93138885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01264416 92.93138885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01264417 92.93141937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01264418 92.93141937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01264419 92.93144226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01264420 92.93144989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01264421 92.93147278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01264422 92.93147278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01264423 92.93150330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01264424 92.93151093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01264425 92.93153381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01264426 92.93153381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01264427 92.93155670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01264428 92.93155670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01264429 92.93158722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01264430 92.93158722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01264431 92.93161011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01264432 92.93161011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01264433 92.93163300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01264434 92.93164063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01264435 92.93166351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01264436 92.93166351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01264437 92.93169403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01264438 92.93169403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01264439 92.93171692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01264440 92.93171692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01264441 92.93174744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01264442 92.93174744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01264443 92.93177032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01264444 92.93177795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01264445 92.93179321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01264446 92.93180084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01264447 92.93182373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01264448 92.93182373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01264449 92.93185425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01264450 92.93185425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01264451 92.93187714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01264452 92.93187714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01264453 92.93190765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01264454 92.93190765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01264455 92.93193054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01264456 92.93193817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01264457 92.93196106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01264458 92.93196106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01264459 92.93199158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01264460 92.93199158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01264461 92.93202209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01264462 92.93202209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01264463 92.93204498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01264464 92.93205261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01264465 92.93207550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01264466 92.93207550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01264467 92.93210602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01264468 92.93210602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01264469 92.93213654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01264470 92.93213654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01264471 92.93215942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01264472 92.93215942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01264473 92.93218231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01264474 92.93218994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01264475 92.93222046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01264476 92.93222046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01264477 92.93224335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01264478 92.93225098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01264479 92.93227386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01264480 92.93227386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01264481 92.93230438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01264482 92.93230438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01264483 92.93232727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01264484 92.93233490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01264485 92.93235779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01264486 92.93235779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01264487 92.93238068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01264488 92.93238068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01264489 92.93241119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01264490 92.93241882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01264491 92.93244171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01264492 92.93244171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01264493 92.93246460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01264494 92.93247223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01264495 92.93250275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01264496 92.93250275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01264497 92.93252563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01264498 92.93252563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01264499 92.93254852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01264500 92.93255615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01264501 92.93257904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01264502 92.93257904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01264503 92.93260956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01264504 92.93260956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01264505 92.93263245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01264506 92.93264008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01264507 92.93266296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01264508 92.93266296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01264509 92.93269348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01264510 92.93270111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01264511 92.93272400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01264512 92.93272400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01264513 92.93274689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01264514 92.93274689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01264515 92.93277740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01264516 92.93277740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01264517 92.93280792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01264518 92.93280792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01264519 92.93283081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01264520 92.93283844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01264521 92.93286133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01264522 92.93286133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01264523 92.93289185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01264524 92.93289185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01264525 92.93291473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01264526 92.93292236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01264527 92.93294525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01264528 92.93294525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01264529 92.93297577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01264530 92.93297577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01264531 92.93300629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01264532 92.93300629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01264533 92.93302917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01264534 92.93302917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01264535 92.93305969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01264536 92.93305969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01264537 92.93309021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01264538 92.93309021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01264539 92.93311310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01264540 92.93311310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01264541 92.93313599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01264542 92.93314362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01264543 92.93317413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01264544 92.93317413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01264545 92.93319702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01264546 92.93319702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01264547 92.93322754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01264548 92.93322754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01264549 92.93325806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01264550 92.93325806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01264551 92.93328094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01264552 92.93328857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01264553 92.93331146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01264554 92.93331146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01264555 92.93333435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01264556 92.93334198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01264557 92.93337250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01264558 92.93337250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01264559 92.93339539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01264560 92.93340302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01264561 92.93342590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01264562 92.93342590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01264563 92.93345642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01264564 92.93345642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01264565 92.93347931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01264566 92.93347931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01264567 92.93350220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01264568 92.93350983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01264569 92.93353271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01264570 92.93353271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01264571 92.93356323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01264572 92.93356323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01264573 92.93358612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01264574 92.93358612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01264575 92.93360901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01264576 92.93360901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01264577 92.93363953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01264578 92.93363953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01264579 92.93366241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01264580 92.93367004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01264581 92.93369293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01264582 92.93369293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01264583 92.93372345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01264584 92.93372345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01264585 92.93374634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01264586 92.93374634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01264587 92.93376923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01264588 92.93376923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01264589 92.93379974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01264590 92.93380737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01264591 92.93382263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01264592 92.93383026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01264593 92.93385315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01264594 92.93386078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01264595 92.93389130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01264596 92.93389130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01264597 92.93391418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01264598 92.93392181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01264599 92.93394470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01264600 92.93394470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01264601 92.93396759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01264602 92.93397522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01264603 92.93400574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01264604 92.93400574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01264605 92.93402863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01264606 92.93402863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01264607 92.93405151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01264608 92.93405151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01264609 92.93408203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01264610 92.93408966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01264611 92.93410492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01264612 92.93411255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01264613 92.93413544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01264614 92.93413544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01264615 92.93416595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01264616 92.93416595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01264617 92.93418884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01264618 92.93418884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01264619 92.93421173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01264620 92.93421173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01264621 92.93424225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01264622 92.93424988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01264623 92.93426514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01264624 92.93427277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01264625 92.93429565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01264626 92.93429565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01264627 92.93432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01264628 92.93432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01264629 92.93434906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01264630 92.93434906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01264631 92.93437195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01264632 92.93437958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01264633 92.93440247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01264634 92.93441010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01264635 92.93443298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01264636 92.93443298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01264637 92.93445587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01264638 92.93445587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01264639 92.93448639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01264640 92.93448639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01264641 92.93451691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01264642 92.93451691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01264643 92.93454742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01264644 92.93454742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01264645 92.93457031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01264646 92.93457794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01264647 92.93460083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01264648 92.93460846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01264649 92.93463135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01264650 92.93463135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01264651 92.93465424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01264652 92.93468475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01264653 92.93470764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01264654 92.93470764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01264655 92.93473053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01264656 92.93473053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01264657 92.93476105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01264658 92.93476105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01264659 92.93479156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01264660 92.93479919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01264661 92.93481445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01264662 92.93482208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01264663 92.93484497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01264664 92.93484497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01264665 92.93487549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01264666 92.93487549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01264667 92.93489838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01264668 92.93489838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01264669 92.93492126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01264670 92.93492889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01264671 92.93495178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01264672 92.93495941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01264673 92.93498230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01264674 92.93498230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01264675 92.93500519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01264676 92.93500519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01264677 92.93503571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01264678 92.93503571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01264679 92.93505859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01264680 92.93506622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01264681 92.93508911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01264682 92.93508911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01264683 92.93511963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01264684 92.93511963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01264685 92.93515015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01264686 92.93515015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01264687 92.93518066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01264688 92.93518066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01264689 92.93520355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01264690 92.93520355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01264691 92.93523407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01264692 92.93524170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01264693 92.93525696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01264694 92.93526459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01264695 92.93528748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01264696 92.93528748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01264697 92.93531799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01264698 92.93531799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01264699 92.93534088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01264700 92.93534088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01264701 92.93536377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01264702 92.93536377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01264703 92.93539429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01264704 92.93540192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01264705 92.93541718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01264706 92.93542480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01264707 92.93544769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01264708 92.93544769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01264709 92.93547821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01264710 92.93547821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01264711 92.93550110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01264712 92.93550110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01264713 92.93552399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01264714 92.93553162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01264715 92.93555450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01264716 92.93556213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01264717 92.93558502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01264718 92.93558502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01264719 92.93560791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01264720 92.93560791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01264721 92.93563843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01264722 92.93563843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01264723 92.93566132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01264724 92.93566132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01264725 92.93568420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01264726 92.93569183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01264727 92.93571472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01264728 92.93572235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01264729 92.93575287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01264730 92.93575287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01264731 92.93577576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01264732 92.93577576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01264733 92.93579865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01264734 92.93580627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01264735 92.93583679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01264736 92.93583679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01264737 92.93585968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01264738 92.93586731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01264739 92.93589020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01264740 92.93589020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01264741 92.93591309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01264742 92.93591309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01264743 92.93594360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01264744 92.93594360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01264745 92.93596649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01264746 92.93597412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01264747 92.93599701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01264748 92.93599701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01264749 92.93602753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01264750 92.93602753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01264751 92.93605042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01264752 92.93605042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01264753 92.93607330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01264754 92.93607330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01264755 92.93610382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01264756 92.93610382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01264757 92.93612671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01264758 92.93613434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01264759 92.93615723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01264760 92.93615723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01264761 92.93618774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01264762 92.93618774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01264763 92.93621063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01264764 92.93621063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01264765 92.93623352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01264766 92.93623352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01264767 92.93626404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01264768 92.93627167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01264769 92.93628693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01264770 92.93629456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01264771 92.93631744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01264772 92.93631744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01264773 92.93634796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01264774 92.93635559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01264775 92.93637848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01264776 92.93638611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01264777 92.93640137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01264778 92.93640900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01264779 92.93643188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01264780 92.93643188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01264781 92.93646240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01264782 92.93646240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01264783 92.93648529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01264784 92.93648529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01264785 92.93651581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01264786 92.93651581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01264787 92.93653870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01264788 92.93654633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01264789 92.93656921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01264790 92.93656921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01264791 92.93659210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01264792 92.93659210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01264793 92.93662262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01264794 92.93662262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01264795 92.93664551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01264796 92.93664551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01264797 92.93666840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01264798 92.93667603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01264799 92.93669891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01264800 92.93670654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01264801 92.93672943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01264802 92.93672943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01264803 92.93675232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01264804 92.93675232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01264805 92.93678284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01264806 92.93678284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01264807 92.93680573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01264808 92.93681335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01264809 92.93682861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01264810 92.93683624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01264811 92.93686676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01264812 92.93686676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01264813 92.93688965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01264814 92.93688965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01264815 92.93692017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01264816 92.93692017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01264817 92.93695068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01264818 92.93695068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01264819 92.93697357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01264820 92.93698120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01264821 92.93700409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01264822 92.93700409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01264823 92.93702698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01264824 92.93703461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01264825 92.93706512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01264826 92.93706512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01264827 92.93708801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01264828 92.93708801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01264829 92.93711090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01264830 92.93711853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01264831 92.93714905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01264832 92.93714905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01264833 92.93717194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01264834 92.93717194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01264835 92.93719482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01264836 92.93720245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01264837 92.93722534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01264838 92.93722534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01264839 92.93725586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01264840 92.93725586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01264841 92.93728638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01264842 92.93728638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01264843 92.93730927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01264844 92.93730927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01264845 92.93734741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01264846 92.93734741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01264847 92.93737030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01264848 92.93737793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01264849 92.93740082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01264850 92.93740082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01264851 92.93742371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01264852 92.93742371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01264853 92.93745422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01264854 92.93746185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01264855 92.93748474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01264856 92.93748474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01264857 92.93751526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01264858 92.93751526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01264859 92.93754578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01264860 92.93754578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01264861 92.93756866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01264862 92.93756866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01264863 92.93759918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01264864 92.93759918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01264865 92.93762207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01264866 92.93762970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01264867 92.93766022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01264868 92.93766022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01264869 92.93768311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01264870 92.93769073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01264871 92.93771362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01264872 92.93771362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01264873 92.93774414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01264874 92.93774414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01264875 92.93777466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01264876 92.93777466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01264877 92.93779755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01264878 92.93780518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01264879 92.93782806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01264880 92.93782806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01264881 92.93785858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01264882 92.93785858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01264883 92.93788147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01264884 92.93788910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01264885 92.93791199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01264886 92.93791199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01264887 92.93794250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01264888 92.93794250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01264889 92.93796539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01264890 92.93797302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01264891 92.93799591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01264892 92.93799591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01264893 92.93801880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01264894 92.93802643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01264895 92.93805695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01264896 92.93805695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01264897 92.93807983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01264898 92.93807983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01264899 92.93810272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01264900 92.93811035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01264901 92.93814087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01264902 92.93814087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01264903 92.93816376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01264904 92.93817139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01264905 92.93819427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01264906 92.93819427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01264907 92.93821716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01264908 92.93821716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01264909 92.93824768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01264910 92.93825531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01264911 92.93827820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01264912 92.93827820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01264913 92.93830872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01264914 92.93830872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01264915 92.93833923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01264916 92.93833923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01264917 92.93836212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01264918 92.93836212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01264919 92.93838501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01264920 92.93839264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01264921 92.93841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01264922 92.93841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01264923 92.93844604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01264924 92.93844604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01264925 92.93846893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01264926 92.93846893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01264927 92.93849945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01264928 92.93849945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01264929 92.93852234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01264930 92.93852234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01264931 92.93854523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01264932 92.93855286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01264933 92.93857574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01264934 92.93857574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01264935 92.93860626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01264936 92.93860626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01264937 92.93862915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01264938 92.93862915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01264939 92.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01264940 92.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01264941 92.93868256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01264942 92.93869019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01264943 92.93870544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01264944 92.93871307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01264945 92.93873596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01264946 92.93873596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01264947 92.93876648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01264948 92.93876648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01264949 92.93878937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01264950 92.93878937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01264951 92.93881226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01264952 92.93881989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01264953 92.93885040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01264954 92.93885040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01264955 92.93887329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01264956 92.93888092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01264957 92.93890381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01264958 92.93891144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01264959 92.93893433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01264960 92.93893433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01264961 92.93896484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01264962 92.93896484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01264963 92.93898773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01264964 92.93898773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01264965 92.93901062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01264966 92.93901062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01264967 92.93904114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01264968 92.93904114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01264969 92.93906403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01264970 92.93907166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01264971 92.93909454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01264972 92.93909454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01264973 92.93912506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01264974 92.93912506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01264975 92.93914795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01264976 92.93914795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01264977 92.93917084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01264978 92.93917084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01264979 92.93920135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01264980 92.93920898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01264981 92.93922424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01264982 92.93923187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01264983 92.93925476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01264984 92.93925476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01264985 92.93928528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01264986 92.93928528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01264987 92.93930817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01264988 92.93930817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01264989 92.93933105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01264990 92.93933105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01264991 92.93936157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01264992 92.93936920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01264993 92.93939209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01264994 92.93939209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01264995 92.93941498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01264996 92.93941498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01264997 92.93944550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01264998 92.93944550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01264999 92.93947601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01265000 92.93947601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01265001 92.93949890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01265002 92.93950653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01265003 92.93952942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01265004 92.93952942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01265005 92.93955994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01265006 92.93955994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01265007 92.93958282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01265008 92.93959045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01265009 92.93961334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01265010 92.93961334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01265011 92.93964386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01265012 92.93965149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01265013 92.93966675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01265014 92.93967438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01265015 92.93969727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01265016 92.93969727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01265017 92.93972778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01265018 92.93972778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01265019 92.93975067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01265020 92.93975067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01265021 92.93977356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01265022 92.93977356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01265023 92.93980408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01265024 92.93981171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01265025 92.93982697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01265026 92.93983459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01265027 92.93985748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01265028 92.93985748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01265029 92.93988800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01265030 92.93988800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01265031 92.93991089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01265032 92.93991089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01265033 92.93993378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01265034 92.93994141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01265035 92.93996429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01265036 92.93996429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01265037 92.93999481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01265038 92.93999481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01265039 92.94001770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01265040 92.94001770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01265041 92.94004822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01265042 92.94004822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01265043 92.94007111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01265044 92.94007874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01265045 92.94010162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01265046 92.94010162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01265047 92.94012451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01265048 92.94013214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01265049 92.94016266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01265050 92.94016266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01265051 92.94018555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01265052 92.94018555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01265053 92.94020844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01265054 92.94021606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01265055 92.94024658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01265056 92.94024658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01265057 92.94026947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01265058 92.94027710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01265059 92.94029236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01265060 92.94029999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01265061 92.94032288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01265062 92.94032288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01265063 92.94035339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01265064 92.94035339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01265065 92.94037628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01265066 92.94037628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01265067 92.94040680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01265068 92.94040680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01265069 92.94042969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01265070 92.94043732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01265071 92.94046021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01265072 92.94046021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01265073 92.94048309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01265074 92.94048309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01265075 92.94051361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01265076 92.94051361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01265077 92.94053650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01265078 92.94053650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01265079 92.94055939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01265080 92.94056702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01265081 92.94058990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01265082 92.94059753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01265083 92.94062042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01265084 92.94062042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01265085 92.94064331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01265086 92.94064331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01265087 92.94067383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01265088 92.94067383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01265089 92.94069672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01265090 92.94070435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01265091 92.94071960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01265092 92.94072723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01265093 92.94075775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01265094 92.94075775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01265095 92.94078064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01265096 92.94078064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01265097 92.94080353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01265098 92.94080353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01265099 92.94083405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01265100 92.94084167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01265101 92.94085693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01265102 92.94086456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01265103 92.94088745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01265104 92.94088745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01265105 92.94091797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01265106 92.94091797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01265107 92.94094086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01265108 92.94094086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01265109 92.94096375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01265110 92.94096375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01265111 92.94099426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01265112 92.94100189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01265113 92.94101715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01265114 92.94102478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01265115 92.94104767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01265116 92.94104767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01265117 92.94107819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01265118 92.94107819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01265119 92.94110107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01265120 92.94110107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01265121 92.94112396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01265122 92.94112396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01265123 92.94115448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01265124 92.94116211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01265125 92.94118500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01265126 92.94118500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01265127 92.94120789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01265128 92.94120789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01265129 92.94123840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01265130 92.94123840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01265131 92.94126129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01265132 92.94126129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01265133 92.94128418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01265134 92.94129181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01265135 92.94131470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01265136 92.94131470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01265137 92.94134521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01265138 92.94134521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01265139 92.94136810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01265140 92.94136810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01265141 92.94139862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01265142 92.94139862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01265143 92.94142151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01265144 92.94142914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01265145 92.94144440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01265146 92.94145203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01265147 92.94147491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01265148 92.94147491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01265149 92.94150543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01265150 92.94150543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01265151 92.94152832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01265152 92.94152832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01265153 92.94155884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01265154 92.94155884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01265155 92.94158173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01265156 92.94158936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01265157 92.94160461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01265158 92.94161224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01265159 92.94163513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01265160 92.94163513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01265161 92.94166565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01265162 92.94166565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01265163 92.94168854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01265164 92.94168854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01265165 92.94171143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01265166 92.94171906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01265167 92.94174194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01265168 92.94174957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01265169 92.94177246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01265170 92.94177246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01265171 92.94179535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01265172 92.94179535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01265173 92.94182587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01265174 92.94182587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01265175 92.94184875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01265176 92.94184875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01265177 92.94187164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01265178 92.94187927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01265179 92.94190216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01265180 92.94190979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01265181 92.94193268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01265182 92.94193268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01265183 92.94195557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01265184 92.94195557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01265185 92.94198608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01265186 92.94199371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01265187 92.94201660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01265188 92.94201660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01265189 92.94203949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01265190 92.94204712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01265191 92.94207001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01265192 92.94207001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01265193 92.94210052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01265194 92.94210052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01265195 92.94213104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01265196 92.94213104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01265197 92.94215393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01265198 92.94215393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01265199 92.94218445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01265200 92.94219208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01265201 92.94220734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01265202 92.94221497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01265203 92.94223785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01265204 92.94223785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01265205 92.94226837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01265206 92.94226837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01265207 92.94229126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01265208 92.94229126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01265209 92.94231415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01265210 92.94232178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01265211 92.94234467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01265212 92.94235229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01265213 92.94237518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01265214 92.94237518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01265215 92.94239807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01265216 92.94239807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01265217 92.94242859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01265218 92.94242859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01265219 92.94245148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01265220 92.94245148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01265221 92.94247437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01265222 92.94248199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01265223 92.94250488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01265224 92.94251251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01265225 92.94253540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01265226 92.94253540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01265227 92.94255829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01265228 92.94255829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01265229 92.94258881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01265230 92.94258881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01265231 92.94261169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01265232 92.94261932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01265233 92.94264221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01265234 92.94264221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01265235 92.94266510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01265236 92.94267273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01265237 92.94270325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01265238 92.94270325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01265239 92.94272614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01265240 92.94273376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01265241 92.94274902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01265242 92.94275665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01265243 92.94278717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01265244 92.94278717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01265245 92.94281006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01265246 92.94281006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01265247 92.94283295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01265248 92.94283295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01265249 92.94286346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01265250 92.94286346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01265251 92.94288635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01265252 92.94289398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01265253 92.94291687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01265254 92.94291687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01265255 92.94294739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01265256 92.94294739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01265257 92.94297028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01265258 92.94297028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01265259 92.94299316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01265260 92.94299316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01265261 92.94302368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01265262 92.94302368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01265263 92.94304657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01265264 92.94305420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01265265 92.94307709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01265266 92.94307709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01265267 92.94310760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01265268 92.94310760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01265269 92.94313049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01265270 92.94313049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01265271 92.94315338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01265272 92.94315338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01265273 92.94318390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01265274 92.94318390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01265275 92.94320679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01265276 92.94321442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01265277 92.94323730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01265278 92.94323730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01265279 92.94326019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01265280 92.94326019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01265281 92.94329071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01265282 92.94329071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01265283 92.94331360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01265284 92.94332123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01265285 92.94334412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01265286 92.94334412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01265287 92.94337463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01265288 92.94337463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01265289 92.94339752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01265290 92.94339752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01265291 92.94342041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01265292 92.94342041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01265293 92.94345093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01265294 92.94345856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01265295 92.94347382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01265296 92.94348145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01265297 92.94350433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01265298 92.94350433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01265299 92.94353485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01265300 92.94353485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01265301 92.94355774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01265302 92.94355774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01265303 92.94358063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01265304 92.94358063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01265305 92.94361115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01265306 92.94361877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01265307 92.94363403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01265308 92.94364166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01265309 92.94366455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01265310 92.94366455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01265311 92.94369507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01265312 92.94369507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01265313 92.94371796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01265314 92.94371796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01265315 92.94374084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01265316 92.94374847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01265317 92.94377136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01265318 92.94377899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01265319 92.94380188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01265320 92.94380188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01265321 92.94382477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01265322 92.94382477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01265323 92.94385529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01265324 92.94385529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01265325 92.94388580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01265326 92.94388580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01265327 92.94390869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01265328 92.94391632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01265329 92.94393921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01265330 92.94393921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01265331 92.94396973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01265332 92.94397736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01265333 92.94399261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01265334 92.94400024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01265335 92.94402313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01265336 92.94402313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01265337 92.94405365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01265338 92.94405365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01265339 92.94407654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01265340 92.94407654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01265341 92.94409943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01265342 92.94410706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01268399 92.98626709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01268400 92.98627472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01268401 92.98629761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01268402 92.98629761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01268403 92.98632050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01268404 92.98632050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01268405 92.98635101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01268406 92.98635864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01268407 92.98638153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01268408 92.98638153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01268409 92.98640442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01268410 92.98641205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01268411 92.98643494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01268412 92.98643494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01268413 92.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01268414 92.98645782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01268415 92.98646545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01268416 92.98646545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01268417 92.98648834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01268418 92.98648834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01268419 92.98649597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01268420 92.98649597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01268421 92.98651886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01268422 92.98651886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01268423 92.98651886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01268424 92.98651886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01268425 92.98654175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01268426 92.98654938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01268427 92.98654938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01268428 92.98655701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01268429 92.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01268430 92.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01268431 92.98657990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01268432 92.98657990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01268433 92.98659515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01268434 92.98659515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01268435 92.98660278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01268436 92.98661041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01268437 92.98662567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01268438 92.98662567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01268439 92.98663330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01268440 92.98663330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01268441 92.98664856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01268442 92.98665619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01275010 93.03433228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01275011 93.03433228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca8 -01275012 93.03433228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca8 -01275013 93.03435516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01275014 93.03435516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01275015 93.03436279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb8 -01275016 93.03436279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb8 -01275017 93.03438568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01275018 93.03438568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01275019 93.03438568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc8 -01275020 93.03439331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc8 -01275021 93.03441620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01275022 93.03441620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01275023 93.03441620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcd8 -01275024 93.03441620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcd8 -01275025 93.03444672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01275026 93.03444672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01275027 93.03444672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfce8 -01275028 93.03445435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfce8 -01275029 93.03446960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01275030 93.03447723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01275031 93.03447723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcf8 -01275032 93.03447723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcf8 -01275033 93.03450012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01275034 93.03450012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01275035 93.03450012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd08 -01275036 93.03450775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd08 -01275037 93.03453064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01275038 93.03453064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01275039 93.03453064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd18 -01275040 93.03453064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd18 -01275041 93.03456116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01275042 93.03456116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01275043 93.03456116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd28 -01275044 93.03456879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd28 -01275045 93.03458405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01275046 93.03459167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd38 -01275047 93.03459167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01275048 93.03459167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd38 -01275049 93.03461456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01275050 93.03461456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd48 -01275051 93.03462219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01275052 93.03462219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd48 -01275053 93.03465271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01283969 93.09640503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18258 -01283970 93.09641266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd88 -01283971 93.09641266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01283972 93.09641266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18258 -01283973 93.09641266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd88 -01283974 93.09641266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01283975 93.09643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18268 -01283976 93.09643555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd98 -01283977 93.09643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18268 -01283978 93.09644318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01283979 93.09644318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd98 -01283980 93.09644318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01283981 93.09645844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18278 -01283982 93.09646606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfda8 -01283983 93.09646606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18278 -01283984 93.09646606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01283985 93.09646606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfda8 -01283986 93.09647369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01283987 93.09649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18288 -01283988 93.09649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18288 -01283989 93.09649658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01283990 93.09649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdb8 -01283991 93.09649658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01283992 93.09649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdb8 -01283993 93.09652710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18298 -01283994 93.09652710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18298 -01283995 93.09652710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01283996 93.09652710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdc8 -01283997 93.09653473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01283998 93.09653473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdc8 -01283999 93.09654999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x182a8 -01284000 93.09654999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x182a8 -01284001 93.09655762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01284002 93.09655762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdd8 -01284003 93.09655762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01284004 93.09655762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdd8 -01284005 93.09657288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x182b8 -01284006 93.09658051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x182b8 -01284007 93.09658051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfde8 -01284008 93.09658051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01284009 93.09658813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfde8 -01284010 93.09658813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01284011 93.09661102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x182c8 -01284012 93.09661102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x182c8 -01296255 93.15568542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -01296256 93.15568542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01296257 93.15568542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -01296258 93.15568542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -01296259 93.15568542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01296260 93.15569305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -01296261 93.15570831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -01296262 93.15570831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01296263 93.15571594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -01296264 93.15571594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -01296265 93.15571594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01296266 93.15571594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -01296267 93.15574646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -01296268 93.15574646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01296269 93.15574646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -01296270 93.15574646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -01296271 93.15575409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01296272 93.15575409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -01296273 93.15577698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -01296274 93.15577698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01296275 93.15577698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -01296276 93.15577698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -01296277 93.15577698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01296278 93.15577698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -01296279 93.15579987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -01296280 93.15579987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01296281 93.15579987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -01296282 93.15580750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -01296283 93.15580750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01296284 93.15580750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -01296285 93.15583038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -01296286 93.15583038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01296287 93.15583038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -01296288 93.15583038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -01296289 93.15583038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01296290 93.15583038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -01296291 93.15586090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -01296292 93.15586090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01296293 93.15586090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -01296294 93.15586853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -01296295 93.15586853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01296296 93.15586853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -01296297 93.15589142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -01296298 93.15589142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -01308665 93.21578217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -01308666 93.21578217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28348 -01308667 93.21578217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de8 -01308668 93.21578979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -01308669 93.21578979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de8 -01308670 93.21578979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28348 -01308671 93.21581268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -01308672 93.21581268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df8 -01308673 93.21581268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28358 -01308674 93.21581268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -01308675 93.21581268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df8 -01308676 93.21581268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28358 -01308677 93.21584320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -01308678 93.21584320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e08 -01308679 93.21584320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28368 -01308680 93.21584320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -01308681 93.21584320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e08 -01308682 93.21584320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28368 -01308683 93.21587372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -01308684 93.21587372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e18 -01308685 93.21587372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28378 -01308686 93.21587372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -01308687 93.21587372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e18 -01308688 93.21588135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28378 -01308689 93.21589661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed8 -01308690 93.21590424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e28 -01308691 93.21590424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28388 -01308692 93.21590424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed8 -01308693 93.21590424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e28 -01308694 93.21590424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28388 -01308695 93.21592712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee8 -01308696 93.21592712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e38 -01308697 93.21592712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28398 -01308698 93.21592712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee8 -01308699 93.21593475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e38 -01308700 93.21593475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28398 -01308701 93.21595764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef8 -01308702 93.21596527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e48 -01308703 93.21596527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a8 -01308704 93.21596527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef8 -01308705 93.21596527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e48 -01308706 93.21596527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a8 -01308707 93.21598816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff08 -01308708 93.21598816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e58 -01362595 93.47712708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -01362596 93.47712708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35058 -01362597 93.47712708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43148 -01362598 93.47712708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -01362599 93.47712708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35058 -01362600 93.47712708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43148 -01362601 93.47714996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -01362602 93.47714996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35068 -01362603 93.47715759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43158 -01362604 93.47715759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -01362605 93.47715759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35068 -01362606 93.47715759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43158 -01362607 93.47718048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -01362608 93.47718048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35078 -01362609 93.47718048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43168 -01362610 93.47718048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -01362611 93.47718048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35078 -01362612 93.47718811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43168 -01362613 93.47721100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -01362614 93.47721100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35088 -01362615 93.47721863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43178 -01362616 93.47721863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -01362617 93.47721863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35088 -01362618 93.47721863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43178 -01362619 93.47724152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -01362620 93.47724152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35098 -01362621 93.47724152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43188 -01362622 93.47724152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -01362623 93.47724152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35098 -01362624 93.47724915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43188 -01362625 93.47726440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -01362626 93.47727203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350a8 -01362627 93.47727203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43198 -01362628 93.47727203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -01362629 93.47727203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350a8 -01362630 93.47727203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43198 -01362631 93.47730255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -01362632 93.47730255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350b8 -01362633 93.47730255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a8 -01362634 93.47730255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -01362635 93.47730255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350b8 -01362636 93.47730255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a8 -01362637 93.47733307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e8 -01362638 93.47733307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x350c8 -01387229 93.66034698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc78 -01387230 93.66035461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc78 -01387231 93.66037750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc88 -01387232 93.66037750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc88 -01387233 93.66040039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc98 -01387234 93.66040802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc98 -01387235 93.66043854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca8 -01387236 93.66043854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca8 -01387237 93.66046143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb8 -01387238 93.66046906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb8 -01387239 93.66049194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc8 -01387240 93.66049194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc8 -01387241 93.66051483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -01387242 93.66052246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -01387243 93.66055298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -01387244 93.66055298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -01387245 93.66057587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -01387246 93.66057587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -01387247 93.66059875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -01387248 93.66060638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -01387249 93.66063690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -01387250 93.66063690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -01387251 93.66065979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -01387252 93.66066742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -01387253 93.66069031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -01387254 93.66069794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -01387255 93.66072083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -01387256 93.66072083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -01387257 93.66075134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -01387258 93.66075897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -01387259 93.66078186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -01387260 93.66078186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -01387261 93.66080475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -01387262 93.66080475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -01387263 93.66083527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -01387264 93.66083527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -01387265 93.66086578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -01387266 93.66086578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -01387267 93.66088867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -01387268 93.66089630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -01387269 93.66091919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -01387270 93.66091919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -01387271 93.66094971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -01387272 93.66094971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -01389813 94.00907898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01389814 94.02635193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01389815 94.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01389816 94.31958771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389817 94.33023834 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389818 94.33128357 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389819 94.33794403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389820 94.33821869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389821 94.41788483 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389822 94.42623138 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389823 94.42644501 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389824 94.55014801 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01389825 94.55020142 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01389826 94.55022430 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01389827 94.55023193 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01389828 94.55036163 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01389829 94.55036926 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01389830 94.55042267 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01389831 94.55046082 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01389832 94.70991516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389833 94.71075439 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389834 94.71098328 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389835 94.73793793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389836 94.75625610 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389837 94.75647736 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389838 94.78317261 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389839 94.79690552 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389840 94.79695892 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389841 94.79709625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389842 94.79722595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389843 94.79734802 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389844 94.79738617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389845 94.79739380 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389846 94.79748535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389847 94.79751587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389848 94.79759216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389849 94.79773712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389850 94.79801941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389851 94.80689240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389852 94.80702209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389853 94.80736542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389854 94.80743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389855 94.81130981 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389856 94.81153107 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389857 94.85973358 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389858 94.86223602 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389859 94.86246490 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389860 94.87925720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389861 94.88013458 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389862 94.88035583 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389863 94.91159058 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389864 94.91702271 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389865 94.91741180 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389866 94.91747284 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389867 94.91777039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389868 94.91847992 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389869 94.91876984 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389870 94.92523193 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389871 94.92543793 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389872 94.94302368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389873 94.95710754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389874 94.95733643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389875 95.00563049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389876 95.00749207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389877 95.00772858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389878 95.02565002 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389879 95.02702332 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389880 95.02720642 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389881 95.05387115 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389882 95.05500031 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389883 95.05522919 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389884 95.08056641 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389885 95.08131409 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389886 95.08156586 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389887 95.10428619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389888 95.10815430 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389889 95.10834503 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389890 95.22930908 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389891 95.22942352 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389892 95.22961426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389893 95.22985077 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389894 95.22986603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389895 95.22998047 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389896 95.23004150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389897 95.23006439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389898 95.23007202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389899 95.23033142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389900 95.23049164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389901 95.23053741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389902 95.23068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389903 95.23110199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389904 95.23145294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389905 95.25187683 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389906 95.25212097 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389907 95.28753662 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389908 95.28948212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389909 95.28966522 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389910 95.28987122 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389911 95.29007721 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389912 95.29956818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389913 95.29974365 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389914 95.30062103 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389915 95.30079651 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389916 95.31729889 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389917 95.31755829 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389918 95.39252472 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389919 95.39336395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389920 95.39362335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389921 95.42343140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389922 95.42591858 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389923 95.42614746 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389924 95.44472504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389925 95.44953918 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389926 95.44972229 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389927 95.44995117 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389928 95.45011902 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389929 95.45034027 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389930 95.45049286 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389931 95.45071411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389932 95.45087433 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389933 95.45108032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389934 95.45124054 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389935 95.45172119 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389936 95.45195007 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389937 95.47213745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389938 95.54312134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389939 95.54331207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389940 95.54355621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389941 95.54372406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389942 95.54396820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389943 95.54414368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389944 95.54513550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389945 95.54559326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389946 95.54673004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389947 95.54685211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389948 95.54709625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389949 95.56384277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389950 95.56462860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389951 95.56626129 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389952 95.56661224 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389953 95.58121490 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389954 95.64824677 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389955 95.64849854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389956 95.64871979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389957 95.64898682 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389958 95.65311432 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389959 95.65413666 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389960 95.65452576 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389961 95.65646362 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389962 95.65797424 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389963 95.76569366 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389964 95.76593018 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389965 95.76614380 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389966 95.76636505 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389967 95.76658630 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389968 95.76679993 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389969 95.76702881 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389970 95.76818085 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389971 95.76909637 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389972 95.76934052 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389973 95.76972961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389974 95.77027130 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389975 95.77143860 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389976 95.77370453 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389977 95.78633881 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389978 95.78658295 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389979 95.86760712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389980 95.89634705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389981 95.89640808 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389982 95.89650726 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389983 95.89669037 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389984 95.89679718 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389985 95.89684296 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389986 95.89685059 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389987 95.89694214 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389988 95.89704895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389989 95.89720917 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389990 95.89725494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389991 95.89738464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389992 95.90369415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389993 95.90383911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389994 95.90406036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389995 95.90418243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389996 95.92806244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389997 95.92829895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389998 95.95546722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389999 95.95693970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390000 95.95712280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390001 95.95738983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390002 95.95755768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390003 95.95777893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390004 95.95794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390005 95.95817566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390006 95.95834351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390007 95.95856476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390008 95.95872498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390009 95.95895386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390010 95.95911407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390011 95.95933533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390012 95.95950317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390013 95.95972443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390014 95.95988464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390015 95.98582458 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390016 95.98605347 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390017 96.02748871 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01390018 96.04992676 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390019 96.04994202 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390020 96.06945038 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390021 96.07099915 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390022 96.07123566 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390023 96.09383392 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390024 96.09500122 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390025 96.09518433 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390026 96.09540558 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390027 96.09557343 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390028 96.09577942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390029 96.09594727 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390030 96.09616089 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390031 96.09632874 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390032 96.09654999 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390033 96.09671783 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390034 96.09702301 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390035 96.09719086 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390036 96.09754181 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390037 96.09770966 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390038 96.11443329 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390039 96.11466980 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390040 96.17195129 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390041 96.17279053 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390042 96.17279816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390043 96.17304230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390044 96.17304993 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390045 96.24980164 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390046 96.31909943 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390047 96.32057190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390048 96.32057953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390049 96.32057953 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390050 96.32080841 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390051 96.32080841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390052 96.32081604 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390053 96.35145569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390054 96.35218811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390055 96.35242462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390056 96.39331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390057 96.42252350 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390058 96.45220184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390059 96.48092651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390060 96.50812531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390061 96.53335571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390062 96.53395844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390063 96.53433228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390064 96.53505707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390065 96.53532410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390066 96.56134033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390067 96.56158447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390068 96.56208801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390069 96.56232452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390070 96.56257629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390071 96.60446930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390072 96.60477448 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390073 96.60736847 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390074 96.61981964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390075 96.73562622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390076 97.05683136 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390077 97.05688477 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390078 97.05690002 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390079 97.05691528 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01390080 97.05704498 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390081 97.05704498 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01390082 97.05710602 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390083 97.05713654 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01390084 97.30551910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390085 97.30602264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390086 97.30637360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390087 97.30854034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390088 97.41417694 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390089 97.49861145 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390090 97.54835510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390091 97.54858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390092 97.56915283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390093 97.57041168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390094 97.57064056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390095 97.59328461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390096 97.59490204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390097 97.59513855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390098 97.61913300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390099 97.62021637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390100 97.62049103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390101 97.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390102 97.68716431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390103 97.68794250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390104 97.68794250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390105 97.68819427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390106 97.68819427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390107 97.73703003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390108 97.73786163 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390109 97.73786926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390110 97.73817444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390111 97.73821259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390112 97.76538086 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390113 97.76641846 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390114 97.76676178 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390115 97.83172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390116 97.86470032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390117 97.88823700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390118 97.89100647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390119 97.89274597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390120 97.89298248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390121 97.91384125 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390122 97.91441345 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390123 97.94194794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390124 97.94342041 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390125 97.94345093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390126 97.94393921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390127 97.94416046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390128 97.96279907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390129 97.99391937 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390130 97.99451447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390131 97.99478149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390132 98.02841187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390133 98.03207397 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390134 98.03243256 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390135 98.05093384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01390136 98.06895447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390137 98.06896210 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390138 98.08541107 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390139 98.08580780 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390140 98.08999634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390141 98.10202026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390142 98.10225677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390143 98.12609100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390144 98.16795349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390145 98.16877747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390146 98.22847748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390147 98.22872925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390148 98.22897339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390150 98.28607178 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390153 98.37709808 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390154 98.53528595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390155 98.59597015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390156 98.64589691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390157 98.64908600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390158 98.69712830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01390159 98.69712830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01390160 98.69715881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01390161 98.69715881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01390162 98.69718170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01390163 98.69718170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01390164 98.69721222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01390165 98.69721222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01390166 98.69724274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01390167 98.69724274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01390168 98.69726563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01390169 98.69727325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01390170 98.69729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01390171 98.69729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01390172 98.69732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01390173 98.69732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01390174 98.69734955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01390175 98.69735718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01390176 98.69738007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01390177 98.69738007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01390178 98.69741058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01390179 98.69741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01390180 98.69744110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01390181 98.69744110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01390182 98.69746399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01390183 98.69746399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01390184 98.69749451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01390185 98.69749451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01390186 98.69752502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01390187 98.69752502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01390188 98.69754791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01390189 98.69754791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01390190 98.69757080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01390191 98.69757843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01390192 98.69760895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01390193 98.69760895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01390194 98.69763184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01390195 98.69763947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01390196 98.69766235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01390197 98.69766235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01390198 98.69769287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01390199 98.69769287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01390200 98.69772339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01390201 98.69772339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01390202 98.69774628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01390203 98.69774628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01390204 98.69776917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01390205 98.69777679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01390206 98.69780731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01390207 98.69780731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01390208 98.69783020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01390209 98.69783783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01390210 98.69786072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01390211 98.69786072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01390212 98.69789124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01390213 98.69789124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01390214 98.69791412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01390215 98.69792175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01390216 98.69794464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01390217 98.69794464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01390218 98.69796753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01390219 98.69797516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01390220 98.69800568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01390221 98.69800568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01390222 98.69802856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01390223 98.69802856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01390224 98.69805145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01390225 98.69805908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01390226 98.69808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01390227 98.69808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01390228 98.69811249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01390229 98.69811249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01390230 98.69813538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01390231 98.69814301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01390232 98.69816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01390233 98.69816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01390234 98.69819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01390235 98.69820404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01390236 98.69822693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01390237 98.69822693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01390238 98.69824982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01390239 98.69824982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01390240 98.69828033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01390241 98.69828796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01390242 98.69831085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01390243 98.69831085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01390244 98.69833374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01390245 98.69834137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01390246 98.69836426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01390247 98.69836426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01390248 98.69839478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01390249 98.69839478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01390250 98.69841766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01390251 98.69842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01390252 98.69844818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01390253 98.69844818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01390254 98.69847870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01390255 98.69848633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01390256 98.69850922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01390257 98.69850922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01390258 98.69853210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01390259 98.69853210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01390260 98.69856262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01390261 98.69856262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01390262 98.69859314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01390263 98.69859314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01390264 98.69861603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01390265 98.69862366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01390266 98.69864655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01390267 98.69864655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01390268 98.69867706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01390269 98.69868469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01390270 98.69870758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01390271 98.69870758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01390272 98.69873047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01390273 98.69873047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01390274 98.69876099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01390275 98.69876099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01390276 98.69879150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01390277 98.69879150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01390278 98.69881439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01390279 98.69882202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01390280 98.69884491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01390281 98.69884491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01390282 98.69888306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01390283 98.69889069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01390284 98.69892120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01390285 98.69892120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01390286 98.69894409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01390287 98.69895172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01390288 98.69897461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01390289 98.69897461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01390290 98.69900513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01390291 98.69900513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01390292 98.69905090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01390293 98.69905090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01390294 98.69908142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01390295 98.69908142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01390296 98.69911194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01390297 98.69911194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01390298 98.69913483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01390299 98.69914246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01390300 98.69916534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01390301 98.69916534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01390302 98.69919586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01390303 98.69920349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01390304 98.69921875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01390305 98.69922638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01390306 98.69924927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01390307 98.69924927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01390308 98.69927979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01390309 98.69927979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01390310 98.69930267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01390311 98.69930267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01390312 98.69932556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01390313 98.69933319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01390314 98.69935608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01390315 98.69936371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01390316 98.69938660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01390317 98.69938660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01390318 98.69940948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01390319 98.69940948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01390320 98.69944000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01390321 98.69944000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01390322 98.69946289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01390323 98.69946289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01390324 98.69948578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01390325 98.69949341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01390326 98.69951630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01390327 98.69951630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01390328 98.69954681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01390329 98.69954681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01390330 98.69957733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01390331 98.69957733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01390332 98.69960022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01390333 98.69960022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01390334 98.69963074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01390335 98.69963837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01390336 98.69966125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01390337 98.69966125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01390338 98.69968414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01390339 98.69969177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01390340 98.69971466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01390341 98.69971466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01390342 98.69974518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01390343 98.69975281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01390344 98.69977570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01390345 98.69977570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01390346 98.69979858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01390347 98.69980621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01390348 98.69983673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01390349 98.69983673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01390350 98.69985962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01390351 98.69986725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01390352 98.69989014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01390353 98.69989014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01390354 98.69991302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01390355 98.69991302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01390356 98.69995117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01390357 98.69995117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01390358 98.69997406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01390359 98.69997406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01390360 98.69999695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01390361 98.69999695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01390362 98.70002747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01390363 98.70003510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01390364 98.70005035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01390365 98.70005798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01390366 98.70008087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01390367 98.70008087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01390368 98.70011139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01390369 98.70011139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01390370 98.70013428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01390371 98.70013428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01390372 98.70016479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01390373 98.70016479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01390374 98.70019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01390375 98.70019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01390376 98.70022583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01390377 98.70022583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01390378 98.70024872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01390379 98.70025635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01390380 98.70027924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01390381 98.70027924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01390382 98.70030975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01390383 98.70030975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01390384 98.70033264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01390385 98.70034027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01390386 98.70036316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01390387 98.70036316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01390388 98.70039368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01390389 98.70039368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01390390 98.70041656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01390391 98.70042419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01390392 98.70044708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01390393 98.70044708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01390394 98.70046997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01390395 98.70046997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01390396 98.70050049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01390397 98.70050049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01390398 98.70052338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01390399 98.70053101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01390400 98.70055389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01390401 98.70055389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01390402 98.70058441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01390403 98.70058441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01390404 98.70060730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01390405 98.70060730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01390406 98.70063019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01390407 98.70063019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01390408 98.70066071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01390409 98.70066071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01390410 98.70068359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01390411 98.70069122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01390412 98.70071411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01390413 98.70071411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01390414 98.70074463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01390415 98.70074463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01390416 98.70076752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01390417 98.70076752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01390418 98.70079041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01390419 98.70079041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01390420 98.70082092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01390421 98.70082855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01390422 98.70085144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01390423 98.70085144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01390424 98.70087433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01390425 98.70087433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01390426 98.70090485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01390427 98.70090485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01390428 98.70092773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01390429 98.70093536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01390430 98.70095062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01390431 98.70095825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01390432 98.70098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01390433 98.70098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01390434 98.70101166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01390435 98.70101166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01390436 98.70103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01390437 98.70103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01390438 98.70106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01390439 98.70106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01390440 98.70108795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01390441 98.70109558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01390442 98.70111084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01390443 98.70111847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01390444 98.70114899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01390445 98.70114899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01390446 98.70117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01390447 98.70117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01390448 98.70119476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01390449 98.70119476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01390450 98.70122528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01390451 98.70122528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01390452 98.70124817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01390453 98.70125580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01390454 98.70127869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01390455 98.70127869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01390456 98.70130920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01390457 98.70130920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01390458 98.70133209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01390459 98.70133209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01390460 98.70135498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01390461 98.70136261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01390462 98.70138550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01390463 98.70138550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01390464 98.70141602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01390465 98.70141602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01390466 98.70143890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01390467 98.70144653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01390468 98.70146942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01390469 98.70146942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01390470 98.70149994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01390471 98.70150757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01390472 98.70153046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01390473 98.70153046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01390474 98.70155334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01390475 98.70156097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01390476 98.70158386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01390477 98.70158386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01390478 98.70161438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01390479 98.70161438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01390480 98.70163727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01390481 98.70163727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01390482 98.70166779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01390483 98.70166779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01390484 98.70169067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01390485 98.70169830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01390486 98.70171356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01390487 98.70172119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01390488 98.70174408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01390489 98.70175171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01390490 98.70178223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01390491 98.70178223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01390492 98.70180511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01390493 98.70180511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01390494 98.70182800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01390495 98.70183563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01390496 98.70186615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01390497 98.70186615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01390498 98.70188904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01390499 98.70188904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01390500 98.70191193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01390501 98.70191956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01390502 98.70194244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01390503 98.70194244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01390504 98.70197296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01390505 98.70198059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01390506 98.70200348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01390507 98.70200348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01390508 98.70202637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01390509 98.70202637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01390510 98.70205688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01390511 98.70206451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01390512 98.70208740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01390513 98.70208740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01390514 98.70211792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01390515 98.70211792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01390516 98.70214844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01390517 98.70214844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01390518 98.70217896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01390519 98.70217896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01390520 98.70220184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01390521 98.70220947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01390522 98.70223236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01390523 98.70223236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01390524 98.70226288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01390525 98.70226288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01390526 98.70228577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01390527 98.70229340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01390528 98.70231628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01390529 98.70231628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01390530 98.70233917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01390531 98.70234680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01390532 98.70237732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01390533 98.70237732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01390534 98.70240021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01390535 98.70240021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01390536 98.70242310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01390537 98.70243073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01390538 98.70246124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01390539 98.70246124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01390540 98.70248413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01390541 98.70248413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01390542 98.70250702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01390543 98.70251465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01390544 98.70253754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01390545 98.70253754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01390546 98.70256805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01390547 98.70257568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01390548 98.70259857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01390549 98.70259857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01390550 98.70262146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01390551 98.70262146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01390552 98.70265198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01390553 98.70265961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01390554 98.70268250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01390555 98.70269012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01390556 98.70270538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01390557 98.70271301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01390558 98.70273590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01390559 98.70273590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01390560 98.70277405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01390561 98.70277405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01390562 98.70281219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01390563 98.70281219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01390564 98.70284271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01390565 98.70284271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01390566 98.70286560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01390567 98.70286560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01390568 98.70289612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01390569 98.70289612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01390570 98.70292664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01390571 98.70292664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01390572 98.70294952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01390573 98.70295715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01390574 98.70298004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01390575 98.70298004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01390576 98.70301056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01390577 98.70301056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01390578 98.70303345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01390579 98.70304108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01390580 98.70306396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01390581 98.70306396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01390582 98.70309448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01390583 98.70309448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01390584 98.70311737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01390585 98.70312500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01390586 98.70314789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01390587 98.70314789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01390588 98.70317078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01390589 98.70317841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01390590 98.70320892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01390591 98.70320892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01390592 98.70323181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01390593 98.70323181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01390594 98.70325470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01390595 98.70326233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01390596 98.70329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01390597 98.70329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01390598 98.70331573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01390599 98.70332336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01390600 98.70334625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01390601 98.70334625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01390602 98.70336914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01390603 98.70336914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01390604 98.70339966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01390605 98.70340729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01390606 98.70343018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01390607 98.70343018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01390608 98.70345306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01390609 98.70345306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01390610 98.70348358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01390611 98.70349121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01390612 98.70351410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01390613 98.70351410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01390614 98.70353699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01390615 98.70354462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01390616 98.70356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01390617 98.70356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01390618 98.70359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01390619 98.70359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01390620 98.70362091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01390621 98.70362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01390622 98.70365143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01390623 98.70365143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01390624 98.70368195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01390625 98.70368195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01390626 98.70370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01390627 98.70371246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01390628 98.70373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01390629 98.70373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01390630 98.70376587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01390631 98.70376587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01390632 98.70379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01390633 98.70379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01390634 98.70381927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01390635 98.70381927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01390636 98.70384979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01390637 98.70384979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01390638 98.70388031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01390639 98.70388031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01390640 98.70390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01390641 98.70390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01390642 98.70393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01390643 98.70393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01390644 98.70396423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01390645 98.70396423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01390646 98.70398712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01390647 98.70399475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01390648 98.70401764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01390649 98.70401764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01390650 98.70404816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01390651 98.70404816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01390652 98.70407104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01390653 98.70407867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01390654 98.70410156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01390655 98.70410156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01390656 98.70412445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01390657 98.70413208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01390658 98.70416260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01390659 98.70416260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01390660 98.70418549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01390661 98.70418549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01390662 98.70420837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01390663 98.70421600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01390664 98.70424652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01390665 98.70424652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01390666 98.70426941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01390667 98.70426941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01390668 98.70429230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01390669 98.70429993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01390670 98.70432281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01390671 98.70432281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01390672 98.70435333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01390673 98.70436096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01390674 98.70438385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01390675 98.70438385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01390676 98.70440674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01390677 98.70440674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01390678 98.70443726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01390679 98.70444489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01390680 98.70446777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01390681 98.70446777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01390682 98.70449066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01390683 98.70449066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01390684 98.70452118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01390685 98.70452118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01390686 98.70455170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01390687 98.70455170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01390688 98.70457458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01390689 98.70458221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01390690 98.70460510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01390691 98.70460510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01390692 98.70463562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01390693 98.70463562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01390694 98.70465851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01390695 98.70466614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01390696 98.70468903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01390697 98.70468903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01390698 98.70471954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01390699 98.70471954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01390700 98.70475006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01390701 98.70475006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01390702 98.70477295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01390703 98.70477295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01390704 98.70480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01390705 98.70480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01390706 98.70483398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01390707 98.70483398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01390708 98.70485687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01390709 98.70485687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01390710 98.70487976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01390711 98.70488739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01390712 98.70491791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01390713 98.70491791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01390714 98.70494080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01390715 98.70494843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01390716 98.70497131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01390717 98.70497131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01390718 98.70500183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01390719 98.70500183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01390720 98.70502472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01390721 98.70503235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01390722 98.70505524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01390723 98.70505524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01390724 98.70507813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01390725 98.70507813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01390726 98.70510864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01390727 98.70511627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01390728 98.70513916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01390729 98.70514679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01390730 98.70516968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01390731 98.70516968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01390732 98.70520020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01390733 98.70520020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01390734 98.70523071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01390735 98.70523071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01390736 98.70525360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01390737 98.70525360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01390738 98.70528412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01390739 98.70528412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01390740 98.70531464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01390741 98.70531464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01390742 98.70534515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01390743 98.70534515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01390744 98.70538330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01390745 98.70538330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01390746 98.70541382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01390747 98.70542145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01390748 98.70544434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01390749 98.70544434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01390750 98.70547485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01390751 98.70547485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01390752 98.70549774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01390753 98.70550537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01390754 98.70552063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01390755 98.70552826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01390756 98.70555878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01390757 98.70555878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01390758 98.70558167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01390759 98.70558167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01390760 98.70560455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01390761 98.70560455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01390762 98.70563507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01390763 98.70563507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01390764 98.70565796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01390765 98.70566559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01390766 98.70568848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01390767 98.70568848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01390768 98.70571899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01390769 98.70571899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01390770 98.70574188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01390771 98.70574188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01390772 98.70577240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01390773 98.70577240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01390774 98.70579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01390775 98.70579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01390776 98.70582581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01390777 98.70583344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01390778 98.70585632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01390779 98.70585632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01390780 98.70587921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01390781 98.70588684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01390782 98.70591736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01390783 98.70591736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01390784 98.70594025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01390785 98.70594025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01390786 98.70596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01390787 98.70597076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01390788 98.70599365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01390789 98.70600128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01390790 98.70602417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01390791 98.70603180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01390792 98.70605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01390793 98.70605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01390794 98.70607758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01390795 98.70607758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01390796 98.70610809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01390797 98.70610809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01390798 98.70613098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01390799 98.70613098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01390800 98.70615387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01390801 98.70616150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01390802 98.70619202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01390803 98.70619202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01390804 98.70621490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01390805 98.70621490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01390806 98.70623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01390807 98.70623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01390808 98.70626831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01390809 98.70626831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01390810 98.70629120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01390811 98.70629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01390812 98.70631409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01390813 98.70632172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01390814 98.70635223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01390815 98.70635223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01390816 98.70637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01390817 98.70637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01390818 98.70639801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01390819 98.70639801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01390820 98.70642853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01390821 98.70642853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01390822 98.70645905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01390823 98.70646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01390824 98.70648956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01390825 98.70648956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01390826 98.70651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01390827 98.70651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01390828 98.70654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01390829 98.70655060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01390830 98.70656586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01390831 98.70657349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01390832 98.70659637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01390833 98.70659637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01390834 98.70662689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01390835 98.70662689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01390836 98.70664978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01390837 98.70664978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01390838 98.70667267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01390839 98.70668030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01390840 98.70670319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01390841 98.70671082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01390842 98.70673370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01390843 98.70674133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01390844 98.70676422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01390845 98.70676422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01390846 98.70678711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01390847 98.70678711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01390848 98.70681763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01390849 98.70682526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01390850 98.70684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01390851 98.70684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01390852 98.70687103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01390853 98.70687103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01390854 98.70690155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01390855 98.70690918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01390856 98.70693207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01390857 98.70693207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01390858 98.70695496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01390859 98.70696259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01390860 98.70698547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01390892 98.70754242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01390893 98.70754242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01390894 98.70757294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01390895 98.70757294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01390896 98.70759583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01390897 98.70759583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01390898 98.70761871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01390899 98.70761871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01390900 98.70764923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01390901 98.70765686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01390902 98.70767975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01390903 98.70767975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01390904 98.70770264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01390905 98.70771027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01390906 98.70774078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01390907 98.70774078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01390908 98.70776367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01390909 98.70777130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01390910 98.70779419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01390911 98.70779419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01390912 98.70781708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01390913 98.70781708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01390914 98.70784760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01390915 98.70785522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01390916 98.70787811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01390917 98.70787811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01390918 98.70790100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01390919 98.70790100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01390920 98.70793152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01390921 98.70793915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01390922 98.70796204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01390923 98.70796204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01390924 98.70798492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01390925 98.70799255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01390926 98.70801544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01390927 98.70801544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01390928 98.70804596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01390929 98.70804596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01390930 98.70806885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01390931 98.70807648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01390932 98.70809937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01390933 98.70809937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01390934 98.70812988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01390935 98.70813751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01395754 98.77675629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01395755 98.77676392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01395756 98.77678680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01395757 98.77678680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01395758 98.77680969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01395759 98.77680969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01395760 98.77684021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01395761 98.77684784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01395762 98.77687073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01395763 98.77687073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01395764 98.77689362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01395765 98.77689362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01395766 98.77692413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01395767 98.77693176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01395768 98.77695465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01395769 98.77695465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01395770 98.77697754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01395771 98.77698517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01395772 98.77700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01395773 98.77700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01395774 98.77703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01395775 98.77703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01395776 98.77706146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01395777 98.77706909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01395778 98.77709198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01395779 98.77709198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01395780 98.77712250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01395781 98.77713013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01395782 98.77715302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01395783 98.77715302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01395784 98.77717590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01395785 98.77717590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01395786 98.77720642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01395787 98.77720642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01395788 98.77723694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01395789 98.77723694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01395790 98.77725983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01395791 98.77725983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01395792 98.77728271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01395793 98.77729034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01395794 98.77732086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01395795 98.77732086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01395796 98.77734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01395797 98.77734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01409773 98.98099518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -01409774 98.98099518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -01409775 98.98101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -01409776 98.98101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -01409777 98.98104095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -01409778 98.98104858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -01409779 98.98107147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -01409780 98.98107147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -01409781 98.98110199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -01409782 98.98110962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -01409783 98.98113251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -01409784 98.98113251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -01409785 98.98115540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -01409786 98.98116302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -01409787 98.98119354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -01409788 98.98119354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -01409789 98.98121643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -01409790 98.98122406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -01409791 98.98124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -01409792 98.98124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -01409793 98.98126984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -01409794 98.98126984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -01409795 98.98130035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -01409796 98.98130798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -01409797 98.98133087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -01409798 98.98133087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -01409799 98.98135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -01409800 98.98136139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -01409801 98.98139191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e8 -01409802 98.98139191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e8 -01409803 98.98142242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f8 -01409804 98.98142242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f8 -01409805 98.98144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27608 -01409806 98.98144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27608 -01409807 98.98146820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27618 -01409808 98.98147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27618 -01409809 98.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27628 -01409810 98.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27628 -01409811 98.98152924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27638 -01409812 98.98153687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27638 -01409813 98.98155975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27648 -01409814 98.98155975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27648 -01409815 98.98159027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27658 -01409816 98.98159027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27658 -01415740 99.07474518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f78 -01415741 99.07475281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f78 -01415742 99.07477570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f88 -01415743 99.07477570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f88 -01415744 99.07480621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f98 -01415745 99.07480621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f98 -01415746 99.07483673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa8 -01415747 99.07483673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa8 -01415748 99.07485962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb8 -01415749 99.07486725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb8 -01415750 99.07489014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc8 -01415751 99.07489014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc8 -01415752 99.07492065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd8 -01415753 99.07492065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd8 -01415754 99.07495117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe8 -01415755 99.07495117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe8 -01415756 99.07497406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff8 -01415757 99.07498169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff8 -01415758 99.07500458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33008 -01415759 99.07500458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33008 -01415760 99.07503510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33018 -01415761 99.07504272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33018 -01415762 99.07506561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33028 -01415763 99.07506561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33028 -01415764 99.07508850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33038 -01415765 99.07509613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33038 -01415766 99.07512665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33048 -01415767 99.07512665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33048 -01415768 99.07514954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33058 -01415769 99.07514954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33058 -01415770 99.07517242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33068 -01415771 99.07518005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33068 -01415772 99.07520294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33078 -01415773 99.07520294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33078 -01415774 99.07523346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33088 -01415775 99.07523346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33088 -01415776 99.07525635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33098 -01415777 99.07526398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33098 -01415778 99.07528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330a8 -01415779 99.07528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330a8 -01415780 99.07531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330b8 -01415781 99.07532501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330b8 -01415782 99.07534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330c8 -01415783 99.07534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330c8 -01421694 99.16250610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e988 -01421695 99.16250610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e988 -01421696 99.16252899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e998 -01421697 99.16253662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e998 -01421698 99.16255951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a8 -01421699 99.16255951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a8 -01421700 99.16258240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b8 -01421701 99.16259003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b8 -01421702 99.16262054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c8 -01421703 99.16262054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c8 -01421704 99.16264343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d8 -01421705 99.16265106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d8 -01421706 99.16267395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e8 -01421707 99.16267395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e8 -01421708 99.16270447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f8 -01421709 99.16270447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f8 -01421710 99.16273499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea08 -01421711 99.16273499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea08 -01421712 99.16275787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea18 -01421713 99.16275787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea18 -01421714 99.16278076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea28 -01421715 99.16278839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea28 -01421716 99.16281891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea38 -01421717 99.16281891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea38 -01421718 99.16284180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea48 -01421719 99.16284943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea48 -01421720 99.16287231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea58 -01421721 99.16287231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea58 -01421722 99.16290283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea68 -01421723 99.16290283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea68 -01421724 99.16293335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea78 -01421725 99.16293335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea78 -01421726 99.16295624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea88 -01421727 99.16296387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea88 -01421728 99.16298676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea98 -01421729 99.16298676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea98 -01421730 99.16301727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa8 -01421731 99.16301727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa8 -01421732 99.16304016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab8 -01421733 99.16304779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab8 -01421734 99.16307068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac8 -01421735 99.16307068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac8 -01421736 99.16310120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead8 -01421737 99.16310120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead8 -01427445 99.24436188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d38 -01427446 99.24436188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d38 -01427447 99.24439240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d48 -01427448 99.24439240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d48 -01427449 99.24441528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d58 -01427450 99.24442291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d58 -01427451 99.24444580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d68 -01427452 99.24444580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d68 -01427453 99.24447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d78 -01427454 99.24447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d78 -01427455 99.24449921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d88 -01427456 99.24450684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d88 -01427457 99.24452972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d98 -01427458 99.24452972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d98 -01427459 99.24456024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da8 -01427460 99.24456024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da8 -01427461 99.24459076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db8 -01427462 99.24459076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db8 -01427463 99.24461365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc8 -01427464 99.24461365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc8 -01427465 99.24463654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd8 -01427466 99.24464417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd8 -01427467 99.24467468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de8 -01427468 99.24467468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de8 -01427469 99.24469757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df8 -01427470 99.24470520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df8 -01427471 99.24472809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e08 -01427472 99.24472809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e08 -01427473 99.24475861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e18 -01427474 99.24475861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e18 -01427475 99.24478912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e28 -01427476 99.24478912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e28 -01427477 99.24481201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e38 -01427478 99.24481201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e38 -01427479 99.24483490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e48 -01427480 99.24484253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e48 -01427481 99.24487305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e58 -01427482 99.24487305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e58 -01427483 99.24489594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e68 -01427484 99.24489594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e68 -01427485 99.24491882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e78 -01427486 99.24492645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e78 -01427487 99.24495697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e88 -01427488 99.24495697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e88 -01432056 99.54707336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432057 99.56314850 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432058 99.56320953 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432059 99.56322479 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432060 99.56324005 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01432061 99.56336975 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432062 99.56336975 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432063 99.56343079 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432064 99.56345367 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432066 99.71102142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432068 99.84301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432077 100.00274658 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432078 100.07032013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01432079 100.09275055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432080 100.09275818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432081 100.15773773 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432096 100.31136322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432097 100.45255280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432098 100.63881683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432100 100.83106995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432101 100.99153900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432102 101.12688446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432103 101.28397369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432104 101.46899414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432105 101.52882385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432106 101.57768250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432107 101.62501526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432108 101.67375183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432109 101.76580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432110 101.78089905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432111 102.07067108 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432112 102.07070923 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432113 102.07072449 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432114 102.07073975 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01432115 102.07086945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432116 102.07086945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432117 102.07093048 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432118 102.07095337 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432119 102.08775330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432120 102.09419250 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01432121 102.11496735 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432122 102.11497498 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432123 102.18019104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432124 102.21230316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432125 102.24967194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432126 102.30971527 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432127 102.34667206 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432128 102.39614868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432129 102.45684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432130 102.51124573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432131 102.55792999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432132 102.62583923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432133 102.66861725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432134 102.72384644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432135 102.72411346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432136 102.78757477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432137 102.86124420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432138 102.91990662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432139 102.96762085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432140 103.03482819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432141 103.09109497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432142 103.14137268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432143 103.18569946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432144 103.21552277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01432145 103.21556091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01432146 103.22150421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432147 103.23117828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432148 103.28229523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432149 103.35953522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432150 103.43702698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432151 103.49561310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432152 103.64163971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432153 103.68340302 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432154 103.69747925 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432155 103.72200012 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432156 103.72924042 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432157 103.78913116 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432158 103.91642761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432159 103.95688629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432160 103.97029877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432161 103.97052765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432162 104.11621094 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01432163 104.13726044 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432164 104.13726807 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432165 104.31115723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01432166 104.31116486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01432167 104.31118774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01432168 104.31119537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01432169 104.31121826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01432170 104.31121826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01432171 104.31124115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01432172 104.31124878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01432173 104.31127930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01432174 104.31127930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01432175 104.31130219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01432176 104.31130219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01432177 104.31132507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01432178 104.31133270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01432179 104.31136322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01432180 104.31136322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01432181 104.31138611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01432182 104.31139374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01432183 104.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01432184 104.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01432185 104.31143951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01432186 104.31143951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01432187 104.31147003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01432188 104.31147766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01432189 104.31150055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01432190 104.31150055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01432191 104.31152344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01432192 104.31152344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01432193 104.31155396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01432194 104.31156158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01432195 104.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01432196 104.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01432197 104.31160736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01432198 104.31161499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01432199 104.31163788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01432200 104.31163788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01432201 104.31166840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01432202 104.31166840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01432203 104.31169891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01432204 104.31169891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01432205 104.31172180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01432206 104.31172180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01432207 104.31175232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01432208 104.31175995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01432209 104.31178284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01432210 104.31178284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01432211 104.31180573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01432212 104.31181335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01432213 104.31183624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01432214 104.31183624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01432215 104.31186676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01432216 104.31186676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01432217 104.31188965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01432218 104.31189728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01432219 104.31192017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01432220 104.31192017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01432221 104.31195068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01432222 104.31195831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01432223 104.31198120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01432224 104.31198120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01432225 104.31200409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01432226 104.31200409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01432227 104.31203461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01432228 104.31203461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01432229 104.31206512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01432230 104.31206512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01432231 104.31208801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01432232 104.31208801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01432233 104.31211853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01432234 104.31211853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01432235 104.31214905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01432236 104.31214905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01432237 104.31217194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01432238 104.31217957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01432239 104.31220245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01432240 104.31220245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01432241 104.31223297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01432242 104.31223297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01432243 104.31225586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01432244 104.31226349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01432245 104.31228638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01432246 104.31228638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01432247 104.31231689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01432248 104.31231689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01432249 104.31234741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01432250 104.31234741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01432251 104.31237030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01432252 104.31237030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01432253 104.31239319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01432254 104.31240082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01432255 104.31243134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01432256 104.31243134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01432257 104.31245422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01432258 104.31246185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01432259 104.31248474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01432260 104.31248474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01432261 104.31251526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01432262 104.31251526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01432263 104.31253815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01432264 104.31254578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01432265 104.31256866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01432266 104.31256866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01432267 104.31259155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01432268 104.31259918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01432269 104.31262970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01432270 104.31262970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01432271 104.31265259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01432272 104.31265259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01432273 104.31267548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01432274 104.31268311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01432275 104.31271362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01432276 104.31271362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01432277 104.31273651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01432278 104.31273651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01432279 104.31275940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01432280 104.31276703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01432281 104.31278992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01432282 104.31278992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01432283 104.31282043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01432284 104.31282806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01432285 104.31285095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01432286 104.31285095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01432287 104.31287384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01432288 104.31287384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01432289 104.31291962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01432290 104.31292725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01432291 104.31295013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01432292 104.31295013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01432293 104.31298065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01432294 104.31298065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01432295 104.31300354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01432296 104.31301117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01432297 104.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01432298 104.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01432299 104.31306458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01432300 104.31307220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01432301 104.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01432302 104.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01432303 104.31311798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01432304 104.31312561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01432305 104.31314850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01432306 104.31314850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01432307 104.31317902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01432308 104.31317902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01432309 104.31320190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01432310 104.31320953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01432311 104.31323242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01432312 104.31323242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01432313 104.31326294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01432314 104.31326294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01432315 104.31328583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01432316 104.31329346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01432317 104.31331635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01432318 104.31331635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01432319 104.31334686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01432320 104.31334686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01432321 104.31337738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01432322 104.31337738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01432323 104.31340027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01432324 104.31340027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01432325 104.31343079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01432326 104.31343079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01432327 104.31346130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01432328 104.31346130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01432329 104.31348419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01432330 104.31348419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01432331 104.31350708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01432332 104.31351471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01432333 104.31354523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01432334 104.31354523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01432335 104.31356812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01432336 104.31357574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01432337 104.31359863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01432338 104.31359863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01432339 104.31362915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01432340 104.31362915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01432341 104.31365204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01432342 104.31365967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01432343 104.31368256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01432344 104.31368256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01432345 104.31370544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01432346 104.31371307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01432347 104.31374359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01432348 104.31374359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01432349 104.31376648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01432350 104.31376648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01432351 104.31378937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01432352 104.31379700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01432353 104.31382751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01432354 104.31382751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01432355 104.31385040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01432356 104.31385803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01432357 104.31388092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01432358 104.31388092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01432359 104.31390381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01432360 104.31390381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01432361 104.31393433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01432362 104.31394196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01432363 104.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01432364 104.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01432365 104.31398773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01432366 104.31399536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01432367 104.31402588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01432368 104.31402588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01432369 104.31404877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01432370 104.31404877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01432371 104.31407166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01432372 104.31407928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01432373 104.31410217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01432374 104.31410217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01432375 104.31413269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01432376 104.31413269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01432377 104.31415558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01432378 104.31416321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01432379 104.31418610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01432380 104.31418610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01432381 104.31421661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01432382 104.31422424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01432383 104.31424713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01432384 104.31424713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01432385 104.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01432386 104.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01432387 104.31430054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01432388 104.31430054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01432389 104.31433105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01432390 104.31433105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01432391 104.31435394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01432392 104.31436157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01432393 104.31438446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01432394 104.31438446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01432395 104.31441498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01432396 104.31441498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01432397 104.31443787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01432398 104.31444550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01432399 104.31446838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01432400 104.31446838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01432401 104.31449890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01432402 104.31449890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01432403 104.31452179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01432404 104.31452942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01432405 104.31455231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01432406 104.31455231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01432407 104.31458282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01432408 104.31458282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01432409 104.31461334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01432410 104.31461334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01432411 104.31463623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01432412 104.31463623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01432413 104.31465912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01432414 104.31466675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01432415 104.31469727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01432416 104.31469727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01432417 104.31472015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01432418 104.31472778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01432419 104.31475067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01432420 104.31475067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01432421 104.31478119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01432422 104.31478119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01432423 104.31480408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01432424 104.31481171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01432425 104.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01432426 104.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01432427 104.31485748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01432428 104.31485748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01432429 104.31489563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01432430 104.31489563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01432431 104.31491852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01432432 104.31491852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01432433 104.31494141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01432434 104.31494904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01432435 104.31497955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01432436 104.31497955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01432437 104.31500244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01432438 104.31501007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01432439 104.31503296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01432440 104.31503296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01432441 104.31505585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01432442 104.31505585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01432443 104.31508636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01432444 104.31509399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01432445 104.31511688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01432446 104.31511688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01432447 104.31513977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01432448 104.31513977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01432449 104.31517029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01432450 104.31517792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01432451 104.31520081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01432452 104.31520081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01432453 104.31522369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01432454 104.31523132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01432455 104.31525421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01432456 104.31525421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01432457 104.31528473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01432458 104.31528473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01432459 104.31530762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01432460 104.31531525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01432461 104.31533813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01432462 104.31533813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01432463 104.31536865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01432464 104.31536865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01432465 104.31539154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01432466 104.31539917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01432467 104.31542206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01432468 104.31542206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01432469 104.31545258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01432470 104.31545258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01432471 104.31548309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01432472 104.31548309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01432473 104.31550598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01432474 104.31550598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01432475 104.31553650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01432476 104.31553650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01432477 104.31556702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01432478 104.31556702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01432479 104.31558990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01432480 104.31559753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01432481 104.31562042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01432482 104.31562042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01432483 104.31565094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01432484 104.31565094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01432485 104.31568146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01432486 104.31568146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01432487 104.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01432488 104.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01432489 104.31573486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01432490 104.31573486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01432491 104.31576538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01432492 104.31576538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01432493 104.31578827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01432494 104.31578827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01432495 104.31581116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01432496 104.31581879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01432497 104.31584930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01432498 104.31584930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01432499 104.31587219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01432500 104.31587982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01432501 104.31590271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01432502 104.31590271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01432503 104.31593323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01432504 104.31593323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01432505 104.31595612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01432506 104.31596375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01432507 104.31598663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01432508 104.31598663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01432509 104.31600952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01432510 104.31600952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01432511 104.31604004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01432512 104.31604767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01432513 104.31607056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01432514 104.31607056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01432515 104.31609344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01432516 104.31610107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01432517 104.31613159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01432518 104.31613159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01432519 104.31615448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01432520 104.31615448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01432521 104.31617737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01432522 104.31618500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01432523 104.31620789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01432524 104.31620789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01432525 104.31623840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01432526 104.31624603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01432527 104.31626892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01432528 104.31626892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01432529 104.31629181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01432530 104.31629181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01432531 104.31632233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01432532 104.31632996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01432533 104.31635284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01432534 104.31635284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01432535 104.31637573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01432536 104.31638336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01432537 104.31640625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01432538 104.31640625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01432539 104.31643677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01432540 104.31643677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01432541 104.31645966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01432542 104.31646729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01432543 104.31649017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01432544 104.31649017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01432545 104.31652069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01432546 104.31652069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01432547 104.31654358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01432548 104.31655121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01432549 104.31657410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01432550 104.31657410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01432551 104.31660461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01432552 104.31660461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01432553 104.31663513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01432554 104.31663513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01432555 104.31665802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01432556 104.31665802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01432557 104.31668854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01432558 104.31668854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01432559 104.31671906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01432560 104.31671906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01432561 104.31674194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01432562 104.31674957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01432563 104.31677246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01432564 104.31677246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01432565 104.31680298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01432566 104.31680298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01432567 104.31682587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01432568 104.31683350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01432569 104.31685638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01432570 104.31685638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01432571 104.31688690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01432572 104.31688690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01432573 104.31691742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01432574 104.31691742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01432575 104.31694031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01432576 104.31694031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01432577 104.31696320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01432578 104.31697083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01432579 104.31700134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01432580 104.31700134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01432581 104.31702423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01432582 104.31702423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01432583 104.31704712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01432584 104.31705475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01432585 104.31708527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01432586 104.31708527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01432587 104.31710815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01432588 104.31711578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01432589 104.31713867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01432590 104.31713867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01432591 104.31716156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01432592 104.31716156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01432593 104.31719208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01432594 104.31719971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01432595 104.31722260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01432596 104.31722260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01432597 104.31724548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01432598 104.31725311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01432599 104.31728363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01432600 104.31728363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01432601 104.31730652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01432602 104.31730652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01432603 104.31732941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01432604 104.31733704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01432605 104.31735992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01432606 104.31735992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01432607 104.31739044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01432608 104.31739044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01432609 104.31741333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01432610 104.31742096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01432611 104.31744385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01432612 104.31744385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01432613 104.31747437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01432614 104.31748199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01432615 104.31750488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01432616 104.31750488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01432617 104.31752777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01432618 104.31752777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01432619 104.31755829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01432620 104.31755829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01432621 104.31758881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01432622 104.31758881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01432623 104.31761169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01432624 104.31761169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01432625 104.31764221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01432626 104.31764221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01432627 104.31767273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01432628 104.31767273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01432629 104.31769562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01432630 104.31770325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01432631 104.31772614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01432632 104.31772614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01432633 104.31775665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01432634 104.31775665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01432635 104.31777954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01432636 104.31778717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01432637 104.31781006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01432638 104.31781006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01432639 104.31784058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01432640 104.31784058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01432641 104.31787109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01432642 104.31787109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01432643 104.31789398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01432644 104.31789398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01432645 104.31791687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01432646 104.31792450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01432647 104.31795502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01432648 104.31795502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01432649 104.31797791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01432650 104.31797791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01432651 104.31800079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01432652 104.31800842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01432653 104.31803894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01432654 104.31803894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01432655 104.31806183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01432656 104.31806946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01432657 104.31809235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01432658 104.31809235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01432659 104.31811523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01432660 104.31811523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01432661 104.31814575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01432662 104.31815338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01432663 104.31817627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01432664 104.31817627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01432665 104.31819916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01432666 104.31820679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01432667 104.31823730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01432668 104.31823730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01432669 104.31826019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01432670 104.31826019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01432671 104.31828308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01432672 104.31829071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01432673 104.31831360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01432674 104.31831360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01432675 104.31834412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01432676 104.31834412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01432677 104.31836700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01432678 104.31837463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01432679 104.31839752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01432680 104.31839752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01432681 104.31842804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01432682 104.31843567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01432683 104.31845856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01432684 104.31845856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01432685 104.31848145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01432686 104.31848145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01432687 104.31851196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01432688 104.31851196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01432689 104.31854248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01432690 104.31854248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01432691 104.31856537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01432692 104.31857300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01432693 104.31859589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01432694 104.31859589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01432695 104.31862640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01432696 104.31862640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01432697 104.31864929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01432698 104.31865692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01432699 104.31867981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01432700 104.31867981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01432701 104.31871033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01432702 104.31871033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01432703 104.31873322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01432704 104.31874084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01432705 104.31876373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01432706 104.31876373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01432707 104.31878662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01432708 104.31879425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01432709 104.31882477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01432710 104.31882477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01432711 104.31884766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01432712 104.31884766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01432713 104.31887054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01432714 104.31887817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01432715 104.31890869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01432716 104.31890869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01432717 104.31893158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01432718 104.31893158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01432719 104.31895447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01432720 104.31896210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01432721 104.31898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01432722 104.31898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01432723 104.31901550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01432724 104.31902313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01432725 104.31904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01432726 104.31904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01432727 104.31906891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01432728 104.31906891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01432729 104.31909943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01432730 104.31910706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01432731 104.31912994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01432732 104.31912994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01432733 104.31915283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01432734 104.31916046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01432735 104.31919098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01432736 104.31919098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01432737 104.31921387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01432738 104.31921387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01432739 104.31923676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01432740 104.31924438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01432741 104.31926727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01432742 104.31926727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01432743 104.31929779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01432744 104.31930542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01432745 104.31932068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01432746 104.31932831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01432747 104.31935120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01432748 104.31935120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01432749 104.31938171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01432750 104.31938934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01432751 104.31941223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01432752 104.31941223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01432753 104.31943512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01432754 104.31943512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01432755 104.31946564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01432756 104.31946564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01432757 104.31949615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01432758 104.31949615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01432759 104.31951904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01432760 104.31952667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01432761 104.31954956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01432762 104.31954956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01432763 104.31958008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01432764 104.31958008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01432765 104.31960297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01432766 104.31961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01432767 104.31963348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01432768 104.31963348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01432769 104.31966400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01432770 104.31966400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01432771 104.31968689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01432772 104.31969452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01432773 104.31971741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01432774 104.31971741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01432775 104.31974030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01432776 104.31974792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01432777 104.31977844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01432778 104.31977844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01432779 104.31980133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01432780 104.31980896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01432781 104.31983185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01432782 104.31983185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01432783 104.31986237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01432784 104.31986237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01432785 104.31989288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01432786 104.31989288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01432787 104.31991577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01432788 104.31991577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01432789 104.31993866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01432790 104.31994629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01432791 104.31997681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01432792 104.31997681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01432793 104.31999969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01432794 104.32000732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01432795 104.32003021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01432796 104.32003021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01432797 104.32006073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01432798 104.32006073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01432799 104.32008362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01432800 104.32009125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01432801 104.32011414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01432802 104.32011414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01432803 104.32013702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01432804 104.32013702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01432805 104.32016754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01432806 104.32017517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01432807 104.32019806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01432808 104.32019806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01432809 104.32022095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01432810 104.32022858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01432811 104.32025909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01432812 104.32025909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01432813 104.32028198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01432814 104.32028198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01432815 104.32030487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01432816 104.32031250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01432817 104.32033539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01432818 104.32033539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01432819 104.32036591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01432820 104.32037354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01432821 104.32039642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01432822 104.32039642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01432823 104.32041931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01432824 104.32041931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01432825 104.32044983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01432826 104.32045746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01432827 104.32048035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01432828 104.32048035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01432829 104.32050323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01432830 104.32051086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01432831 104.32054138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01432832 104.32054138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01432833 104.32056427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01432834 104.32056427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01432835 104.32058716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01432836 104.32059479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01432837 104.32061768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01432838 104.32061768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01432839 104.32064819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01432840 104.32065582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01432841 104.32067871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01432842 104.32067871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01432843 104.32070160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01432844 104.32070160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01432845 104.32073212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01432846 104.32073975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01432847 104.32076263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01432848 104.32076263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01432849 104.32078552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01432850 104.32078552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01432851 104.32081604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01432852 104.32081604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01432853 104.32084656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01432854 104.32084656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01432855 104.32086945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01432856 104.32087708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01432857 104.32089996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01432858 104.32089996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01432859 104.32093048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01432860 104.32093048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01432861 104.32095337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01432862 104.32096100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01432863 104.32098389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01432864 104.32098389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01432865 104.32101440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01432866 104.32101440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01432867 104.32104492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01432868 104.32104492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01444055 104.47861481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d8 -01444056 104.47861481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d8 -01444057 104.47863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e8 -01444058 104.47863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e8 -01444059 104.47866058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f8 -01444060 104.47866821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f8 -01444061 104.47869110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18408 -01444062 104.47869110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18408 -01444063 104.47872162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18418 -01444064 104.47872925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18418 -01444065 104.47875214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18428 -01444066 104.47875214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18428 -01444067 104.47877502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18438 -01444068 104.47877502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18438 -01444069 104.47880554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18448 -01444070 104.47881317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18448 -01444071 104.47883606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18458 -01444072 104.47883606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18458 -01444073 104.47885895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18468 -01444074 104.47885895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18468 -01444075 104.47888947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18478 -01444076 104.47888947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18478 -01444077 104.47891998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18488 -01444078 104.47891998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18488 -01444079 104.47894287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18498 -01444080 104.47895050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18498 -01444081 104.47897339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a8 -01444082 104.47897339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a8 -01444083 104.47900391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b8 -01444084 104.47900391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b8 -01444085 104.47902679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c8 -01444086 104.47903442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c8 -01444087 104.47905731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -01444088 104.47905731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -01444089 104.47908783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -01444090 104.47908783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -01444091 104.47911072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -01444092 104.47911835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -01444093 104.47914124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -01444094 104.47914124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -01444095 104.47917175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18518 -01444096 104.47917175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18518 -01444097 104.47920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18528 -01444098 104.47920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18528 -01447767 104.53155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d8 -01447768 104.53155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d8 -01447769 104.53158569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e8 -01447770 104.53158569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e8 -01447771 104.53160858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f8 -01447772 104.53161621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f8 -01447773 104.53163910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f808 -01447774 104.53163910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f808 -01447775 104.53166962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f818 -01447776 104.53167725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f818 -01447777 104.53170013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f828 -01447778 104.53170013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f828 -01447779 104.53172302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f838 -01447780 104.53172302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f838 -01447781 104.53175354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f848 -01447782 104.53175354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f848 -01447783 104.53178406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f858 -01447784 104.53178406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f858 -01447785 104.53180695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -01447786 104.53181458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -01447787 104.53183746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -01447788 104.53183746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -01447789 104.53186798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -01447790 104.53186798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -01447791 104.53189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f898 -01447792 104.53189850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f898 -01447793 104.53192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a8 -01447794 104.53192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a8 -01447795 104.53195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b8 -01447796 104.53195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b8 -01447797 104.53197479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c8 -01447798 104.53198242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c8 -01447799 104.53200531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d8 -01447800 104.53200531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d8 -01447801 104.53202820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e8 -01447802 104.53203583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e8 -01447803 104.53206635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f8 -01447804 104.53206635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f8 -01447805 104.53208923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f908 -01447806 104.53208923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f908 -01447807 104.53211212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f918 -01447808 104.53211975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f918 -01447809 104.53215027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f928 -01447810 104.53215027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f928 -01452301 104.59538269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28548 -01452302 104.59538269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28548 -01452303 104.59540558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28558 -01452304 104.59540558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28558 -01452305 104.59543610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28568 -01452306 104.59543610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28568 -01452307 104.59545898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28578 -01452308 104.59545898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28578 -01452309 104.59548950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28588 -01452310 104.59549713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28588 -01452311 104.59552002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28598 -01452312 104.59552002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28598 -01452313 104.59554291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285a8 -01452314 104.59555054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285a8 -01452315 104.59558105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285b8 -01452316 104.59558105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285b8 -01452317 104.59560394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285c8 -01452318 104.59560394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285c8 -01452319 104.59562683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285d8 -01452320 104.59563446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285d8 -01452321 104.59565735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285e8 -01452322 104.59565735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285e8 -01452323 104.59568787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f8 -01452324 104.59569550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f8 -01452325 104.59571075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28608 -01452326 104.59571838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28608 -01452327 104.59574127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28618 -01452328 104.59574127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28618 -01452329 104.59577179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28628 -01452330 104.59577942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28628 -01452331 104.59580231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28638 -01452332 104.59580231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28638 -01452333 104.59582520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28648 -01452334 104.59582520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28648 -01452335 104.59585571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28658 -01452336 104.59585571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28658 -01452337 104.59588623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28668 -01452338 104.59588623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28668 -01452339 104.59590912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28678 -01452340 104.59590912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28678 -01452341 104.59593964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28688 -01452342 104.59593964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28688 -01452343 104.59597015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28698 -01452344 104.59597015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28698 -01456746 104.65959930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31028 -01456747 104.65962219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31038 -01456748 104.65962219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31038 -01456749 104.65964508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31048 -01456750 104.65964508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31048 -01456751 104.65967560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31058 -01456752 104.65968323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31058 -01456753 104.65970612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31068 -01456754 104.65970612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31068 -01456755 104.65972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31078 -01456756 104.65973663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31078 -01456757 104.65975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31088 -01456758 104.65975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31088 -01456759 104.65979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31098 -01456760 104.65979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31098 -01456761 104.65981293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a8 -01456762 104.65982056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a8 -01456763 104.65984344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b8 -01456764 104.65984344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b8 -01456765 104.65987396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c8 -01456766 104.65988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c8 -01456767 104.65990448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d8 -01456768 104.65990448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d8 -01456769 104.65992737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e8 -01456770 104.65992737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e8 -01456771 104.65995789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f8 -01456772 104.65995789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f8 -01456773 104.65998840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31108 -01456774 104.65998840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31108 -01456775 104.66001129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31118 -01456776 104.66001892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31118 -01456777 104.66004181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31128 -01456778 104.66004181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31128 -01456779 104.66007233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31138 -01456780 104.66007233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31138 -01456781 104.66009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31148 -01456782 104.66010284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31148 -01456783 104.66012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31158 -01456784 104.66012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31158 -01456785 104.66015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31168 -01456786 104.66015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31168 -01456787 104.66018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31178 -01456788 104.66018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31178 -01456789 104.66020966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31188 -01461217 104.72263336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be8 -01461218 104.72263336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be8 -01461219 104.72266388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf8 -01461220 104.72267151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf8 -01461221 104.72269440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c08 -01461222 104.72269440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c08 -01461223 104.72271729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c18 -01461224 104.72272491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c18 -01461225 104.72275543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c28 -01461226 104.72275543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c28 -01461227 104.72277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c38 -01461228 104.72277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c38 -01461229 104.72280121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c48 -01461230 104.72280884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c48 -01461231 104.72283173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c58 -01461232 104.72283173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c58 -01461233 104.72286224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c68 -01461234 104.72286224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c68 -01461235 104.72288513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c78 -01461236 104.72289276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c78 -01461237 104.72291565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c88 -01461238 104.72292328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c88 -01461239 104.72295380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c98 -01461240 104.72295380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c98 -01461241 104.72297668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca8 -01461242 104.72297668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca8 -01461243 104.72299957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb8 -01461244 104.72300720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb8 -01461245 104.72303009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc8 -01461246 104.72303009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc8 -01461247 104.72306061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd8 -01461248 104.72306061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd8 -01461249 104.72308350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce8 -01461250 104.72309113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce8 -01461251 104.72311401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf8 -01461252 104.72311401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf8 -01461253 104.72314453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d08 -01461254 104.72315216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d08 -01461255 104.72317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d18 -01461256 104.72317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d18 -01461257 104.72319794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d28 -01461258 104.72319794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d28 -01461259 104.72322845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d38 -01461260 104.72322845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d38 -01474059 105.54552460 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474060 105.54637146 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474061 105.54654694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474062 105.54659271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474063 105.54660797 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474064 105.54673767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474065 105.54678345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474066 105.56370544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474067 105.60542297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474068 105.65106201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474069 105.65194702 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474070 105.65217590 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474071 105.68157959 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474072 105.70406342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474073 105.70438385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474074 105.70456696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474075 105.70535278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474076 105.70594788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474077 105.70773315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474078 105.70796967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474079 105.70813751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474080 105.70860291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474081 105.70877838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474082 105.70896149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474083 105.70919800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474084 105.70943451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474085 105.70961761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474086 105.70980072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474087 105.71005249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474088 105.71023560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474089 105.71065521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474090 105.71180725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474091 105.71238708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474092 105.71276855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474093 105.71353912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474094 105.71385193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474095 105.71432495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474096 105.71458435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474097 105.71647644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474098 105.71664429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474099 105.71683502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474100 105.71700287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474101 105.71717834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474102 105.71734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474103 105.71752167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474104 105.71790314 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474105 105.71823883 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474108 105.79298401 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474109 105.79353333 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474115 105.85678864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474122 105.86466217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474123 105.86511993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474124 105.86570740 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474137 105.88240051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474138 105.88308716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474139 106.05881500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474140 106.07788849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474141 106.07815552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474142 106.13819885 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01474143 106.15649414 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474144 106.15650940 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474145 106.23892212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474146 106.24375153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474147 106.24419403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474148 106.24465942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474149 106.24500275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474151 106.35729980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474152 106.35731506 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474153 106.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474154 106.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474155 106.35777283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474156 106.35789490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474157 106.35790253 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474158 106.35803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474159 106.35813904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474160 106.35823059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474161 106.35840607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474162 106.35849762 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474163 106.35942078 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474164 106.35988617 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474165 106.38967133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474171 106.43302155 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474172 106.43632507 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474180 106.46847534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474181 106.46871185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474182 106.50006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474183 106.56472015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474184 106.59722900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474185 106.60343933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474186 106.60472107 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474187 106.63553619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474188 106.64505005 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474189 106.66065979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474190 106.67509460 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474191 106.67987823 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474192 106.68170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474193 106.69234467 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474194 106.74650574 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474195 106.74670410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474196 106.74690247 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474197 106.74707031 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474198 106.74726105 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474199 106.74742126 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474200 106.74761200 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474201 106.74777222 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474202 106.74795532 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474203 106.74813080 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474205 106.77797699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474206 106.79784393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474207 106.79804993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474211 106.88421631 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474212 106.88495636 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474213 106.89230347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474215 106.90084839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474216 106.90779877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474217 106.90799713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474218 106.90819550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474219 106.90836334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474220 106.90855408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474221 106.90872192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474222 106.90890503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474223 106.90907288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474224 106.90926361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474225 106.90943146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474226 106.90962219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474227 106.90978241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474228 106.90998077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474229 106.91017914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474230 106.91037750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474231 106.91055298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474232 106.91073608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474233 106.91091919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474234 106.91110229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474235 106.91131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474236 106.91152954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474237 106.91170502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474238 106.91188812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474239 106.91206360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474240 106.91224670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474241 106.91242218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474242 106.91260529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474243 106.91278076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474244 106.91296387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474245 106.91313171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474246 106.91333008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474247 106.91350555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474248 106.91368866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474249 106.91386414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474251 106.91720581 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474252 106.94622040 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474253 106.94637299 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474257 106.97896576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474258 106.97924805 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474259 106.97979736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474260 106.98004150 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474261 106.98162842 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474262 106.98233032 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474263 106.98238373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474264 106.98262787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474265 107.00405884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474266 107.00562286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474267 107.00585938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474268 107.03059387 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474269 107.03253174 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474270 107.03276062 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474271 107.05014038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474272 107.05107880 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474273 107.05252075 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474274 107.05274963 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474275 107.07479095 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474276 107.07666779 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474277 107.07698822 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474278 107.08370209 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474279 107.08374786 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474280 107.08377075 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474281 107.08378601 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01474282 107.08391571 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474283 107.08392334 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474284 107.08398438 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474285 107.08400726 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474286 107.09923553 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474288 107.26847076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474289 107.26902771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474290 107.26933289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474291 107.26969147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474292 107.26988220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474293 107.27008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474294 107.27178192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474295 107.27244568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474300 107.51255035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474301 107.51352692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474306 108.15789795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01474307 108.18008423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474308 108.18009949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474316 108.32917786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474317 108.32966614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474318 108.42827606 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474319 108.63999939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474320 108.85429382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474321 109.53139496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474322 109.59024811 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474323 109.59030914 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474324 109.59033966 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474325 109.59034729 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01474326 109.59046173 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474327 109.59046173 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474328 109.59053040 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474329 109.59055328 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474330 109.91593170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01474331 109.91593170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01474332 109.91597748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01474333 109.91599274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01474334 109.91601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01474335 109.91601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01474336 109.91604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01474337 109.91604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01474338 109.91606903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01474339 109.91606903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01474340 109.91609955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01474341 109.91610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01474342 109.91613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01474343 109.91613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01474344 109.91616058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01474345 109.91616058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01474346 109.91618347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01474347 109.91618347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01474348 109.91621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01474349 109.91621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01474350 109.91623688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01474351 109.91625214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01474352 109.91627502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01474353 109.91627502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01474354 109.91629791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01474355 109.91629791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01474356 109.91632843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01474357 109.91632843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01474358 109.91635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01474359 109.91635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01474360 109.91638947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01474361 109.91638947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01474362 109.91641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01474363 109.91641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01474364 109.91644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01474365 109.91644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01474366 109.91646576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01474367 109.91646576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01474368 109.91649628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01474369 109.91649628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01474370 109.91651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01474371 109.91651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01474372 109.91654205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01474373 109.91654205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01474374 109.91657257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01474375 109.91658020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01474376 109.91659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01474377 109.91661072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01474378 109.91663361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01474379 109.91663361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01474380 109.91665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01474381 109.91665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01474382 109.91668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01474383 109.91668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01474384 109.91670990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01474385 109.91670990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01474386 109.91673279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01474387 109.91673279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01474388 109.91676331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01474389 109.91676331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01474390 109.91678619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01474391 109.91678619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01474392 109.91680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01474393 109.91680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01474394 109.91683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01474395 109.91685486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01474396 109.91686249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01474397 109.91687775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01474398 109.91700745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01474399 109.91701508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01474400 109.91704559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01474401 109.91704559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01474402 109.91706848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01474403 109.91708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01474404 109.91710663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01474405 109.91712189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01474406 109.91714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01474407 109.91714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01474408 109.91716766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01474409 109.91716766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01474410 109.91719818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01474411 109.91719818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01474412 109.91722107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01474413 109.91722107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01474414 109.91725159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01474415 109.91725922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01474416 109.91728973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01474417 109.91728973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01474418 109.91731262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01474419 109.91731262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01474420 109.91733551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01474421 109.91733551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01474422 109.91736603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01474423 109.91736603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01474424 109.91738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01474425 109.91740417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01474426 109.91741180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01474427 109.91742706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01474428 109.91744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01474429 109.91744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01474430 109.91748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01474431 109.91748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01474432 109.91750336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01474433 109.91750336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01474434 109.91752625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01474435 109.91752625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01474436 109.91755676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01474437 109.91756439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01474438 109.91759491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01474439 109.91759491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01474440 109.91761780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01474441 109.91761780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01474442 109.91764832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01474443 109.91764832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01474444 109.91767120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01474445 109.91767120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01474446 109.91769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01474447 109.91770935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01474448 109.91773224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01474449 109.91773224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01474450 109.91776276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01474451 109.91776276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01474452 109.91778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01474453 109.91778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01474454 109.91783905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01474455 109.91783905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01474456 109.91786194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01474457 109.91786194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01474458 109.91788483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01474459 109.91788483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01474460 109.91791534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01474461 109.91792297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01474462 109.91795349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01474463 109.91795349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01474464 109.91797638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01474465 109.91797638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01474466 109.91800690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01474467 109.91800690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01474468 109.91802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01474469 109.91804504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01474470 109.91806793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01474471 109.91806793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01474472 109.91809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01474473 109.91809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01474474 109.91812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01474475 109.91812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01474476 109.91814423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01474477 109.91814423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01474478 109.91816711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01474479 109.91818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01474480 109.91820526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01474481 109.91820526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01474482 109.91823578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01474483 109.91823578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01474484 109.91825867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01474485 109.91825867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01474486 109.91828156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01474487 109.91828156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01474488 109.91831207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01474489 109.91831970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01474490 109.91835022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01474491 109.91835022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01474492 109.91837311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01474493 109.91837311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01474494 109.91840363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01474495 109.91840363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01474496 109.91842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01474497 109.91842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01474498 109.91844940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01474499 109.91846466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01474500 109.91848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01474501 109.91848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01474502 109.91851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01474503 109.91851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01474504 109.91854095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01474505 109.91854095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01474506 109.91856384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01474507 109.91856384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01474508 109.91859436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01474509 109.91860199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01474510 109.91863251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01474511 109.91863251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01474512 109.91865540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01474513 109.91865540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01474514 109.91867828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01474515 109.91867828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01474516 109.91870880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01474517 109.91870880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01474518 109.91873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01474519 109.91874695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01474520 109.91876984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01474521 109.91876984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01474522 109.91880035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01474523 109.91880035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01474524 109.91882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01474525 109.91882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01474526 109.91884613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01474527 109.91884613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01474528 109.91887665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01474529 109.91888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01474530 109.91891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01474531 109.91891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01474532 109.91893768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01474533 109.91893768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01474534 109.91896057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01474535 109.91896057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01474536 109.91899872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01474537 109.91899872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01474538 109.91902924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01474539 109.91902924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01474540 109.91905212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01474541 109.91905212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01474542 109.91907501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01474543 109.91909027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01474544 109.91911316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01474545 109.91911316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01474546 109.91914368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01474547 109.91914368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01474548 109.91916656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01474549 109.91916656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01474550 109.91919708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01474551 109.91920471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01474552 109.91923523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01474553 109.91923523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01474554 109.91925812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01474555 109.91925812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01474556 109.91928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01474557 109.91928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01474558 109.91931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01474559 109.91931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01474560 109.91933441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01474561 109.91934967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01474562 109.91937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01474563 109.91937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01474564 109.91939545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01474565 109.91939545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01474566 109.91942596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01474567 109.91942596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01474568 109.91944885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01474569 109.91944885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01474570 109.91948700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01474571 109.91948700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01474572 109.91950989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01474573 109.91950989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01474574 109.91955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01474575 109.91956329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01474576 109.91959381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01474577 109.91959381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01474578 109.91961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01474579 109.91961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01474580 109.91963959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01474581 109.91963959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01474582 109.91967010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01474583 109.91967010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01474584 109.91969299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01474585 109.91970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01474586 109.91973114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01474587 109.91973114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01474588 109.91975403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01474589 109.91975403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01474590 109.91978455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01474591 109.91978455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01474592 109.91980743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01474593 109.91980743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01474594 109.91983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01474595 109.91984558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01474596 109.91986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01474597 109.91986847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01474598 109.91989899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01474599 109.91989899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01474600 109.91992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01474601 109.91992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01474602 109.91995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01474603 109.91995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01474604 109.91997528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01474605 109.91997528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01474606 109.91999817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01474607 109.91999817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01474608 109.92002869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01474609 109.92002869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01474610 109.92005157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01474611 109.92005157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01474612 109.92007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01474613 109.92007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01474614 109.92011261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01474615 109.92011261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01474616 109.92014313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01474617 109.92014313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01474618 109.92016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01474619 109.92016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01474620 109.92018890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01474621 109.92018890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01474622 109.92021942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01474623 109.92022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01474624 109.92025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01474625 109.92025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01474626 109.92028046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01474627 109.92028046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01474628 109.92031097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01474629 109.92031097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01474630 109.92033386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01474631 109.92033386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01474632 109.92035675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01474633 109.92035675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01474634 109.92038727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01474635 109.92039490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01474636 109.92041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01474637 109.92042542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01474638 109.92044830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01474639 109.92044830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01474640 109.92047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01474641 109.92047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01474642 109.92050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01474643 109.92050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01474644 109.92052460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01474645 109.92052460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01474646 109.92054749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01474647 109.92054749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01474648 109.92057800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01474649 109.92057800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01474650 109.92060089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01474651 109.92060089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01474652 109.92062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01474653 109.92062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01474654 109.92065430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01474655 109.92066193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01474656 109.92067719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01474657 109.92069244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01474658 109.92071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01474659 109.92071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01474660 109.92074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01474661 109.92074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01474662 109.92076874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01474663 109.92076874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01474664 109.92079163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01474665 109.92079163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01474666 109.92082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01474667 109.92082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01474668 109.92084503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01474669 109.92084503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01474670 109.92086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01474671 109.92086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01474672 109.92089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01474673 109.92089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01474674 109.92092133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01474675 109.92093658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01474676 109.92094421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01474677 109.92095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01474678 109.92098236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01474679 109.92098236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01474680 109.92101288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01474681 109.92101288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01474682 109.92103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01474683 109.92103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01474684 109.92105865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01474685 109.92105865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01474686 109.92108917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01474687 109.92108917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01474688 109.92111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01474689 109.92111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01474690 109.92114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01474691 109.92114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01474692 109.92116547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01474693 109.92116547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01474694 109.92118835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01474695 109.92118835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01474696 109.92121887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01474697 109.92122650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01474698 109.92124176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01474699 109.92125702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01474700 109.92127991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01474701 109.92127991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01474702 109.92130280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01474703 109.92130280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01474704 109.92133331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01474705 109.92133331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01474706 109.92135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01474707 109.92135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01474708 109.92137909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01474709 109.92137909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01474710 109.92140961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01474711 109.92141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01474712 109.92144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01474713 109.92144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01474714 109.92147064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01474715 109.92147064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01474716 109.92150116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01474717 109.92150116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01474718 109.92152405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01474719 109.92152405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01474720 109.92154694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01474721 109.92154694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01474722 109.92157745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01474723 109.92157745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01474724 109.92160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01474725 109.92161560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01474726 109.92162323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01474727 109.92163849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01474728 109.92166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01474729 109.92166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01474730 109.92169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01474731 109.92169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01474732 109.92171478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01474733 109.92171478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01474734 109.92173767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01474735 109.92173767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01474736 109.92176819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01474737 109.92176819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01474738 109.92179108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01474739 109.92179108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01474740 109.92181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01474741 109.92181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01474742 109.92184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01474743 109.92184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01474744 109.92186737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01474745 109.92186737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01474746 109.92189789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01474747 109.92190552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01474748 109.92192078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01474749 109.92193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01474750 109.92195892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01474751 109.92195892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01474752 109.92198181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01474753 109.92198181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01474754 109.92201233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01474755 109.92201233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01474756 109.92203522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01474757 109.92203522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01474758 109.92207336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01474759 109.92207336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01474760 109.92209625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01474761 109.92209625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01474762 109.92212677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01474763 109.92212677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01474764 109.92214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01474765 109.92214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01474766 109.92217255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01474767 109.92217255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01474768 109.92220306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01474769 109.92220306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01474770 109.92222595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01474771 109.92222595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01474772 109.92225647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01474773 109.92225647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01474774 109.92227936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01474775 109.92229462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01474776 109.92230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01474777 109.92231750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01474778 109.92234039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01474779 109.92234039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01474780 109.92237091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01474781 109.92237091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01474782 109.92239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01474783 109.92239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01474784 109.92241669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01474785 109.92241669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01474786 109.92244720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01474787 109.92244720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01474788 109.92247009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01474789 109.92247009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01474790 109.92249298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01474791 109.92249298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01474792 109.92252350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01474793 109.92252350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01474794 109.92254639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01474795 109.92256165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01474796 109.92256927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01474797 109.92258453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01474798 109.92260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01474799 109.92260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01474800 109.92263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01474801 109.92263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01474802 109.92266083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01474803 109.92266083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01474804 109.92269135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01474805 109.92269135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01474806 109.92271423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01474807 109.92271423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01474808 109.92273712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01474809 109.92273712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01474810 109.92276764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01474811 109.92276764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01474812 109.92279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01474813 109.92279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01474814 109.92281342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01474815 109.92281342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01474816 109.92284393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01474817 109.92285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01474818 109.92288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01474819 109.92288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01474820 109.92290497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01474821 109.92290497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01474822 109.92292786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01474823 109.92292786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01474824 109.92295837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01474825 109.92295837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01474826 109.92298126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01474827 109.92298126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01474828 109.92301178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01474829 109.92301178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01474830 109.92303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01474831 109.92303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01474832 109.92305756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01474833 109.92305756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01474834 109.92308807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01474835 109.92308807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01474836 109.92311096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01474837 109.92312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01474838 109.92313385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01474839 109.92314911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01474840 109.92317200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01474841 109.92317200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01474842 109.92320251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01474843 109.92320251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01474844 109.92322540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01474845 109.92322540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01474846 109.92324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01474847 109.92324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01474848 109.92327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01474849 109.92328644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01474850 109.92331696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01474851 109.92331696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01474852 109.92333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01474853 109.92333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01474854 109.92336273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01474855 109.92336273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01474856 109.92339325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01474857 109.92340851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01474858 109.92341614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01474859 109.92343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01474860 109.92345428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01474861 109.92345428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01474862 109.92348480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01474863 109.92348480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01474864 109.92350769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01474865 109.92350769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01474866 109.92353058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01474867 109.92353058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01474868 109.92356110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01474869 109.92356110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01474870 109.92358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01474871 109.92358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01474872 109.92360687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01474873 109.92360687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01474874 109.92363739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01474875 109.92363739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01474876 109.92366028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01474877 109.92366028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01474878 109.92368317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01474879 109.92369843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01474880 109.92371368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01474881 109.92372131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01474882 109.92375183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01474883 109.92375183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01474884 109.92377472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01474885 109.92377472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01474886 109.92380524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01474887 109.92380524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01474888 109.92382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01474889 109.92382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01474890 109.92385101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01474891 109.92385101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01474892 109.92388153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01474893 109.92388153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01474894 109.92390442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01474895 109.92391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01474896 109.92394257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01474897 109.92394257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01474898 109.92396545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01474899 109.92396545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01474900 109.92399597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01474901 109.92400360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01474902 109.92404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01474903 109.92404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01474904 109.92407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01474905 109.92407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01474906 109.92409515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01474907 109.92409515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01474908 109.92411804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01474909 109.92411804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01474910 109.92414856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01474911 109.92415619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01474912 109.92418671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01474913 109.92418671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01474914 109.92420959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01474915 109.92420959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01474916 109.92424774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01474917 109.92424774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01474918 109.92428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01474919 109.92428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01474920 109.92431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01474921 109.92431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01474922 109.92435455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01474923 109.92435455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01474924 109.92437744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01474925 109.92437744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01474926 109.92440033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01474927 109.92440033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01474928 109.92443085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01474929 109.92443085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01474930 109.92445374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01474931 109.92445374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01474932 109.92447662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01474933 109.92447662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01474934 109.92450714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01474935 109.92451477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01474936 109.92454529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01474937 109.92454529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01474938 109.92456818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01474939 109.92456818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01474940 109.92459869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01474941 109.92459869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01474942 109.92462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01474943 109.92462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01474944 109.92464447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01474945 109.92465973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01474946 109.92468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01474947 109.92468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01474948 109.92471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01474949 109.92471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01474950 109.92473602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01474951 109.92473602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01474952 109.92477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01474953 109.92477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01474954 109.92479706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01474955 109.92479706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01474956 109.92482758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01474957 109.92482758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01474958 109.92485046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01474959 109.92485046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01474960 109.92487335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01474961 109.92487335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01474962 109.92490387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01474963 109.92490387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01474964 109.92492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01474965 109.92492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01474966 109.92495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01474967 109.92495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01474968 109.92498016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01474969 109.92498016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01474970 109.92500305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01474971 109.92501831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01474972 109.92503357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01474973 109.92504120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01474974 109.92507172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01474975 109.92507172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01474976 109.92509460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01474977 109.92509460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01474978 109.92511749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01474979 109.92511749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01474980 109.92514801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01474981 109.92514801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01474982 109.92517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01474983 109.92517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01474984 109.92519379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01474985 109.92519379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01474986 109.92522430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01474987 109.92522430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01474988 109.92524719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01474989 109.92524719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01474990 109.92527008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01474991 109.92528534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01474992 109.92530060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01474993 109.92530823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01474994 109.92533875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01474995 109.92533875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01474996 109.92536163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01474997 109.92536163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01474998 109.92539215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01474999 109.92539215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01475000 109.92541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01475001 109.92541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01475002 109.92543793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01475003 109.92543793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01475004 109.92546844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01475005 109.92546844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01475006 109.92549133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01475007 109.92549133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01475008 109.92551422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01475009 109.92551422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01475010 109.92554474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01475011 109.92554474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01475012 109.92556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01475013 109.92558289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01475014 109.92559052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01475015 109.92560577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01475016 109.92562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01475017 109.92562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01475018 109.92565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01475019 109.92565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01475020 109.92568207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01475021 109.92568207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01475022 109.92571259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01475023 109.92571259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01475024 109.92573547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01475025 109.92573547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01475026 109.92575836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01475027 109.92577362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01475028 109.92579651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01475029 109.92579651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01475030 109.92582703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01475031 109.92582703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01475032 109.92584991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01475033 109.92584991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01475034 109.92587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01475035 109.92587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01475036 109.92591095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01475037 109.92591095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01475038 109.92594147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01475039 109.92594147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01475040 109.92596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01475041 109.92596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01475042 109.92598724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01475043 109.92598724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01475044 109.92601776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01475045 109.92601776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01475046 109.92604065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01475047 109.92604065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01475048 109.92606354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01475049 109.92606354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01475050 109.92609406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01475051 109.92609406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01475052 109.92613220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01475053 109.92613220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01475054 109.92615509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01475055 109.92615509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01475056 109.92618561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01475057 109.92618561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01475058 109.92620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01475059 109.92620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01475060 109.92623138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01475061 109.92624664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01475062 109.92626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01475063 109.92626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01475064 109.92630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01475065 109.92630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01475066 109.92632294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01475067 109.92632294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01475068 109.92634583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01475069 109.92634583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01475070 109.92637634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01475071 109.92637634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01475072 109.92639923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01475073 109.92641449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01475074 109.92642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01475075 109.92643738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01475076 109.92646027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01475077 109.92646027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01475078 109.92649078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01475079 109.92649078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01475080 109.92651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01475081 109.92651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01475082 109.92654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01475083 109.92654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01475084 109.92656708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01475085 109.92656708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01475086 109.92658997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01475087 109.92658997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01475088 109.92662048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01475089 109.92662048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01475090 109.92664337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01475091 109.92664337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01475092 109.92666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01475093 109.92666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01475094 109.92669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01475095 109.92670441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01475096 109.92671967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01475097 109.92673492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01475098 109.92675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01475099 109.92675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01475100 109.92678070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01475101 109.92678070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01475102 109.92681122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01475103 109.92681122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01475104 109.92683411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01475105 109.92683411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01475106 109.92685699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01475107 109.92685699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01475108 109.92688751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01475109 109.92688751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01475110 109.92691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01475111 109.92691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01475112 109.92694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01475113 109.92694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01475114 109.92696381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01475115 109.92696381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01475116 109.92698669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01475117 109.92700195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01475118 109.92702484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01475119 109.92702484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01475120 109.92705536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01475121 109.92705536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01475122 109.92707825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01475123 109.92709351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01475124 109.92710114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01475125 109.92711639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01475126 109.92713928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01475127 109.92713928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01475128 109.92716980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01475129 109.92716980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01475130 109.92719269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01475131 109.92719269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01475132 109.92721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01475133 109.92721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01475134 109.92724609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01475135 109.92724609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01475136 109.92726898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01475137 109.92726898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01475138 109.92729950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01475139 109.92729950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01475140 109.92732239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01475141 109.92732239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01475142 109.92734528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01475143 109.92734528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01475144 109.92737579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01475145 109.92738342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01475146 109.92739868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01475147 109.92741394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01475148 109.92743683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01475149 109.92743683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01475150 109.92745972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01475151 109.92745972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01475152 109.92749023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01475153 109.92749023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01475154 109.92751312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01475155 109.92751312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01475156 109.92753601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01475157 109.92753601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01475158 109.92756653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01475159 109.92756653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01475160 109.92758942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01475161 109.92758942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01475162 109.92761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01475163 109.92761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01475164 109.92765808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01475165 109.92765808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01475166 109.92768097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01475167 109.92768097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01475168 109.92770386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01475169 109.92770386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01475170 109.92773438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01475171 109.92773438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01475172 109.92777252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01475173 109.92777252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01475174 109.92779541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01475175 109.92779541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01475176 109.92781830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01475177 109.92781830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01475178 109.92784882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01475179 109.92784882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01475180 109.92787170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01475181 109.92787170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01475182 109.92789459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01475183 109.92789459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01475184 109.92792511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01475185 109.92792511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01475186 109.92794800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01475187 109.92794800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01475188 109.92797089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01475189 109.92798615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01475190 109.92800140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01475191 109.92800903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01475192 109.92803955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01475193 109.92803955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01475194 109.92806244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01475195 109.92806244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01475196 109.92809296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01475197 109.92809296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01475198 109.92811584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01475199 109.92811584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01475200 109.92813873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01475201 109.92813873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01475202 109.92816925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01475203 109.92816925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01475204 109.92819214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01475205 109.92819214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01475206 109.92821503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01475207 109.92821503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01475208 109.92824554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01475209 109.92825317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01475210 109.92826843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01475211 109.92828369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01475212 109.92830658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01475213 109.92830658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01475214 109.92832947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01475215 109.92832947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01475216 109.92835999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01475217 109.92835999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01475218 109.92838287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01475219 109.92838287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01475220 109.92841339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01475221 109.92841339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01475222 109.92843628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01475223 109.92843628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01475224 109.92845917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01475225 109.92845917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01475226 109.92848969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01475227 109.92848969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01475228 109.92851257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01475229 109.92851257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01475230 109.92853546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01475231 109.92855072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01475232 109.92856598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01475233 109.92857361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01475234 109.92860413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01475235 109.92860413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01475236 109.92862701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01475237 109.92862701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01475238 109.92864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01475239 109.92864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01475240 109.92868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01475241 109.92868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01475242 109.92870331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01475243 109.92870331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01475244 109.92872620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01475245 109.92872620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01475246 109.92875671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01475247 109.92875671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01475248 109.92877960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01475249 109.92877960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01475250 109.92881012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01475251 109.92881012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01475252 109.92883301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01475253 109.92884827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01479008 109.98241425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01479009 109.98241425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01479010 109.98243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01479011 109.98243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01479012 109.98246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01479013 109.98246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01479014 109.98249054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01479015 109.98250580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01479016 109.98252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01479017 109.98252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01479018 109.98255157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01479019 109.98255157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01479020 109.98258972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01479021 109.98258972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01479022 109.98262024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01479023 109.98262024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01479024 109.98264313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01479025 109.98264313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01479026 109.98266602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01479027 109.98268127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01479028 109.98270416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01479029 109.98270416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01479030 109.98273468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01479031 109.98273468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01479032 109.98275757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01479033 109.98275757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01479034 109.98278046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01479035 109.98278046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01479036 109.98281097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01479037 109.98281097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01479038 109.98283386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01479039 109.98284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01479040 109.98287201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01479041 109.98287201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01479042 109.98290253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01479043 109.98290253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01479044 109.98292542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01479045 109.98292542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01479046 109.98294830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01479047 109.98294830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01479048 109.98297882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01479049 109.98298645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01479050 109.98301697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01479051 109.98301697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01483218 110.04240417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12608 -01483219 110.04240417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12608 -01483220 110.04243469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12618 -01483221 110.04243469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12618 -01483222 110.04245758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12628 -01483223 110.04247284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12628 -01483224 110.04249573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12638 -01483225 110.04249573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12638 -01483226 110.04251862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12648 -01483227 110.04251862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12648 -01483228 110.04254913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12658 -01483229 110.04254913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12658 -01483230 110.04257202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12668 -01483231 110.04257202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12668 -01483232 110.04259491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12678 -01483233 110.04261017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12678 -01483234 110.04263306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12688 -01483235 110.04263306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12688 -01483236 110.04266357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12698 -01483237 110.04266357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12698 -01483238 110.04268646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a8 -01483239 110.04268646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a8 -01483240 110.04271698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b8 -01483241 110.04271698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b8 -01483242 110.04273987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c8 -01483243 110.04275513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c8 -01483244 110.04277802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d8 -01483245 110.04277802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d8 -01483246 110.04280090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e8 -01483247 110.04280090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e8 -01483248 110.04283142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126f8 -01483249 110.04283142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x126f8 -01483250 110.04285431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12708 -01483251 110.04285431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12708 -01483252 110.04287720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12718 -01483253 110.04289246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12718 -01483254 110.04291534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12728 -01483255 110.04291534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12728 -01483256 110.04294586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12738 -01483257 110.04294586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12738 -01483258 110.04296875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12748 -01483259 110.04296875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12748 -01483260 110.04299164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12758 -01483261 110.04299164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12758 -01487513 110.10415649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac38 -01487514 110.10417938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac48 -01487515 110.10417938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac48 -01487516 110.10420227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac58 -01487517 110.10420227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac58 -01487518 110.10423279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac68 -01487519 110.10423279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac68 -01487520 110.10425568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac78 -01487521 110.10427094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac78 -01487522 110.10427856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac88 -01487523 110.10429382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac88 -01487524 110.10431671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac98 -01487525 110.10431671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac98 -01487526 110.10434723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca8 -01487527 110.10434723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca8 -01487528 110.10437012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb8 -01487529 110.10437012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb8 -01487530 110.10439301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc8 -01487531 110.10439301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc8 -01487532 110.10442352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd8 -01487533 110.10442352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd8 -01487534 110.10444641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace8 -01487535 110.10444641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace8 -01487536 110.10447693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf8 -01487537 110.10448456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf8 -01487538 110.10451508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad08 -01487539 110.10451508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad08 -01487540 110.10453796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad18 -01487541 110.10453796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad18 -01487542 110.10456085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad28 -01487543 110.10456085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad28 -01487544 110.10459137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad38 -01487545 110.10459137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad38 -01487546 110.10461426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad48 -01487547 110.10462952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad48 -01487548 110.10465240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad58 -01487549 110.10465240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad58 -01487550 110.10467529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad68 -01487551 110.10467529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad68 -01487552 110.10470581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad78 -01487553 110.10470581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad78 -01487554 110.10472870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad88 -01487555 110.10472870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad88 -01487556 110.10475159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad98 -01493887 110.19618225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -01493888 110.19623566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -01493889 110.19626617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -01493890 110.19626617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -01493891 110.19628906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -01493892 110.19628906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -01493893 110.19631195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27398 -01493894 110.19631195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27398 -01493895 110.19634247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a8 -01493896 110.19634247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a8 -01493897 110.19636536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b8 -01493898 110.19638062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b8 -01493899 110.19640350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c8 -01493900 110.19640350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c8 -01493901 110.19642639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d8 -01493902 110.19642639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d8 -01493903 110.19645691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e8 -01493904 110.19645691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e8 -01493905 110.19647980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f8 -01493906 110.19647980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f8 -01493907 110.19655609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27408 -01493908 110.19657135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27408 -01493909 110.19659424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27418 -01493910 110.19659424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27418 -01493911 110.19661713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27428 -01493912 110.19661713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27428 -01493913 110.19664764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27438 -01493914 110.19664764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27438 -01493915 110.19667053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27448 -01493916 110.19667053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27448 -01493917 110.19670105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27458 -01493918 110.19670868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27458 -01493919 110.19673920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27468 -01493920 110.19673920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27468 -01493921 110.19676208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27478 -01493922 110.19676208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27478 -01493923 110.19678497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -01493924 110.19678497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -01493925 110.19681549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -01493926 110.19681549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -01493927 110.19683838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -01493928 110.19685364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -01493929 110.19687653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -01493930 110.19687653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -01500353 110.28904724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d68 -01500354 110.28904724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d68 -01500355 110.28907776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d78 -01500356 110.28908539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d78 -01500357 110.28919220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d88 -01500358 110.28919220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d88 -01500359 110.28921509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d98 -01500360 110.28923035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d98 -01500361 110.28925323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da8 -01500362 110.28925323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da8 -01500363 110.28928375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db8 -01500364 110.28928375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db8 -01500365 110.28930664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc8 -01500366 110.28930664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc8 -01500367 110.28932953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd8 -01500368 110.28932953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd8 -01500369 110.28936005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de8 -01500370 110.28936768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de8 -01500371 110.28939819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df8 -01500372 110.28939819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df8 -01500373 110.28942108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e08 -01500374 110.28942108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e08 -01500375 110.28944397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e18 -01500376 110.28944397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e18 -01500377 110.28947449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e28 -01500378 110.28947449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e28 -01500379 110.28949738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e38 -01500380 110.28949738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e38 -01500381 110.28952026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e48 -01500382 110.28953552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e48 -01500383 110.28955841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e58 -01500384 110.28955841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e58 -01500385 110.28958893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e68 -01500386 110.28958893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e68 -01500387 110.28961182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e78 -01500388 110.28961182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e78 -01500389 110.28963470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e88 -01500390 110.28963470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e88 -01500391 110.28966522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e98 -01500392 110.28968048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e98 -01500393 110.28970337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea8 -01500394 110.28970337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea8 -01500395 110.28972626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb8 -01500396 110.28972626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb8 -01514226 110.48619843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee8 -01514227 110.48619843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee8 -01514228 110.48622131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef8 -01514229 110.48622131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef8 -01514230 110.48624420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef08 -01514231 110.48624420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef08 -01514232 110.48627472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef18 -01514233 110.48627472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef18 -01514234 110.48629761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef28 -01514235 110.48631287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef28 -01514236 110.48633575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef38 -01514237 110.48633575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef38 -01514238 110.48635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef48 -01514239 110.48635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef48 -01514240 110.48638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef58 -01514241 110.48638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef58 -01514242 110.48641205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef68 -01514243 110.48641205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef68 -01514244 110.48643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef78 -01514245 110.48643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef78 -01514246 110.48646545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef88 -01514247 110.48647308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef88 -01514248 110.48650360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef98 -01514249 110.48650360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef98 -01514250 110.48652649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efa8 -01514251 110.48652649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efa8 -01514252 110.48655701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efb8 -01514253 110.48655701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efb8 -01514254 110.48657990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efc8 -01514255 110.48657990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efc8 -01514256 110.48660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efd8 -01514257 110.48661804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efd8 -01514258 110.48664093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efe8 -01514259 110.48664093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efe8 -01514260 110.48667145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eff8 -01514261 110.48667145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eff8 -01514262 110.48669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f008 -01514263 110.48669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f008 -01514264 110.48671722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f018 -01514265 110.48671722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f018 -01514266 110.48675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f028 -01514267 110.48675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f028 -01514268 110.48678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f038 -01514269 110.48678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f038 -01516220 111.09044647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516221 111.46453857 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516222 111.68583679 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516223 111.81944275 [vmhook-eac [core number = 23]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7AD1BE0 -01516224 111.82089996 [vmhook-eac [core number = 23]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7AD1BE0 -01516225 112.09654999 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516226 112.09661102 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516227 112.09662628 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516228 112.09664154 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01516229 112.09675598 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516230 112.09677124 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01516231 112.09681702 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516232 112.09684753 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01516233 112.20269775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01516234 112.22013092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516235 112.22013092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516236 112.42797852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516237 112.47683716 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516238 112.47708130 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516239 112.48007965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516240 112.65142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01516241 112.65144348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01516242 112.65390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516243 113.13891602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01516244 113.13893127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01516245 113.17596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516246 113.32221222 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516247 113.34281921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516248 113.35801697 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516249 113.37341309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516250 113.38423157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516251 113.39144897 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516252 113.40618134 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516253 113.40819550 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516254 113.40904999 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516255 113.41696930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516256 113.44366455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516257 113.45481873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516258 113.45688629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516259 113.47486877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516260 113.47572327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516261 113.47711945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516262 113.48739624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516263 113.49145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516264 113.49394226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516265 113.50493622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516266 113.53005981 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516267 113.53090668 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516268 113.53249359 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516269 113.54356384 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516270 113.55294800 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516271 113.55502319 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516272 113.57302856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516273 113.57521820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516274 113.59397125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516275 113.59597015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516276 113.60388184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516277 113.60968781 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516278 113.61157227 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516279 113.61281586 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516280 113.63320160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516281 113.63571167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516282 113.63687897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516283 113.65534973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516284 113.65720367 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516285 113.65808868 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516286 113.67393494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516287 113.68633270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516288 113.68751526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516289 113.69493866 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516290 113.70246124 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516291 113.70333099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516292 113.70511627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516293 113.72431183 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516294 113.73502350 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516295 113.73709869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516296 113.74610138 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516297 113.75484467 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516298 113.75666046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516299 113.75691223 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516300 113.77891541 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516301 113.87336731 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516302 113.89134216 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516303 113.91013336 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516304 113.92802429 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516305 113.94203186 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516306 113.94664001 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516307 113.94918060 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516308 113.95129395 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516309 113.95523834 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516310 113.96006775 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516311 113.96426392 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516312 113.96885681 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516313 113.97431183 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516314 113.97841644 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516315 113.98632813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516316 114.00230408 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516317 114.01597595 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516318 114.03203583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516319 114.04351807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516320 114.05528259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516321 114.06827545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516322 114.08270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516323 114.09722900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516324 114.11047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516325 114.12731171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516326 114.13049316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516327 114.14240265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516328 114.15813446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516329 114.17309570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516330 114.18692780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516331 114.20103455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516332 114.21264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516333 114.22132111 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01516334 114.22462463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516335 114.23876190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516336 114.24126434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516337 114.24127960 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516338 114.24976349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516339 114.26056671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516340 114.27174377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516341 114.28447723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516342 114.29784393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516343 114.31092834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516344 114.32198334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516345 114.43449402 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516346 114.60300446 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516347 114.60304260 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516348 114.60307312 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516349 114.60308838 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01516350 114.60321045 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516351 114.60321045 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01516352 114.60327911 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516353 114.60330200 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01516354 114.77760315 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516355 114.78323364 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516356 115.03369141 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516357 115.03413391 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516358 115.03458405 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516359 115.03476715 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01516360 115.03499603 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516361 115.05085754 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516362 115.05149078 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516363 115.05246735 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516364 115.05281067 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516365 115.05335999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516366 115.05371857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516367 115.07737732 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516368 115.08158875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516369 115.08538818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516370 115.08885956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516372 115.28467560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01516373 115.28468323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01516374 115.28471375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01516375 115.28471375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01516376 115.28473663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01516377 115.28473663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01516378 115.28475952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01516379 115.28477478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01516380 115.28479767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01516381 115.28479767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01516382 115.28482819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01516383 115.28482819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01516384 115.28485107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01516385 115.28485107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01516386 115.28487396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01516387 115.28488922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01516388 115.28491211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01516389 115.28491211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01516390 115.28494263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01516391 115.28494263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01516392 115.28496552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01516393 115.28496552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01516394 115.28498840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01516395 115.28500366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01516396 115.28503418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01516397 115.28503418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01516398 115.28505707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01516399 115.28505707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01516400 115.28507996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01516401 115.28507996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01516402 115.28511047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01516403 115.28511047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01516404 115.28513336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01516405 115.28514862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01516406 115.28517151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01516407 115.28517151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01516408 115.28519440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01516409 115.28519440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01516410 115.28522491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01516411 115.28522491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01516412 115.28524780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01516413 115.28526306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01516414 115.28528595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01516415 115.28528595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01516416 115.28530884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01516417 115.28530884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01516418 115.28533936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01516419 115.28533936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01516420 115.28536224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01516421 115.28537750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01516422 115.28540039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01516423 115.28540039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01516424 115.28543091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01516425 115.28543091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01516426 115.28545380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01516427 115.28545380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01516428 115.28547668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01516429 115.28547668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01516430 115.28550720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01516431 115.28551483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01516432 115.28554535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01516433 115.28554535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01516434 115.28556824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01516435 115.28556824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01516436 115.28559113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01516437 115.28559113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01516438 115.28562164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01516439 115.28562927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01516440 115.28565979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01516441 115.28565979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01516442 115.28568268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01516443 115.28568268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01516444 115.28570557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01516445 115.28570557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01516446 115.28573608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01516447 115.28573608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01516448 115.28575897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01516449 115.28577423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01516450 115.28579712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01516451 115.28579712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01516452 115.28582764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01516453 115.28582764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01516454 115.28585052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01516455 115.28585052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01516456 115.28587341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01516457 115.28588867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01516458 115.28591156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01516459 115.28591156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01516460 115.28594208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01516461 115.28594208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01516462 115.28596497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01516463 115.28596497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01516464 115.28598785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01516465 115.28600311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01516466 115.28602600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01516467 115.28602600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01516468 115.28605652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01516469 115.28605652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01516470 115.28607941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01516471 115.28607941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01516472 115.28610229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01516473 115.28611755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01516474 115.28614044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01516475 115.28614044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01516476 115.28617096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01516477 115.28617096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01516478 115.28619385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01516479 115.28619385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01516480 115.28622437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01516481 115.28622437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01516482 115.28624725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01516483 115.28626251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01516484 115.28628540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01516485 115.28628540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01516486 115.28630829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01516487 115.28632355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01516488 115.28636169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01516489 115.28636169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01516490 115.28638458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01516491 115.28638458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01516492 115.28641510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01516493 115.28642273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01516494 115.28645325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01516495 115.28645325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01516496 115.28649139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01516497 115.28649139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01516498 115.28651428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01516499 115.28652954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01516500 115.28655243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01516501 115.28655243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01516502 115.28658295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01516503 115.28658295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01516504 115.28660583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01516505 115.28660583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01516506 115.28662872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01516507 115.28664398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01516508 115.28666687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01516509 115.28666687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01516510 115.28669739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01516511 115.28669739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01516512 115.28672028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01516513 115.28672028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01516514 115.28674316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01516515 115.28674316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01516516 115.28677368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01516517 115.28678131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01516518 115.28681183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01516519 115.28681183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01516520 115.28683472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01516521 115.28683472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01516522 115.28685760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01516523 115.28685760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01516524 115.28688812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01516525 115.28689575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01516526 115.28692627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01516527 115.28692627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01516528 115.28694916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01516529 115.28694916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01516530 115.28697968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01516531 115.28697968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01516532 115.28700256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01516533 115.28700256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01516534 115.28702545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01516535 115.28704071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01516536 115.28706360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01516537 115.28706360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01516538 115.28709412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01516539 115.28709412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01516540 115.28711700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01516541 115.28711700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01516542 115.28713989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01516543 115.28713989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01516544 115.28717804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01516545 115.28717804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01516546 115.28720856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01516547 115.28720856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01516548 115.28723145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -01516549 115.28723145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -01516550 115.28725433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -01516551 115.28726959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -01516552 115.28729248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -01516553 115.28729248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -01516554 115.28732300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -01516555 115.28732300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -01516556 115.28734589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -01516557 115.28734589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -01516558 115.28737640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -01516559 115.28738403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -01516560 115.28741455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -01516561 115.28741455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -01516562 115.28743744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -01516563 115.28743744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -01516564 115.28746033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -01516565 115.28746033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -01516566 115.28749084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -01516567 115.28749084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -01516568 115.28751373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -01516569 115.28752899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -01516570 115.28755188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -01516571 115.28755188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -01516572 115.28757477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -01516573 115.28757477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -01516574 115.28760529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -01516575 115.28760529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -01516576 115.28762817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -01516577 115.28762817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -01516578 115.28765106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -01516579 115.28766632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -01516580 115.28768921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -01516581 115.28768921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -01516582 115.28771973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -01516583 115.28771973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -01516584 115.28774261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -01516585 115.28774261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -01516586 115.28777313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -01516587 115.28777313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -01516588 115.28781128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -01516589 115.28781128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -01516590 115.28783417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -01516591 115.28783417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -01516592 115.28785706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -01516593 115.28785706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -01516594 115.28788757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -01516595 115.28788757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -01516596 115.28791046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -01516597 115.28792572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -01516598 115.28794861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -01516599 115.28794861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -01516600 115.28797150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -01516601 115.28797150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -01516602 115.28800201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -01516603 115.28800201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -01516604 115.28802490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -01516605 115.28804016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -01516606 115.28806305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -01516607 115.28806305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -01516608 115.28808594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -01516609 115.28808594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -01516610 115.28811646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -01516611 115.28811646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -01516612 115.28813934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -01516613 115.28813934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -01516614 115.28816986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -01516615 115.28817749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -01516616 115.28820801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -01516617 115.28820801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -01516618 115.28823090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -01516619 115.28823090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -01516620 115.28825378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -01516621 115.28825378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -01516622 115.28828430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -01516623 115.28828430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -01516624 115.28832245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -01516625 115.28832245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -01516626 115.28836060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -01516627 115.28836823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -01516628 115.28839874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -01516629 115.28839874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -01516630 115.28842163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -01516631 115.28842163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -01516632 115.28844452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -01516633 115.28844452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -01516634 115.28847504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -01516635 115.28848267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -01516636 115.28851318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -01516637 115.28851318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -01516638 115.28853607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -01516639 115.28853607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -01516640 115.28856659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -01516641 115.28856659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -01516642 115.28858948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -01516643 115.28858948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -01516644 115.28861237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -01516645 115.28862762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -01516646 115.28865051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -01516647 115.28865051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -01516648 115.28868103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -01516649 115.28868103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -01516650 115.28870392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -01516651 115.28870392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -01516652 115.28872681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -01516653 115.28872681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -01516654 115.28875732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -01516655 115.28876495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -01516656 115.28879547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -01516657 115.28879547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -01516658 115.28881836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -01516659 115.28881836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -01516660 115.28884125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -01516661 115.28884125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -01516662 115.28887177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -01516663 115.28887939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -01516664 115.28890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -01516665 115.28890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -01516666 115.28893280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -01516667 115.28893280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -01516668 115.28896332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -01516669 115.28896332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -01516670 115.28898621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -01516671 115.28898621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -01516672 115.28900909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -01516673 115.28902435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -01516674 115.28904724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -01516675 115.28904724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -01516676 115.28907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -01516677 115.28907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -01516678 115.28910065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -01516679 115.28910065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -01516680 115.28912354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -01516681 115.28912354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -01516682 115.28916168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -01516683 115.28916168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -01516684 115.28919220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -01516685 115.28919220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -01516686 115.28921509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -01516687 115.28921509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -01516688 115.28923798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -01516689 115.28923798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -01516690 115.28926849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -01516691 115.28928375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -01516692 115.28930664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -01516693 115.28930664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -01516694 115.28932953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -01516695 115.28932953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -01516696 115.28936005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -01516697 115.28936005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -01516698 115.28938293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -01516699 115.28938293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -01516700 115.28940582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -01516701 115.28942108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -01516702 115.28944397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -01516703 115.28944397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -01516704 115.28947449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -01516705 115.28947449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -01516706 115.28949738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -01516707 115.28949738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -01516708 115.28952026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -01516709 115.28952026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -01516710 115.28955078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -01516711 115.28955841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -01516712 115.28958893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -01516713 115.28958893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -01516714 115.28961182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -01516715 115.28961182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -01516716 115.28963470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -01516717 115.28963470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -01516718 115.28966522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -01516719 115.28966522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -01516720 115.28970337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -01516721 115.28970337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -01516722 115.28972626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -01516723 115.28972626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -01516724 115.28975677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -01516725 115.28975677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -01516726 115.28977966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -01516727 115.28977966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -01516728 115.28980255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -01516729 115.28981781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -01516730 115.28984070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -01516731 115.28984070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -01516732 115.28987122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -01516733 115.28987122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -01516734 115.28989410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -01516735 115.28989410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -01516736 115.28991699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -01516737 115.28991699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -01516738 115.28994751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -01516739 115.28995514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -01516740 115.28998566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -01516741 115.28998566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -01516742 115.29000854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -01516743 115.29000854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -01516744 115.29003143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -01516745 115.29003143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -01516746 115.29006195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -01516747 115.29007721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -01516748 115.29010010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -01516749 115.29010010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -01516750 115.29012299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -01516751 115.29012299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -01516752 115.29015350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -01516753 115.29015350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -01516754 115.29017639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -01516755 115.29017639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -01516756 115.29019928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -01516757 115.29021454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -01516758 115.29023743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -01516759 115.29023743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -01516760 115.29026794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -01516761 115.29026794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -01516762 115.29029083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -01516763 115.29029083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -01516764 115.29032898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -01516765 115.29034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -01516766 115.29036713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -01516767 115.29036713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -01516768 115.29039001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -01516769 115.29040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -01516770 115.29043579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -01516771 115.29043579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -01516772 115.29045868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -01516773 115.29045868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -01516774 115.29048157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -01516775 115.29048157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -01516776 115.29051208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -01516777 115.29051208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -01516778 115.29055023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -01516779 115.29055023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -01516780 115.29057312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -01516781 115.29057312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -01516782 115.29059601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -01516783 115.29059601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -01516784 115.29062653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -01516785 115.29062653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -01516786 115.29064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -01516787 115.29066467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -01516788 115.29068756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -01516789 115.29068756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -01516790 115.29071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -01516791 115.29071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -01516792 115.29074097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -01516793 115.29074097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -01516794 115.29076385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -01516795 115.29076385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -01516796 115.29078674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -01516797 115.29080200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -01516798 115.29083252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -01516799 115.29083252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -01516800 115.29085541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -01516801 115.29085541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -01516802 115.29087830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -01516803 115.29087830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -01516804 115.29090881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -01516805 115.29090881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -01516806 115.29093170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -01516807 115.29094696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -01516808 115.29096985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -01516809 115.29096985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -01516810 115.29099274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -01516811 115.29099274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -01516812 115.29102325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -01516813 115.29102325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -01516814 115.29104614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -01516815 115.29106140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -01516816 115.29108429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -01516817 115.29108429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -01516818 115.29110718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -01516819 115.29110718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -01516820 115.29113770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -01516821 115.29113770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -01516822 115.29116058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -01516823 115.29116058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -01516824 115.29118347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -01516825 115.29119873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -01516826 115.29122925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -01516827 115.29122925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -01516828 115.29125214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -01516829 115.29125214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -01516830 115.29127502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -01516831 115.29127502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -01516832 115.29130554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -01516833 115.29130554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -01516834 115.29132843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -01516835 115.29134369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -01516836 115.29136658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -01516837 115.29136658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -01516838 115.29138947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -01516839 115.29138947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -01516840 115.29141998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -01516841 115.29141998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -01516842 115.29144287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -01516843 115.29144287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -01516844 115.29146576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -01516845 115.29148102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -01516846 115.29150391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -01516847 115.29150391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -01516848 115.29153442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -01516849 115.29153442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -01516850 115.29155731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -01516851 115.29155731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -01516852 115.29158020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -01516853 115.29159546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -01516854 115.29162598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -01516855 115.29162598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -01516856 115.29164886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -01516857 115.29164886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -01516858 115.29167175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -01516859 115.29167175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -01516860 115.29170227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -01516861 115.29170227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -01516862 115.29172516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -01516863 115.29174042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -01516864 115.29176331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -01516865 115.29176331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -01516866 115.29178619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -01516867 115.29178619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -01516868 115.29181671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -01516869 115.29181671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -01516870 115.29183960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -01516871 115.29185486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -01516872 115.29187775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -01516873 115.29187775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -01516874 115.29190063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -01516875 115.29190063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -01516876 115.29193115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -01516877 115.29193115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -01516878 115.29195404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -01516879 115.29195404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -01516880 115.29198456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -01516881 115.29199219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -01516882 115.29202271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -01516883 115.29202271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -01516884 115.29204559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -01516885 115.29204559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -01516886 115.29206848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -01516887 115.29206848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -01516888 115.29209900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -01516889 115.29209900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -01516890 115.29212189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -01516891 115.29213715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -01516892 115.29216003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -01516893 115.29216003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -01516894 115.29218292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -01516895 115.29218292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -01516896 115.29221344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -01516897 115.29221344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -01516898 115.29223633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -01516899 115.29225159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -01516900 115.29227448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -01516901 115.29227448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -01516902 115.29229736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -01516903 115.29231262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -01516904 115.29233551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -01516905 115.29235077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -01516906 115.29238129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -01516907 115.29238129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -01516908 115.29240417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -01516909 115.29240417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -01516910 115.29242706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -01516911 115.29244232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -01516912 115.29246521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -01516913 115.29246521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -01516914 115.29249573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -01516915 115.29249573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -01516916 115.29251862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -01516917 115.29251862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -01516918 115.29254150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -01516919 115.29254150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -01516920 115.29257202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -01516921 115.29257965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -01516922 115.29261017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -01516923 115.29261017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -01516924 115.29263306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -01516925 115.29263306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -01516926 115.29265594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -01516927 115.29265594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -01516928 115.29268646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -01516929 115.29268646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -01516930 115.29270935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -01516931 115.29272461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -01516932 115.29274750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -01516933 115.29274750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -01516934 115.29277802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -01516935 115.29277802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -01516936 115.29280090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -01516937 115.29280090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -01516938 115.29282379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -01516939 115.29283905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -01516940 115.29286194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -01516941 115.29286194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -01516942 115.29289246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -01516943 115.29289246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -01516944 115.29291534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -01516945 115.29291534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -01516946 115.29293823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -01516947 115.29293823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -01516948 115.29296875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -01516949 115.29297638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -01516950 115.29300690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -01516951 115.29300690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -01516952 115.29302979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -01516953 115.29302979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -01516954 115.29305267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -01516955 115.29305267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -01516956 115.29308319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -01516957 115.29308319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -01516958 115.29310608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -01516959 115.29312134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -01516960 115.29314423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -01516961 115.29314423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -01516962 115.29317474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -01516963 115.29317474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -01516964 115.29319763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -01516965 115.29319763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -01516966 115.29322052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -01516967 115.29323578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -01516968 115.29325867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -01516969 115.29325867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -01516970 115.29328918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -01516971 115.29328918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -01516972 115.29331207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -01516973 115.29331207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -01516974 115.29333496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -01516975 115.29333496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -01516976 115.29336548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -01516977 115.29337311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -01516978 115.29340363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -01516979 115.29340363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -01516980 115.29342651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -01516981 115.29342651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -01516982 115.29344940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -01516983 115.29344940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -01516984 115.29347992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -01516985 115.29347992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -01516986 115.29351807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -01516987 115.29351807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -01516988 115.29354095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -01516989 115.29354095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -01516990 115.29357147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -01516991 115.29357147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -01516992 115.29359436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -01516993 115.29359436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -01516994 115.29361725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -01516995 115.29363251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -01516996 115.29365540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -01516997 115.29365540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -01516998 115.29368591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -01516999 115.29368591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -01517000 115.29370880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -01517001 115.29370880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -01517002 115.29373169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -01517003 115.29373169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -01517004 115.29376221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -01517005 115.29376984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -01517006 115.29380035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -01517007 115.29380035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -01517008 115.29382324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -01517009 115.29382324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -01517010 115.29384613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -01517011 115.29384613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -01517012 115.29387665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -01517013 115.29388428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -01517014 115.29391479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -01517015 115.29391479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -01517016 115.29393768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -01517017 115.29393768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -01517018 115.29396820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -01517019 115.29396820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -01517020 115.29399109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -01517021 115.29399109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -01517022 115.29401398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -01517023 115.29402924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -01517024 115.29405212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -01517025 115.29405212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -01517026 115.29408264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -01517027 115.29408264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -01517028 115.29410553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -01517029 115.29410553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -01517030 115.29412842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -01517031 115.29412842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -01517032 115.29416656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -01517033 115.29416656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -01517034 115.29419708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -01517035 115.29419708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -01517036 115.29421997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -01517037 115.29421997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -01517038 115.29424286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -01517039 115.29424286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -01517040 115.29427338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -01517041 115.29428101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -01517042 115.29431152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -01517043 115.29431152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -01517044 115.29434967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -01517045 115.29436493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -01517046 115.29438782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -01517047 115.29438782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -01517048 115.29441071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -01517049 115.29441071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -01517050 115.29444122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -01517051 115.29444122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -01517052 115.29446411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -01517053 115.29447937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -01517054 115.29450226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -01517055 115.29450226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -01517056 115.29452515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -01517057 115.29452515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -01517058 115.29455566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -01517059 115.29455566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -01517060 115.29457855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -01517061 115.29457855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -01517062 115.29460144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -01517063 115.29461670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -01517064 115.29463959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -01517065 115.29463959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -01517066 115.29467010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -01517067 115.29467010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -01517068 115.29469299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -01517069 115.29469299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -01517070 115.29472351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -01517071 115.29473114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -01517072 115.29476166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -01517073 115.29476166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -01517074 115.29478455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -01517075 115.29478455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -01517076 115.29480743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -01517077 115.29480743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -01517078 115.29483795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -01517079 115.29483795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -01517080 115.29486084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -01517081 115.29487610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -01517082 115.29489899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -01517083 115.29489899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -01517084 115.29492188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -01517085 115.29492188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -01517086 115.29495239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -01517087 115.29495239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -01517088 115.29497528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -01517089 115.29499054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -01517090 115.29501343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -01517091 115.29501343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -01517092 115.29503632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -01517093 115.29503632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -01517094 115.29506683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -01517095 115.29506683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -01517096 115.29508972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -01517097 115.29508972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -01517098 115.29512024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -01517099 115.29512787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -01517100 115.29515839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -01517101 115.29515839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -01517102 115.29518127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -01517103 115.29518127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -01517104 115.29520416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -01517105 115.29520416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -01517106 115.29523468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -01517107 115.29523468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -01517108 115.29525757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -01517109 115.29527283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -01517110 115.29529572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -01517111 115.29529572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -01517112 115.29531860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -01517113 115.29531860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -01517114 115.29534912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -01517115 115.29534912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -01517116 115.29537201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -01517117 115.29538727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -01517118 115.29541016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -01517119 115.29541016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -01517120 115.29543304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -01517121 115.29543304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -01517122 115.29546356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -01517123 115.29546356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -01517124 115.29548645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -01517125 115.29548645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -01517126 115.29551697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -01517127 115.29552460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -01517128 115.29555511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -01517129 115.29555511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -01517130 115.29557800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -01517131 115.29557800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -01517132 115.29560089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -01517133 115.29560089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -01517134 115.29563141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -01517135 115.29563904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -01517136 115.29566956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -01517137 115.29566956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -01517138 115.29569244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -01517139 115.29569244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -01517140 115.29571533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -01517141 115.29571533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -01517142 115.29574585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -01517143 115.29574585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -01517144 115.29576874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -01517145 115.29578400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -01517146 115.29580688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -01517147 115.29580688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -01517148 115.29583740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -01517149 115.29583740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -01517150 115.29586029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -01517151 115.29586029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -01517152 115.29588318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -01517153 115.29588318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -01517154 115.29591370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -01517155 115.29592133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -01517156 115.29595184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -01517157 115.29595184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -01517158 115.29597473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -01517159 115.29597473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -01517160 115.29599762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -01517161 115.29599762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -01517162 115.29602814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -01517163 115.29603577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -01517164 115.29606628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -01517165 115.29606628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -01517166 115.29608917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -01517167 115.29608917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -01517168 115.29611206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -01517169 115.29611206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -01517170 115.29614258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -01517171 115.29614258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -01517172 115.29616547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -01517173 115.29618073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -01517174 115.29620361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -01517175 115.29620361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -01517176 115.29623413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -01517177 115.29623413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -01517178 115.29625702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -01517179 115.29625702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -01517180 115.29627991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -01517181 115.29629517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -01517182 115.29631805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -01517183 115.29633331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -01517184 115.29635620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -01517185 115.29637146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -01517186 115.29639435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -01517187 115.29639435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -01517188 115.29642487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -01517189 115.29642487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -01517190 115.29644775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -01517191 115.29644775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -01517192 115.29647064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -01517193 115.29647064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -01517194 115.29650116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -01517195 115.29650879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -01517196 115.29653931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -01517197 115.29653931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -01517198 115.29656219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -01517199 115.29656219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -01517200 115.29658508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -01517201 115.29658508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -01517202 115.29661560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -01517203 115.29663086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -01517204 115.29665375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -01517205 115.29665375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -01517206 115.29667664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -01517207 115.29667664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -01517208 115.29670715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -01517209 115.29670715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -01517210 115.29673004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -01517211 115.29673004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -01517212 115.29675293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -01517213 115.29676819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -01517214 115.29679108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -01517215 115.29679108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -01517216 115.29682159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -01517217 115.29682159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -01517218 115.29684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -01517219 115.29684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -01517220 115.29686737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -01517221 115.29688263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -01517222 115.29690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -01517223 115.29690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -01517224 115.29693604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -01517225 115.29693604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -01517226 115.29695892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -01517227 115.29695892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -01517228 115.29698181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -01517229 115.29698181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -01517230 115.29701233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -01517231 115.29702759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -01517232 115.29705048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -01517233 115.29705048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -01517234 115.29707336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -01517235 115.29707336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -01517236 115.29710388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -01517237 115.29710388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -01517238 115.29712677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -01517239 115.29712677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -01517240 115.29714966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -01517241 115.29716492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -01517242 115.29718781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -01517243 115.29718781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -01517244 115.29721832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -01517245 115.29721832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -01517246 115.29724121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -01517247 115.29724121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -01517248 115.29726410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -01517249 115.29727936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -01517250 115.29730225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -01517251 115.29730225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -01517252 115.29735565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -01517253 115.29735565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -01517254 115.29738617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -01517255 115.29738617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -01517256 115.29742432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -01517257 115.29742432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -01517258 115.29744720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -01517259 115.29746246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -01517260 115.29748535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -01517261 115.29748535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -01517262 115.29750824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -01517263 115.29750824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -01517264 115.29753876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -01517265 115.29753876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -01517266 115.29756165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -01517267 115.29757690 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -01517268 115.29759979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -01517269 115.29759979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -01517270 115.29762268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -01517271 115.29762268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -01517272 115.29765320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -01517273 115.29765320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -01517274 115.29767609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -01517275 115.29769135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -01517276 115.29771423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -01517277 115.29771423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -01517278 115.29773712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -01517279 115.29773712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -01517280 115.29778290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -01517281 115.29778290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -01517282 115.29780579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -01517283 115.29780579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -01517284 115.29782867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -01517285 115.29782867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -01517286 115.29785919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -01517287 115.29786682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -01517288 115.29789734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -01517289 115.29789734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -01517290 115.29792023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -01517291 115.29792023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -01517292 115.29794312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -01517293 115.29794312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -01517294 115.29797363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -01517295 115.29798126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -01529748 115.48574829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -01529749 115.48574829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -01529750 115.48577118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -01529751 115.48577118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -01529752 115.48580170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -01529753 115.48580170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -01529754 115.48582458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -01529755 115.48583984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -01529756 115.48586273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -01529757 115.48586273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -01529758 115.48588562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -01529759 115.48588562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -01529760 115.48591614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -01529761 115.48591614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -01529762 115.48595428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -01529763 115.48595428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -01529764 115.48597717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -01529765 115.48599243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -01529766 115.48603821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b250 -01529767 115.48603821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b250 -01529768 115.48606873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b260 -01529769 115.48606873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b260 -01529770 115.48609161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b270 -01529771 115.48610687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b270 -01529772 115.48612976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b280 -01529773 115.48612976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b280 -01529774 115.48616028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b290 -01529775 115.48616028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b290 -01529776 115.48618317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -01529777 115.48618317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -01529778 115.48620605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -01529779 115.48620605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -01529780 115.48623657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -01529781 115.48624420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -01529782 115.48627472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -01529783 115.48627472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -01529784 115.48629761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -01529785 115.48631287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -01529786 115.48633575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -01529787 115.48633575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -01529788 115.48635864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -01529789 115.48637390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -01529790 115.48639679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -01529791 115.48639679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -01536908 115.55370331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -01536909 115.55370331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01536910 115.55370331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -01536911 115.55370331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01536912 115.55372620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -01536913 115.55372620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01536914 115.55374146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -01536915 115.55374146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01536916 115.55376434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -01536917 115.55376434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01536918 115.55376434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -01536919 115.55376434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01536920 115.55379486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f50 -01536921 115.55379486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01536922 115.55379486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f50 -01536923 115.55379486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01536924 115.55381775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f60 -01536925 115.55381775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01536926 115.55383301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f60 -01536927 115.55383301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01536928 115.55385590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f70 -01536929 115.55385590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01536930 115.55385590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f70 -01536931 115.55385590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01536932 115.55387878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f80 -01536933 115.55387878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01536934 115.55387878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f80 -01536935 115.55387878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01536936 115.55390930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f90 -01536937 115.55390930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01536938 115.55391693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f90 -01536939 115.55391693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01536940 115.55394745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fa0 -01536941 115.55394745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01536942 115.55394745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fa0 -01536943 115.55394745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01536944 115.55397034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fb0 -01536945 115.55397034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01536946 115.55397034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fb0 -01536947 115.55397034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01536948 115.55399323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fc0 -01536949 115.55399323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01536950 115.55399323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fc0 -01536951 115.55400848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01557296 115.71025848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a508 -01557297 115.71025848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -01557298 115.71025848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a508 -01557299 115.71025848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -01557300 115.71028137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a518 -01557301 115.71028137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a518 -01557302 115.71028137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -01557303 115.71029663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -01557304 115.71031189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a528 -01557305 115.71031952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a528 -01557306 115.71031952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -01557307 115.71031952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -01557308 115.71035004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a538 -01557309 115.71035004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a538 -01557310 115.71035004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -01557311 115.71035004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -01557312 115.71037292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a548 -01557313 115.71037292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a548 -01557314 115.71037292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -01557315 115.71038818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -01557316 115.71040344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a558 -01557317 115.71040344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a558 -01557318 115.71041107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -01557319 115.71041107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -01557320 115.71042633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a568 -01557321 115.71042633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a568 -01557322 115.71044159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -01557323 115.71044159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -01557324 115.71046448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a578 -01557325 115.71046448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a578 -01557326 115.71046448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -01557327 115.71046448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -01557328 115.71048737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a588 -01557329 115.71048737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a588 -01557330 115.71050262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -01557331 115.71050262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -01557332 115.71051788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a598 -01557333 115.71051788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a598 -01557334 115.71052551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -01557335 115.71052551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -01557336 115.71054077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a8 -01557337 115.71054077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a8 -01557338 115.71055603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -01557339 115.71055603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -01590157 115.98370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f438 -01590158 115.98371887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f438 -01590159 115.98374176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -01590160 115.98374176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -01590161 115.98377228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -01590162 115.98377228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -01590163 115.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f468 -01590164 115.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f468 -01590165 115.98381805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f478 -01590166 115.98381805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f478 -01590167 115.98384857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f488 -01590168 115.98385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f488 -01590169 115.98388672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f498 -01590170 115.98388672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f498 -01590171 115.98390961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a8 -01590172 115.98390961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a8 -01590173 115.98393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b8 -01590174 115.98393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b8 -01590175 115.98396301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -01590176 115.98396301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -01590177 115.98398590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -01590178 115.98400116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -01590179 115.98402405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -01590180 115.98402405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -01590181 115.98405457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -01590182 115.98405457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -01590183 115.98407745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -01590184 115.98407745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -01590185 115.98410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -01590186 115.98410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -01590187 115.98413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -01590188 115.98413849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -01590189 115.98416901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -01590190 115.98416901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -01590191 115.98419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -01590192 115.98419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -01590193 115.98421478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -01590194 115.98421478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -01590195 115.98424530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -01590196 115.98424530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -01590197 115.98426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -01590198 115.98428345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -01590199 115.98430634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -01590200 115.98430634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -01599930 116.12583923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52598 -01599931 116.12586212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a8 -01599932 116.12586212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a8 -01599933 116.12588501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b8 -01599934 116.12588501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b8 -01599935 116.12591553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c8 -01599936 116.12592316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c8 -01599937 116.12593842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d8 -01599938 116.12595367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d8 -01599939 116.12597656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525e8 -01599940 116.12597656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525e8 -01599941 116.12599945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525f8 -01599942 116.12599945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x525f8 -01599943 116.12602997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52608 -01599944 116.12602997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52608 -01599945 116.12605286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52618 -01599946 116.12605286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52618 -01599947 116.12608337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52628 -01599948 116.12609100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52628 -01599949 116.12612152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52638 -01599950 116.12612152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52638 -01599951 116.12614441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52648 -01599952 116.12614441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52648 -01599953 116.12616730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52658 -01599954 116.12616730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52658 -01599955 116.12619781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52668 -01599956 116.12619781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52668 -01599957 116.12623596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52678 -01599958 116.12623596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52678 -01599959 116.12625885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52688 -01599960 116.12625885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52688 -01599961 116.12628174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52698 -01599962 116.12628174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52698 -01599963 116.12631226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526a8 -01599964 116.12631226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526a8 -01599965 116.12633514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526b8 -01599966 116.12635040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526b8 -01599967 116.12637329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526c8 -01599968 116.12637329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526c8 -01599969 116.12640381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526d8 -01599970 116.12640381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526d8 -01599971 116.12642670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526e8 -01599972 116.12642670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526e8 -01599973 116.12644958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x526f8 -01600176 116.56839752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01600177 116.56839752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01600178 116.56842041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01600179 116.56842041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01600180 116.56845093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01600181 116.56845856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01600182 116.56848907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01600183 116.56848907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01600184 116.56851196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01600185 116.56851196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01600186 116.56853485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01600187 116.56853485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01600188 116.56856537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01600189 116.56856537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01600190 116.56858826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01600191 116.56860352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01600192 116.56862640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01600193 116.56862640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01600194 116.56864929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01600195 116.56864929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01600196 116.56867981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01600197 116.56867981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01600198 116.56870270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01600199 116.56870270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01600200 116.56873322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01600201 116.56874084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01600202 116.56877136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01600203 116.56877136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01600204 116.56879425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01600205 116.56879425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01600206 116.56881714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01600207 116.56881714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01600208 116.56884766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01600209 116.56884766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01600210 116.56887054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01600211 116.56888580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01600212 116.56890869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01600213 116.56890869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01600214 116.56893158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01600215 116.56893158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01600216 116.56896210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01600217 116.56896210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01600218 116.56898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01600219 116.56898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01600220 116.56900787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01600221 116.56902313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01600222 116.56904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01600223 116.56904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01600224 116.56907654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01600225 116.56907654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01600226 116.56909943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01600227 116.56909943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01600228 116.56912994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01600229 116.56912994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01600230 116.56915283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01600231 116.56916809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01600232 116.56919098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01600233 116.56919098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01600234 116.56921387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01600235 116.56921387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01600236 116.56924438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01600237 116.56924438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01600238 116.56926727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01600239 116.56926727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01600240 116.56929016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01600241 116.56930542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01600242 116.56932831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01600243 116.56932831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01600244 116.56935883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01600245 116.56935883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01600246 116.56938171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01600247 116.56938171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01600248 116.56940460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01600249 116.56940460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01600250 116.56943512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01600251 116.56944275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01600252 116.56947327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01600253 116.56947327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01600254 116.56949615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01600255 116.56949615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01600256 116.56952667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01600257 116.56952667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01600258 116.56954956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01600259 116.56954956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01600260 116.56957245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01600261 116.56958771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01600262 116.56961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01600263 116.56961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01604852 116.63948822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01604853 116.63948822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01604854 116.63952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01604855 116.63952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01604856 116.63956451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01604857 116.63956451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01604858 116.63958740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01604859 116.63960266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01604860 116.63962555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01604861 116.63962555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01604862 116.63966370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01604863 116.63966370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01604864 116.63970184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01604865 116.63970184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01604866 116.63973236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01604867 116.63973236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01604868 116.63977051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01604869 116.63977051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01604870 116.63980865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01604871 116.63980865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01604872 116.63983154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01604873 116.63984680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01604874 116.63986969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01604875 116.63986969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01604876 116.63990784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01604877 116.63990784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01604878 116.63993835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01604879 116.63994598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01604880 116.63997650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01604881 116.63997650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01604882 116.64001465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01604883 116.64001465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01604884 116.64003754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01604885 116.64005280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01604886 116.64007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01604887 116.64007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01604888 116.64011383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01604889 116.64011383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01604890 116.64015198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01604891 116.64015198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01604892 116.64019012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01604893 116.64019012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01604894 116.64022064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01604895 116.64022827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01628304 116.97739410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f48 -01628305 116.97740936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f48 -01628306 116.97743225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f58 -01628307 116.97743225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f58 -01628308 116.97746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f68 -01628309 116.97746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f68 -01628310 116.97748566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f78 -01628311 116.97748566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f78 -01628312 116.97750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f88 -01628313 116.97750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f88 -01628314 116.97753906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -01628315 116.97754669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -01628316 116.97757721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa8 -01628317 116.97757721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa8 -01628318 116.97760010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb8 -01628319 116.97760010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb8 -01628320 116.97762299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc8 -01628321 116.97762299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc8 -01628322 116.97765350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd8 -01628323 116.97765350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd8 -01628324 116.97767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe8 -01628325 116.97769165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe8 -01628326 116.97771454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff8 -01628327 116.97771454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff8 -01628328 116.97773743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38008 -01628329 116.97773743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38008 -01628330 116.97776794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38018 -01628331 116.97776794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38018 -01628332 116.97779083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38028 -01628333 116.97779083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38028 -01628334 116.97782135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38038 -01628335 116.97782135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38038 -01628336 116.97784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38048 -01628337 116.97785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38048 -01628338 116.97788239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38058 -01628339 116.97788239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38058 -01628340 116.97790527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38068 -01628341 116.97790527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38068 -01628342 116.97793579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38078 -01628343 116.97793579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38078 -01628344 116.97795868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38088 -01628345 116.97795868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38088 -01628346 116.97798157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38098 -01628347 116.97799683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38098 -01638610 117.12556458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c118 -01638611 117.12556458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c118 -01638612 117.12559509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c128 -01638613 117.12559509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c128 -01638614 117.12561798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c138 -01638615 117.12563324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c138 -01638616 117.12565613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c148 -01638617 117.12565613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c148 -01638618 117.12568665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c158 -01638619 117.12568665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c158 -01638620 117.12570953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c168 -01638621 117.12570953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c168 -01638622 117.12573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c178 -01638623 117.12573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c178 -01638624 117.12576294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c188 -01638625 117.12577057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c188 -01638626 117.12580109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c198 -01638627 117.12580109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c198 -01638628 117.12582397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a8 -01638629 117.12582397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a8 -01638630 117.12584686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b8 -01638631 117.12584686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b8 -01638632 117.12587738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -01638633 117.12587738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -01638634 117.12591553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -01638635 117.12591553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -01638636 117.12593842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -01638637 117.12593842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -01638638 117.12596130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f8 -01638639 117.12596130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f8 -01638640 117.12599182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c208 -01638641 117.12599182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c208 -01638642 117.12601471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c218 -01638643 117.12602997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c218 -01638644 117.12605286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c228 -01638645 117.12605286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c228 -01638646 117.12608337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c238 -01638647 117.12608337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c238 -01638648 117.12610626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c248 -01638649 117.12610626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c248 -01638650 117.12612915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c258 -01638651 117.12612915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c258 -01638652 117.12615967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c268 -01638653 117.12616730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c268 -01642071 117.26736450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642072 117.28302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642073 117.28972626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01642074 117.49935150 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642075 117.53113556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642076 117.67987061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642077 117.72266388 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642078 117.81192017 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642079 117.81772614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642080 117.83181000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642081 117.90045166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642082 118.01828003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642083 118.08391571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642084 118.26589203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01642085 118.27299500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642086 118.28720856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642087 118.28721619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642088 118.35945129 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642089 118.41739655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642090 118.46974945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642091 118.59952545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642092 118.67080688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642093 118.76313782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642094 118.76362610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642095 118.83052826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642096 119.33055878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642097 119.61583710 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642098 119.61588287 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642099 119.61589813 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642100 119.61591339 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01642101 119.61603546 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642102 119.61605072 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01642103 119.61610413 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642104 119.61612701 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01642105 120.11457062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01642106 120.11458588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01642107 120.11756897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642108 120.28756714 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01642109 120.30666351 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642110 120.30667877 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642111 121.12933350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01642112 121.12934113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01642113 121.12937164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01642114 121.12937164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01642115 121.12939453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01642116 121.12939453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01642117 121.12941742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01642118 121.12941742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01642119 121.12944794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01642120 121.12945557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01642121 121.12948608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01642122 121.12948608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01642123 121.12950897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01642124 121.12950897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01642125 121.12953949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01642126 121.12953949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01642127 121.12956238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01642128 121.12956238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01642129 121.12958527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01642130 121.12960052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01642131 121.12962341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01642132 121.12962341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01642133 121.12965393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01642134 121.12965393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01642135 121.12967682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01642136 121.12967682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01642137 121.12969971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01642138 121.12969971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01642139 121.12973022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01642140 121.12973022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01642141 121.12975311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01642142 121.12976837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01642143 121.12979126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01642144 121.12979126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01642145 121.12981415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01642146 121.12981415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01642147 121.12984467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01642148 121.12984467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01642149 121.12986755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01642150 121.12988281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01642151 121.12990570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01642152 121.12990570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01642153 121.12993622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01642154 121.12993622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01642155 121.12995911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01642156 121.12995911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01642157 121.12998199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01642158 121.12998199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01642159 121.13001251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01642160 121.13002014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01642161 121.13005066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01642162 121.13005066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01642163 121.13007355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01642164 121.13007355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01642165 121.13009644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01642166 121.13009644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01642167 121.13012695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01642168 121.13012695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01642169 121.13014984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01642170 121.13014984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01642171 121.13017273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01642172 121.13018799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01642173 121.13021088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01642174 121.13021088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01642175 121.13024139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01642176 121.13024139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01642177 121.13026428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01642178 121.13026428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01642179 121.13029480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01642180 121.13029480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01642181 121.13031769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01642182 121.13033295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01642183 121.13035583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01642184 121.13035583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01642185 121.13037872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01642186 121.13037872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01642187 121.13040924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01642188 121.13040924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01642189 121.13043213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01642190 121.13043213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01642191 121.13045502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01642192 121.13047028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01642193 121.13049316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01642194 121.13049316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01642195 121.13052368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01642196 121.13052368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01642197 121.13054657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01642198 121.13054657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01642199 121.13056946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01642200 121.13056946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01642201 121.13059998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01642202 121.13060760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01642203 121.13063812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01642204 121.13063812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01642205 121.13066101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01642206 121.13066101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01642207 121.13069153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01642208 121.13069153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01642209 121.13071442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01642210 121.13071442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01642211 121.13073730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01642212 121.13075256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01642213 121.13077545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01642214 121.13077545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01642215 121.13080597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01642216 121.13080597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01642217 121.13082886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01642218 121.13082886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01642219 121.13085175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01642220 121.13085175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01642221 121.13088226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01642222 121.13088989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01642223 121.13092041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01642224 121.13092041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01642225 121.13094330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01642226 121.13094330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01642227 121.13096619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01642228 121.13096619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01642229 121.13099670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01642230 121.13099670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01642231 121.13101959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01642232 121.13103485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01642233 121.13105774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01642234 121.13105774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01642235 121.13109589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01642236 121.13109589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01642237 121.13112640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01642238 121.13113403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01642239 121.13116455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01642240 121.13116455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01642241 121.13118744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01642242 121.13118744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01642243 121.13121033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01642244 121.13121033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01642245 121.13124084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01642246 121.13124084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01642247 121.13126373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01642248 121.13127899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01642249 121.13130188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01642250 121.13130188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01642251 121.13132477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01642252 121.13132477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01642253 121.13135529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01642254 121.13135529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01642255 121.13137817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01642256 121.13137817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01642257 121.13140106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01642258 121.13141632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01642259 121.13144684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01642260 121.13144684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01642261 121.13146973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01642262 121.13146973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01642263 121.13149261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01642264 121.13149261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01642265 121.13152313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01642266 121.13152313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01642267 121.13154602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01642268 121.13154602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01642269 121.13156891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01642270 121.13158417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01642271 121.13160706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01642272 121.13160706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01642273 121.13163757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01642274 121.13163757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01642275 121.13166046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01642276 121.13166046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01642277 121.13168335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01642278 121.13168335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01642279 121.13171387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01642280 121.13172150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01642281 121.13175201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01642282 121.13175201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01642283 121.13177490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01642284 121.13177490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01642285 121.13179779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01642286 121.13179779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01642287 121.13182831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01642288 121.13182831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01642289 121.13185120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01642290 121.13186646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01642291 121.13188934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01642292 121.13188934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01642293 121.13191986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01642294 121.13191986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01642295 121.13194275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01642296 121.13194275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01642297 121.13196564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01642298 121.13196564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01642299 121.13199615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01642300 121.13200378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01642301 121.13203430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01642302 121.13203430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01642303 121.13205719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01642304 121.13205719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01642305 121.13208008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01642306 121.13208008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01642307 121.13211060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01642308 121.13211060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01642309 121.13213348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01642310 121.13214874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01642311 121.13217163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01642312 121.13217163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01642313 121.13220215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01642314 121.13220215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01642315 121.13222504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01642316 121.13222504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01642317 121.13224792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01642318 121.13224792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01642319 121.13227844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01642320 121.13228607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01642321 121.13231659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01642322 121.13231659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01642323 121.13233948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01642324 121.13233948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01642325 121.13236237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01642326 121.13236237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01642327 121.13239288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01642328 121.13239288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01642329 121.13241577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01642330 121.13243103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01642331 121.13245392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01642332 121.13245392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01642333 121.13247681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01642334 121.13247681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01642335 121.13250732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01642336 121.13250732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01642337 121.13253021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01642338 121.13253021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01642339 121.13255310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01642340 121.13256836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01642341 121.13259888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01642342 121.13259888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01642343 121.13262177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01642344 121.13262177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01642345 121.13264465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01642346 121.13264465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01642347 121.13267517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01642348 121.13267517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01642349 121.13269806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01642350 121.13269806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01642351 121.13272095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01642352 121.13273621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01642353 121.13275909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01642354 121.13275909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01642355 121.13278961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01642356 121.13278961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01642357 121.13281250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01642358 121.13281250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01642359 121.13283539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01642360 121.13283539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01642361 121.13286591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01642362 121.13287354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01642363 121.13290405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01642364 121.13290405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01642365 121.13292694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01642366 121.13292694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01642367 121.13294983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01642368 121.13294983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01642369 121.13298035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01642370 121.13299561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01642371 121.13301849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01642372 121.13301849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01642373 121.13304138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01642374 121.13304138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01642375 121.13307190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01642376 121.13307190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01642377 121.13309479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01642378 121.13309479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01642379 121.13313293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01642380 121.13313293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01642381 121.13315582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01642382 121.13315582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01642383 121.13318634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01642384 121.13318634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01642385 121.13320923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01642386 121.13320923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01642387 121.13323212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01642388 121.13323212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01642389 121.13326263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01642390 121.13326263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01642391 121.13328552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01642392 121.13328552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01642393 121.13330841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01642394 121.13332367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01642395 121.13333893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01642396 121.13335419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01642397 121.13337708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01642398 121.13337708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01642399 121.13339996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01642400 121.13339996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01642401 121.13343048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01642402 121.13343048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01642403 121.13345337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01642404 121.13345337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01642405 121.13347626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01642406 121.13347626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01642407 121.13350677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01642408 121.13350677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01642409 121.13352966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01642410 121.13352966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01642411 121.13355255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01642412 121.13356781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01642413 121.13359070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01642414 121.13359070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01642415 121.13362122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01642416 121.13362122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01642417 121.13364410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01642418 121.13364410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01642419 121.13366699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01642420 121.13368225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01642421 121.13370514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01642422 121.13370514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01642423 121.13373566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01642424 121.13373566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01642425 121.13375854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01642426 121.13375854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01642427 121.13378906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01642428 121.13378906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01642429 121.13381195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01642430 121.13381195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01642431 121.13383484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01642432 121.13383484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01642433 121.13392639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01642434 121.13392639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01642435 121.13394928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01642436 121.13394928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01642437 121.13397980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01642438 121.13398743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01642439 121.13400269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01642440 121.13401794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01642441 121.13404083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01642442 121.13404083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01642443 121.13406372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01642444 121.13406372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01642445 121.13409424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01642446 121.13409424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01642447 121.13411713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01642448 121.13411713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01642449 121.13414764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01642450 121.13414764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01642451 121.13417053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01642452 121.13418579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01642453 121.13420868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01642454 121.13420868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01642455 121.13423157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01642456 121.13423157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01642457 121.13426208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01642458 121.13426208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01642459 121.13428497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01642460 121.13428497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01642461 121.13430786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01642462 121.13432312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01642463 121.13434601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01642464 121.13434601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01642465 121.13437653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01642466 121.13437653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01642467 121.13439941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01642468 121.13439941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01642469 121.13442230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01642470 121.13442230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01642471 121.13445282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01642472 121.13445282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01642473 121.13447571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01642474 121.13449097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01642475 121.13451385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01642476 121.13451385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01642477 121.13454437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01642478 121.13454437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01642479 121.13456726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01642480 121.13458252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01642481 121.13460541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01642482 121.13460541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01642483 121.13462830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01642484 121.13462830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01642485 121.13465881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01642486 121.13465881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01642487 121.13468170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01642488 121.13468170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01642489 121.13470459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01642490 121.13471985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01642491 121.13474274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01642492 121.13474274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01642493 121.13477325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01642494 121.13477325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01642495 121.13479614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01642496 121.13479614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01642497 121.13483429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01642498 121.13483429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01642499 121.13485718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01642500 121.13485718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01642501 121.13488770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01642502 121.13488770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01642503 121.13491058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01642504 121.13491058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01642505 121.13494110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01642506 121.13494110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01642507 121.13496399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01642508 121.13496399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01642509 121.13498688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01642510 121.13498688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01642511 121.13501740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01642512 121.13501740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01642513 121.13504028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01642514 121.13505554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01642515 121.13506317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01642516 121.13507843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01642517 121.13510132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01642518 121.13510132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01642519 121.13513184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01642520 121.13513184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01642521 121.13515472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01642522 121.13515472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01642523 121.13517761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01642524 121.13517761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01642525 121.13520813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01642526 121.13520813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01642527 121.13523102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01642528 121.13523102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01642529 121.13525391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01642530 121.13525391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01642531 121.13528442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01642532 121.13528442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01642533 121.13530731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01642534 121.13532257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01642535 121.13534546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01642536 121.13534546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01642537 121.13537598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01642538 121.13537598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01642539 121.13539886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01642540 121.13539886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01642541 121.13542175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01642542 121.13542175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01642543 121.13545227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01642544 121.13545227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01642545 121.13547516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01642546 121.13549042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01642547 121.13551331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01642548 121.13551331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01642549 121.13553619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01642550 121.13553619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01642551 121.13556671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01642552 121.13556671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01642553 121.13558960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01642554 121.13558960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01642555 121.13561249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01642556 121.13562775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01642557 121.13565063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01642558 121.13565063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01642559 121.13568115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01642560 121.13568115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01642561 121.13570404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01642562 121.13570404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01642563 121.13573456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01642564 121.13573456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01642565 121.13575745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01642566 121.13577271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01642567 121.13579559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01642568 121.13579559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01642569 121.13581848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01642570 121.13581848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01642571 121.13584900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01642572 121.13584900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01642573 121.13587189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01642574 121.13587189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01642575 121.13589478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01642576 121.13589478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01642577 121.13592529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01642578 121.13593292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01642579 121.13594818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01642580 121.13596344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01642581 121.13598633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01642582 121.13598633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01642583 121.13600922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01642584 121.13600922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01642585 121.13603973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01642586 121.13603973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01642587 121.13606262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01642588 121.13606262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01642589 121.13609314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01642590 121.13609314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01642591 121.13611603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01642592 121.13611603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01642593 121.13613892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01642594 121.13613892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01642595 121.13616943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01642596 121.13616943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01642597 121.13619232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01642598 121.13620758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01642599 121.13621521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01642600 121.13623047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01642601 121.13625336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01642602 121.13625336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01642603 121.13628387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01642604 121.13628387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01642605 121.13630676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01642606 121.13630676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01642607 121.13632965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01642608 121.13632965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01642609 121.13636017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01642610 121.13636017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01642611 121.13638306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01642612 121.13638306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01642613 121.13640594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01642614 121.13640594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01642615 121.13643646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01642616 121.13643646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01642617 121.13645935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01642618 121.13647461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01642619 121.13648987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01642620 121.13649750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01642621 121.13652802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01642622 121.13652802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01642623 121.13655090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01642624 121.13655090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01642625 121.13657379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01642626 121.13657379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01642627 121.13660431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01642628 121.13660431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01642629 121.13662720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01642630 121.13662720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01642631 121.13665009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01642632 121.13665009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01642633 121.13668060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01642634 121.13668060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01642635 121.13670349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01642636 121.13670349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01642637 121.13672638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01642638 121.13674164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01642639 121.13675690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01642640 121.13676453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01642641 121.13679504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01642642 121.13679504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01642643 121.13681793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01642644 121.13681793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01642645 121.13684845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01642646 121.13684845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01642647 121.13687134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01642648 121.13687134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01642649 121.13689423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01642650 121.13689423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01642651 121.13692474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01642652 121.13692474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01642653 121.13694763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01642654 121.13694763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01642655 121.13697052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01642656 121.13697052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01642657 121.13700104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01642658 121.13700867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01642659 121.13702393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01642660 121.13703918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01642661 121.13706207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01642662 121.13706207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01642663 121.13708496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01642664 121.13708496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01642665 121.13711548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01642666 121.13711548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01642667 121.13713837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01642668 121.13713837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01642669 121.13716125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01642670 121.13716125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01642671 121.13719177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01642672 121.13719177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01642673 121.13721466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01642674 121.13721466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01642675 121.13724518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01642676 121.13724518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01642677 121.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01642678 121.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01642679 121.13730621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01642680 121.13730621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01642681 121.13732910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01642682 121.13732910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01642683 121.13735962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01642684 121.13735962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01642685 121.13738251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01642686 121.13739777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01642687 121.13742065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01642688 121.13742065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01642689 121.13744354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01642690 121.13744354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01642691 121.13747406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01642692 121.13747406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01642693 121.13749695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01642694 121.13749695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01642695 121.13751984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01642696 121.13751984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01642697 121.13755035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01642698 121.13755035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01642699 121.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01642700 121.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01642701 121.13760376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01642702 121.13760376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01642703 121.13762665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01642704 121.13764191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01642705 121.13764954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01642706 121.13766479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01642707 121.13768768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01642708 121.13768768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01642709 121.13771820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01642710 121.13771820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01642711 121.13774109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01642712 121.13774109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01642713 121.13776398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01642714 121.13776398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01642715 121.13779449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01642716 121.13779449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01642717 121.13781738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01642718 121.13781738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01642719 121.13784027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01642720 121.13784027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01642721 121.13787079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01642722 121.13787079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01642723 121.13789368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01642724 121.13790894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01642725 121.13793182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01642726 121.13793182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01642727 121.13795471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01642728 121.13795471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01642729 121.13798523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01642730 121.13798523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01642731 121.13800812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01642732 121.13800812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01642733 121.13803864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01642734 121.13804626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01642735 121.13807678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01642736 121.13807678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01642737 121.13809967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01642738 121.13809967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01642739 121.13812256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01642740 121.13812256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01642741 121.13815308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01642742 121.13815308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01642743 121.13817596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01642744 121.13817596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01642745 121.13819885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01642746 121.13819885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01642747 121.13822937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01642748 121.13823700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01642749 121.13825226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01642750 121.13826752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01642751 121.13829041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01642752 121.13829041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01642753 121.13831329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01642754 121.13831329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01642755 121.13834381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01642756 121.13834381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01642757 121.13836670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01642758 121.13836670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01642759 121.13839722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01642760 121.13839722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01642761 121.13842010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01642762 121.13842010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01642763 121.13844299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01642764 121.13844299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01642765 121.13847351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01642766 121.13847351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01642767 121.13849640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01642768 121.13849640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01642769 121.13851929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01642770 121.13853455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01642771 121.13855743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01642772 121.13855743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01642773 121.13858795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01642774 121.13858795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01642775 121.13861084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01642776 121.13861084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01642777 121.13863373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01642778 121.13864899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01642779 121.13867188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01642780 121.13867188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01642781 121.13870239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01642782 121.13870239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01642783 121.13872528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01642784 121.13872528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01642785 121.13875580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01642786 121.13875580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01642787 121.13877869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01642788 121.13877869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01642789 121.13880157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01642790 121.13880157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01642791 121.13883209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01642792 121.13883972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01642793 121.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01642794 121.13887024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01642795 121.13889313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01642796 121.13889313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01642797 121.13891602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01642798 121.13891602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01642799 121.13894653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01642800 121.13894653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01642801 121.13896942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01642802 121.13896942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01642803 121.13899231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01642804 121.13899231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01642805 121.13902283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01642806 121.13902283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01642807 121.13904572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01642808 121.13904572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01642809 121.13906860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01642810 121.13906860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01642811 121.13909912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01642812 121.13909912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01642813 121.13912201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01642814 121.13913727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01642815 121.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01642816 121.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01642817 121.13919067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01642818 121.13919067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01642819 121.13921356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01642820 121.13921356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01642821 121.13923645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01642822 121.13925171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01642823 121.13927460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01642824 121.13927460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01642825 121.13930511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01642826 121.13930511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01642827 121.13932800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01642828 121.13932800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01642829 121.13935089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01642830 121.13935089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01642831 121.13938141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01642832 121.13938904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01642833 121.13941956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01642834 121.13941956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01642835 121.13944244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01642836 121.13944244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01642837 121.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01642838 121.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01642839 121.13949585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01642840 121.13949585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01642841 121.13951874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01642842 121.13951874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01642843 121.13954926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01642844 121.13955688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01642845 121.13958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01642846 121.13958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01642847 121.13961029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01642848 121.13961029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01642849 121.13963318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01642850 121.13963318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01642851 121.13966370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01642852 121.13966370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01642853 121.13968658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01642854 121.13970184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01642855 121.13972473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01642856 121.13972473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01642857 121.13974762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01642858 121.13974762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01642859 121.13977814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01642860 121.13977814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01642861 121.13980103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01642862 121.13980103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01642863 121.13982391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01642864 121.13983917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01642865 121.13986206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01642866 121.13986206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01642867 121.13989258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01642868 121.13989258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01642869 121.13991547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01642870 121.13991547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01642871 121.13994598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01642872 121.13994598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01647119 121.19950104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01647120 121.19950104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01647121 121.19952393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01647122 121.19952393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01647123 121.19955444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01647124 121.19955444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01647125 121.19957733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01647126 121.19959259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01647127 121.19961548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01647128 121.19961548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01647129 121.19963837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01647130 121.19963837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01647131 121.19966888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01647132 121.19966888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01647133 121.19969177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01647134 121.19969177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01647135 121.19971466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01647136 121.19972992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01647137 121.19976044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01647138 121.19976044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01647139 121.19978333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01647140 121.19978333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01647141 121.19980621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01647142 121.19980621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01647143 121.19983673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01647144 121.19983673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01647145 121.19985962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01647146 121.19987488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01647147 121.19989777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01647148 121.19989777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01647149 121.19992065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01647150 121.19992065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01647151 121.19995117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01647152 121.19995117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01647153 121.19997406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01647154 121.19997406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01647155 121.19999695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01647156 121.19999695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01647157 121.20002747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01647158 121.20003510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01647159 121.20006561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01647160 121.20006561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01647161 121.20008850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01647162 121.20008850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01651579 121.26175690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -01651580 121.26175690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -01651581 121.26178741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -01651582 121.26178741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -01651583 121.26181030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -01651584 121.26182556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -01651585 121.26183319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -01651586 121.26184845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -01651587 121.26187897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -01651588 121.26187897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -01651589 121.26190186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -01651590 121.26190186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -01651591 121.26192474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -01651592 121.26192474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -01651593 121.26195526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -01651594 121.26195526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -01651595 121.26197815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -01651596 121.26197815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -01651597 121.26200104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -01651598 121.26200104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -01651599 121.26203156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -01651600 121.26203156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -01651601 121.26205444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -01651602 121.26205444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -01651603 121.26207733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -01651604 121.26207733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -01651605 121.26210785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -01651606 121.26211548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -01651607 121.26214600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -01651608 121.26214600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -01651609 121.26216888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -01651610 121.26216888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -01651611 121.26219177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -01651612 121.26219177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -01651613 121.26222229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -01651614 121.26222229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -01651615 121.26224518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -01651616 121.26226044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -01651617 121.26228333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -01651618 121.26228333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -01651619 121.26231384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -01651620 121.26231384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -01651621 121.26233673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13978 -01651622 121.26233673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13978 -01667249 121.48027802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -01667250 121.48027802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -01667251 121.48030853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -01667252 121.48032379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -01667253 121.48034668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -01667254 121.48034668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -01667255 121.48036957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -01667256 121.48036957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -01667257 121.48040009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -01667258 121.48040009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -01667259 121.48042297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -01667260 121.48042297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -01667261 121.48046112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32228 -01667262 121.48046112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32228 -01667263 121.48048401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32238 -01667264 121.48048401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32238 -01667265 121.48051453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32248 -01667266 121.48051453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32248 -01667267 121.48053741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32258 -01667268 121.48053741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32258 -01667269 121.48056030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32268 -01667270 121.48056030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32268 -01667271 121.48059845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32278 -01667272 121.48059845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32278 -01667273 121.48062897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32288 -01667274 121.48062897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32288 -01667275 121.48065186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32298 -01667276 121.48065186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32298 -01667277 121.48067474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a8 -01667278 121.48067474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a8 -01667279 121.48070526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b8 -01667280 121.48072052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b8 -01667281 121.48072815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c8 -01667282 121.48074341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c8 -01667283 121.48076630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d8 -01667284 121.48076630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d8 -01667285 121.48079681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e8 -01667286 121.48079681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e8 -01667287 121.48081970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f8 -01667288 121.48081970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f8 -01667289 121.48084259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32308 -01667290 121.48084259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32308 -01667291 121.48087311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32318 -01667292 121.48088074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32318 -01672565 121.55508423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7e8 -01672566 121.55508423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7e8 -01672567 121.55510712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7f8 -01672568 121.55510712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7f8 -01672569 121.55514526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c808 -01672570 121.55514526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c808 -01672571 121.55517578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c818 -01672572 121.55517578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c818 -01672573 121.55519867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c828 -01672574 121.55519867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c828 -01672575 121.55522919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c838 -01672576 121.55522919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c838 -01672577 121.55525208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c848 -01672578 121.55525208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c848 -01672579 121.55527496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c858 -01672580 121.55529022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c858 -01672581 121.55531311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c868 -01672582 121.55531311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c868 -01672583 121.55534363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c878 -01672584 121.55534363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c878 -01672585 121.55536652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c888 -01672586 121.55536652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c888 -01672587 121.55538940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c898 -01672588 121.55538940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c898 -01672589 121.55541992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8a8 -01672590 121.55542755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8a8 -01672591 121.55545807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8b8 -01672592 121.55545807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8b8 -01672593 121.55548096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8c8 -01672594 121.55548096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8c8 -01672595 121.55550385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8d8 -01672596 121.55550385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8d8 -01672597 121.55553436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8e8 -01672598 121.55553436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8e8 -01672599 121.55555725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8f8 -01672600 121.55555725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8f8 -01672601 121.55558777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c908 -01672602 121.55559540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c908 -01672603 121.55562592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c918 -01672604 121.55562592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c918 -01672605 121.55564880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c928 -01672606 121.55564880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c928 -01672607 121.55567169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c938 -01672608 121.55567169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c938 -01678981 121.64558411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49068 -01678982 121.64558411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49068 -01678983 121.64560699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49078 -01678984 121.64560699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49078 -01678985 121.64562988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49088 -01678986 121.64562988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49088 -01678987 121.64566040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49098 -01678988 121.64566040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49098 -01678989 121.64568329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a8 -01678990 121.64569855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a8 -01678991 121.64572144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b8 -01678992 121.64572144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b8 -01678993 121.64574432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c8 -01678994 121.64574432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c8 -01678995 121.64577484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d8 -01678996 121.64577484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d8 -01678997 121.64579773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e8 -01678998 121.64579773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e8 -01678999 121.64582062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f8 -01679000 121.64582062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f8 -01679001 121.64585114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49108 -01679002 121.64585876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49108 -01679003 121.64588928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49118 -01679004 121.64588928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49118 -01679005 121.64591217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -01679006 121.64591217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -01679007 121.64594269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -01679008 121.64594269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -01679009 121.64596558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -01679010 121.64596558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -01679011 121.64598846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -01679012 121.64600372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -01679013 121.64602661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -01679014 121.64602661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -01679015 121.64605713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -01679016 121.64605713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -01679017 121.64608002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -01679018 121.64608002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -01679019 121.64610291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49198 -01679020 121.64610291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49198 -01679021 121.64613342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a8 -01679022 121.64614105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a8 -01679023 121.64617157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b8 -01679024 121.64617157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b8 -01684004 122.01554108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684005 122.01560211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01684006 122.01561737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01684007 122.01597595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684008 122.01602936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01684009 122.01603699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01684010 122.12253571 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684011 122.12258911 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684012 122.12259674 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684013 122.12261200 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01684014 122.12274170 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684015 122.12274933 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684016 122.12280273 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684017 122.12282562 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684018 122.30808258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01684019 122.32704926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684020 122.32706451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684021 122.56400299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684022 122.56405640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01684023 122.56407166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01684039 123.11874390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684040 123.11885071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01684041 123.11885834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01684042 123.68198395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684045 124.32857513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01684046 124.35337067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684047 124.35338593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684048 124.62892914 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684049 124.62898254 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684050 124.62900543 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684051 124.62902069 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01684052 124.62914276 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684053 124.62914276 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684054 124.62921143 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684055 124.62923431 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684074 126.35425568 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01684075 126.37784576 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684076 126.37785339 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684077 126.71643829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01684078 126.71645355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01684079 126.71649170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01684080 126.71649170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01684081 126.71652985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01684082 126.71652985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01684083 126.71658325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01684084 126.71659851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01684085 126.71662140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01684086 126.71662140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01684087 126.71664429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01684088 126.71664429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01684089 126.71667480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01684090 126.71667480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01684091 126.71671295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01684092 126.71671295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01684093 126.71673584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01684094 126.71673584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01684095 126.71675873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01684096 126.71675873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01684097 126.71678925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01684098 126.71678925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01684099 126.71681213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01684100 126.71682739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01684101 126.71685028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01684102 126.71685028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01684103 126.71687317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01684104 126.71687317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01684105 126.71690369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01684106 126.71690369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01684107 126.71692657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01684108 126.71692657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01684109 126.71695709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01684110 126.71696472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01684111 126.71699524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01684112 126.71699524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01684113 126.71701813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01684114 126.71701813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01684115 126.71704102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01684116 126.71704102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01684117 126.71707153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01684118 126.71707153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01684119 126.71709442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01684120 126.71710968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01684121 126.71713257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01684122 126.71713257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01684123 126.71715546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01684124 126.71715546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01684125 126.71718597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01684126 126.71718597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01684127 126.71720886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01684128 126.71720886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01684129 126.71723175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01684130 126.71724701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01684131 126.71726990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01684132 126.71726990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01684133 126.71730042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01684134 126.71730042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01684135 126.71732330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01684136 126.71732330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01684137 126.71735382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01684138 126.71735382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01684139 126.71737671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01684140 126.71739197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01684141 126.71741486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01684142 126.71741486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01684143 126.71743774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01684144 126.71743774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01684145 126.71746826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01684146 126.71746826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01684147 126.71749115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01684148 126.71749115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01684149 126.71751404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01684150 126.71752930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01684151 126.71755219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01684152 126.71755219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01684153 126.71758270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01684154 126.71758270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01684155 126.71760559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01684156 126.71760559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01684157 126.71762848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01684158 126.71762848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01684159 126.71765900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01684160 126.71766663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01684161 126.71769714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01684162 126.71769714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01684163 126.71772003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01684164 126.71772003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01684165 126.71775055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01684166 126.71775055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01684167 126.71777344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01684168 126.71778870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01684169 126.71781158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01684170 126.71781158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01684171 126.71783447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01684172 126.71783447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01684173 126.71786499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01684174 126.71786499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01684175 126.71788788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01684176 126.71788788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01684177 126.71791077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01684178 126.71792603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01684179 126.71794891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01684180 126.71794891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01684181 126.71797943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01684182 126.71797943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01684183 126.71800232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01684184 126.71800232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01684185 126.71802521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01684186 126.71802521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01684187 126.71805573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01684188 126.71807098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01684189 126.71809387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01684190 126.71809387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01684191 126.71811676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01684192 126.71811676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01684193 126.71814728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01684194 126.71814728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01684195 126.71817017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01684196 126.71817017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01684197 126.71819305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01684198 126.71820831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01684199 126.71823120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01684200 126.71823120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01684201 126.71826935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01684202 126.71826935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01684203 126.71829987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01684204 126.71830750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01684205 126.71833801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01684206 126.71833801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01684207 126.71836090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01684208 126.71836090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01684209 126.71838379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01684210 126.71838379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01684211 126.71841431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01684212 126.71842194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01684213 126.71845245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01684214 126.71845245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01684215 126.71847534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01684216 126.71847534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01684217 126.71850586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01684218 126.71850586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01684219 126.71852875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01684220 126.71852875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01684221 126.71855164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01684222 126.71856689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01684223 126.71858978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01684224 126.71858978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01684225 126.71862030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01684226 126.71862030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01684227 126.71864319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01684228 126.71864319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01684229 126.71866608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01684230 126.71866608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01684231 126.71869659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01684232 126.71869659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01684233 126.71871948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01684234 126.71871948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01684235 126.71874237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01684236 126.71874237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01684237 126.71877289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01684238 126.71878052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01684239 126.71879578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01684240 126.71881104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01684241 126.71883392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01684242 126.71883392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01684243 126.71886444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01684244 126.71886444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01684245 126.71888733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01684246 126.71888733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01684247 126.71891022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01684248 126.71891022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01684249 126.71894073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01684250 126.71894073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01684251 126.71896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01684252 126.71896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01684253 126.71898651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01684254 126.71898651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01684255 126.71901703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01684256 126.71901703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01684257 126.71903992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01684258 126.71905518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01684259 126.71906281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01684260 126.71907806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01684261 126.71910095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01684262 126.71910095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01684263 126.71913147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01684264 126.71913147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01684265 126.71915436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01684266 126.71915436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01684267 126.71917725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01684268 126.71917725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01684269 126.71920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01684270 126.71921539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01684271 126.71924591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01684272 126.71924591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01684273 126.71926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01684274 126.71926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01684275 126.71929932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01684276 126.71929932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01684277 126.71932220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01684278 126.71933746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01684279 126.71934509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01684280 126.71936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01684281 126.71938324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01684282 126.71938324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01684283 126.71941376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01684284 126.71941376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01684285 126.71943665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01684286 126.71943665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01684287 126.71945953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01684288 126.71945953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01684289 126.71949005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01684290 126.71949005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01684291 126.71951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01684292 126.71951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01684293 126.71953583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01684294 126.71953583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01684295 126.71956635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01684296 126.71956635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01684297 126.71958923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01684298 126.71960449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01684299 126.71961975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01684300 126.71962738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01684301 126.71965790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01684302 126.71965790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01684303 126.71968079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01684304 126.71968079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01684305 126.71970367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01684306 126.71970367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01684307 126.71973419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01684308 126.71973419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01684309 126.71975708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01684310 126.71975708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01684311 126.71977997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01684312 126.71979523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01684313 126.71981812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01684314 126.71981812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01684315 126.71984863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01684316 126.71984863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01684317 126.71987152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01684318 126.71987152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01684319 126.71989441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01684320 126.71989441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01684321 126.71992493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01684322 126.71993256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01684323 126.71994781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01684324 126.71996307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01684325 126.71998596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01684326 126.71998596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01684327 126.72001648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01684328 126.72001648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01684329 126.72009277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01684330 126.72010040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01684331 126.72013092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01684332 126.72013092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01684333 126.72015381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01684334 126.72015381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01684335 126.72017670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01684336 126.72017670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01684337 126.72020721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01684338 126.72020721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01684339 126.72023010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01684340 126.72023010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01684341 126.72025299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01684342 126.72025299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01684343 126.72028351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01684344 126.72028351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01684345 126.72030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01684346 126.72030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01684347 126.72032928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01684348 126.72032928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01684349 126.72035980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01684350 126.72036743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01684351 126.72039795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01684352 126.72039795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01684353 126.72042084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01684354 126.72042084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01684355 126.72045135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01684356 126.72045135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01684357 126.72047424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01684358 126.72048950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01684359 126.72051239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01684360 126.72051239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01684361 126.72053528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01684362 126.72053528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01684363 126.72056580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01684364 126.72056580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01684365 126.72058868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01684366 126.72058868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01684367 126.72061157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01684368 126.72061157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01684369 126.72064209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01684370 126.72064972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01684371 126.72066498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01684372 126.72068024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01684373 126.72070313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01684374 126.72070313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01684375 126.72072601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01684376 126.72072601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01684377 126.72075653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01684378 126.72075653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01684379 126.72077942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01684380 126.72077942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01684381 126.72080994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01684382 126.72080994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01684383 126.72083282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01684384 126.72083282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01684385 126.72085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01684386 126.72085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01684387 126.72088623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01684388 126.72088623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01684389 126.72090912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01684390 126.72090912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01684391 126.72093201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01684392 126.72094727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01684393 126.72096252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01684394 126.72097015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01684395 126.72100067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01684396 126.72100067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01684397 126.72102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01684398 126.72102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01684399 126.72104645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01684400 126.72104645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01684401 126.72107697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01684402 126.72107697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01684403 126.72109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01684404 126.72109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01684405 126.72112274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01684406 126.72112274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01684407 126.72115326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01684408 126.72115326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01684409 126.72117615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01684410 126.72117615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01684411 126.72120667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01684412 126.72121429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01684413 126.72122955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01684414 126.72124481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01684415 126.72126770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01684416 126.72126770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01684417 126.72129059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01684418 126.72129059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01684419 126.72132111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01684420 126.72132111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01684421 126.72134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01684422 126.72134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01684423 126.72136688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01684424 126.72136688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01684425 126.72139740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01684426 126.72139740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01684427 126.72142029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01684428 126.72142029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01684429 126.72144318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01684430 126.72144318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01684431 126.72147369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01684432 126.72148132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01684433 126.72149658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01684434 126.72151184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01684435 126.72153473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01684436 126.72153473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01684437 126.72156525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01684438 126.72156525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01684439 126.72158813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01684440 126.72158813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01684441 126.72161102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01684442 126.72161102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01684443 126.72164154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01684444 126.72164154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01684445 126.72166443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01684446 126.72167969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01684447 126.72170258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01684448 126.72170258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01684449 126.72172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01684450 126.72172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01684451 126.72175598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01684452 126.72175598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01684453 126.72177887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01684454 126.72177887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01684455 126.72180176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01684456 126.72181702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01684457 126.72183228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01684458 126.72183990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01684459 126.72187042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01684460 126.72187042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01684461 126.72189331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01684462 126.72189331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01684463 126.72191620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01684464 126.72191620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01684465 126.72194672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01684466 126.72194672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01684467 126.72196960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01684468 126.72196960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01684469 126.72200012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01684470 126.72200012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01684471 126.72202301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01684472 126.72202301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01684473 126.72204590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01684474 126.72204590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01684475 126.72207642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01684476 126.72207642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01684477 126.72209930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01684478 126.72211456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01684479 126.72212219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01684480 126.72213745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01684481 126.72216034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01684482 126.72216034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01684483 126.72219086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01684484 126.72219086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01684485 126.72221375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01684486 126.72221375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01684487 126.72223663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01684488 126.72223663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01684489 126.72226715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01684490 126.72226715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01684491 126.72229004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01684492 126.72229004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01684493 126.72232056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01684494 126.72232056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01684495 126.72234344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01684496 126.72234344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01684497 126.72236633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01684498 126.72238159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01684499 126.72239685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01684500 126.72240448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01684501 126.72243500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01684502 126.72243500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01684503 126.72245789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01684504 126.72245789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01684505 126.72248077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01684506 126.72248077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01684507 126.72251129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01684508 126.72251129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01684509 126.72253418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01684510 126.72253418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01684511 126.72255707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01684512 126.72255707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01684513 126.72258759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01684514 126.72258759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01684515 126.72261047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01684516 126.72261047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01684517 126.72263336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01684518 126.72264862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01684519 126.72266388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01684520 126.72267151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01684521 126.72270203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01684522 126.72270203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01684523 126.72272491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01684524 126.72272491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01684525 126.72275543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01684526 126.72275543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01684527 126.72277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01684528 126.72277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01684529 126.72280121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01684530 126.72280121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01684531 126.72283173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01684532 126.72283173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01684533 126.72285461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01684534 126.72286987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01684535 126.72289276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01684536 126.72289276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01684537 126.72291565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01684538 126.72291565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01684539 126.72294617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01684540 126.72294617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01684541 126.72296906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01684542 126.72296906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01684543 126.72299194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01684544 126.72300720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01684545 126.72303009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01684546 126.72303009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01684547 126.72306061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01684548 126.72306061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01684549 126.72308350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01684550 126.72308350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01684551 126.72311401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01684552 126.72311401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01684553 126.72313690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01684554 126.72313690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01684555 126.72315979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01684556 126.72317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01684557 126.72319794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01684558 126.72319794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01684559 126.72322845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01684560 126.72322845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01684561 126.72325134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01684562 126.72325134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01684563 126.72327423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01684564 126.72327423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01684565 126.72330475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01684566 126.72331238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01684567 126.72334290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01684568 126.72334290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01684569 126.72336578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01684570 126.72336578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01684571 126.72338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01684572 126.72338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01684573 126.72341919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01684574 126.72341919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01684575 126.72344208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01684576 126.72345734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01684577 126.72348022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01684578 126.72348022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01684579 126.72351074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01684580 126.72351074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01684581 126.72353363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01684582 126.72353363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01684583 126.72355652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01684584 126.72355652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01684585 126.72358704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01684586 126.72359467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01684587 126.72362518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01684588 126.72362518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01684589 126.72364807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01684590 126.72364807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01684591 126.72367096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01684592 126.72367096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01684593 126.72370148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01684594 126.72370148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01684595 126.72372437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01684596 126.72373962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01684597 126.72376251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01684598 126.72376251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01684599 126.72378540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01684600 126.72378540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01684601 126.72381592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01684602 126.72381592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01684603 126.72383881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01684604 126.72383881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01684605 126.72386932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01684606 126.72387695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01684607 126.72390747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01684608 126.72390747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01684609 126.72393036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01684610 126.72393036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01684611 126.72395325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01684612 126.72395325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01684613 126.72398376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01684614 126.72398376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01684615 126.72400665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01684616 126.72400665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01684617 126.72402954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01684618 126.72404480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01684619 126.72406769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01684620 126.72406769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01684621 126.72409821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01684622 126.72409821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01684623 126.72412109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01684624 126.72412109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01684625 126.72414398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01684626 126.72414398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01684627 126.72417450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01684628 126.72418213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01684629 126.72421265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01684630 126.72421265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01684631 126.72423553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01684632 126.72423553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01684633 126.72426605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01684634 126.72426605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01684635 126.72428894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01684636 126.72428894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01684637 126.72431183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01684638 126.72432709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01684639 126.72434998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01684640 126.72434998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01684641 126.72438049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01684642 126.72438049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01684643 126.72440338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01684644 126.72440338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01684645 126.72444153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01684646 126.72444153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01684647 126.72446442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01684648 126.72446442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01684649 126.72449493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01684650 126.72449493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01684651 126.72451782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01684652 126.72451782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01684653 126.72454071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01684654 126.72455597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01684655 126.72457886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01684656 126.72457886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01684657 126.72460938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01684658 126.72460938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01684659 126.72463226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01684660 126.72463226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01684661 126.72466278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01684662 126.72466278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01684663 126.72468567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01684664 126.72470093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01684665 126.72472382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01684666 126.72472382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01684667 126.72474670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01684668 126.72474670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01684669 126.72477722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01684670 126.72477722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01684671 126.72480011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01684672 126.72480011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01684673 126.72482300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01684674 126.72482300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01684675 126.72485352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01684676 126.72485352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01684677 126.72487640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01684678 126.72489166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01684679 126.72489929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01684680 126.72491455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01684681 126.72493744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01684682 126.72493744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01684683 126.72496796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01684684 126.72496796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01684685 126.72499084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01684686 126.72499084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01684687 126.72502136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01684688 126.72502136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01684689 126.72504425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01684690 126.72505951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01684691 126.72508240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01684692 126.72508240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01684693 126.72510529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01684694 126.72510529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01684695 126.72513580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01684696 126.72513580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01684697 126.72515869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01684698 126.72515869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01684699 126.72518158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01684700 126.72518158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01684701 126.72521210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01684702 126.72521210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01684703 126.72523499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01684704 126.72525024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01684705 126.72527313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01684706 126.72527313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01684707 126.72529602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01684708 126.72529602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01684709 126.72533417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01684710 126.72533417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01684711 126.72536469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01684712 126.72536469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01684713 126.72538757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01684714 126.72538757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01684715 126.72541809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01684716 126.72541809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01684717 126.72544098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01684718 126.72545624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01684719 126.72546387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01684720 126.72547913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01684721 126.72550201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01684722 126.72550201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01684723 126.72553253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01684724 126.72553253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01684725 126.72557068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01684726 126.72557068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01684727 126.72559357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01684728 126.72559357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01684729 126.72561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01684730 126.72561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01684731 126.72564697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01684732 126.72564697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01684733 126.72566986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01684734 126.72568512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01684735 126.72569275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01684736 126.72570801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01684737 126.72573090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01684738 126.72573090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01684739 126.72576141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01684740 126.72576141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01684741 126.72578430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01684742 126.72578430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01684743 126.72582245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01684744 126.72582245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01684745 126.72585297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01684746 126.72585297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01684747 126.72587585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01684748 126.72589111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01684749 126.72589874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01684750 126.72591400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01684751 126.72593689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01684752 126.72593689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01684753 126.72596741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01684754 126.72596741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01684755 126.72599030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01684756 126.72599030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01684757 126.72601318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01684758 126.72601318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01684759 126.72604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01684760 126.72604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01684761 126.72606659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01684762 126.72608185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01684763 126.72610474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01684764 126.72610474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01684765 126.72612762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01684766 126.72612762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01684767 126.72615814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01684768 126.72615814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01684769 126.72618103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01684770 126.72618103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01684771 126.72621155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01684772 126.72621918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01684773 126.72624969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01684774 126.72624969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01684775 126.72627258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01684776 126.72627258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01684777 126.72633362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01684778 126.72634888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01684779 126.72637177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01684780 126.72637177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01684781 126.72640228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01684782 126.72640228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01684783 126.72642517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01684784 126.72642517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01684785 126.72644806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01684786 126.72644806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01684787 126.72647858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01684788 126.72648621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01684789 126.72651672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01684790 126.72651672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01684791 126.72653961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01684792 126.72653961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01684793 126.72657013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01684794 126.72657013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01684795 126.72659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01684796 126.72659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01684797 126.72661591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01684798 126.72663116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01684799 126.72665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01684800 126.72665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01684801 126.72668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01684802 126.72668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01684803 126.72670746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01684804 126.72670746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01684805 126.72673035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01684806 126.72674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01684807 126.72676849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01684808 126.72676849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01684809 126.72679901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01684810 126.72679901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01684811 126.72682190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01684812 126.72682190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01684813 126.72684479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01684814 126.72686005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01684815 126.72688293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01684816 126.72688293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01684817 126.72691345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01684818 126.72691345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01684819 126.72693634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01684820 126.72693634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01684821 126.72696686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01684822 126.72696686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01684823 126.72698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01684824 126.72700500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01684825 126.72702789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01684826 126.72702789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01684827 126.72705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01684828 126.72705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01684829 126.72708130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01684830 126.72708130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01684831 126.72710419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01684832 126.72710419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01684833 126.72712708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01684834 126.72714233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01684835 126.72716522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01684836 126.72716522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01684837 126.72719574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01684838 126.72719574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01684839 126.72721863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01684840 126.72721863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01684841 126.72724152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01684842 126.72724152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01684843 126.72727203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01684844 126.72727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01684845 126.72731018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01684846 126.72731018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01684847 126.72733307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01684848 126.72733307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01684849 126.72736359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01684850 126.72736359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01684851 126.72738647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01684852 126.72738647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01684853 126.72740936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01684854 126.72742462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01684855 126.72744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01684856 126.72744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01684857 126.72747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01684858 126.72747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01684859 126.72750092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01684860 126.72750092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01684861 126.72752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01684862 126.72752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01684863 126.72755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01684864 126.72756195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01684865 126.72759247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01684866 126.72759247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01684867 126.72761536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01684868 126.72761536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01684869 126.72763824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01684870 126.72763824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01684871 126.72766876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01684872 126.72766876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01684873 126.72769165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01684874 126.72770691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01684875 126.72772980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01684876 126.72772980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01684877 126.72776031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01684878 126.72776031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01684879 126.72778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01684880 126.72778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01684881 126.72780609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01684882 126.72780609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01684883 126.72783661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01684884 126.72783661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01684885 126.72785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01684886 126.72785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01684887 126.72788239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01684888 126.72789764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01684889 126.72792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01684890 126.72792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01684891 126.72795105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01684892 126.72795105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01684893 126.72797394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01684894 126.72797394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01684895 126.72799683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01684896 126.72801208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01684897 126.72802734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01684898 126.72803497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01684899 126.72806549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01684900 126.72806549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01684901 126.72808838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01684902 126.72808838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01684903 126.72811890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01684904 126.72811890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01684905 126.72814178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01684906 126.72814178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01684907 126.72816467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01684908 126.72817993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01684909 126.72820282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01684910 126.72820282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01684911 126.72823334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01684912 126.72823334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01684913 126.72825623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01684914 126.72825623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01684915 126.72827911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01684916 126.72827911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01684917 126.72831726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01684918 126.72831726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01684919 126.72834778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01684920 126.72834778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01684921 126.72837067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01684922 126.72837067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01684923 126.72839355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01684924 126.72839355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01684925 126.72842407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01684926 126.72842407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01684927 126.72844696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01684928 126.72844696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01684929 126.72846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01684930 126.72846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01684931 126.72850037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01684932 126.72851563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01684933 126.72853851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01684934 126.72853851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01684935 126.72856140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01684936 126.72856140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01684937 126.72859192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01684938 126.72859192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01684939 126.72861481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01684940 126.72863007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01684941 126.72865295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01684942 126.72865295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01684943 126.72867584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01684944 126.72867584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01684945 126.72870636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01684946 126.72870636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01684947 126.72872925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01684948 126.72872925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01684949 126.72875214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01684950 126.72875214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01684951 126.72878265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01684952 126.72879028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01684953 126.72882080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01684954 126.72882080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01684955 126.72884369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01684956 126.72884369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01684957 126.72887421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01684958 126.72887421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01684959 126.72889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01684960 126.72889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01684961 126.72891998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01684962 126.72893524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01684963 126.72895813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01684964 126.72895813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01684965 126.72898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01684966 126.72898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01684967 126.72901154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01684968 126.72901154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01684969 126.72903442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01684970 126.72903442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01684971 126.72906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01684972 126.72906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01684973 126.72908783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01684974 126.72908783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01684975 126.72911072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01684976 126.72912598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01684977 126.72914886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01684978 126.72914886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01684979 126.72917938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01684980 126.72917938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01684981 126.72920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01684982 126.72920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01684983 126.72922516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01684984 126.72924042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01684985 126.72927094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01684986 126.72927094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01684987 126.72929382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01684988 126.72929382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01684989 126.72931671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01684990 126.72931671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01684991 126.72934723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01684992 126.72935486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01684993 126.72937012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01684994 126.72938538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01684995 126.72940826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01684996 126.72940826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01684997 126.72943115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01684998 126.72943115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01684999 126.72946167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01685000 126.72946167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01685001 126.72948456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01685002 126.72948456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01685003 126.72950745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01685004 126.72950745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01685005 126.72953796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01685006 126.72953796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01685007 126.72956085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01685008 126.72956085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01685009 126.72959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01685010 126.72959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01685011 126.72962189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01685012 126.72962189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01685013 126.72965240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01685014 126.72965240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01685015 126.72967529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01685016 126.72967529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01685017 126.72971344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01685018 126.72971344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01685019 126.72974396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01685020 126.72988129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01685021 126.72990417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01685022 126.72990417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01685023 126.72994232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01685024 126.72994232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01685025 126.72998047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01685026 126.72998047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01685027 126.73001862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01685028 126.73001862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01685029 126.73006439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01685030 126.73006439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01685031 126.73008728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01685032 126.73008728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01685033 126.73011017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01685034 126.73011017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01685035 126.73014069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01685036 126.73014832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01685037 126.73017883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01685038 126.73017883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01685039 126.73020172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01685040 126.73020172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01685041 126.73022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01685042 126.73023987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01685043 126.73026276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01685044 126.73026276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01685045 126.73029327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01685046 126.73031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01685047 126.73033905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01685048 126.73033905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01685049 126.73036957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01685050 126.73037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01685051 126.73040771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01685052 126.73040771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01685053 126.73043060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01685054 126.73043060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01685055 126.73046112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01685056 126.73046112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01685057 126.73048401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01685058 126.73048401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01685059 126.73050690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01685060 126.73050690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01685061 126.73053741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01685062 126.73053741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01685063 126.73056030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01685064 126.73056030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01685065 126.73058319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01685066 126.73058319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01685067 126.73061371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01685068 126.73062134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01685069 126.73063660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01685070 126.73065186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01685071 126.73067474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01685072 126.73067474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01685073 126.73069763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01685074 126.73069763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01685075 126.73072815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01685076 126.73072815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01685077 126.73075104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01685078 126.73075104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01685079 126.73077393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01685080 126.73077393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01685081 126.73080444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01685082 126.73081970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01685083 126.73084259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01685084 126.73084259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01685085 126.73086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01685086 126.73086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01685087 126.73089600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01685088 126.73089600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01685089 126.73091888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01685090 126.73091888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01685091 126.73094177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01685092 126.73094177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01685093 126.73097229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01685094 126.73097992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01685095 126.73101044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01685096 126.73101044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01685097 126.73103333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01685098 126.73103333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01685099 126.73105621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01685100 126.73105621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01685101 126.73109436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01685102 126.73109436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01685103 126.73112488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01685104 126.73112488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01685105 126.73114777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01685106 126.73114777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01685107 126.73117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01685108 126.73117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01685109 126.73121643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01685110 126.73121643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01685111 126.73123932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01685112 126.73123932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01685113 126.73126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01685114 126.73126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01685115 126.73129272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01685116 126.73130035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01685117 126.73133087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01685118 126.73133087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01685119 126.73135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01685120 126.73135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01685121 126.73137665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01685122 126.73137665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01685123 126.73140717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01685124 126.73141479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01685125 126.73144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01685126 126.73144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01685127 126.73146820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01685128 126.73146820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01685129 126.73149109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01685130 126.73149109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01685131 126.73152161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01685132 126.73152924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01685133 126.73155975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01685134 126.73155975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01685135 126.73158264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01685136 126.73158264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01685137 126.73161316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01685138 126.73161316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01685139 126.73163605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01685140 126.73163605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01685141 126.73165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01685142 126.73165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01685143 126.73168945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01685144 126.73169708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01685145 126.73172760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01685146 126.73172760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01685147 126.73175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01685148 126.73175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01685149 126.73177338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01685150 126.73177338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01685151 126.73180389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01685152 126.73180389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01685153 126.73184967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01685154 126.73184967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01685155 126.73188019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01685156 126.73188782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01685157 126.73190308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01685158 126.73191833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01685159 126.73194122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01685160 126.73194122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01685161 126.73197174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01685162 126.73197174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01685163 126.73199463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01685164 126.73199463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01685165 126.73201752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01685166 126.73201752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01685167 126.73204803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01685168 126.73204803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01685169 126.73207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01685170 126.73207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01685171 126.73209381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01685172 126.73210907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01685173 126.73213196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01685174 126.73213196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01685175 126.73216248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01685176 126.73216248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01685177 126.73218536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01685178 126.73218536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01685179 126.73220825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01685180 126.73220825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01685181 126.73223877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01685182 126.73224640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01685183 126.73227692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01685184 126.73227692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01685185 126.73229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01685186 126.73229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01685187 126.73232269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01685188 126.73232269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01685189 126.73235321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01685190 126.73235321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01685191 126.73237610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01685192 126.73239136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01685193 126.73241425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01685194 126.73241425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01685195 126.73244476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01685196 126.73244476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01685197 126.73246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01685198 126.73246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01685199 126.73249054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01685200 126.73249054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01685201 126.73252106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01685202 126.73252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01685203 126.73255920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01685204 126.73255920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01685205 126.73258209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01685206 126.73258209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01685207 126.73260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01685208 126.73260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01685209 126.73263550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01685210 126.73263550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01685211 126.73267365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01685212 126.73267365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01685213 126.73269653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01685214 126.73269653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01685215 126.73271942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01685216 126.73271942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01685217 126.73274994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01685218 126.73274994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01685219 126.73277283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01685220 126.73277283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01685221 126.73280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01685222 126.73280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01685223 126.73282623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01685224 126.73282623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01685225 126.73284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01685226 126.73284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01685227 126.73287964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01685228 126.73288727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01685229 126.73291779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01685230 126.73291779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01685231 126.73294067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01685232 126.73294067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01685233 126.73296356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01685234 126.73296356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01685235 126.73299408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01685236 126.73299408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01685237 126.73301697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01685238 126.73301697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01685239 126.73303986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01685240 126.73303986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01685241 126.73307800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01685242 126.73307800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01685243 126.73310852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01685244 126.73310852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01685245 126.73313141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01685246 126.73313141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01685247 126.73316193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01685248 126.73316193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01685249 126.73318481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01685250 126.73318481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01685251 126.73320770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01685252 126.73320770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01685253 126.73323822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01685254 126.73323822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01685255 126.73326111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01685256 126.73327637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01685257 126.73328400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01685258 126.73329926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01685259 126.73332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01685260 126.73332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01685261 126.73335266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01685262 126.73335266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01685263 126.73337555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01685264 126.73337555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01685265 126.73339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01685266 126.73339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01685267 126.73342896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01685268 126.73342896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01685269 126.73345184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01685270 126.73345184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01685271 126.73347473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01685272 126.73347473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01685273 126.73350525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01685274 126.73350525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01685275 126.73354340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01685276 126.73354340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01685277 126.73356628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01685278 126.73356628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01685279 126.73359680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01685280 126.73359680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01685281 126.73361969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01685282 126.73361969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01685283 126.73364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01685284 126.73365784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01685285 126.73368073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01685286 126.73368073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01685287 126.73371124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01685288 126.73371124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01685289 126.73373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01685290 126.73373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01685291 126.73375702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01685292 126.73375702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01685293 126.73378754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01685294 126.73379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01685295 126.73382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01685296 126.73382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01685297 126.73384857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01685298 126.73384857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01685299 126.73387146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01685300 126.73387146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01685301 126.73390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01685302 126.73390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01685303 126.73392487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01685304 126.73392487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01685305 126.73395538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01685306 126.73395538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01685307 126.73397827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01685308 126.73397827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01685309 126.73401642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01685310 126.73401642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01685311 126.73403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01685312 126.73403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01685313 126.73406982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01685314 126.73406982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01685315 126.73409271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01685316 126.73409271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01685317 126.73411560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01685318 126.73413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01685319 126.73415375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01685320 126.73415375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01685321 126.73418427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01685322 126.73418427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01685323 126.73420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01685324 126.73420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01685325 126.73423004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01685326 126.73423004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01685327 126.73426056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01685328 126.73426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01685329 126.73429871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01685330 126.73429871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01685331 126.73432159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01685332 126.73432159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01685333 126.73435211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01685334 126.73435211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01685335 126.73437500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01685336 126.73437500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01685337 126.73439789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01685338 126.73439789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01685339 126.73442841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01685340 126.73443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01685341 126.73445129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01685342 126.73446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01685343 126.73448944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01685344 126.73448944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01685345 126.73451233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01685346 126.73451233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01685347 126.73454285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01685348 126.73454285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01685349 126.73456573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01685350 126.73456573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01685351 126.73458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01685352 126.73458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01685353 126.73461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01685354 126.73461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01685355 126.73464203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01685356 126.73464203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01685357 126.73467255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01685358 126.73467255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01685359 126.73469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01685360 126.73469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01685361 126.73471832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01685362 126.73473358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01685363 126.73474884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01685364 126.73475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01685365 126.73478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01685366 126.73478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01685367 126.73480988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01685368 126.73480988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01685369 126.73483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01685370 126.73483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01685371 126.73486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01685372 126.73486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01685373 126.73488617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01685374 126.73488617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01685375 126.73490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01685376 126.73490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01685377 126.73493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01685378 126.73493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01685379 126.73496246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01685380 126.73496246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01685381 126.73498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01685382 126.73498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01685383 126.73501587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01685384 126.73502350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01685385 126.73505402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01685386 126.73505402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01685387 126.73507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01685388 126.73507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01685389 126.73510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01685390 126.73510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01685391 126.73513031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01685392 126.73514557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01685393 126.73516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01685394 126.73516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01685395 126.73519135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01685396 126.73519135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01685397 126.73522186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01685398 126.73522186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01685399 126.73524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01685400 126.73524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01685401 126.73526764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01685402 126.73528290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01685403 126.73530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01685404 126.73530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01685405 126.73533630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01685406 126.73533630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01685407 126.73535919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01685408 126.73535919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01685409 126.73538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01685410 126.73538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01685411 126.73541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01685412 126.73542023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01685413 126.73545074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01685414 126.73545074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01685415 126.73547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01685416 126.73547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01685417 126.73550415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01685418 126.73550415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01685419 126.73552704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01685420 126.73552704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01685421 126.73554993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01685422 126.73556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01685423 126.73558044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01685424 126.73558807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01685425 126.73561859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01685426 126.73561859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01685427 126.73564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01685428 126.73564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01685429 126.73566437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01685430 126.73566437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01685431 126.73569489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01685432 126.73569489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01685433 126.73571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01685434 126.73571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01685435 126.73574066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01685436 126.73575592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01685437 126.73577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01685438 126.73577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01685439 126.73580933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01685440 126.73580933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01685441 126.73583221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01685442 126.73583221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01685443 126.73586273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01685444 126.73586273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01685445 126.73588562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01685446 126.73588562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01685447 126.73590851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01685448 126.73590851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01685449 126.73593903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01685450 126.73593903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01685451 126.73596191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01685452 126.73597717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01685453 126.73598480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01685454 126.73600006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01685455 126.73602295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01685456 126.73602295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01685457 126.73605347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01685458 126.73605347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01685459 126.73607635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01685460 126.73609161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01685461 126.73609924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01685462 126.73611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01685463 126.73613739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01685464 126.73613739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01685465 126.73616791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01685466 126.73616791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01685467 126.73619080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01685468 126.73619080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01685469 126.73622131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01685470 126.73622131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01685471 126.73624420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01685472 126.73624420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01685473 126.73626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01685474 126.73626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01685475 126.73629761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01685476 126.73629761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01685477 126.73632050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01685478 126.73632050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01685479 126.73635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01685480 126.73635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01685481 126.73638153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01685482 126.73638153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01685483 126.73641205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01685484 126.73641205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01685485 126.73643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01685486 126.73643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01685487 126.73645782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01685488 126.73645782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01685489 126.73648834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01685490 126.73649597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01685491 126.73651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01685492 126.73652649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01685493 126.73654938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01685494 126.73654938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01685495 126.73657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01685496 126.73657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01685497 126.73660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01685498 126.73660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01685499 126.73662567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01685500 126.73662567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01685501 126.73665619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01685502 126.73666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01685503 126.73669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01685504 126.73669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01685505 126.73671722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01685506 126.73671722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01685507 126.73674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01685508 126.73674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01685509 126.73677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01685510 126.73677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01685511 126.73679352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01685512 126.73680878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01685513 126.73683167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01685514 126.73683167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01685515 126.73685455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01685516 126.73685455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01685517 126.73688507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01685518 126.73688507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01685519 126.73690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01685520 126.73690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01685521 126.73693085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01685522 126.73694611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01685523 126.73696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01685524 126.73696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01685525 126.73699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01685526 126.73699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01685527 126.73702240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01685528 126.73702240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01685529 126.73705292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01685530 126.73705292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01685531 126.73707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01685532 126.73707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01685533 126.73709869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01685534 126.73711395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01685535 126.73713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01685536 126.73713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01685537 126.73716736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01685538 126.73716736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01685539 126.73719025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01685540 126.73719025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01685541 126.73721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01685542 126.73721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01685543 126.73724365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01685544 126.73725128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01685545 126.73728180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01685546 126.73728180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01685547 126.73730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01685548 126.73730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01685549 126.73732758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01685550 126.73732758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01685551 126.73735809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01685552 126.73735809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01685553 126.73738098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01685554 126.73739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01685555 126.73741913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01685556 126.73741913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01685557 126.73744965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01685558 126.73744965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01685559 126.73747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01685560 126.73747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01685561 126.73749542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01685562 126.73749542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01685563 126.73752594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01685564 126.73752594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01685565 126.73760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01685566 126.73760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01685567 126.73764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01685568 126.73764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01685569 126.73766327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01685570 126.73766327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01685571 126.73768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01685572 126.73768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01685573 126.73771667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01685574 126.73772430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01685575 126.73775482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01685576 126.73775482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01685577 126.73777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01685578 126.73777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01685579 126.73780823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01685580 126.73780823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01685581 126.73783112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01685582 126.73783112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01685583 126.73785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01685584 126.73786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01685585 126.73789215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01685586 126.73789215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01685587 126.73792267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01685588 126.73792267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01685589 126.73794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01685590 126.73794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01685591 126.73796844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01685592 126.73796844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01685593 126.73799896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01685594 126.73800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01685595 126.73803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01685596 126.73803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01685597 126.73806000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01685598 126.73806000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01685599 126.73808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01685600 126.73808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01685601 126.73811340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01685602 126.73811340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01685603 126.73813629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01685604 126.73813629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01685605 126.73816681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01685606 126.73817444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01685607 126.73820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01685608 126.73820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01685609 126.73822784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01685610 126.73822784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01685611 126.73825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01685612 126.73825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01685613 126.73828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01685614 126.73828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01685615 126.73830414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01685616 126.73831940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01685617 126.73834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01685618 126.73834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01685619 126.73836517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01685620 126.73836517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01685621 126.73839569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01685622 126.73839569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01685623 126.73841858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01685624 126.73841858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01685625 126.73844147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01685626 126.73845673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01685627 126.73847961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01685628 126.73847961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01685629 126.73851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01685630 126.73851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01685631 126.73853302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01685632 126.73853302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01685633 126.73856354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01685634 126.73856354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01685635 126.73858643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01685636 126.73860168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01685637 126.73862457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01685638 126.73862457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01685639 126.73864746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01685640 126.73864746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01685641 126.73867798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01685642 126.73867798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01685643 126.73870087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01685644 126.73870087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01685645 126.73872375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01685646 126.73873901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01685647 126.73876190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01685648 126.73876190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01685649 126.73879242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01685650 126.73879242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01685651 126.73881531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01685652 126.73881531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01685653 126.73883820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01685654 126.73883820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01685655 126.73886871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01685656 126.73886871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01685657 126.73889160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01685658 126.73890686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01685659 126.73892975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01685660 126.73892975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01685661 126.73896027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01685662 126.73896027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01685663 126.73898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01685664 126.73898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01685665 126.73900604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01685666 126.73900604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01685667 126.73903656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01685668 126.73904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01685669 126.73907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01685670 126.73907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01685671 126.73909760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01685672 126.73909760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01685673 126.73912048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01685674 126.73912048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01685675 126.73915100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01685676 126.73915863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01685677 126.73918915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01685678 126.73918915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01685679 126.73921204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01685680 126.73921204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01685681 126.73923492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01685682 126.73923492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01685683 126.73926544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01685684 126.73926544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01685685 126.73928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01685686 126.73928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01685687 126.73931885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01685688 126.73932648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01685689 126.73935699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01685690 126.73935699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01685691 126.73937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01685692 126.73937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01685693 126.73940277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01685694 126.73940277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01685695 126.73943329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01685696 126.73943329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01685697 126.73945618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01685698 126.73947144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01685699 126.73949432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01685700 126.73949432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01685701 126.73951721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01685702 126.73951721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01685703 126.73954773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01685704 126.73954773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01685705 126.73957062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01685706 126.73957062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01685707 126.73959351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01685708 126.73960876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01685709 126.73963165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01685710 126.73963165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01685711 126.73966217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01685712 126.73966217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01685713 126.73968506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01685714 126.73968506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01685715 126.73971558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01685716 126.73971558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01685717 126.73973846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01685718 126.73975372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01685719 126.73977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01685720 126.73977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01685721 126.73979950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01685722 126.73979950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01685723 126.73983002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01685724 126.73983002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01685725 126.73985291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01685726 126.73985291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01685727 126.73987579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01685728 126.73989105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01685729 126.73991394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01685730 126.73991394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01685731 126.73994446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01685732 126.73994446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01685733 126.73996735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01685734 126.73996735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01685735 126.73999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01685736 126.73999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01685737 126.74002075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01685738 126.74002075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01685739 126.74004364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01685740 126.74005890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01685741 126.74008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01685742 126.74008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01685743 126.74011230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01685744 126.74011230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01685745 126.74013519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01685746 126.74013519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01685747 126.74015808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01685748 126.74015808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01685749 126.74018860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01685750 126.74019623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01685751 126.74022675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01685752 126.74022675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01685753 126.74024963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01685754 126.74024963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01685755 126.74027252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01685756 126.74027252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01685757 126.74030304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01685758 126.74030304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01685759 126.74032593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01685760 126.74034119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01685761 126.74036407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01685762 126.74036407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01685763 126.74038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01685764 126.74038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01685765 126.74041748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01685766 126.74041748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01685767 126.74044037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01685768 126.74044037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01685769 126.74047089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01685770 126.74047852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01685771 126.74050903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01685772 126.74050903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01685773 126.74053192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01685774 126.74053192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01685775 126.74055481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01685776 126.74055481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01685777 126.74058533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01685778 126.74058533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01685779 126.74060822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01685780 126.74062347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01685781 126.74064636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01685782 126.74064636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01685783 126.74066925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01685784 126.74066925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01685785 126.74069977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01685786 126.74069977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01685787 126.74072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01685788 126.74072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01685789 126.74074554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01685790 126.74074554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01685791 126.74077606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01685792 126.74078369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01685793 126.74081421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01685794 126.74081421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01685795 126.74083710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01685796 126.74083710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01685797 126.74086761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01685798 126.74086761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01685799 126.74089050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01685800 126.74089050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01685801 126.74091339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01685802 126.74092865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01685803 126.74095154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01685804 126.74095154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01685805 126.74098206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01685806 126.74098206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01685807 126.74100494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01685808 126.74100494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01685809 126.74102783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01685810 126.74104309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01685811 126.74106598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01685812 126.74106598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01685813 126.74109650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01685814 126.74109650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01685815 126.74111938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01685816 126.74111938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01685817 126.74115753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01685818 126.74115753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01685819 126.74118042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01685820 126.74118042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01685821 126.74121094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01685822 126.74121094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01685823 126.74124908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01685824 126.74124908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01685825 126.74127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01685826 126.74127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01685827 126.74130249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01685828 126.74130249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01685829 126.74134064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01685830 126.74134064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01685831 126.74136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01685832 126.74136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01685833 126.74138641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01685834 126.74138641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01685835 126.74141693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01685836 126.74141693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01685837 126.74143982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01685838 126.74143982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01685839 126.74146271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01685840 126.74147797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01685841 126.74150085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01685842 126.74150085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01685843 126.74153137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01685844 126.74153137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01685845 126.74155426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01685846 126.74155426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01685847 126.74157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01685848 126.74157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01685849 126.74160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01685850 126.74160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01685851 126.74163055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01685852 126.74163055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01685853 126.74166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01685854 126.74166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01685855 126.74169922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01685856 126.74169922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01685857 126.74172211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01685858 126.74172211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01685859 126.74174500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01685860 126.74174500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01685861 126.74177551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01685862 126.74178314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01685863 126.74181366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01685864 126.74181366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01685865 126.74183655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01685866 126.74183655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01685867 126.74185944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01685868 126.74185944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01685869 126.74188995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01685870 126.74188995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01685871 126.74191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01685872 126.74192810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01685873 126.74195099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01685874 126.74195099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01685875 126.74197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01685876 126.74197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01685877 126.74200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01685878 126.74200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01685879 126.74202728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01685880 126.74202728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01685881 126.74205780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01685882 126.74206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01685883 126.74209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01685884 126.74209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01685885 126.74211884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01685886 126.74211884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01685887 126.74214172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01685888 126.74214172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01685889 126.74217224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01685890 126.74217224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01685891 126.74219513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01685892 126.74221039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01685893 126.74223328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01685894 126.74223328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01685895 126.74225616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01685896 126.74225616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01685897 126.74228668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01685898 126.74228668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01685899 126.74230957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01685900 126.74230957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01685901 126.74233246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01685902 126.74234772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01685903 126.74237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01685904 126.74237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01685905 126.74240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01685906 126.74240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01685907 126.74242401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01685908 126.74242401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01685909 126.74245453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01685910 126.74245453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01685911 126.74247742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01685912 126.74249268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01685913 126.74250031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01685914 126.74251556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01685915 126.74253845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01685916 126.74253845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01685917 126.74256897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01685918 126.74256897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01685919 126.74259186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01685920 126.74259186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01685921 126.74261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01685922 126.74261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01685923 126.74264526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01685924 126.74264526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01685925 126.74268341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01685926 126.74268341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01685927 126.74270630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01685928 126.74270630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01685929 126.74272919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01685930 126.74272919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01685931 126.74275970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01685932 126.74275970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01685933 126.74278259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01685934 126.74278259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01685935 126.74281311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01685936 126.74281311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01685937 126.74283600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01685938 126.74283600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01685939 126.74285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01685940 126.74285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01685941 126.74289703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01685942 126.74289703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01685943 126.74292755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01685944 126.74292755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01685945 126.74295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01685946 126.74295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01685947 126.74297333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01685948 126.74297333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01685949 126.74300385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01685950 126.74301147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01685951 126.74304199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01685952 126.74304199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01685953 126.74306488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01685954 126.74306488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01685955 126.74308777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01685956 126.74308777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01685957 126.74311829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01685958 126.74311829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01685959 126.74314117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01685960 126.74315643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01685961 126.74317932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01685962 126.74317932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01685963 126.74320984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01685964 126.74320984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01685965 126.74323273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01685966 126.74323273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01685967 126.74325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01685968 126.74325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01688094 126.77323151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01688095 126.77326202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01688096 126.77327728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01688097 126.77330017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01688098 126.77330017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01688099 126.77332306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01688100 126.77332306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01688101 126.77335358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01688102 126.77335358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01688103 126.77337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01688104 126.77337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01688105 126.77339935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01688106 126.77339935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01688107 126.77342987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01688108 126.77343750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01688109 126.77346802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01688110 126.77346802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01688111 126.77349091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01688112 126.77349091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01688113 126.77351379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01688114 126.77351379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01688115 126.77354431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01688116 126.77354431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01688117 126.77356720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01688118 126.77358246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01688119 126.77360535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01688120 126.77360535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01688121 126.77362823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01688122 126.77362823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01688123 126.77365875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01688124 126.77365875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01688125 126.77368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01688126 126.77368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01688127 126.77371216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01688128 126.77371979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01688129 126.77375031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01688130 126.77375031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01688131 126.77377319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01688132 126.77377319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01688133 126.77379608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01688134 126.77379608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01688135 126.77382660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01688136 126.77382660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01688137 126.77384949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01702805 126.98022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25988 -01702806 126.98023987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25988 -01702807 126.98026276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25998 -01702808 126.98026276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25998 -01702809 126.98028564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a8 -01702810 126.98028564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a8 -01702811 126.98031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b8 -01702812 126.98031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b8 -01702813 126.98033905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c8 -01702814 126.98033905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c8 -01702815 126.98036194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d8 -01702816 126.98037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d8 -01702817 126.98040009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e8 -01702818 126.98040009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e8 -01702819 126.98043060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f8 -01702820 126.98043060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f8 -01702821 126.98045349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a08 -01702822 126.98045349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a08 -01702823 126.98047638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a18 -01702824 126.98047638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a18 -01702825 126.98050690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a28 -01702826 126.98052216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a28 -01702827 126.98054504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a38 -01702828 126.98054504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a38 -01702829 126.98056793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a48 -01702830 126.98056793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a48 -01702831 126.98059845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a58 -01702832 126.98059845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a58 -01702833 126.98062134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a68 -01702834 126.98062134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a68 -01702835 126.98064423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a78 -01702836 126.98065948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a78 -01702837 126.98068237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a88 -01702838 126.98068237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a88 -01702839 126.98071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a98 -01702840 126.98071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a98 -01702841 126.98073578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa8 -01702842 126.98073578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa8 -01702843 126.98075867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab8 -01702844 126.98075867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab8 -01702845 126.98078918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac8 -01702846 126.98079681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac8 -01702847 126.98082733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad8 -01702848 126.98082733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad8 -01706187 127.02789307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c338 -01706188 127.02790070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c338 -01706189 127.02791595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c348 -01706190 127.02793121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c348 -01706191 127.02795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c358 -01706192 127.02795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c358 -01706193 127.02797699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c368 -01706194 127.02797699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c368 -01706195 127.02800751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c378 -01706196 127.02800751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c378 -01706197 127.02803040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c388 -01706198 127.02803040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c388 -01706199 127.02806091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c398 -01706200 127.02806091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c398 -01706201 127.02808380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a8 -01706202 127.02808380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a8 -01706203 127.02810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3b8 -01706204 127.02810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3b8 -01706205 127.02813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3c8 -01706206 127.02813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3c8 -01706207 127.02816010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d8 -01706208 127.02817535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d8 -01706209 127.02818298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e8 -01706210 127.02819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e8 -01706211 127.02822113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f8 -01706212 127.02822113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f8 -01706213 127.02825165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c408 -01706214 127.02825165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c408 -01706215 127.02827454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c418 -01706216 127.02827454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c418 -01706217 127.02829742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c428 -01706218 127.02829742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c428 -01706219 127.02832794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c438 -01706220 127.02832794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c438 -01706221 127.02835083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c448 -01706222 127.02836609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c448 -01706223 127.02838898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c458 -01706224 127.02838898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c458 -01706225 127.02841949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c468 -01706226 127.02841949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c468 -01706227 127.02844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c478 -01706228 127.02844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c478 -01706229 127.02846527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c488 -01706230 127.02848053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c488 -01710535 127.08986664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b18 -01710536 127.08986664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b18 -01710537 127.08989716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b28 -01710538 127.08989716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b28 -01710539 127.08992004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b38 -01710540 127.08992004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b38 -01710541 127.08995819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b48 -01710542 127.08995819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b48 -01710543 127.08998108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b58 -01710544 127.08998108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b58 -01710545 127.09001160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b68 -01710546 127.09001160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b68 -01710547 127.09004974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b78 -01710548 127.09004974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b78 -01710549 127.09007263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b88 -01710550 127.09007263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b88 -01710551 127.09009552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b98 -01710552 127.09009552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b98 -01710553 127.09012604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ba8 -01710554 127.09012604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ba8 -01710555 127.09014893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bb8 -01710556 127.09014893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bb8 -01710557 127.09017944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bc8 -01710558 127.09017944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bc8 -01710559 127.09020233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bd8 -01710560 127.09020233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bd8 -01710561 127.09022522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34be8 -01710562 127.09022522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34be8 -01710563 127.09025574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf8 -01710564 127.09025574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf8 -01710565 127.09027863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c08 -01710566 127.09029388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c08 -01710567 127.09030151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c18 -01710568 127.09031677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c18 -01710569 127.09033966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c28 -01710570 127.09033966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c28 -01710571 127.09037018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c38 -01710572 127.09037018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c38 -01710573 127.09039307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c48 -01710574 127.09039307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c48 -01710575 127.09041595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c58 -01710576 127.09041595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c58 -01710577 127.09044647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c68 -01710578 127.09044647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c68 -01714706 127.14907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd28 -01714707 127.14910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd38 -01714708 127.14910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd38 -01714709 127.14913177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd48 -01714710 127.14913177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd48 -01714711 127.14915466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd58 -01714712 127.14915466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd58 -01714713 127.14918518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd68 -01714714 127.14920044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd68 -01714715 127.14922333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd78 -01714716 127.14922333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd78 -01714717 127.14924622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd88 -01714718 127.14924622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd88 -01714719 127.14927673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd98 -01714720 127.14927673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd98 -01714721 127.14929962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda8 -01714722 127.14929962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda8 -01714723 127.14933777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb8 -01714724 127.14933777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb8 -01714725 127.14936066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc8 -01714726 127.14936066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc8 -01714727 127.14939117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd8 -01714728 127.14939117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd8 -01714729 127.14941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde8 -01714730 127.14941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde8 -01714731 127.14943695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf8 -01714732 127.14945221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf8 -01714733 127.14947510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce08 -01714734 127.14947510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce08 -01714735 127.14950562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce18 -01714736 127.14950562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce18 -01714737 127.14952850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce28 -01714738 127.14952850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce28 -01714739 127.14955139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce38 -01714740 127.14955139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce38 -01714741 127.14958191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce48 -01714742 127.14959717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce48 -01714743 127.14960480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce58 -01714744 127.14962006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce58 -01714745 127.14964294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce68 -01714746 127.14964294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce68 -01714747 127.14967346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce78 -01714748 127.14967346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce78 -01714749 127.14969635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce88 -01718720 127.20632172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -01718721 127.20632172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -01718722 127.20635223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -01718723 127.20635223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -01718724 127.20637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -01718725 127.20637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -01718726 127.20639801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -01718727 127.20639801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -01718728 127.20642853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -01718729 127.20642853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -01718730 127.20645142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -01718731 127.20646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -01718732 127.20647430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -01718733 127.20648956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -01718734 127.20651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -01718735 127.20651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -01718736 127.20654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -01718737 127.20654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -01718738 127.20656586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -01718739 127.20656586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -01718740 127.20658875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -01718741 127.20658875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -01718742 127.20661926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -01718743 127.20661926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -01718744 127.20664215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -01718745 127.20664215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -01718746 127.20666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -01718747 127.20666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -01718748 127.20669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -01718749 127.20669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -01718750 127.20671844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -01718751 127.20671844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -01718752 127.20674896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -01718753 127.20675659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -01718754 127.20678711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -01718755 127.20678711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -01718756 127.20681000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb8 -01718757 127.20681000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb8 -01718758 127.20683289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -01718759 127.20683289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -01718760 127.20686340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd8 -01718761 127.20687103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd8 -01718762 127.20690155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be8 -01718763 127.20690155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be8 -01722980 127.26667786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb8 -01722981 127.26667786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb8 -01722982 127.26670074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc8 -01722983 127.26670074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc8 -01722984 127.26672363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd8 -01722985 127.26672363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd8 -01722986 127.26675415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe8 -01722987 127.26676178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe8 -01722988 127.26679230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff8 -01722989 127.26679230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff8 -01722990 127.26681519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d008 -01722991 127.26681519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d008 -01722992 127.26683807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d018 -01722993 127.26683807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d018 -01722994 127.26686859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d028 -01722995 127.26686859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d028 -01722996 127.26689148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d038 -01722997 127.26690674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d038 -01722998 127.26692963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d048 -01722999 127.26692963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d048 -01723000 127.26696014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d058 -01723001 127.26696014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d058 -01723002 127.26698303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d068 -01723003 127.26698303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d068 -01723004 127.26700592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d078 -01723005 127.26700592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d078 -01723006 127.26703644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d088 -01723007 127.26703644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d088 -01723008 127.26705933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d098 -01723009 127.26707458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d098 -01723010 127.26709747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a8 -01723011 127.26709747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a8 -01723012 127.26712036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0b8 -01723013 127.26712036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0b8 -01723014 127.26715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c8 -01723015 127.26715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c8 -01723016 127.26717377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d8 -01723017 127.26717377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d8 -01723018 127.26719666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e8 -01723019 127.26721191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e8 -01723020 127.26723480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f8 -01723021 127.26723480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f8 -01723022 127.26726532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d108 -01723023 127.26726532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d108 -01725972 128.37863159 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01725973 128.40048218 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01725974 128.40049744 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01725975 129.64222717 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725976 129.64227295 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725977 129.64228821 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01725978 129.64230347 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01725979 129.64242554 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725980 129.64242554 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01725981 129.64250183 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725982 129.64251709 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01725983 129.97305298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01725984 129.97306824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01725985 130.40158081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01725986 130.41828918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01725987 130.41830444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01725988 130.51599121 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01725989 132.14883423 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725990 132.14889526 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725991 132.14891052 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01725992 132.14892578 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01725993 132.14906311 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725994 132.14906311 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01725995 132.14912415 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01725996 132.14913940 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01725997 132.30821228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01725998 132.30822754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01725999 132.30824280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01726000 132.30824280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01726001 132.30827332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01726002 132.30827332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01726003 132.30830383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01726004 132.30830383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01726005 132.30831909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01726006 132.30831909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01726007 132.30834961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01726008 132.30836487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01726009 132.30839539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01726010 132.30839539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01726011 132.30841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01726012 132.30841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01726013 132.30844116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01726014 132.30844116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01726015 132.30847168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01726016 132.30847168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01726017 132.30848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01726018 132.30848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01726019 132.30851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01726020 132.30853271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01726021 132.30854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01726022 132.30856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01726023 132.30857849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01726024 132.30857849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01726025 132.30860901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01726026 132.30860901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01726027 132.30863953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01726028 132.30863953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01726029 132.30865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01726030 132.30867004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01726031 132.30870056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01726032 132.30870056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01726033 132.30871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01726034 132.30871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01726035 132.30874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01726036 132.30874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01726037 132.30877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01726038 132.30877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01726039 132.30880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01726040 132.30880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01726041 132.30882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01726042 132.30888367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01726043 132.30891418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01726044 132.30891418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01726045 132.30894470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01726046 132.30894470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01726047 132.30897522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01726048 132.30897522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01726049 132.30900574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01726050 132.30900574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01726051 132.30903625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01726052 132.30903625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01726053 132.30905151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01726054 132.30906677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01726055 132.30908203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01726056 132.30909729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01726057 132.30911255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01726058 132.30911255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01726059 132.30914307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01726060 132.30914307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01726061 132.30917358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01726062 132.30917358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01726063 132.30920410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01726064 132.30920410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01726065 132.30921936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01726066 132.30921936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01726067 132.30924988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01726068 132.30924988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01726069 132.30928040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01726070 132.30928040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01726071 132.30931091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01726072 132.30931091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01726073 132.30934143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01726074 132.30934143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01726075 132.30935669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01726076 132.30935669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01726077 132.30938721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01726078 132.30938721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01726079 132.30941772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01726080 132.30943298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01726081 132.30944824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01726082 132.30944824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01726083 132.30947876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01726084 132.30947876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01726085 132.30950928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01726086 132.30950928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01726087 132.30952454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01726088 132.30952454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01726089 132.30955505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01726090 132.30957031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01726091 132.30960083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01726092 132.30960083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01726093 132.30961609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01726094 132.30961609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01726095 132.30964661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01726096 132.30964661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01726097 132.30967712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01726098 132.30967712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01726099 132.30969238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01726100 132.30969238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01726101 132.30973816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01726102 132.30973816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01726103 132.30975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01726104 132.30975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01726105 132.30978394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01726106 132.30978394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01726107 132.30981445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01726108 132.30981445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01726109 132.30982971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01726110 132.30982971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01726111 132.30986023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01726112 132.30986023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01726113 132.30989075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01726114 132.30989075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01726115 132.30992126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01726116 132.30992126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01726117 132.30995178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01726118 132.30995178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01726119 132.30998230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01726120 132.30998230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01726121 132.31002808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01726122 132.31002808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01726123 132.31005859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01726124 132.31005859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01726125 132.31007385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01726126 132.31007385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01726127 132.31010437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01726128 132.31010437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01726129 132.31013489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01726130 132.31013489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01726131 132.31015015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01726132 132.31015015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01726133 132.31018066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01726134 132.31018066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01726135 132.31021118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01726136 132.31022644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01726137 132.31022644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01726138 132.31024170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01726139 132.31027222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01726140 132.31027222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01726141 132.31030273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01726142 132.31030273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01726143 132.31031799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01726144 132.31031799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01726145 132.31034851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01726146 132.31034851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01726147 132.31039429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01726148 132.31039429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01726149 132.31040955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01726150 132.31040955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01726151 132.31044006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01726152 132.31044006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01726153 132.31047058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01726154 132.31047058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01726155 132.31048584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01726156 132.31048584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01726157 132.31051636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01726158 132.31051636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01726159 132.31054688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01726160 132.31054688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01726161 132.31057739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01726162 132.31057739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01726163 132.31060791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01726164 132.31060791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01726165 132.31062317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01726166 132.31062317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01726167 132.31065369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01726168 132.31065369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01726169 132.31068420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01726170 132.31068420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01726171 132.31071472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01726172 132.31071472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01726173 132.31074524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01726174 132.31074524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01726175 132.31077576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01726176 132.31077576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01726177 132.31079102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01726178 132.31079102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01726179 132.31082153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01726180 132.31082153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01726181 132.31085205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01726182 132.31085205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01726183 132.31086731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01726184 132.31086731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01726185 132.31089783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01726186 132.31089783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01726187 132.31092834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01726188 132.31092834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01726189 132.31094360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01726190 132.31095886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01726191 132.31098938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01726192 132.31098938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01726193 132.31101990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01726194 132.31101990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01726195 132.31103516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01726196 132.31103516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01726197 132.31106567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01726198 132.31106567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01726199 132.31109619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01726200 132.31111145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01726201 132.31111145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01726202 132.31112671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01726203 132.31115723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01726204 132.31115723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01726205 132.31118774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01726206 132.31118774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01726207 132.31120300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01726208 132.31120300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01726209 132.31123352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01726210 132.31123352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01726211 132.31126404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01726212 132.31126404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01726213 132.31127930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01726214 132.31127930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01726215 132.31130981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01726216 132.31130981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01726217 132.31134033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01726218 132.31134033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01726219 132.31135559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01726220 132.31137085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01726221 132.31138611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01726222 132.31140137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01726223 132.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01726224 132.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01726225 132.31144714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01726226 132.31144714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01726227 132.31147766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01726228 132.31147766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01726229 132.31150818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01726230 132.31150818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01726231 132.31152344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01726232 132.31152344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01726233 132.31155396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01726234 132.31155396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01726235 132.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01726236 132.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01726237 132.31161499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01726238 132.31161499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01726239 132.31164551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01726240 132.31164551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01726241 132.31166077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01726242 132.31166077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01726243 132.31169128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01726244 132.31169128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01726245 132.31172180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01726246 132.31172180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01726247 132.31173706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01726248 132.31173706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01726249 132.31176758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01726250 132.31178284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01726251 132.31181335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01726252 132.31181335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01726253 132.31182861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01726254 132.31182861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01726255 132.31185913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01726256 132.31185913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01726257 132.31188965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01726258 132.31190491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01726259 132.31192017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01726260 132.31192017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01726261 132.31195068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01726262 132.31195068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01726263 132.31198120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01726264 132.31198120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01726265 132.31199646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01726266 132.31199646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01726267 132.31202698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01726268 132.31204224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01726269 132.31205750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01726270 132.31205750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01726271 132.31208801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01726272 132.31208801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01726273 132.31211853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01726274 132.31211853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01726275 132.31213379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01726276 132.31213379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01726277 132.31216431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01726278 132.31217957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01726279 132.31221008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01726280 132.31221008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01726281 132.31222534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01726282 132.31222534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01726283 132.31225586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01726284 132.31225586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01726285 132.31228638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01726286 132.31228638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01726287 132.31230164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01726288 132.31230164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01726289 132.31233215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01726290 132.31234741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01726291 132.31237793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01726292 132.31237793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01726293 132.31239319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01726294 132.31239319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01726295 132.31242371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01726296 132.31242371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01726297 132.31245422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01726298 132.31245422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01726299 132.31246948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01726300 132.31248474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01726301 132.31251526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01726302 132.31251526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01726303 132.31253052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01726304 132.31253052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01726305 132.31256104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01726306 132.31256104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01726307 132.31259155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01726308 132.31260681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01726309 132.31262207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01726310 132.31262207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01726311 132.31265259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01726312 132.31265259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01726313 132.31268311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01726314 132.31268311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01726315 132.31269836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01726316 132.31269836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01726317 132.31272888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01726318 132.31272888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01726319 132.31275940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01726320 132.31275940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01726321 132.31277466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01726322 132.31277466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01726323 132.31280518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01726324 132.31280518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01726325 132.31283569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01726326 132.31283569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01726327 132.31285095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01726328 132.31286621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01726329 132.31288147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01726330 132.31289673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01726331 132.31292725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01726332 132.31292725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01726333 132.31294250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01726334 132.31294250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01726335 132.31297302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01726336 132.31298828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01726337 132.31301880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01726338 132.31301880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01726339 132.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01726340 132.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01726341 132.31306458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01726342 132.31306458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01726343 132.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01726344 132.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01726345 132.31311035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01726346 132.31312561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01726347 132.31315613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01726348 132.31315613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01726349 132.31317139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01726350 132.31317139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01726351 132.31320190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01726352 132.31320190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01726353 132.31323242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01726354 132.31323242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01726355 132.31324768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01726356 132.31326294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01726357 132.31329346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01726358 132.31329346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01726359 132.31332397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01726360 132.31332397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01726361 132.31333923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01726362 132.31333923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01726363 132.31336975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01726364 132.31338501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01726365 132.31341553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01726366 132.31341553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01726367 132.31343079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01726368 132.31343079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01726369 132.31346130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01726370 132.31347656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01726371 132.31349182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01726372 132.31349182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01726373 132.31352234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01726374 132.31352234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01726375 132.31355286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01726376 132.31355286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01726377 132.31356812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01726378 132.31356812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01726379 132.31361389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01726380 132.31361389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01726381 132.31364441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01726382 132.31364441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01726383 132.31365967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01726384 132.31365967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01726385 132.31369019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01726386 132.31370544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01726387 132.31372070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01726388 132.31372070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01726389 132.31375122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01726390 132.31375122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01726391 132.31378174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01726392 132.31378174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01726393 132.31381226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01726394 132.31381226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01726395 132.31382751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01726396 132.31384277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01726397 132.31387329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01726398 132.31387329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01726399 132.31388855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01726400 132.31388855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01726401 132.31391907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01726402 132.31391907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01726403 132.31394958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01726404 132.31394958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01726405 132.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01726406 132.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01726407 132.31399536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01726408 132.31399536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01726409 132.31402588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01726410 132.31402588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01726411 132.31404114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01726412 132.31404114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01726413 132.31407166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01726414 132.31408691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01726415 132.31410217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01726416 132.31411743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01726417 132.31413269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01726418 132.31413269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01726419 132.31416321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01726420 132.31416321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01726421 132.31419373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01726422 132.31419373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01726423 132.31420898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01726424 132.31420898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01726425 132.31423950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01726426 132.31423950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01726427 132.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01726428 132.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01726429 132.31428528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01726430 132.31430054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01726431 132.31433105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01726432 132.31433105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01726433 132.31436157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01726434 132.31436157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01726435 132.31437683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01726436 132.31437683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01726437 132.31440735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01726438 132.31440735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01726439 132.31443787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01726440 132.31443787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01726441 132.31446838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01726442 132.31446838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01726443 132.31449890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01726444 132.31449890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01726445 132.31451416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01726446 132.31451416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01726447 132.31454468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01726448 132.31455994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01726449 132.31457520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01726450 132.31459045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01726451 132.31460571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01726452 132.31460571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01726453 132.31463623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01726454 132.31463623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01726455 132.31466675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01726456 132.31466675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01726457 132.31468201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01726458 132.31468201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01726459 132.31471252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01726460 132.31471252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01726461 132.31474304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01726462 132.31474304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01726463 132.31475830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01726464 132.31475830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01726465 132.31478882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01726466 132.31478882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01726467 132.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01726468 132.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01726469 132.31484985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01726470 132.31484985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01726471 132.31488037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01726472 132.31488037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01726473 132.31491089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01726474 132.31491089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01726475 132.31494141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01726476 132.31494141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01726477 132.31497192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01726478 132.31497192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01726479 132.31500244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01726480 132.31500244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01726481 132.31501770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01726482 132.31501770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01726483 132.31506348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01726484 132.31506348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01726485 132.31507874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01726486 132.31507874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01726487 132.31510925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01726488 132.31510925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01726489 132.31515503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01726490 132.31515503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01726491 132.31517029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01726492 132.31517029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01726493 132.31520081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01726494 132.31520081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01726495 132.31523132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01726496 132.31523132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01726497 132.31524658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01726498 132.31524658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01726499 132.31527710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01726500 132.31527710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01726501 132.31530762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01726502 132.31530762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01726503 132.31532288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01726504 132.31533813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01726505 132.31535339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01726506 132.31536865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01726507 132.31539917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01726508 132.31539917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01726509 132.31541443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01726510 132.31541443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01726511 132.31544495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01726512 132.31544495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01726513 132.31547546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01726514 132.31547546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01726515 132.31549072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01726516 132.31549072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01726517 132.31553650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01726518 132.31553650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01726519 132.31555176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01726520 132.31555176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01726521 132.31558228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01726522 132.31558228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01726523 132.31561279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01726524 132.31561279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01726525 132.31562805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01726526 132.31564331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01726527 132.31567383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01726528 132.31567383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01726529 132.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01726530 132.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01726531 132.31571960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01726532 132.31571960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01726533 132.31575012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01726534 132.31575012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01726535 132.31578064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01726536 132.31579590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01726537 132.31581116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01726538 132.31581116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01726539 132.31584167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01726540 132.31584167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01726541 132.31587219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01726542 132.31587219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01726543 132.31588745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01726544 132.31588745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01726545 132.31591797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01726546 132.31593323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01726547 132.31594849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01726548 132.31594849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01726549 132.31597900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01726550 132.31597900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01726551 132.31600952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01726552 132.31600952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01726553 132.31602478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01726554 132.31602478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01726555 132.31605530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01726556 132.31607056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01726557 132.31608582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01726558 132.31610107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01726559 132.31611633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01726560 132.31611633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01726561 132.31614685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01726562 132.31614685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01726563 132.31617737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01726564 132.31617737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01726565 132.31619263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01726566 132.31619263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01726567 132.31622314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01726568 132.31623840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01726569 132.31626892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01726570 132.31626892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01726571 132.31628418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01726572 132.31628418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01726573 132.31631470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01726574 132.31631470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01726575 132.31634521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01726576 132.31634521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01726577 132.31636047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01726578 132.31637573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01726579 132.31640625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01726580 132.31640625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01726581 132.31642151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01726582 132.31642151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01726583 132.31645203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01726584 132.31646729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01726585 132.31648254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01726586 132.31649780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01726587 132.31651306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01726588 132.31651306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01726589 132.31654358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01726590 132.31654358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01726591 132.31657410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01726592 132.31657410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01726593 132.31658936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01726594 132.31658936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01726595 132.31661987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01726596 132.31661987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01726597 132.31665039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01726598 132.31665039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01726599 132.31666565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01726600 132.31666565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01726601 132.31669617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01726602 132.31669617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01726603 132.31672668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01726604 132.31672668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01726605 132.31674194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01726606 132.31675720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01726607 132.31678772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01726608 132.31678772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01726609 132.31681824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01726610 132.31681824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01726611 132.31683350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01726612 132.31684875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01726613 132.31687927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01726614 132.31687927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01726615 132.31690979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01726616 132.31690979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01726617 132.31692505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01726618 132.31692505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01726619 132.31695557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01726620 132.31695557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01726621 132.31703186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01726622 132.31704712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01726623 132.31706238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01726624 132.31706238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01726625 132.31709290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01726626 132.31709290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01726627 132.31712341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01726628 132.31713867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01726629 132.31713867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01726630 132.31715393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01726631 132.31718445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01726632 132.31718445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01726633 132.31721497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01726634 132.31721497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01726635 132.31723022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01726636 132.31723022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01726637 132.31726074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01726638 132.31726074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01726639 132.31729126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01726640 132.31729126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01726641 132.31730652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01726642 132.31730652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01726643 132.31733704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01726644 132.31733704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01726645 132.31736755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01726646 132.31736755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01726647 132.31738281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01726648 132.31739807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01726649 132.31742859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01726650 132.31742859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01726651 132.31745911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01726652 132.31745911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01726653 132.31747437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01726654 132.31747437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01726655 132.31752014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01726656 132.31752014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01726657 132.31753540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01726658 132.31753540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01726659 132.31756592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01726660 132.31756592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01726661 132.31759644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01726662 132.31759644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01726663 132.31761169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01726664 132.31761169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01726665 132.31764221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01726666 132.31764221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01726667 132.31767273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01726668 132.31767273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01726669 132.31770325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01726670 132.31770325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01726671 132.31773376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01726672 132.31773376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01726673 132.31776428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01726674 132.31776428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01726675 132.31777954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01726676 132.31777954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01726677 132.31781006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01726678 132.31781006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01726679 132.31784058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01726680 132.31784058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01726681 132.31785583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01726682 132.31787109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01726683 132.31788635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01726684 132.31790161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01726685 132.31793213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01726686 132.31793213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01726687 132.31794739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01726688 132.31794739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01726689 132.31797791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01726690 132.31797791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01726691 132.31800842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01726692 132.31800842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01726693 132.31802368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01726694 132.31802368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01726695 132.31805420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01726696 132.31806946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01726697 132.31809998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01726698 132.31809998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01726699 132.31811523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01726700 132.31811523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01726701 132.31814575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01726702 132.31814575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01726703 132.31817627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01726704 132.31817627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01726705 132.31819153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01726706 132.31819153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01726707 132.31822205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01726708 132.31823730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01726709 132.31825256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01726710 132.31825256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01726711 132.31828308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01726712 132.31828308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01726713 132.31831360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01726714 132.31831360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01726715 132.31832886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01726716 132.31832886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01726717 132.31835938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01726718 132.31835938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01726719 132.31838989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01726720 132.31838989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01726721 132.31842041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01726722 132.31842041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01726723 132.31843567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01726724 132.31843567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01726725 132.31846619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01726726 132.31846619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01726727 132.31849670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01726728 132.31849670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01726729 132.31851196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01726730 132.31852722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01726731 132.31854248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01726732 132.31855774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01726733 132.31857300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01726734 132.31857300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01726735 132.31860352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01726736 132.31860352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01726737 132.31863403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01726738 132.31863403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01726739 132.31864929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01726740 132.31864929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01726741 132.31867981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01726742 132.31867981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01726743 132.31871033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01726744 132.31872559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01726745 132.31874084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01726746 132.31874084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01726747 132.31877136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01726748 132.31877136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01726749 132.31880188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01726750 132.31880188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01726751 132.31881714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01726752 132.31881714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01726753 132.31884766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01726754 132.31884766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01726755 132.31887817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01726756 132.31889343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01726757 132.31889343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01726758 132.31890869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01726759 132.31893921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01726760 132.31893921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01726761 132.31896973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01726762 132.31896973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01726763 132.31898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01726764 132.31898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01726765 132.31901550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01726766 132.31901550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01726767 132.31904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01726768 132.31904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01726769 132.31906128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01726770 132.31906128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01726771 132.31909180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01726772 132.31909180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01726773 132.31912231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01726774 132.31912231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01726775 132.31913757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01726776 132.31913757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01726777 132.31916809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01726778 132.31918335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01726779 132.31925964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01726780 132.31925964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01726781 132.31929016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01726782 132.31929016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01726783 132.31930542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01726784 132.31932068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01726785 132.31935120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01726786 132.31935120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01726787 132.31936646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01726788 132.31936646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01726789 132.31939697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01726790 132.31939697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01726791 132.31942749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01726792 132.31942749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01726793 132.31944275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01726794 132.31945801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01726795 132.31948853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01726796 132.31948853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01726797 132.31951904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01726798 132.31951904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01726799 132.31953430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01726800 132.31953430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01726801 132.31956482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01726802 132.31956482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01726803 132.31959534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01726804 132.31959534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01726805 132.31961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01726806 132.31962585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01726807 132.31964111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01726808 132.31965637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01726809 132.31968689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01726810 132.31968689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01726811 132.31970215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01726812 132.31970215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01726813 132.31973267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01726814 132.31973267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01726815 132.31976318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01726816 132.31976318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01726817 132.31977844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01726818 132.31977844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01726819 132.31980896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01726820 132.31980896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01726821 132.31983948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01726822 132.31983948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01726823 132.31987000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01726824 132.31987000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01726825 132.31990051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01726826 132.31990051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01726827 132.31991577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01726828 132.31993103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01726829 132.31996155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01726830 132.31996155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01726831 132.31999207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01726832 132.31999207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01726833 132.32000732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01726834 132.32000732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01726835 132.32003784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01726836 132.32003784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01726837 132.32006836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01726838 132.32008362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01726839 132.32009888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01726840 132.32009888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01726841 132.32012939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01726842 132.32012939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01726843 132.32015991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01726844 132.32015991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01726845 132.32017517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01726846 132.32017517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01726847 132.32020569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01726848 132.32020569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01726849 132.32023621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01726850 132.32023621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01726851 132.32026672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01726852 132.32026672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01726853 132.32029724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01726854 132.32029724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01726855 132.32031250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01726856 132.32031250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01726857 132.32034302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01726858 132.32034302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01726859 132.32037354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01726860 132.32038879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01726861 132.32040405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01726862 132.32040405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01726863 132.32043457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01726864 132.32043457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01726865 132.32046509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01726866 132.32046509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01726867 132.32048035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01726868 132.32048035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01726869 132.32051086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01726870 132.32052612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01726871 132.32055664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01726872 132.32055664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01726873 132.32057190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01726874 132.32057190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01726875 132.32060242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01726876 132.32060242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01726877 132.32063293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01726878 132.32063293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01726879 132.32064819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01726880 132.32066345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01726881 132.32069397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01726882 132.32069397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01726883 132.32070923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01726884 132.32070923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01726885 132.32073975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01726886 132.32073975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01726887 132.32077026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01726888 132.32077026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01726889 132.32080078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01726890 132.32080078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01726891 132.32083130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01726892 132.32083130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01726893 132.32086182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01726894 132.32086182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01726895 132.32087708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01726896 132.32087708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01726897 132.32090759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01726898 132.32090759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01726899 132.32093811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01726900 132.32093811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01726901 132.32095337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01726902 132.32096863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01726903 132.32099915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01726904 132.32099915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01726905 132.32102966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01726906 132.32102966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01726907 132.32104492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01726908 132.32104492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01726909 132.32107544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01726910 132.32107544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01726911 132.32110596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01726912 132.32112122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01726913 132.32113647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01726914 132.32113647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01726915 132.32116699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01726916 132.32116699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01726917 132.32119751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01726918 132.32119751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01726919 132.32121277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01726920 132.32122803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01726921 132.32124329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01726922 132.32125854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01726923 132.32127380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01726924 132.32127380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01726925 132.32130432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01726926 132.32130432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01726927 132.32133484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01726928 132.32133484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01726929 132.32135010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01726930 132.32135010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01726931 132.32138062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01726932 132.32138062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01726933 132.32141113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01726934 132.32141113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01726935 132.32142639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01726936 132.32142639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01726937 132.32145691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01726938 132.32145691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01726939 132.32148743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01726940 132.32150269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01726941 132.32151794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01726942 132.32151794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01726943 132.32154846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01726944 132.32154846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01726945 132.32157898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01726946 132.32157898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01726947 132.32159424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01726948 132.32159424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01726949 132.32162476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01726950 132.32162476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01726951 132.32165527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01726952 132.32165527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01726953 132.32167053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01726954 132.32167053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01726955 132.32170105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01726956 132.32170105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01726957 132.32173157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01726958 132.32173157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01726959 132.32174683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01726960 132.32174683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01726961 132.32179260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01726962 132.32179260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01726963 132.32182312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01726964 132.32182312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01726965 132.32183838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01726966 132.32183838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01726967 132.32186890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01726968 132.32186890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01726969 132.32189941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01726970 132.32191467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01726971 132.32192993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01726972 132.32192993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01726973 132.32196045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01726974 132.32196045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01726975 132.32199097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01726976 132.32199097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01726977 132.32200623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01726978 132.32200623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01726979 132.32203674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01726980 132.32205200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01726981 132.32206726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01726982 132.32206726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01726983 132.32209778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01726984 132.32209778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01726985 132.32212830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01726986 132.32212830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01726987 132.32214355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01726988 132.32214355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01726989 132.32217407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01726990 132.32218933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01726991 132.32220459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01726992 132.32221985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01726993 132.32223511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01726994 132.32223511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01726995 132.32226563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01726996 132.32226563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01726997 132.32229614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01726998 132.32229614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01726999 132.32231140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01727000 132.32231140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01727001 132.32234192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01727002 132.32234192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01727003 132.32237244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01727004 132.32238770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01727005 132.32240295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01727006 132.32240295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01727007 132.32243347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01727008 132.32243347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01727009 132.32246399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01727010 132.32246399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01727011 132.32247925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01727012 132.32249451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01727013 132.32250977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01727014 132.32252502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01727015 132.32254028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01727016 132.32254028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01727017 132.32257080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01727018 132.32257080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01727019 132.32260132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01727020 132.32260132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01727021 132.32261658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01727022 132.32261658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01727023 132.32264709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01727024 132.32264709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01727025 132.32267761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01727026 132.32267761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01727027 132.32270813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01727028 132.32270813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01727029 132.32272339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01727030 132.32272339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01727031 132.32275391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01727032 132.32276917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01727033 132.32278442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01727034 132.32278442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01727035 132.32281494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01727036 132.32281494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01727037 132.32284546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01727038 132.32284546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01727039 132.32286072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01727040 132.32286072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01727041 132.32289124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01727042 132.32289124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01727043 132.32292175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01727044 132.32292175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01727045 132.32293701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01727046 132.32293701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01727047 132.32296753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01727048 132.32296753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01727049 132.32299805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01727050 132.32299805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01727051 132.32301331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01727052 132.32301331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01727053 132.32304382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01727054 132.32305908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01727055 132.32307434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01727056 132.32308960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01727057 132.32310486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01727058 132.32310486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01727059 132.32313538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01727060 132.32313538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01727061 132.32316589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01727062 132.32316589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01727063 132.32318115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01727064 132.32318115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01727065 132.32321167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01727066 132.32321167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01727067 132.32324219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01727068 132.32324219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01727069 132.32325745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01727070 132.32325745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01727071 132.32328796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01727072 132.32328796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01727073 132.32331848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01727074 132.32331848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01727075 132.32333374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01727076 132.32334900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01727077 132.32336426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01727078 132.32337952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01727079 132.32341003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01727080 132.32341003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01727081 132.32342529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01727082 132.32342529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01727083 132.32345581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01727084 132.32345581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01727085 132.32348633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01727086 132.32348633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01727087 132.32350159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01727088 132.32350159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01727089 132.32353210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01727090 132.32353210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01727091 132.32356262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01727092 132.32356262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01727093 132.32357788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01727094 132.32359314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01727095 132.32362366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01727096 132.32362366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01727097 132.32365417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01727098 132.32365417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01727099 132.32366943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01727100 132.32368469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01727101 132.32371521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01727102 132.32371521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01727103 132.32373047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01727104 132.32373047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01727105 132.32376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01727106 132.32376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01727107 132.32379150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01727108 132.32379150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01727109 132.32382202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01727110 132.32382202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01727111 132.32385254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01727112 132.32385254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01727113 132.32388306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01727114 132.32388306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01727115 132.32389832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01727116 132.32389832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01727117 132.32392883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01727118 132.32392883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01727119 132.32395935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01727120 132.32395935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01727121 132.32397461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01727122 132.32397461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01727123 132.32400513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01727124 132.32402039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01727125 132.32403564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01727126 132.32405090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01727127 132.32406616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01727128 132.32406616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01727129 132.32409668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01727130 132.32409668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01727131 132.32412720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01727132 132.32412720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01727133 132.32414246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01727134 132.32414246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01727135 132.32417297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01727136 132.32417297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01727137 132.32420349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01727138 132.32420349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01727139 132.32421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01727140 132.32421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01727141 132.32424927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01727142 132.32424927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01727143 132.32427979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01727144 132.32427979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01727145 132.32431030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01727146 132.32431030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01727147 132.32434082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01727148 132.32434082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01727149 132.32437134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01727150 132.32437134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01727151 132.32438660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01727152 132.32440186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01727153 132.32443237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01727154 132.32443237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01727155 132.32444763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01727156 132.32444763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01727157 132.32447815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01727158 132.32447815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01727159 132.32450867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01727160 132.32450867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01727161 132.32452393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01727162 132.32452393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01727163 132.32455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01727164 132.32455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01727165 132.32458496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01727166 132.32458496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01727167 132.32461548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01727168 132.32461548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01727169 132.32463074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01727170 132.32463074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01727171 132.32466125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01727172 132.32467651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01727173 132.32469177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01727174 132.32469177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01727175 132.32472229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01727176 132.32472229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01727177 132.32475281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01727178 132.32475281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01727179 132.32476807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01727180 132.32476807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01727181 132.32479858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01727182 132.32479858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01727183 132.32482910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01727184 132.32482910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01727185 132.32484436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01727186 132.32484436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01727187 132.32487488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01727188 132.32487488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01727189 132.32490540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01727190 132.32492065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01727191 132.32493591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01727192 132.32493591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01727193 132.32496643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01727194 132.32496643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01727195 132.32499695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01727196 132.32499695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01727197 132.32501221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01727198 132.32502747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01727199 132.32505798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01727200 132.32505798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01727201 132.32508850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01727202 132.32508850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01727203 132.32510376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01727204 132.32510376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01727205 132.32513428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01727206 132.32513428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01727207 132.32516479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01727208 132.32516479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01727209 132.32518005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01727210 132.32519531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01727211 132.32522583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01727212 132.32522583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01727213 132.32524109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01727214 132.32524109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01727215 132.32527161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01727216 132.32527161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01727217 132.32530212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01727218 132.32530212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01727219 132.32531738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01727220 132.32533264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01727221 132.32536316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01727222 132.32536316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01727223 132.32539368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01727224 132.32539368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01727225 132.32540894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01727226 132.32540894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01727227 132.32543945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01727228 132.32543945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01727229 132.32546997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01727230 132.32548523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01727231 132.32550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01727232 132.32550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01727233 132.32553101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01727234 132.32553101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01727235 132.32556152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01727236 132.32556152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01727237 132.32557678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01727238 132.32559204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01727239 132.32562256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01727240 132.32562256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01727241 132.32563782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01727242 132.32563782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01727243 132.32566833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01727244 132.32566833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01727245 132.32569885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01727246 132.32569885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01727247 132.32571411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01727248 132.32571411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01727249 132.32574463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01727250 132.32575989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01727251 132.32579041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01727252 132.32579041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01727253 132.32580566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01727254 132.32580566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01727255 132.32583618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01727256 132.32583618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01727257 132.32586670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01727258 132.32586670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01727259 132.32588196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01727260 132.32589722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01727261 132.32592773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01727262 132.32592773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01727263 132.32595825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01727264 132.32595825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01727265 132.32597351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01727266 132.32597351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01727267 132.32601929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01727268 132.32601929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01727269 132.32603455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01727270 132.32603455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01727271 132.32606506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01727272 132.32606506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01727273 132.32609558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01727274 132.32609558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01727275 132.32611084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01727276 132.32612610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01727277 132.32615662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01727278 132.32615662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01727279 132.32618713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01727280 132.32618713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01727281 132.32620239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01727282 132.32620239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01727283 132.32623291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01727284 132.32623291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01727285 132.32626343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01727286 132.32626343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01727287 132.32629395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01727288 132.32629395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01727289 132.32632446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01727290 132.32632446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01727291 132.32635498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01727292 132.32635498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01727293 132.32638550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01727294 132.32638550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01727295 132.32641602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01727296 132.32641602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01727297 132.32643127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01727298 132.32643127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01727299 132.32646179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01727300 132.32647705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01727301 132.32650757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01727302 132.32650757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01727303 132.32652283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01727304 132.32652283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01727305 132.32655334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01727306 132.32655334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01727307 132.32658386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01727308 132.32658386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01727309 132.32659912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01727310 132.32659912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01727311 132.32662964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01727312 132.32664490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01727313 132.32667542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01727314 132.32667542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01727315 132.32669067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01727316 132.32669067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01727317 132.32672119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01727318 132.32672119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01727319 132.32675171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01727320 132.32675171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01727321 132.32676697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01727322 132.32678223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01727323 132.32681274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01727324 132.32681274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01727325 132.32682800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01727326 132.32682800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01727327 132.32685852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01727328 132.32685852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01727329 132.32688904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01727330 132.32688904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01727331 132.32691956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01727332 132.32691956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01727333 132.32695007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01727334 132.32695007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01727335 132.32705688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01727336 132.32705688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01727337 132.32707214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01727338 132.32707214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01727339 132.32710266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01727340 132.32710266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01727341 132.32713318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01727342 132.32714844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01727343 132.32716370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01727344 132.32716370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01727345 132.32719421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01727346 132.32719421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01727347 132.32722473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01727348 132.32722473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01727349 132.32723999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01727350 132.32723999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01727351 132.32727051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01727352 132.32727051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01727353 132.32730103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01727354 132.32731628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01727355 132.32733154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01727356 132.32733154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01727357 132.32736206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01727358 132.32736206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01727359 132.32739258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01727360 132.32739258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01727361 132.32740784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01727362 132.32740784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01727363 132.32743835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01727364 132.32745361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01727365 132.32746887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01727366 132.32746887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01727367 132.32749939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01727368 132.32749939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01727369 132.32752991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01727370 132.32752991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01727371 132.32754517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01727372 132.32754517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01727373 132.32757568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01727374 132.32759094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01727375 132.32762146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01727376 132.32762146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01727377 132.32771301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01727378 132.32772827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01727379 132.32775879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01727380 132.32775879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01727381 132.32778931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01727382 132.32778931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01727383 132.32780457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01727384 132.32780457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01727385 132.32783508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01727386 132.32783508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01727387 132.32786560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01727388 132.32786560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01727389 132.32788086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01727390 132.32789612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01727391 132.32792664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01727392 132.32792664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01727393 132.32794189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01727394 132.32794189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01727395 132.32797241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01727396 132.32797241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01727397 132.32800293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01727398 132.32800293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01727399 132.32801819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01727400 132.32803345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01727401 132.32806396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01727402 132.32806396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01727403 132.32809448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01727404 132.32809448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01727405 132.32810974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01727406 132.32810974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01727407 132.32814026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01727408 132.32814026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01727409 132.32817078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01727410 132.32818604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01727411 132.32820129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01727412 132.32820129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01727413 132.32823181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01727414 132.32823181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01727415 132.32826233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01727416 132.32826233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01727417 132.32827759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01727418 132.32827759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01727419 132.32830811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01727420 132.32832336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01727421 132.32833862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01727422 132.32833862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01727423 132.32836914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01727424 132.32836914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01727425 132.32839966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01727426 132.32839966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01727427 132.32841492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01727428 132.32841492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01727429 132.32844543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01727430 132.32846069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01727431 132.32849121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01727432 132.32849121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01727433 132.32850647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01727434 132.32850647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01727435 132.32853699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01727436 132.32853699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01727437 132.32856750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01727438 132.32856750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01727439 132.32858276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01727440 132.32858276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01727441 132.32861328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01727442 132.32862854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01727443 132.32865906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01727444 132.32865906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01727445 132.32867432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01727446 132.32867432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01727447 132.32870483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01727448 132.32870483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01727449 132.32873535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01727450 132.32873535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01727451 132.32875061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01727452 132.32876587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01727453 132.32879639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01727454 132.32879639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01727455 132.32881165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01727456 132.32881165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01727457 132.32884216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01727458 132.32884216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01727459 132.32887268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01727460 132.32887268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01727461 132.32890320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01727462 132.32890320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01727463 132.32893372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01727464 132.32893372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01727465 132.32896423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01727466 132.32896423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01727467 132.32897949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01727468 132.32897949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01727469 132.32901001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01727470 132.32901001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01727471 132.32904053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01727472 132.32905579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01727473 132.32907104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01727474 132.32907104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01727475 132.32910156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01727476 132.32910156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01727477 132.32913208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01727478 132.32913208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01727479 132.32914734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01727480 132.32914734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01727481 132.32917786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01727482 132.32919312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01727483 132.32920837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01727484 132.32920837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01727485 132.32923889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01727486 132.32923889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01727487 132.32926941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01727488 132.32926941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01727489 132.32929993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01727490 132.32929993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01727491 132.32931519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01727492 132.32931519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01727493 132.32936096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01727494 132.32936096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01727495 132.32937622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01727496 132.32937622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01727497 132.32940674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01727498 132.32940674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01727499 132.32943726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01727500 132.32943726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01727501 132.32945251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01727502 132.32945251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01727503 132.32948303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01727504 132.32949829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01727505 132.32952881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01727506 132.32952881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01727507 132.32954407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01727508 132.32954407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01727509 132.32957458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01727510 132.32957458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01727511 132.32960510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01727512 132.32960510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01727513 132.32962036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01727514 132.32963562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01727515 132.32966614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01727516 132.32966614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01727517 132.32969666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01727518 132.32969666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01727519 132.32971191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01727520 132.32971191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01727521 132.32974243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01727522 132.32974243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01727523 132.32977295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01727524 132.32977295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01727525 132.32978821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01727526 132.32980347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01727527 132.32983398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01727528 132.32983398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01727529 132.32984924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01727530 132.32984924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01727531 132.32987976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01727532 132.32987976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01727533 132.32991028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01727534 132.32991028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01727535 132.32992554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01727536 132.32994080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01727537 132.32997131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01727538 132.32997131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01727539 132.33000183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01727540 132.33000183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01727541 132.33001709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01727542 132.33001709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01727543 132.33004761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01727544 132.33004761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01727545 132.33007813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01727546 132.33009338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01727547 132.33010864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01727548 132.33010864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01727549 132.33013916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01727550 132.33013916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01727551 132.33016968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01727552 132.33016968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01727553 132.33018494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01727554 132.33018494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01727555 132.33021545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01727556 132.33023071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01727557 132.33024597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01727558 132.33024597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01727559 132.33027649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01727560 132.33027649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01727561 132.33030701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01727562 132.33030701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01727563 132.33032227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01727564 132.33032227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01727565 132.33035278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01727566 132.33035278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01727567 132.33038330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01727568 132.33039856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01727569 132.33041382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01727570 132.33041382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01727571 132.33044434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01727572 132.33044434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01727573 132.33047485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01727574 132.33047485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01727575 132.33049011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01727576 132.33049011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01727577 132.33052063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01727578 132.33053589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01727579 132.33056641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01727580 132.33056641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01727581 132.33058167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01727582 132.33058167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01727583 132.33061218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01727584 132.33061218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01727585 132.33064270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01727586 132.33064270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01727587 132.33065796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01727588 132.33067322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01727589 132.33070374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01727590 132.33070374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01727591 132.33071899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01727592 132.33071899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01727593 132.33074951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01727594 132.33074951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01727595 132.33078003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01727596 132.33078003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01727597 132.33081055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01727598 132.33081055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01727599 132.33082581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01727600 132.33084106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01727601 132.33087158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01727602 132.33087158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01727603 132.33088684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01727604 132.33088684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01727605 132.33091736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01727606 132.33091736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01727607 132.33094788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01727608 132.33094788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01727609 132.33096313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01727610 132.33097839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01727611 132.33100891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01727612 132.33100891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01727613 132.33103943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01727614 132.33103943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01727615 132.33105469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01727616 132.33105469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01727617 132.33108521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01727618 132.33108521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01727619 132.33111572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01727620 132.33111572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01727621 132.33114624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01727622 132.33114624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01727623 132.33117676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01727624 132.33117676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01727625 132.33120728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01727626 132.33120728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01727627 132.33122253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01727628 132.33122253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01727629 132.33125305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01727630 132.33126831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01727631 132.33128357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01727632 132.33128357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01727633 132.33131409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01727634 132.33131409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01727635 132.33134460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01727636 132.33134460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01727637 132.33135986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01727638 132.33135986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01727639 132.33139038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01727640 132.33139038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01727641 132.33142090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01727642 132.33143616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01727643 132.33145142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01727644 132.33145142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01727645 132.33148193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01727646 132.33148193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01727647 132.33151245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01727648 132.33151245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01727649 132.33152771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01727650 132.33152771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01727651 132.33155823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01727652 132.33157349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01727653 132.33160400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01727654 132.33160400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01727655 132.33161926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01727656 132.33161926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01727657 132.33164978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01727658 132.33164978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01727659 132.33168030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01727660 132.33168030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01727661 132.33169556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01727662 132.33169556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01727663 132.33172607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01727664 132.33174133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01727665 132.33175659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01727666 132.33175659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01727667 132.33178711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01727668 132.33178711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01727669 132.33181763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01727670 132.33181763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01727671 132.33183289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01727672 132.33183289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01727673 132.33186340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01727674 132.33187866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01727675 132.33190918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01727676 132.33190918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01727677 132.33192444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01727678 132.33192444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01727679 132.33195496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01727680 132.33195496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01727681 132.33198547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01727682 132.33198547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01727683 132.33200073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01727684 132.33201599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01727685 132.33204651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01727686 132.33204651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01727687 132.33207703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01727688 132.33207703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01727689 132.33209229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01727690 132.33209229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01727691 132.33212280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01727692 132.33212280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01727693 132.33215332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01727694 132.33215332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01727695 132.33216858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01727696 132.33218384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01727697 132.33221436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01727698 132.33221436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01727699 132.33222961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01727700 132.33222961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01727701 132.33226013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01727702 132.33226013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01727703 132.33229065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01727704 132.33229065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01727705 132.33232117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01727706 132.33232117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01727707 132.33235168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01727708 132.33235168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01727709 132.33238220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01727710 132.33238220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01727711 132.33239746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01727712 132.33239746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01727713 132.33242798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01727714 132.33242798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01727715 132.33245850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01727716 132.33247375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01727717 132.33248901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01727718 132.33248901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01727719 132.33251953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01727720 132.33251953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01727721 132.33255005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01727722 132.33255005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01727723 132.33256531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01727724 132.33256531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01727725 132.33259583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01727726 132.33261108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01727727 132.33262634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01727728 132.33262634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01727729 132.33265686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01727730 132.33265686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01727731 132.33268738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01727732 132.33268738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01727733 132.33271790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01727734 132.33271790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01727735 132.33273315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01727736 132.33273315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01727737 132.33276367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01727738 132.33277893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01727739 132.33279419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01727740 132.33279419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01727741 132.33282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01727742 132.33282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01727743 132.33285522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01727744 132.33285522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01727745 132.33287048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01727746 132.33287048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01727747 132.33290100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01727748 132.33291626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01727749 132.33294678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01727750 132.33294678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01727751 132.33296204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01727752 132.33296204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01727753 132.33299255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01727754 132.33299255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01727755 132.33302307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01727756 132.33302307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01727757 132.33303833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01727758 132.33305359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01727759 132.33308411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01727760 132.33308411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01727761 132.33311462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01727762 132.33311462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01727763 132.33312988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01727764 132.33312988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01727765 132.33316040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01727766 132.33316040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01727767 132.33319092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01727768 132.33319092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01727769 132.33320618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01727770 132.33322144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01727771 132.33323669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01727772 132.33325195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01727773 132.33326721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01727774 132.33326721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01727775 132.33329773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01727776 132.33329773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01727777 132.33332825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01727778 132.33332825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01727779 132.33334351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01727780 132.33334351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01727781 132.33337402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01727782 132.33337402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01727783 132.33340454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01727784 132.33340454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01727785 132.33341980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01727786 132.33341980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01727787 132.33345032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01727788 132.33345032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01727789 132.33348083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01727790 132.33348083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01727791 132.33351135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01727792 132.33351135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01727793 132.33352661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01727794 132.33354187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01727795 132.33357239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01727796 132.33357239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01727797 132.33358765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01727798 132.33358765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01727799 132.33361816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01727800 132.33361816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01727801 132.33364868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01727802 132.33364868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01727803 132.33366394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01727804 132.33366394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01727805 132.33369446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01727806 132.33370972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01727807 132.33374023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01727808 132.33374023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01727809 132.33375549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01727810 132.33375549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01727811 132.33378601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01727812 132.33378601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01727813 132.33381653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01727814 132.33381653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01727815 132.33383179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01727816 132.33383179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01727817 132.33386230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01727818 132.33387756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01727819 132.33389282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01727820 132.33390808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01727821 132.33392334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01727822 132.33392334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01727823 132.33395386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01727824 132.33395386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01727825 132.33398438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01727826 132.33398438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01727827 132.33399963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01727828 132.33401489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01727829 132.33404541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01727830 132.33404541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01727831 132.33406067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01727832 132.33406067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01727833 132.33409119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01727834 132.33409119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01727835 132.33412170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01727836 132.33412170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01727837 132.33413696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01727838 132.33413696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01727839 132.33416748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01727840 132.33418274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01727841 132.33421326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01727842 132.33421326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01727843 132.33422852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01727844 132.33422852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01727845 132.33425903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01727846 132.33425903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01727847 132.33430481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01727848 132.33430481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01727849 132.33432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01727850 132.33432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01727851 132.33435059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01727852 132.33435059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01727853 132.33438110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01727854 132.33438110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01727855 132.33439636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01727856 132.33441162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01727857 132.33444214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01727858 132.33444214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01727859 132.33445740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01727860 132.33445740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01727861 132.33448792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01727862 132.33448792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01727863 132.33451843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01727864 132.33451843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01727865 132.33453369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01727866 132.33453369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01727867 132.33456421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01727868 132.33457947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01727869 132.33460999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01727870 132.33460999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01727871 132.33462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01727872 132.33462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01727873 132.33465576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01727874 132.33465576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01727875 132.33468628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01727876 132.33468628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01727877 132.33471680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01727878 132.33471680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01727879 132.33474731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01727880 132.33474731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01727881 132.33477783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01727882 132.33477783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01727883 132.33479309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01727884 132.33479309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01727885 132.33482361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01727886 132.33483887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01727887 132.33485413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01727888 132.33485413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01727889 132.33488464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01727890 132.33488464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01727891 132.33491516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01727892 132.33491516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01727893 132.33493042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01727894 132.33493042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01727895 132.33496094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01727896 132.33497620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01727897 132.33500671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01727898 132.33500671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01727899 132.33502197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01727900 132.33502197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01727901 132.33505249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01727902 132.33505249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01727903 132.33508301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01727904 132.33508301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01727905 132.33509827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01727906 132.33509827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01727907 132.33512878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01727908 132.33514404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01727909 132.33515930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01727910 132.33517456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01727911 132.33518982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01727912 132.33518982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01727913 132.33522034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01727914 132.33522034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01727915 132.33525085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01727916 132.33525085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01727917 132.33526611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01727918 132.33526611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01727919 132.33529663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01727920 132.33529663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01727921 132.33532715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01727922 132.33532715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01727923 132.33534241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01727924 132.33534241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01727925 132.33537292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01727926 132.33537292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01727927 132.33540344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01727928 132.33540344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01727929 132.33541870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01727930 132.33543396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01727931 132.33544922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01727932 132.33546448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01727933 132.33549500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01727934 132.33549500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01727935 132.33551025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01727936 132.33551025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01727937 132.33554077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01727938 132.33554077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01727939 132.33557129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01727940 132.33557129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01727941 132.33558655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01727942 132.33560181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01727943 132.33563232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01727944 132.33563232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01727945 132.33564758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01727946 132.33564758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01727947 132.33567810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01727948 132.33567810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01727949 132.33570862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01727950 132.33570862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01727951 132.33572388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01727952 132.33573914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01727953 132.33576965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01727954 132.33576965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01727955 132.33580017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01727956 132.33580017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01727957 132.33581543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01727958 132.33581543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01727959 132.33584595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01727960 132.33584595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01727961 132.33587646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01727962 132.33589172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01727963 132.33590698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01727964 132.33590698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01727965 132.33593750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01727966 132.33593750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01727967 132.33596802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01727968 132.33596802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01727969 132.33598328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01727970 132.33598328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01727971 132.33601379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01727972 132.33602905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01727973 132.33604431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01727974 132.33604431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01727975 132.33607483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01727976 132.33607483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01727977 132.33610535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01727978 132.33610535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01727979 132.33612061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01727980 132.33612061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01727981 132.33615112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01727982 132.33615112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01727983 132.33619690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01727984 132.33619690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01727985 132.33624268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01727986 132.33624268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01727987 132.33627319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01727988 132.33627319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01727989 132.33628845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01727990 132.33628845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01727991 132.33631897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01727992 132.33631897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01727993 132.33634949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01727994 132.33636475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01727995 132.33636475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01727996 132.33638000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01727997 132.33641052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01727998 132.33641052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01727999 132.33644104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01728000 132.33644104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01728001 132.33645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01728002 132.33645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01728003 132.33648682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01728004 132.33648682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01728005 132.33651733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01728006 132.33651733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01728007 132.33653259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01728008 132.33653259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01728009 132.33656311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01728010 132.33656311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01728011 132.33659363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01728012 132.33659363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01728013 132.33660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01728014 132.33660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01728015 132.33663940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01728016 132.33665466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01728017 132.33666992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01728018 132.33668518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01728019 132.33670044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01728020 132.33670044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01728021 132.33673096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01728022 132.33673096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01728023 132.33676147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01728024 132.33676147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01728025 132.33677673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01728026 132.33677673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01728027 132.33680725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01728028 132.33680725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01728029 132.33683777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01728030 132.33683777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01728031 132.33685303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01728032 132.33685303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01728033 132.33688354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01728034 132.33688354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01728035 132.33691406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01728036 132.33691406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01728037 132.33692932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01728038 132.33694458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01728039 132.33695984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01728040 132.33697510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01728041 132.33700562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01728042 132.33700562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01728043 132.33702087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01728044 132.33702087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01728045 132.33705139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01728046 132.33705139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01728047 132.33712769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01728048 132.33712769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01728049 132.33715820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01728050 132.33715820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01728051 132.33717346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01728052 132.33717346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01728053 132.33720398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01728054 132.33720398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01728055 132.33723450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01728056 132.33723450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01728057 132.33724976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01728058 132.33724976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01728059 132.33728027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01728060 132.33729553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01728061 132.33731079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01728062 132.33731079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01728063 132.33734131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01728064 132.33734131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01728065 132.33737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01728066 132.33737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01728067 132.33740234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01728068 132.33740234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01728069 132.33741760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01728070 132.33741760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01728071 132.33744812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01728072 132.33744812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01728073 132.33747864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01728074 132.33747864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01728075 132.33749390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01728076 132.33749390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01728077 132.33752441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01728078 132.33753967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01728079 132.33755493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01728080 132.33755493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01728081 132.33758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01728082 132.33758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01728083 132.33761597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01728084 132.33761597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01728085 132.33763123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01728086 132.33763123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01728087 132.33766174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01728088 132.33766174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01728089 132.33769226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01728090 132.33769226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01728091 132.33772278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01728092 132.33772278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01728093 132.33773804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01728094 132.33773804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01728095 132.33776855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01728096 132.33776855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01728097 132.33779907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01728098 132.33779907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01728099 132.33781433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01728100 132.33782959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01728101 132.33784485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01728102 132.33786011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01728103 132.33787537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01728104 132.33787537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01728105 132.33790588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01728106 132.33790588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01728107 132.33793640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01728108 132.33793640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01728109 132.33795166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01728110 132.33796692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01728111 132.33799744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01728112 132.33799744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01728113 132.33802795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01728114 132.33802795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01728115 132.33804321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01728116 132.33804321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01728117 132.33807373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01728118 132.33807373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01728119 132.33811951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01728120 132.33811951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01728121 132.33815002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01728122 132.33815002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01728123 132.33819580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01728124 132.33819580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01728125 132.33822632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01728126 132.33822632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01728127 132.33825684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01728128 132.33825684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01728129 132.33827209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01728130 132.33827209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01728131 132.33830261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01728132 132.33830261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01728133 132.33833313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01728134 132.33833313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01728135 132.33834839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01728136 132.33836365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01728137 132.33837891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01728138 132.33839417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01728139 132.33842468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01728140 132.33842468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01728141 132.33843994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01728142 132.33843994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01728143 132.33847046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01728144 132.33847046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01728145 132.33850098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01728146 132.33850098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01728147 132.33851624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01728148 132.33851624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01728149 132.33854675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01728150 132.33854675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01728151 132.33857727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01728152 132.33857727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01728153 132.33859253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01728154 132.33859253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01728155 132.33862305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01728156 132.33862305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01728157 132.33866882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01728158 132.33866882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01728159 132.33868408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01728160 132.33868408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01728161 132.33871460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01728162 132.33871460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01728163 132.33874512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01728164 132.33874512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01728165 132.33877563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01728166 132.33877563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01728167 132.33880615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01728168 132.33880615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01728169 132.33882141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01728170 132.33882141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01728171 132.33885193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01728172 132.33885193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01728173 132.33888245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01728174 132.33888245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01728175 132.33895874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01728176 132.33897400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01728177 132.33898926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01728178 132.33898926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01728179 132.33901978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01728180 132.33901978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01728181 132.33905029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01728182 132.33905029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01728183 132.33906555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01728184 132.33906555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01728185 132.33909607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01728186 132.33909607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01728187 132.33912659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01728188 132.33912659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01728189 132.33914185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01728190 132.33914185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01728191 132.33917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01728192 132.33917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01728193 132.33920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01728194 132.33920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01728195 132.33921814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01728196 132.33923340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01728197 132.33924866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01728198 132.33926392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01728199 132.33929443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01728200 132.33929443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01728201 132.33930969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01728202 132.33930969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01728203 132.33934021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01728204 132.33934021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01728205 132.33938599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01728206 132.33938599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01728207 132.33940125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01728208 132.33940125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01728209 132.33943176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01728210 132.33943176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01728211 132.33946228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01728212 132.33946228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01728213 132.33947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01728214 132.33947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01728215 132.33952332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01728216 132.33952332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01728217 132.33953857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01728218 132.33953857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01728219 132.33956909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01728220 132.33956909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01728221 132.33959961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01728222 132.33959961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01728223 132.33961487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01728224 132.33961487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01728225 132.33964539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01728226 132.33964539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01728227 132.33967590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01728228 132.33967590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01728229 132.33970642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01728230 132.33970642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01728231 132.33972168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01728232 132.33973694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01728233 132.33975220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01728234 132.33976746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01728235 132.33984375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01728236 132.33984375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01728237 132.33985901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01728238 132.33985901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01728239 132.33988953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01728240 132.33988953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01738822 132.48690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f8 -01738823 132.48692322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f8 -01738824 132.48695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a108 -01738825 132.48695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a108 -01738826 132.48696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a118 -01738827 132.48696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a118 -01738828 132.48699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a128 -01738829 132.48699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a128 -01738830 132.48703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a138 -01738831 132.48703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a138 -01738832 132.48704529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a148 -01738833 132.48706055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a148 -01738834 132.48710632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a158 -01738835 132.48712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a158 -01738836 132.48713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a168 -01738837 132.48713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a168 -01738838 132.48716736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a178 -01738839 132.48716736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a178 -01738840 132.48719788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a188 -01738841 132.48719788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a188 -01738842 132.48721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a198 -01738843 132.48721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a198 -01738844 132.48724365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a8 -01738845 132.48725891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a8 -01738846 132.48728943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b8 -01738847 132.48728943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b8 -01738848 132.48730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c8 -01738849 132.48730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c8 -01738850 132.48733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d8 -01738851 132.48733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d8 -01738852 132.48736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e8 -01738853 132.48736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e8 -01738854 132.48738098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f8 -01738855 132.48739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f8 -01738856 132.48742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a208 -01738857 132.48742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a208 -01738858 132.48744202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a218 -01738859 132.48744202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a218 -01738860 132.48747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a228 -01738861 132.48747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a228 -01738862 132.48750305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a238 -01738863 132.48750305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a238 -01738864 132.48753357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a248 -01738865 132.48753357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a248 -01743535 132.55334473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23438 -01743536 132.55337524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23448 -01743537 132.55337524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23448 -01743538 132.55339050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23458 -01743539 132.55339050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23458 -01743540 132.55342102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23468 -01743541 132.55342102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23468 -01743542 132.55345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23478 -01743543 132.55345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23478 -01743544 132.55346680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23488 -01743545 132.55348206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23488 -01743546 132.55351257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23498 -01743547 132.55351257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23498 -01743548 132.55354309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a8 -01743549 132.55354309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a8 -01743550 132.55355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b8 -01743551 132.55355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b8 -01743552 132.55358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c8 -01743553 132.55358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c8 -01743554 132.55361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d8 -01743555 132.55361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d8 -01743556 132.55364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e8 -01743557 132.55364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e8 -01743558 132.55368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f8 -01743559 132.55368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f8 -01743560 132.55369568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23508 -01743561 132.55369568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23508 -01743562 132.55372620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23518 -01743563 132.55372620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23518 -01743564 132.55375671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23528 -01743565 132.55377197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23528 -01743566 132.55378723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23538 -01743567 132.55378723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23538 -01743568 132.55381775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23548 -01743569 132.55381775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23548 -01743570 132.55384827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23558 -01743571 132.55384827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23558 -01743572 132.55386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23568 -01743573 132.55386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23568 -01743574 132.55389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23578 -01743575 132.55389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23578 -01743576 132.55392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23588 -01743577 132.55393982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23588 -01743578 132.55395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23598 -01747814 132.61482239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9f8 -01747815 132.61482239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9f8 -01747816 132.61485291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba08 -01747817 132.61485291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba08 -01747818 132.61486816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba18 -01747819 132.61486816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba18 -01747820 132.61491394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba28 -01747821 132.61491394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba28 -01747822 132.61494446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba38 -01747823 132.61494446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba38 -01747824 132.61495972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba48 -01747825 132.61495972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba48 -01747826 132.61499023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba58 -01747827 132.61499023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba58 -01747828 132.61502075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba68 -01747829 132.61502075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba68 -01747830 132.61503601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba78 -01747831 132.61505127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba78 -01747832 132.61508179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba88 -01747833 132.61508179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba88 -01747834 132.61509705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba98 -01747835 132.61509705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba98 -01747836 132.61512756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baa8 -01747837 132.61512756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baa8 -01747838 132.61515808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bab8 -01747839 132.61515808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bab8 -01747840 132.61517334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bac8 -01747841 132.61517334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bac8 -01747842 132.61520386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bad8 -01747843 132.61520386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bad8 -01747844 132.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bae8 -01747845 132.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bae8 -01747846 132.61526489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baf8 -01747847 132.61526489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baf8 -01747848 132.61528015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb08 -01747849 132.61528015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb08 -01747850 132.61531067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb18 -01747851 132.61532593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb18 -01747852 132.61534119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb28 -01747853 132.61534119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb28 -01747854 132.61537170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb38 -01747855 132.61537170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb38 -01747856 132.61540222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb48 -01747857 132.61540222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb48 -01752344 132.67872620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -01752345 132.67872620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -01752346 132.67874146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -01752347 132.67874146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -01752348 132.67877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -01752349 132.67877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -01752350 132.67880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -01752351 132.67880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -01752352 132.67881775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -01752353 132.67883301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -01752354 132.67886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -01752355 132.67886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -01752356 132.67887878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -01752357 132.67887878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -01752358 132.67890930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -01752359 132.67890930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -01752360 132.67893982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -01752361 132.67893982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -01752362 132.67897034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -01752363 132.67897034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -01752364 132.67898560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -01752365 132.67900085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -01752366 132.67903137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -01752367 132.67903137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -01752368 132.67904663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -01752369 132.67904663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -01752370 132.67907715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -01752371 132.67907715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -01752372 132.67910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -01752373 132.67910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -01752374 132.67912292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -01752375 132.67912292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -01752376 132.67918396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -01752377 132.67918396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -01752378 132.67919922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -01752379 132.67919922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -01752380 132.67922974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -01752381 132.67922974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -01752382 132.67926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -01752383 132.67926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -01752384 132.67929077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -01752385 132.67929077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -01752386 132.67930603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -01752387 132.67930603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -01756631 132.74053955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd78 -01756632 132.74063110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd88 -01756633 132.74063110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd88 -01756634 132.74066162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd98 -01756635 132.74066162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd98 -01756636 132.74069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda8 -01756637 132.74069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda8 -01756638 132.74072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb8 -01756639 132.74072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb8 -01756640 132.74075317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc8 -01756641 132.74075317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc8 -01756642 132.74076843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd8 -01756643 132.74076843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd8 -01756644 132.74079895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde8 -01756645 132.74079895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde8 -01756646 132.74082947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf8 -01756647 132.74082947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf8 -01756648 132.74084473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce08 -01756649 132.74085999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce08 -01756650 132.74089050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce18 -01756651 132.74089050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce18 -01756652 132.74092102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce28 -01756653 132.74092102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce28 -01756654 132.74093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce38 -01756655 132.74093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce38 -01756656 132.74096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce48 -01756657 132.74096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce48 -01756658 132.74099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce58 -01756659 132.74099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce58 -01756660 132.74102783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce68 -01756661 132.74102783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce68 -01756662 132.74105835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce78 -01756663 132.74105835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce78 -01756664 132.74108887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce88 -01756665 132.74108887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce88 -01756666 132.74110413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce98 -01756667 132.74110413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce98 -01756668 132.74113464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea8 -01756669 132.74114990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea8 -01756670 132.74116516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb8 -01756671 132.74116516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb8 -01756672 132.74119568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec8 -01756673 132.74119568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec8 -01756674 132.74122620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced8 -01772474 132.98648071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa0 -01772475 132.98648071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa0 -01772476 132.98651123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb0 -01772477 132.98651123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb0 -01772478 132.98654175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc0 -01772479 132.98654175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc0 -01772480 132.98655701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd0 -01772481 132.98655701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd0 -01772482 132.98658752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe0 -01772483 132.98660278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe0 -01772484 132.98661804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff0 -01772485 132.98661804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff0 -01772486 132.98664856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa000 -01772487 132.98664856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa000 -01772488 132.98667908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa010 -01772489 132.98667908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa010 -01772490 132.98669434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa020 -01772491 132.98669434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa020 -01772492 132.98672485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa030 -01772493 132.98674011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa030 -01772494 132.98677063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa040 -01772495 132.98677063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa040 -01772496 132.98678589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa050 -01772497 132.98678589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa050 -01772498 132.98681641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa060 -01772499 132.98681641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa060 -01772500 132.98684692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa070 -01772501 132.98684692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa070 -01772502 132.98686218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa080 -01772503 132.98687744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa080 -01772504 132.98690796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa090 -01772505 132.98690796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa090 -01772506 132.98693848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a0 -01772507 132.98693848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a0 -01772508 132.98695374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b0 -01772509 132.98695374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b0 -01772510 132.98698425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c0 -01772511 132.98698425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c0 -01772512 132.98701477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d0 -01772513 132.98701477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d0 -01772514 132.98703003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e0 -01772515 132.98703003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e0 -01772516 132.98706055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f0 -01772517 132.98706055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f0 -01775786 133.03327942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -01775787 133.03327942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -01775788 133.03330994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -01775789 133.03332520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -01775790 133.03334045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -01775791 133.03334045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -01775792 133.03337097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -01775793 133.03337097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -01775794 133.03340149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -01775795 133.03340149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -01775796 133.03343201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -01775797 133.03343201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -01775798 133.03346252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -01775799 133.03346252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -01775800 133.03349304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -01775801 133.03349304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -01775802 133.03352356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -01775803 133.03352356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -01775804 133.03355408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -01775805 133.03355408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -01775806 133.03358459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -01775807 133.03358459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -01775808 133.03361511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -01775809 133.03361511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -01775810 133.03364563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -01775811 133.03364563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -01775812 133.03366089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -01775813 133.03367615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -01775814 133.03370667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -01775815 133.03370667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -01775816 133.03372192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -01775817 133.03372192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -01775818 133.03375244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -01775819 133.03375244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -01775820 133.03379822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10830 -01775821 133.03379822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10830 -01775822 133.03381348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10840 -01775823 133.03381348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10840 -01775824 133.03384399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10850 -01775825 133.03385925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10850 -01775826 133.03387451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10860 -01775827 133.03387451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10860 -01775828 133.03390503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10870 -01775829 133.03390503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10870 -01779582 133.08992004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc0 -01779583 133.08992004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc0 -01779584 133.08995056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd0 -01779585 133.08996582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd0 -01779586 133.08998108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de0 -01779587 133.08998108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de0 -01779588 133.09001160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df0 -01779589 133.09001160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df0 -01779590 133.09004211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e00 -01779591 133.09004211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e00 -01779592 133.09007263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e10 -01779593 133.09007263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e10 -01779594 133.09010315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e20 -01779595 133.09010315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e20 -01779596 133.09011841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e30 -01779597 133.09011841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e30 -01779598 133.09014893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e40 -01779599 133.09014893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e40 -01779600 133.09017944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e50 -01779601 133.09017944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e50 -01779602 133.09019470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e60 -01779603 133.09019470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e60 -01779604 133.09022522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e70 -01779605 133.09024048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e70 -01779606 133.09027100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e80 -01779607 133.09027100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e80 -01779608 133.09028625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -01779609 133.09028625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -01779610 133.09031677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -01779611 133.09031677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -01779612 133.09034729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -01779613 133.09034729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -01779614 133.09036255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -01779615 133.09036255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -01779616 133.09039307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -01779617 133.09039307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -01779618 133.09042358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -01779619 133.09042358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -01779620 133.09043884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -01779621 133.09045410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -01779622 133.09046936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -01779623 133.09048462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -01779624 133.09051514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -01779625 133.09051514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -01784794 133.16403198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a0 -01784795 133.16403198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a0 -01784796 133.16406250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b0 -01784797 133.16407776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b0 -01784798 133.16409302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c0 -01784799 133.16409302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c0 -01784800 133.16412354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d0 -01784801 133.16412354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d0 -01784802 133.16415405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e0 -01784803 133.16415405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e0 -01784804 133.16416931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f0 -01784805 133.16416931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f0 -01784806 133.16419983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22100 -01784807 133.16421509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22100 -01784808 133.16423035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22110 -01784809 133.16423035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22110 -01784810 133.16426086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22120 -01784811 133.16426086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22120 -01784812 133.16429138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22130 -01784813 133.16429138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22130 -01784814 133.16430664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22140 -01784815 133.16432190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22140 -01784816 133.16435242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22150 -01784817 133.16435242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22150 -01784818 133.16438293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22160 -01784819 133.16438293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22160 -01784820 133.16439819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22170 -01784821 133.16439819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22170 -01784822 133.16442871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22180 -01784823 133.16444397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22180 -01784824 133.16447449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22190 -01784825 133.16447449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22190 -01784826 133.16448975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a0 -01784827 133.16448975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a0 -01784828 133.16452026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b0 -01784829 133.16452026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b0 -01784830 133.16455078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c0 -01784831 133.16455078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c0 -01784832 133.16456604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d0 -01784833 133.16458130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d0 -01784834 133.16461182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e0 -01784835 133.16461182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e0 -01784836 133.16462708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f0 -01784837 133.16462708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f0 -01789116 133.22552490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -01789117 133.22552490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -01789118 133.22555542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -01789119 133.22555542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -01789120 133.22557068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -01789121 133.22557068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -01789122 133.22560120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -01789123 133.22560120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -01789124 133.22563171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -01789125 133.22563171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -01789126 133.22564697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -01789127 133.22564697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -01789128 133.22567749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -01789129 133.22569275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -01789130 133.22570801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -01789131 133.22570801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -01789132 133.22573853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -01789133 133.22573853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -01789134 133.22576904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -01789135 133.22576904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -01789136 133.22579956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -01789137 133.22579956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -01789138 133.22581482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -01789139 133.22581482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -01789140 133.22584534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -01789141 133.22584534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -01789142 133.22587585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -01789143 133.22587585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -01789144 133.22589111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -01789145 133.22590637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -01789146 133.22592163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a0 -01789147 133.22593689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a0 -01789148 133.22595215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b0 -01789149 133.22595215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b0 -01789150 133.22598267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c0 -01789151 133.22598267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c0 -01789152 133.22601318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d0 -01789153 133.22601318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d0 -01789154 133.22602844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e0 -01789155 133.22602844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e0 -01789156 133.22605896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f0 -01789157 133.22605896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f0 -01789158 133.22608948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a900 -01789159 133.22608948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a900 -01793298 133.28462219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -01793299 133.28462219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -01793300 133.28465271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -01793301 133.28465271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -01793302 133.28466797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -01793303 133.28468323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -01793304 133.28471375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -01793305 133.28471375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -01793306 133.28472900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -01793307 133.28472900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -01793308 133.28477478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -01793309 133.28477478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -01793310 133.28480530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -01793311 133.28480530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -01793312 133.28482056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -01793313 133.28482056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -01793314 133.28485107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae0 -01793315 133.28485107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae0 -01793316 133.28488159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af0 -01793317 133.28489685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af0 -01793318 133.28491211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b00 -01793319 133.28491211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b00 -01793320 133.28494263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b10 -01793321 133.28494263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b10 -01793322 133.28497314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b20 -01793323 133.28497314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b20 -01793324 133.28498840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b30 -01793325 133.28500366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b30 -01793326 133.28503418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -01793327 133.28503418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -01793328 133.28504944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -01793329 133.28504944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -01793330 133.28507996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -01793331 133.28507996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -01793332 133.28511047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -01793333 133.28512573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -01793334 133.28514099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -01793335 133.28514099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -01793336 133.28517151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -01793337 133.28517151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -01793338 133.28520203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -01793339 133.28520203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -01793340 133.28521729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -01793341 133.28523254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -01806838 133.47734070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -01806839 133.47735596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -01806840 133.47737122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -01806841 133.47737122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -01806842 133.47740173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -01806843 133.47740173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -01806844 133.47743225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -01806845 133.47743225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -01806846 133.47744751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -01806847 133.47744751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -01806848 133.47747803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -01806849 133.47747803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -01806850 133.47750854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -01806851 133.47750854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -01806852 133.47752380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -01806853 133.47752380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -01806854 133.47755432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -01806855 133.47756958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -01806856 133.47758484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -01806857 133.47760010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -01806858 133.47761536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -01806859 133.47761536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -01806860 133.47764587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -01806861 133.47764587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -01806862 133.47767639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -01806863 133.47767639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -01806864 133.47769165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d250 -01806865 133.47769165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d250 -01806866 133.47772217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d260 -01806867 133.47772217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d260 -01806868 133.47775269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d270 -01806869 133.47775269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d270 -01806870 133.47776794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d280 -01806871 133.47778320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d280 -01806872 133.47779846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d290 -01806873 133.47781372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d290 -01806874 133.47784424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a0 -01806875 133.47784424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a0 -01806876 133.47785950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b0 -01806877 133.47785950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b0 -01806878 133.47789001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c0 -01806879 133.47789001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c0 -01806880 133.47792053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d0 -01806881 133.47792053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d0 -01809780 134.44171143 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01809781 134.45887756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809782 134.45889282 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809783 134.65542603 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809784 134.65548706 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809785 134.65550232 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809786 134.65551758 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01809787 134.65565491 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809788 134.65565491 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809789 134.65570068 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809790 134.65573120 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809791 136.46029663 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01809792 136.48146057 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809793 136.48147583 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809794 137.16195679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809795 137.16200256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809796 137.16201782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809797 137.16203308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01809798 137.16217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809799 137.16217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809800 137.16223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809801 137.16224670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809802 137.89950562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01809803 137.89952087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01809804 137.89955139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01809805 137.89956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01809806 137.89961243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01809807 137.89962769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01809808 137.89964294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01809809 137.89964294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01809810 137.89967346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01809811 137.89968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01809812 137.89971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01809813 137.89971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01809814 137.89973450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01809815 137.89973450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01809816 137.89976501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01809817 137.89976501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01809818 137.89979553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01809819 137.89979553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01809820 137.89981079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01809821 137.89981079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01809822 137.89984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01809823 137.89985657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01809824 137.89987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01809825 137.89987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01809826 137.89990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01809827 137.89990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01809828 137.89993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01809829 137.89993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01809830 137.89994812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01809831 137.89996338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01809832 137.89999390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01809833 137.89999390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01809834 137.90002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01809835 137.90002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01809836 137.90003967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01809837 137.90003967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01809838 137.90007019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01809839 137.90007019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01809840 137.90010071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01809841 137.90011597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01809842 137.90013123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01809843 137.90013123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01809844 137.90016174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01809845 137.90016174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01809846 137.90019226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01809847 137.90019226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01809848 137.90020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01809849 137.90020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01809850 137.90025330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01809851 137.90025330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01809852 137.90026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01809853 137.90026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01809854 137.90029907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01809855 137.90029907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01809856 137.90032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01809857 137.90032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01809858 137.90034485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01809859 137.90034485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01809860 137.90037537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01809861 137.90037537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01809862 137.90040588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01809863 137.90040588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01809864 137.90043640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01809865 137.90043640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01809866 137.90045166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01809867 137.90046692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01809868 137.90049744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01809869 137.90049744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01809870 137.90051270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01809871 137.90051270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01809872 137.90054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01809873 137.90054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01809874 137.90057373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01809875 137.90057373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01809876 137.90058899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01809877 137.90058899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01809878 137.90061951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01809879 137.90061951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01809880 137.90065002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01809881 137.90065002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01809882 137.90066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01809883 137.90066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01809884 137.90069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01809885 137.90071106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01809886 137.90072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01809887 137.90074158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01809888 137.90075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01809889 137.90075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01809890 137.90078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01809891 137.90078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01809892 137.90081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01809893 137.90081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01809894 137.90083313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01809895 137.90083313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01809896 137.90086365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01809897 137.90086365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01809898 137.90089417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01809899 137.90089417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01809900 137.90090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01809901 137.90090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01809902 137.90093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01809903 137.90095520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01809904 137.90097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01809905 137.90098572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01809906 137.90100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01809907 137.90100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01809908 137.90103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01809909 137.90103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01809910 137.90106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01809911 137.90106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01809912 137.90107727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01809913 137.90107727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01809914 137.90110779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01809915 137.90110779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01809916 137.90113831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01809917 137.90113831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01809918 137.90115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01809919 137.90115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01809920 137.90118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01809921 137.90118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01809922 137.90121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01809923 137.90121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01809924 137.90122986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01809925 137.90124512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01809926 137.90129089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01809927 137.90129089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01809928 137.90130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01809929 137.90130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01809930 137.90133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01809931 137.90133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01809932 137.90136719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01809933 137.90136719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01809934 137.90138245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01809935 137.90138245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01809936 137.90141296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01809937 137.90142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01809938 137.90144348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01809939 137.90145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01809940 137.90147400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01809941 137.90147400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01809942 137.90150452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01809943 137.90150452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01809944 137.90153503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01809945 137.90153503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01809946 137.90155029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01809947 137.90155029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01809948 137.90158081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01809949 137.90158081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01809950 137.90161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01809951 137.90161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01809952 137.90162659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01809953 137.90162659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01809954 137.90165710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01809955 137.90165710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01809956 137.90168762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01809957 137.90168762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01809958 137.90170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01809959 137.90171814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01809960 137.90173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01809961 137.90174866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01809962 137.90177917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01809963 137.90177917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01809964 137.90179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01809965 137.90179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01809966 137.90182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01809967 137.90182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01809968 137.90185547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01809969 137.90185547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01809970 137.90187073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01809971 137.90187073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01809972 137.90190125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01809973 137.90191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01809974 137.90193176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01809975 137.90193176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01809976 137.90196228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01809977 137.90196228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01809978 137.90199280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01809979 137.90199280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01809980 137.90202332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01809981 137.90202332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01809982 137.90203857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01809983 137.90205383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01809984 137.90208435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01809985 137.90208435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01809986 137.90209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01809987 137.90209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01809988 137.90213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01809989 137.90213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01809990 137.90216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01809991 137.90216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01809992 137.90217590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01809993 137.90217590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01809994 137.90220642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01809995 137.90220642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01809996 137.90223694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01809997 137.90225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01809998 137.90225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01809999 137.90226746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01810000 137.90229797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01810001 137.90229797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01810002 137.90232849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01810003 137.90232849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01810004 137.90234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01810005 137.90234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01810006 137.90237427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01810007 137.90237427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01810008 137.90240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01810009 137.90240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01810010 137.90242004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01810011 137.90242004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01810012 137.90245056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01810013 137.90245056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01810014 137.90248108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01810015 137.90248108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01810016 137.90249634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01810017 137.90251160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01810018 137.90254211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01810019 137.90254211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01810020 137.90257263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01810021 137.90257263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01810022 137.90258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01810023 137.90258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01810024 137.90261841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01810025 137.90263367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01810026 137.90264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01810027 137.90264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01810028 137.90267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01810029 137.90267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01810030 137.90270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01810031 137.90270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01810032 137.90272522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01810033 137.90272522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01810034 137.90275574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01810035 137.90275574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01810036 137.90278625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01810037 137.90278625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01810038 137.90281677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01810039 137.90281677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01810040 137.90283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01810041 137.90283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01810042 137.90286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01810043 137.90286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01810044 137.90289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01810045 137.90289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01810046 137.90290833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01810047 137.90292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01810048 137.90295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01810049 137.90295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01810050 137.90296936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01810051 137.90296936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01810052 137.90299988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01810053 137.90299988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01810054 137.90303040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01810055 137.90303040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01810056 137.90304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01810057 137.90304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01810058 137.90307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01810059 137.90307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01810060 137.90310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01810061 137.90312195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01810062 137.90313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01810063 137.90313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01810064 137.90316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01810065 137.90316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01810066 137.90319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01810067 137.90319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01810068 137.90321350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01810069 137.90322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01810070 137.90324402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01810071 137.90325928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01810072 137.90328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01810073 137.90328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01810074 137.90330505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01810075 137.90330505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01810076 137.90333557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01810077 137.90333557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01810078 137.90336609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01810079 137.90336609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01810080 137.90338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01810081 137.90338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01810082 137.90341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01810083 137.90342712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01810084 137.90344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01810085 137.90344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01810086 137.90347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01810087 137.90347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01810088 137.90350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01810089 137.90350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01810090 137.90353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01810091 137.90353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01810092 137.90354919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01810093 137.90356445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01810094 137.90359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01810095 137.90359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01810096 137.90361023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01810097 137.90361023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01810098 137.90364075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01810099 137.90364075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01810100 137.90367126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01810101 137.90367126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01810102 137.90368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01810103 137.90368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01810104 137.90371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01810105 137.90373230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01810106 137.90376282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01810107 137.90376282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01810108 137.90377808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01810109 137.90377808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01810110 137.90380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01810111 137.90380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01810112 137.90383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01810113 137.90383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01810114 137.90385437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01810115 137.90386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01810116 137.90390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01810117 137.90390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01810118 137.90393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01810119 137.90393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01810120 137.90394592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01810121 137.90394592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01810122 137.90397644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01810123 137.90397644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01810124 137.90400696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01810125 137.90400696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01810126 137.90402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01810127 137.90402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01810128 137.90405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01810129 137.90406799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01810130 137.90408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01810131 137.90408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01810132 137.90411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01810133 137.90411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01810134 137.90414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01810135 137.90414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01810136 137.90415955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01810137 137.90415955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01810138 137.90419006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01810139 137.90419006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01810140 137.90422058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01810141 137.90422058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01810142 137.90423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01810143 137.90423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01810144 137.90426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01810145 137.90426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01810146 137.90429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01810147 137.90429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01810148 137.90432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01810149 137.90432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01810150 137.90434265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01810151 137.90435791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01810152 137.90438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01810153 137.90438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01810154 137.90440369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01810155 137.90440369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01810156 137.90443420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01810157 137.90443420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01810158 137.90446472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01810159 137.90447998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01810160 137.90449524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01810161 137.90449524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01810162 137.90452576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01810163 137.90452576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01810164 137.90455627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01810165 137.90455627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01810166 137.90457153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01810167 137.90458679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01810168 137.90460205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01810169 137.90461731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01810170 137.90463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01810171 137.90463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01810172 137.90466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01810173 137.90466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01810174 137.90469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01810175 137.90469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01810176 137.90472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01810177 137.90472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01810178 137.90473938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01810179 137.90473938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01810180 137.90476990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01810181 137.90476990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01810182 137.90480042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01810183 137.90480042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01810184 137.90481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01810185 137.90481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01810186 137.90484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01810187 137.90484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01810188 137.90487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01810189 137.90487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01810190 137.90489197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01810191 137.90490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01810192 137.90493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01810193 137.90493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01810194 137.90495300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01810195 137.90495300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01810196 137.90498352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01810197 137.90498352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01810198 137.90501404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01810199 137.90501404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01810200 137.90505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01810201 137.90505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01810202 137.90509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01810203 137.90509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01810204 137.90512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01810205 137.90512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01810206 137.90513611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01810207 137.90515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01810208 137.90516663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01810209 137.90518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01810210 137.90519714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01810211 137.90519714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01810212 137.90522766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01810213 137.90522766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01810214 137.90525818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01810215 137.90525818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01810216 137.90527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01810217 137.90527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01810218 137.90530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01810219 137.90530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01810220 137.90533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01810221 137.90533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01810222 137.90534973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01810223 137.90534973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01810224 137.90538025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01810225 137.90538025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01810226 137.90541077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01810227 137.90542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01810228 137.90542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01810229 137.90544128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01810230 137.90547180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01810231 137.90547180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01810232 137.90550232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01810233 137.90550232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01810234 137.90551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01810235 137.90551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01810236 137.90554810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01810237 137.90554810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01810238 137.90557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01810239 137.90557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01810240 137.90559387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01810241 137.90560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01810242 137.90563965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01810243 137.90563965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01810244 137.90567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01810245 137.90567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01810246 137.90568542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01810247 137.90568542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01810248 137.90571594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01810249 137.90571594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01810250 137.90574646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01810251 137.90574646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01810252 137.90576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01810253 137.90577698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01810254 137.90580750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01810255 137.90580750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01810256 137.90583801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01810257 137.90583801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01810258 137.90585327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01810259 137.90585327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01810260 137.90588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01810261 137.90588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01810262 137.90591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01810263 137.90591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01810264 137.90592957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01810265 137.90592957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01810266 137.90596008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01810267 137.90596008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01810268 137.90599060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01810269 137.90599060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01810270 137.90600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01810271 137.90600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01810272 137.90603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01810273 137.90605164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01810274 137.90606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01810275 137.90606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01810276 137.90609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01810277 137.90609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01810278 137.90612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01810279 137.90612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01810280 137.90614319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01810281 137.90614319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01810282 137.90617371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01810283 137.90617371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01810284 137.90620422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01810285 137.90620422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01810286 137.90623474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01810287 137.90623474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01810288 137.90625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01810289 137.90625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01810290 137.90628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01810291 137.90628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01810292 137.90631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01810293 137.90631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01810294 137.90634155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01810295 137.90634155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01810296 137.90637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01810297 137.90637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01810298 137.90638733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01810299 137.90638733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01810300 137.90641785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01810301 137.90641785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01810302 137.90644836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01810303 137.90644836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01810304 137.90646362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01810305 137.90646362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01810306 137.90649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01810307 137.90649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01810308 137.90652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01810309 137.90652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01810310 137.90653992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01810311 137.90653992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01810312 137.90657043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01810313 137.90658569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01810314 137.90660095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01810315 137.90661621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01810316 137.90663147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01810317 137.90663147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01810318 137.90666199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01810319 137.90666199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01810320 137.90669250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01810321 137.90669250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01810322 137.90670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01810323 137.90670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01810324 137.90673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01810325 137.90673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01810326 137.90676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01810327 137.90676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01810328 137.90678406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01810329 137.90678406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01810330 137.90681458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01810331 137.90681458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01810332 137.90684509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01810333 137.90686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01810334 137.90686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01810335 137.90687561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01810336 137.90690613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01810337 137.90690613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01810338 137.90693665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01810339 137.90693665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01810340 137.90695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01810341 137.90695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01810342 137.90698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01810343 137.90698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01810344 137.90701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01810345 137.90701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01810346 137.90702820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01810347 137.90702820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01810348 137.90705872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01810349 137.90705872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01810350 137.90708923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01810351 137.90708923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01810352 137.90710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01810353 137.90711975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01810354 137.90713501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01810355 137.90715027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01810356 137.90718079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01810357 137.90718079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01810358 137.90719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01810359 137.90719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01810360 137.90722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01810361 137.90722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01810362 137.90725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01810363 137.90725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01810364 137.90727234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01810365 137.90727234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01810366 137.90730286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01810367 137.90730286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01810368 137.90733337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01810369 137.90733337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01810370 137.90734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01810371 137.90734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01810372 137.90737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01810373 137.90737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01810374 137.90740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01810375 137.90742493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01810376 137.90742493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01810377 137.90744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01810378 137.90747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01810379 137.90747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01810380 137.90750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01810381 137.90750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01810382 137.90751648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01810383 137.90751648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01810384 137.90754700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01810385 137.90756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01810386 137.90757751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01810387 137.90757751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01810388 137.90760803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01810389 137.90760803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01810390 137.90763855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01810391 137.90763855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01810392 137.90765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01810393 137.90765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01810394 137.90768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01810395 137.90768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01810396 137.90771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01810397 137.90773010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01810398 137.90773010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01810399 137.90774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01810400 137.90777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01810401 137.90777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01810402 137.90780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01810403 137.90780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01810404 137.90782166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01810405 137.90782166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01810406 137.90785217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01810407 137.90785217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01810408 137.90788269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01810409 137.90788269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01810410 137.90789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01810411 137.90789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01810412 137.90792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01810413 137.90792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01810414 137.90795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01810415 137.90795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01810416 137.90797424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01810417 137.90797424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01810418 137.90800476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01810419 137.90802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01810420 137.90805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01810421 137.90805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01810422 137.90806580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01810423 137.90806580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01810424 137.90809631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01810425 137.90809631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01810426 137.90812683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01810427 137.90812683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01810428 137.90814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01810429 137.90814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01810430 137.90817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01810431 137.90817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01810432 137.90820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01810433 137.90820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01810434 137.90821838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01810435 137.90821838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01810436 137.90824890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01810437 137.90824890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01810438 137.90827942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01810439 137.90829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01810440 137.90829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01810441 137.90830994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01810442 137.90834045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01810443 137.90834045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01810444 137.90837097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01810445 137.90837097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01810446 137.90838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01810447 137.90838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01810448 137.90841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01810449 137.90841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01810450 137.90844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01810451 137.90844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01810452 137.90846252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01810453 137.90846252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01810454 137.90849304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01810455 137.90849304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01810456 137.90852356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01810457 137.90852356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01810458 137.90853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01810459 137.90855408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01810460 137.90861511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01810461 137.90861511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01810462 137.90864563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01810463 137.90864563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01810464 137.90867615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01810465 137.90867615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01810466 137.90869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01810467 137.90869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01810468 137.90872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01810469 137.90873718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01810470 137.90876770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01810471 137.90876770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01810472 137.90878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01810473 137.90878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01810474 137.90881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01810475 137.90881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01810476 137.90884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01810477 137.90884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01810478 137.90885925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01810479 137.90887451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01810480 137.90890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01810481 137.90890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01810482 137.90893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01810483 137.90893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01810484 137.90895081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01810485 137.90895081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01810486 137.90898132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01810487 137.90898132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01810488 137.90901184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01810489 137.90901184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01810490 137.90902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01810491 137.90902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01810492 137.90905762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01810493 137.90905762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01810494 137.90908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01810495 137.90908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01810496 137.90910339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01810497 137.90911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01810498 137.90913391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01810499 137.90914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01810500 137.90916443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01810501 137.90916443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01810502 137.90919495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01810503 137.90919495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01810504 137.90922546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01810505 137.90922546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01810506 137.90924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01810507 137.90924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01810508 137.90927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01810509 137.90927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01810510 137.90930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01810511 137.90930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01810512 137.90933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01810513 137.90933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01810514 137.90936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01810515 137.90936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01810516 137.90939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01810517 137.90939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01810518 137.90940857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01810519 137.90940857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01810520 137.90943909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01810521 137.90943909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01810522 137.90951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01810523 137.90951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01810524 137.90954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01810525 137.90954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01810526 137.90956116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01810527 137.90957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01810528 137.90959167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01810529 137.90960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01810530 137.90963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01810531 137.90963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01810532 137.90965271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01810533 137.90965271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01810534 137.90968323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01810535 137.90968323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01810536 137.90971375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01810537 137.90971375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01810538 137.90972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01810539 137.90972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01810540 137.90975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01810541 137.90975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01810542 137.90979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01810543 137.90979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01810544 137.90980530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01810545 137.90980530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01810546 137.90983582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01810547 137.90983582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01810548 137.90986633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01810549 137.90988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01810550 137.90988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01810551 137.90989685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01810552 137.90992737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01810553 137.90992737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01810554 137.90995789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01810555 137.90995789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01810556 137.90997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01810557 137.90997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01810558 137.91000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01810559 137.91001892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01810560 137.91003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01810561 137.91003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01810562 137.91006470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01810563 137.91006470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01810564 137.91009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01810565 137.91009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01810566 137.91012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01810567 137.91012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01810568 137.91014099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01810569 137.91014099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01810570 137.91017151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01810571 137.91018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01810572 137.91020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01810573 137.91020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01810574 137.91023254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01810575 137.91023254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01810576 137.91026306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01810577 137.91026306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01810578 137.91027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01810579 137.91027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01810580 137.91030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01810581 137.91030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01810582 137.91033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01810583 137.91033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01810584 137.91035461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01810585 137.91036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01810586 137.91040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01810587 137.91040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01810588 137.91043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01810589 137.91043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01810590 137.91044617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01810591 137.91044617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01810592 137.91047668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01810593 137.91047668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01810594 137.91050720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01810595 137.91052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01810596 137.91053772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01810597 137.91053772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01810598 137.91056824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01810599 137.91056824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01810600 137.91059875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01810601 137.91059875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01810602 137.91061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01810603 137.91061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01810604 137.91065979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01810605 137.91065979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01810606 137.91067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01810607 137.91067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01810608 137.91070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01810609 137.91070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01810610 137.91073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01810611 137.91073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01810612 137.91075134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01810613 137.91075134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01810614 137.91078186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01810615 137.91078186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01810616 137.91081238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01810617 137.91081238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01810618 137.91082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01810619 137.91082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01810620 137.91085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01810621 137.91087341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01810622 137.91088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01810623 137.91090393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01810624 137.91091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01810625 137.91091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01810626 137.91094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01810627 137.91094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01810628 137.91098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01810629 137.91098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01810630 137.91099548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01810631 137.91099548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01810632 137.91102600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01810633 137.91102600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01810634 137.91105652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01810635 137.91105652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01810636 137.91107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01810637 137.91107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01810638 137.91110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01810639 137.91110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01810640 137.91113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01810641 137.91114807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01810642 137.91116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01810643 137.91116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01810644 137.91119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01810645 137.91119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01810646 137.91122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01810647 137.91122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01810648 137.91123962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01810649 137.91123962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01810650 137.91128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01810651 137.91128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01810652 137.91131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01810653 137.91131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01810654 137.91133118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01810655 137.91133118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01810656 137.91136169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01810657 137.91136169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01810658 137.91139221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01810659 137.91139221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01810660 137.91140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01810661 137.91140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01810662 137.91143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01810663 137.91143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01810664 137.91146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01810665 137.91146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01810666 137.91148376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01810667 137.91149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01810668 137.91152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01810669 137.91152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01810670 137.91154480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01810671 137.91154480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01810672 137.91157532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01810673 137.91157532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01810674 137.91160583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01810675 137.91160583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01810676 137.91163635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01810677 137.91163635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01810678 137.91165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01810679 137.91165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01810680 137.91168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01810681 137.91168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01810682 137.91171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01810683 137.91171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01810684 137.91172791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01810685 137.91174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01810686 137.91175842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01810687 137.91177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01810688 137.91178894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01810689 137.91178894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01810690 137.91181946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01810691 137.91181946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01810692 137.91184998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01810693 137.91184998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01810694 137.91186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01810695 137.91186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01810696 137.91189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01810697 137.91191101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01810698 137.91194153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01810699 137.91194153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01810700 137.91195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01810701 137.91195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01810702 137.91198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01810703 137.91198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01810704 137.91201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01810705 137.91201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01810706 137.91204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01810707 137.91204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01810708 137.91207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01810709 137.91207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01810710 137.91210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01810711 137.91210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01810712 137.91212463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01810713 137.91212463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01810714 137.91215515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01810715 137.91215515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01810716 137.91218567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01810717 137.91218567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01810718 137.91220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01810719 137.91221619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01810720 137.91224670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01810721 137.91224670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01810722 137.91226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01810723 137.91226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01810724 137.91229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01810725 137.91229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01810726 137.91232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01810727 137.91232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01810728 137.91233826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01810729 137.91235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01810730 137.91238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01810731 137.91238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01810732 137.91241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01810733 137.91241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01810734 137.91242981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01810735 137.91242981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01810736 137.91246033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01810737 137.91247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01810738 137.91249084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01810739 137.91250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01810740 137.91252136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01810741 137.91252136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01810742 137.91255188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01810743 137.91255188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01810744 137.91258240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01810745 137.91258240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01810746 137.91259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01810747 137.91259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01810748 137.91262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01810749 137.91262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01810750 137.91265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01810751 137.91265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01810752 137.91267395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01810753 137.91267395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01810754 137.91270447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01810755 137.91270447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01810756 137.91273499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01810757 137.91273499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01810758 137.91275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01810759 137.91276550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01810760 137.91278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01810761 137.91279602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01810762 137.91282654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01810763 137.91282654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01810764 137.91284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01810765 137.91284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01810766 137.91287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01810767 137.91287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01810768 137.91290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01810769 137.91290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01810770 137.91291809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01810771 137.91291809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01810772 137.91294861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01810773 137.91294861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01810774 137.91297913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01810775 137.91297913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01810776 137.91299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01810777 137.91299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01810778 137.91302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01810779 137.91304016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01810780 137.91305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01810781 137.91305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01810782 137.91308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01810783 137.91308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01810784 137.91311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01810785 137.91311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01810786 137.91313171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01810787 137.91313171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01810788 137.91316223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01810789 137.91316223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01810790 137.91319275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01810791 137.91319275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01810792 137.91322327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01810793 137.91322327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01810794 137.91323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01810795 137.91323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01810796 137.91326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01810797 137.91326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01810798 137.91329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01810799 137.91329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01810800 137.91331482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01810801 137.91333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01810802 137.91336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01810803 137.91336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01810804 137.91337585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01810805 137.91337585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01810806 137.91340637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01810807 137.91340637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01810808 137.91343689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01810809 137.91343689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01810810 137.91345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01810811 137.91345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01810812 137.91348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01810813 137.91348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01810814 137.91351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01810815 137.91351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01810816 137.91352844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01810817 137.91352844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01810818 137.91355896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01810819 137.91357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01810820 137.91360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01810821 137.91360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01810822 137.91362000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01810823 137.91362000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01810824 137.91365051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01810825 137.91365051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01810826 137.91368103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01810827 137.91368103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01810828 137.91369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01810829 137.91369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01810830 137.91372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01810831 137.91374207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01810832 137.91377258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01810833 137.91377258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01810834 137.91378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01810835 137.91378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01810836 137.91381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01810837 137.91381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01810838 137.91384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01810839 137.91384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01810840 137.91386414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01810841 137.91387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01810842 137.91389465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01810843 137.91390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01810844 137.91392517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01810845 137.91392517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01810846 137.91395569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01810847 137.91395569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01810848 137.91398621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01810849 137.91398621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01810850 137.91401672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01810851 137.91401672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01810852 137.91403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01810853 137.91403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01810854 137.91406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01810855 137.91406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01810856 137.91409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01810857 137.91409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01810858 137.91410828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01810859 137.91410828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01810860 137.91413879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01810861 137.91413879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01810862 137.91416931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01810863 137.91416931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01810864 137.91418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01810865 137.91419983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01810866 137.91423035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01810867 137.91423035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01810868 137.91424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01810869 137.91424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01810870 137.91427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01810871 137.91427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01810872 137.91430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01810873 137.91430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01810874 137.91433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01810875 137.91433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01810876 137.91435242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01810877 137.91436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01810878 137.91439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01810879 137.91439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01810880 137.91441345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01810881 137.91441345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01810882 137.91444397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01810883 137.91444397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01810884 137.91447449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01810885 137.91447449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01810886 137.91448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01810887 137.91450500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01810888 137.91453552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01810889 137.91453552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01810890 137.91456604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01810891 137.91456604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01810892 137.91458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01810893 137.91458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01810894 137.91461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01810895 137.91461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01810896 137.91464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01810897 137.91464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01810898 137.91465759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01810899 137.91465759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01810900 137.91468811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01810901 137.91468811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01810902 137.91471863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01810903 137.91473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01810904 137.91474915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01810905 137.91474915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01810906 137.91477966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01810907 137.91477966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01810908 137.91481018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01810909 137.91481018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01810910 137.91482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01810911 137.91482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01810912 137.91485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01810913 137.91485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01810914 137.91488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01810915 137.91488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01810916 137.91490173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01810917 137.91490173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01810918 137.91493225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01810919 137.91493225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01810920 137.91496277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01810921 137.91496277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01810922 137.91497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01810923 137.91499329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01810924 137.91502380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01810925 137.91502380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01810926 137.91503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01810927 137.91503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01810928 137.91506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01810929 137.91506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01810930 137.91510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01810931 137.91510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01810932 137.91513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01810933 137.91513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01810934 137.91514587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01810935 137.91514587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01810936 137.91517639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01810937 137.91517639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01810938 137.91520691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01810939 137.91520691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01810940 137.91522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01810941 137.91522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01810942 137.91525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01810943 137.91526794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01810944 137.91528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01810945 137.91528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01810946 137.91531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01810947 137.91531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01810948 137.91534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01810949 137.91534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01810950 137.91535950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01810951 137.91535950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01810952 137.91539001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01810953 137.91539001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01810954 137.91542053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01810955 137.91542053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01810956 137.91543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01810957 137.91543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01810958 137.91546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01810959 137.91546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01810960 137.91549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01810961 137.91549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01810962 137.91552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01810963 137.91552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01810964 137.91554260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01810965 137.91555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01810966 137.91558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01810967 137.91558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01810968 137.91560364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01810969 137.91560364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01810970 137.91563416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01810971 137.91563416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01810972 137.91566467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01810973 137.91567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01810974 137.91569519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01810975 137.91569519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01810976 137.91572571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01810977 137.91572571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01810978 137.91575623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01810979 137.91575623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01810980 137.91577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01810981 137.91577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01810982 137.91580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01810983 137.91580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01810984 137.91583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01810985 137.91583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01810986 137.91584778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01810987 137.91584778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01810988 137.91587830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01810989 137.91589355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01810990 137.91592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01810991 137.91592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01810992 137.91593933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01810993 137.91593933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01810994 137.91596985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01810995 137.91596985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01810996 137.91600037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01810997 137.91600037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01810998 137.91601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01810999 137.91601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01811000 137.91604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01811001 137.91604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01811002 137.91607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01811003 137.91607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01811004 137.91609192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01811005 137.91609192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01811006 137.91618347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01811007 137.91618347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01811008 137.91621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01811009 137.91621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01811010 137.91624451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01811011 137.91624451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01811012 137.91627502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01811013 137.91627502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01811014 137.91630554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01811015 137.91630554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01811016 137.91632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01811017 137.91632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01811018 137.91635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01811019 137.91636658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01811020 137.91638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01811021 137.91639709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01811022 137.91641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01811023 137.91641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01811024 137.91644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01811025 137.91644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01811026 137.91647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01811027 137.91647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01811028 137.91648865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01811029 137.91648865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01811030 137.91651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01811031 137.91651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01811032 137.91654968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01811033 137.91654968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01811034 137.91656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01811035 137.91656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01811036 137.91659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01811037 137.91659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01811038 137.91662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01811039 137.91662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01811040 137.91665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01811041 137.91665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01811042 137.91668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01811043 137.91668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01811044 137.91671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01811045 137.91671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01811046 137.91673279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01811047 137.91673279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01811048 137.91676331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01811049 137.91676331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01811050 137.91679382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01811051 137.91679382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01811052 137.91680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01811053 137.91680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01811054 137.91683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01811055 137.91683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01811056 137.91687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01811057 137.91687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01811058 137.91690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01811059 137.91690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01811060 137.91693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01811061 137.91693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01811062 137.91694641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01811063 137.91694641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01811064 137.91697693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01811065 137.91699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01811066 137.91700745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01811067 137.91702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01811068 137.91703796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01811069 137.91703796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01811070 137.91706848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01811071 137.91706848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01811072 137.91709900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01811073 137.91709900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01811074 137.91711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01811075 137.91711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01811076 137.91714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01811077 137.91714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01811078 137.91717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01811079 137.91717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01811080 137.91719055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01811081 137.91719055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01811082 137.91722107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01811083 137.91723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01811084 137.91725159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01811085 137.91726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01811086 137.91728210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01811087 137.91728210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01811088 137.91731262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01811089 137.91731262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01811090 137.91734314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01811091 137.91734314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01811092 137.91735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01811093 137.91735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01811094 137.91738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01811095 137.91738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01811096 137.91741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01811097 137.91743469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01811098 137.91744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01811099 137.91744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01811100 137.91748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01811101 137.91748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01811102 137.91751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01811103 137.91751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01811104 137.91752625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01811105 137.91752625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01811106 137.91755676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01811107 137.91757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01811108 137.91758728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01811109 137.91758728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01811110 137.91761780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01811111 137.91761780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01811112 137.91764832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01811113 137.91764832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01811114 137.91766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01811115 137.91766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01811116 137.91769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01811117 137.91770935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01811118 137.91773987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01811119 137.91773987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01811120 137.91775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01811121 137.91775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01811122 137.91778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01811123 137.91778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01811124 137.91781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01811125 137.91783142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01811126 137.91784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01811127 137.91784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01811128 137.91787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01811129 137.91787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01811130 137.91790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01811131 137.91790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01811132 137.91792297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01811133 137.91792297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01811134 137.91795349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01811135 137.91795349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01811136 137.91798401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01811137 137.91798401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01811138 137.91799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01811139 137.91799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01811140 137.91802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01811141 137.91802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01811142 137.91806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01811143 137.91806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01811144 137.91809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01811145 137.91809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01811146 137.91812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01811147 137.91812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01811148 137.91813660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01811149 137.91813660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01811150 137.91816711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01811151 137.91818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01811152 137.91821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01811153 137.91821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01811154 137.91822815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01811155 137.91822815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01811156 137.91825867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01811157 137.91825867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01811158 137.91828918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01811159 137.91828918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01811160 137.91830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01811161 137.91831970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01811162 137.91835022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01811163 137.91835022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01811164 137.91838074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01811165 137.91838074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01811166 137.91839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01811167 137.91839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01811168 137.91842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01811169 137.91844177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01811170 137.91845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01811171 137.91845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01811172 137.91848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01811173 137.91848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01811174 137.91851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01811175 137.91851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01811176 137.91853333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01811177 137.91853333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01811178 137.91856384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01811179 137.91856384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01811180 137.91859436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01811181 137.91859436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01811182 137.91862488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01811183 137.91862488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01811184 137.91864014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01811185 137.91864014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01811186 137.91867065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01811187 137.91867065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01811188 137.91870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01811189 137.91870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01811190 137.91871643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01811191 137.91873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01811192 137.91876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01811193 137.91876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01811194 137.91877747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01811195 137.91877747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01811196 137.91880798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01811197 137.91880798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01811198 137.91883850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01811199 137.91883850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01811200 137.91885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01811201 137.91885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01811202 137.91888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01811203 137.91888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01811204 137.91891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01811205 137.91891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01811206 137.91893005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01811207 137.91893005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01811208 137.91896057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01811209 137.91897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01811210 137.91899109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01811211 137.91900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01811212 137.91902161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01811213 137.91902161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01811214 137.91905212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01811215 137.91905212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01811216 137.91908264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01811217 137.91908264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01811218 137.91909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01811219 137.91909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01811220 137.91912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01811221 137.91912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01811222 137.91915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01811223 137.91915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01811224 137.91917419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01811225 137.91917419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01811226 137.91920471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01811227 137.91920471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01811228 137.91923523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01811229 137.91925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01811230 137.91925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01811231 137.91926575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01811232 137.91929626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01811233 137.91929626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01811234 137.91932678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01811235 137.91932678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01811236 137.91934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01811237 137.91934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01811238 137.91937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01811239 137.91937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01811240 137.91940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01811241 137.91941833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01811242 137.91943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01811243 137.91943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01811244 137.91946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01811245 137.91946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01811246 137.91949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01811247 137.91949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01811248 137.91950989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01811249 137.91950989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01811250 137.91954041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01811251 137.91955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01811252 137.91957092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01811253 137.91957092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01811254 137.91960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01811255 137.91960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01811256 137.91963196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01811257 137.91963196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01811258 137.91964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01811259 137.91964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01811260 137.91967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01811261 137.91967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01811262 137.91970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01811263 137.91970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01811264 137.91973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01811265 137.91973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01811266 137.91975403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01811267 137.91975403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01811268 137.91978455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01811269 137.91978455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01811270 137.91981506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01811271 137.91981506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01811272 137.91983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01811273 137.91984558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01811274 137.91987610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01811275 137.91987610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01811276 137.91989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01811277 137.91989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01811278 137.91992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01811279 137.91992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01811280 137.91995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01811281 137.91995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01811282 137.91996765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01811283 137.91996765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01811284 137.91999817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01811285 137.92001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01811286 137.92004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01811287 137.92004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01811288 137.92005920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01811289 137.92005920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01811290 137.92008972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01811291 137.92010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01811292 137.92012024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01811293 137.92013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01811294 137.92015076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01811295 137.92015076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01811296 137.92018127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01811297 137.92018127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01811298 137.92021179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01811299 137.92021179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01811300 137.92022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01811301 137.92022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01811302 137.92025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01811303 137.92025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01811304 137.92028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01811305 137.92028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01811306 137.92030334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01811307 137.92030334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01811308 137.92033386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01811309 137.92033386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01811310 137.92036438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01811311 137.92036438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01811312 137.92037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01811313 137.92039490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01811314 137.92041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01811315 137.92042542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01811316 137.92044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01811317 137.92044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01811318 137.92047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01811319 137.92047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01811320 137.92050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01811321 137.92050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01811322 137.92053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01811323 137.92053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01811324 137.92054749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01811325 137.92054749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01811326 137.92057800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01811327 137.92057800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01811328 137.92060852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01811329 137.92060852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01811330 137.92062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01811331 137.92062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01811332 137.92065430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01811333 137.92066956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01811334 137.92068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01811335 137.92068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01811336 137.92071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01811337 137.92071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01811338 137.92074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01811339 137.92074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01811340 137.92076111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01811341 137.92076111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01811342 137.92079163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01811343 137.92079163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01811344 137.92082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01811345 137.92082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01811346 137.92083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01811347 137.92083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01811348 137.92086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01811349 137.92086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01811350 137.92089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01811351 137.92091370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01811352 137.92092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01811353 137.92092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01811354 137.92095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01811355 137.92095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01811356 137.92098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01811357 137.92098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01811358 137.92100525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01811359 137.92100525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01811360 137.92103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01811361 137.92103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01811362 137.92106628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01811363 137.92106628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01811364 137.92108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01811365 137.92108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01811366 137.92117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01811367 137.92117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01811368 137.92120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01811369 137.92120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01811370 137.92123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01811371 137.92123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01811372 137.92124939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01811373 137.92124939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01811374 137.92127991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01811375 137.92129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01811376 137.92132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01811377 137.92132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01811378 137.92134094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01811379 137.92134094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01811380 137.92137146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01811381 137.92137146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01811382 137.92140198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01811383 137.92140198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01811384 137.92141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01811385 137.92141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01811386 137.92144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01811387 137.92146301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01811388 137.92147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01811389 137.92147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01811390 137.92150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01811391 137.92150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01811392 137.92153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01811393 137.92153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01811394 137.92155457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01811395 137.92155457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01811396 137.92158508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01811397 137.92158508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01811398 137.92161560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01811399 137.92161560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01811400 137.92163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01811401 137.92163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01811402 137.92166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01811403 137.92166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01811404 137.92169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01811405 137.92169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01811406 137.92172241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01811407 137.92172241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01811408 137.92173767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01811409 137.92175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01811410 137.92178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01811411 137.92178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01811412 137.92179871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01811413 137.92179871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01811414 137.92182922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01811415 137.92182922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01811416 137.92185974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01811417 137.92185974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01811418 137.92187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01811419 137.92189026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01811420 137.92192078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01811421 137.92192078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01811422 137.92195129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01811423 137.92195129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01811424 137.92196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01811425 137.92196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01811426 137.92199707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01811427 137.92199707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01811428 137.92202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01811429 137.92202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01811430 137.92205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01811431 137.92205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01811432 137.92208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01811433 137.92208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01811434 137.92211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01811435 137.92211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01811436 137.92213440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01811437 137.92213440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01811438 137.92216492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01811439 137.92216492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01811440 137.92219543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01811441 137.92219543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01811442 137.92221069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01811443 137.92222595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01811444 137.92224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01811445 137.92225647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01811446 137.92227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01811447 137.92227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01811448 137.92230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01811449 137.92230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01811450 137.92233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01811451 137.92233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01811452 137.92234802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01811453 137.92234802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01811454 137.92237854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01811455 137.92237854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01811456 137.92240906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01811457 137.92242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01811458 137.92243958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01811459 137.92243958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01811460 137.92247009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01811461 137.92247009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01811462 137.92250061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01811463 137.92250061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01811464 137.92251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01811465 137.92253113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01811466 137.92256165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01811467 137.92256165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01811468 137.92259216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01811469 137.92259216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01811470 137.92260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01811471 137.92260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01811472 137.92263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01811473 137.92263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01811474 137.92266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01811475 137.92266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01811476 137.92268372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01811477 137.92268372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01811478 137.92271423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01811479 137.92271423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01811480 137.92274475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01811481 137.92274475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01811482 137.92276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01811483 137.92277527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01811484 137.92280579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01811485 137.92280579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01811486 137.92283630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01811487 137.92283630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01811488 137.92285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01811489 137.92285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01811490 137.92288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01811491 137.92288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01811492 137.92291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01811493 137.92291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01811494 137.92292786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01811495 137.92292786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01811496 137.92295837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01811497 137.92295837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01811498 137.92298889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01811499 137.92298889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01811500 137.92300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01811501 137.92301941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01811502 137.92303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01811503 137.92304993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01811504 137.92306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01811505 137.92306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01811506 137.92309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01811507 137.92309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01811508 137.92312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01811509 137.92312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01811510 137.92314148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01811511 137.92314148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01811512 137.92318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01811513 137.92318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01811514 137.92321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01811515 137.92321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01811516 137.92323303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01811517 137.92323303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01811518 137.92326355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01811519 137.92326355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01811520 137.92329407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01811521 137.92329407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01811522 137.92330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01811523 137.92330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01811524 137.92333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01811525 137.92333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01811526 137.92337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01811527 137.92338562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01811528 137.92340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01811529 137.92340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01811530 137.92343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01811531 137.92343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01811532 137.92346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01811533 137.92346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01811534 137.92347717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01811535 137.92347717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01811536 137.92350769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01811537 137.92350769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01811538 137.92353821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01811539 137.92353821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01811540 137.92355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01811541 137.92355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01811542 137.92358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01811543 137.92358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01811544 137.92361450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01811545 137.92361450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01811546 137.92362976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01811547 137.92364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01811548 137.92366028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01811549 137.92367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01811550 137.92370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01811551 137.92370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01811552 137.92372131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01811553 137.92372131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01811554 137.92375183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01811555 137.92375183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01811556 137.92378235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01811557 137.92378235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01811558 137.92381287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01811559 137.92381287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01811560 137.92384338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01811561 137.92384338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01811562 137.92385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01811563 137.92385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01811564 137.92388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01811565 137.92388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01811566 137.92391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01811567 137.92391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01811568 137.92393494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01811569 137.92395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01811570 137.92396545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01811571 137.92398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01811572 137.92401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01811573 137.92401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01811574 137.92402649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01811575 137.92402649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01811576 137.92405701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01811577 137.92405701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01811578 137.92408752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01811579 137.92408752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01811580 137.92410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01811581 137.92410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01811582 137.92413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01811583 137.92413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01811584 137.92416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01811585 137.92416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01811586 137.92417908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01811587 137.92417908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01811588 137.92420959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01811589 137.92420959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01811590 137.92424011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01811591 137.92425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01811592 137.92427063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01811593 137.92427063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01811594 137.92430115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01811595 137.92430115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01811596 137.92433167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01811597 137.92433167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01811598 137.92434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01811599 137.92436218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01811600 137.92439270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01811601 137.92439270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01811602 137.92442322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01811603 137.92442322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01811604 137.92443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01811605 137.92443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01811606 137.92446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01811607 137.92446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01811608 137.92449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01811609 137.92449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01811610 137.92453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01811611 137.92453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01811612 137.92456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01811613 137.92456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01811614 137.92457581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01811615 137.92457581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01811616 137.92460632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01811617 137.92462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01811618 137.92465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01811619 137.92465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01811620 137.92466736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01811621 137.92466736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01811622 137.92469788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01811623 137.92469788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01811624 137.92472839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01811625 137.92472839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01811626 137.92475891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01811627 137.92475891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01811628 137.92478943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01811629 137.92478943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01811630 137.92481995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01811631 137.92481995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01811632 137.92483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01811633 137.92483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01811634 137.92486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01811635 137.92486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01811636 137.92489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01811637 137.92489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01811638 137.92492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01811639 137.92492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01811640 137.92495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01811641 137.92495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01811642 137.92497253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01811643 137.92497253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01811644 137.92500305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01811645 137.92500305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01811646 137.92503357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01811647 137.92504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01811648 137.92506409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01811649 137.92506409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01811650 137.92509460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01811651 137.92509460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01811652 137.92512512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01811653 137.92512512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01811654 137.92514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01811655 137.92514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01811656 137.92517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01811657 137.92518616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01811658 137.92520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01811659 137.92521667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01811660 137.92523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01811661 137.92523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01811662 137.92526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01811663 137.92526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01811664 137.92529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01811665 137.92529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01811666 137.92530823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01811667 137.92530823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01811668 137.92533875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01811669 137.92533875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01811670 137.92536926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01811671 137.92536926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01811672 137.92538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01811673 137.92538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01811674 137.92541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01811675 137.92541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01811676 137.92544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01811677 137.92544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01811678 137.92546082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01811679 137.92547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01811680 137.92549133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01811681 137.92550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01811682 137.92553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01811683 137.92553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01811684 137.92555237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01811685 137.92555237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01811686 137.92558289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01811687 137.92558289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01811688 137.92561340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01811689 137.92561340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01811690 137.92562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01811691 137.92564392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01811692 137.92567444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01811693 137.92567444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01815965 137.98648071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -01815966 137.98648071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -01815967 137.98651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -01815968 137.98651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -01815969 137.98654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -01815970 137.98654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -01815971 137.98657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -01815972 137.98657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -01815973 137.98660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -01815974 137.98660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -01815975 137.98661804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -01815976 137.98661804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -01815977 137.98664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -01815978 137.98664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -01815979 137.98667908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -01815980 137.98669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -01815981 137.98670959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -01815982 137.98670959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -01815983 137.98674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -01815984 137.98674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -01815985 137.98677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -01815986 137.98677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -01815987 137.98678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -01815988 137.98678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -01815989 137.98681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -01815990 137.98683167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -01815991 137.98684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -01815992 137.98684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -01815993 137.98687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -01815994 137.98687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -01815995 137.98690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -01815996 137.98690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -01815997 137.98693848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -01815998 137.98693848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -01815999 137.98695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -01816000 137.98695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -01816001 137.98698425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -01816002 137.98699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -01816003 137.98701477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -01816004 137.98701477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -01816005 137.98704529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -01816006 137.98704529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -01816007 137.98707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -01816008 137.98707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -01820439 138.05021667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c98 -01820440 138.05021667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c98 -01820441 138.05024719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ca8 -01820442 138.05024719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ca8 -01820443 138.05026245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cb8 -01820444 138.05026245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cb8 -01820445 138.05029297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cc8 -01820446 138.05030823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cc8 -01820447 138.05032349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cd8 -01820448 138.05032349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cd8 -01820449 138.05035400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ce8 -01820450 138.05035400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ce8 -01820451 138.05038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf8 -01820452 138.05038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf8 -01820453 138.05039978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d08 -01820454 138.05039978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d08 -01820455 138.05043030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d18 -01820456 138.05044556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d18 -01820457 138.05047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d28 -01820458 138.05047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d28 -01820459 138.05049133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d38 -01820460 138.05049133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d38 -01820461 138.05052185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d48 -01820462 138.05052185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d48 -01820463 138.05055237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d58 -01820464 138.05055237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d58 -01820465 138.05056763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d68 -01820466 138.05058289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d68 -01820467 138.05061340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d78 -01820468 138.05061340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d78 -01820469 138.05070496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d88 -01820470 138.05070496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d88 -01820471 138.05072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d98 -01820472 138.05073547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d98 -01820473 138.05076599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da8 -01820474 138.05076599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da8 -01820475 138.05079651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db8 -01820476 138.05079651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db8 -01820477 138.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc8 -01820478 138.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc8 -01820479 138.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd8 -01820480 138.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd8 -01820481 138.05087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de8 -01820482 138.05087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de8 -01825023 138.11578369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebd8 -01825024 138.11578369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebd8 -01825025 138.11581421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebe8 -01825026 138.11582947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebe8 -01825027 138.11585999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebf8 -01825028 138.11585999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebf8 -01825029 138.11587524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec08 -01825030 138.11587524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec08 -01825031 138.11590576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec18 -01825032 138.11590576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec18 -01825033 138.11593628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec28 -01825034 138.11593628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec28 -01825035 138.11595154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec38 -01825036 138.11596680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec38 -01825037 138.11599731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec48 -01825038 138.11599731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec48 -01825039 138.11601257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec58 -01825040 138.11601257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec58 -01825041 138.11604309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec68 -01825042 138.11604309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec68 -01825043 138.11607361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec78 -01825044 138.11607361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec78 -01825045 138.11608887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec88 -01825046 138.11610413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec88 -01825047 138.11613464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -01825048 138.11613464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -01825049 138.11616516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca8 -01825050 138.11616516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca8 -01825051 138.11618042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb8 -01825052 138.11618042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb8 -01825053 138.11621094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc8 -01825054 138.11621094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc8 -01825055 138.11624146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd8 -01825056 138.11625671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd8 -01825057 138.11627197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece8 -01825058 138.11627197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece8 -01825059 138.11630249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf8 -01825060 138.11630249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf8 -01825061 138.11633301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed08 -01825062 138.11633301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed08 -01825063 138.11634827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed18 -01825064 138.11634827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed18 -01825065 138.11637878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed28 -01825066 138.11639404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed28 -01829397 138.17832947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -01829398 138.17832947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -01829399 138.17835999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -01829400 138.17835999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -01829401 138.17837524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -01829402 138.17837524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -01829403 138.17840576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -01829404 138.17840576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -01829405 138.17843628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c8 -01829406 138.17845154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c8 -01829407 138.17846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d8 -01829408 138.17846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d8 -01829409 138.17851257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -01829410 138.17852783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -01829411 138.17854309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -01829412 138.17854309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -01829413 138.17857361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -01829414 138.17857361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -01829415 138.17860413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -01829416 138.17860413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -01829417 138.17861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -01829418 138.17861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -01829419 138.17864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -01829420 138.17866516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -01829421 138.17868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -01829422 138.17868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -01829423 138.17875671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -01829424 138.17875671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -01829425 138.17877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -01829426 138.17878723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -01829427 138.17881775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -01829428 138.17881775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -01829429 138.17884827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -01829430 138.17884827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -01829431 138.17886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -01829432 138.17886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -01829433 138.17889404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -01829434 138.17889404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -01829435 138.17892456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -01829436 138.17892456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -01829437 138.17893982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -01829438 138.17895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -01829439 138.17898560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -01829440 138.17898560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -01833607 138.23780823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -01833608 138.23780823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -01833609 138.23783875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -01833610 138.23783875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -01833611 138.23786926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -01833612 138.23786926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -01833613 138.23789978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -01833614 138.23789978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -01833615 138.23793030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -01833616 138.23793030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -01833617 138.23794556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -01833618 138.23794556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -01833619 138.23797607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -01833620 138.23797607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -01833621 138.23800659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -01833622 138.23800659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -01833623 138.23802185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -01833624 138.23803711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -01833625 138.23806763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -01833626 138.23806763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -01833627 138.23809814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -01833628 138.23809814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -01833629 138.23811340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -01833630 138.23811340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -01833631 138.23814392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -01833632 138.23814392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -01833633 138.23817444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -01833634 138.23818970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -01833635 138.23820496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -01833636 138.23820496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -01833637 138.23823547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f908 -01833638 138.23823547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f908 -01833639 138.23826599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f918 -01833640 138.23826599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f918 -01833641 138.23828125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f928 -01833642 138.23828125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f928 -01833643 138.23831177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f938 -01833644 138.23832703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f938 -01833645 138.23834229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f948 -01833646 138.23834229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f948 -01833647 138.23837280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f958 -01833648 138.23837280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f958 -01833649 138.23840332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f968 -01833650 138.23840332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f968 -01851327 138.48609924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -01851328 138.48609924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -01851329 138.48611450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -01851330 138.48611450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -01851331 138.48614502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e8 -01851332 138.48616028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e8 -01851333 138.48617554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f8 -01851334 138.48617554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f8 -01851335 138.48620605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52208 -01851336 138.48620605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52208 -01851337 138.48623657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52218 -01851338 138.48623657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52218 -01851339 138.48625183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -01851340 138.48625183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -01851341 138.48628235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -01851342 138.48628235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -01851343 138.48631287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -01851344 138.48632813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -01851345 138.48634338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -01851346 138.48634338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -01851347 138.48637390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52268 -01851348 138.48637390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52268 -01851349 138.48640442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52278 -01851350 138.48640442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52278 -01851351 138.48641968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52288 -01851352 138.48641968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52288 -01851353 138.48645020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52298 -01851354 138.48646545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52298 -01851355 138.48649597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a8 -01851356 138.48649597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a8 -01851357 138.48651123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b8 -01851358 138.48651123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b8 -01851359 138.48654175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c8 -01851360 138.48654175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c8 -01851361 138.48657227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522d8 -01851362 138.48657227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522d8 -01851363 138.48658752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522e8 -01851364 138.48660278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522e8 -01851365 138.48663330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522f8 -01851366 138.48663330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x522f8 -01851367 138.48664856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52308 -01851368 138.48664856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52308 -01851369 138.48667908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52318 -01851370 138.48667908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52318 -01851695 138.64492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01851696 138.64495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01851697 138.64497375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851698 139.66859436 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851699 139.66865540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851700 139.66868591 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851701 139.66870117 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01851702 139.66882324 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851703 139.66882324 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851704 139.66888428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851705 139.66891479 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851706 140.50534058 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01851707 140.52735901 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851708 140.52735901 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851709 141.83007813 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7AD1BE0 -01851710 141.83131409 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7AD1BE0 -01851711 142.17535400 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851712 142.17539978 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851713 142.17541504 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851714 142.17543030 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01851715 142.17555237 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851716 142.17555237 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851717 142.17561340 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851718 142.17564392 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851719 142.17671204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01851720 142.17672729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01851721 142.19157410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851722 142.52914429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01851723 142.55101013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851724 142.55102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851725 143.49145508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01851726 143.49147034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01851727 143.49150085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01851728 143.49150085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01851729 143.49151611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01851730 143.49151611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01851731 143.49154663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01851732 143.49154663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01851733 143.49157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01851734 143.49157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01851735 143.49159241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01851736 143.49159241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01851737 143.49162292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01851738 143.49163818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01851739 143.49165344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01851740 143.49165344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01851741 143.49168396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01851742 143.49168396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01851743 143.49171448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01851744 143.49171448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01851745 143.49174500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01851746 143.49174500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01851747 143.49176025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01851748 143.49176025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01851749 143.49179077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01851750 143.49179077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01851751 143.49182129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01851752 143.49182129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01851753 143.49185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01851754 143.49185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01851755 143.49188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01851756 143.49188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01851757 143.49189758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01851758 143.49189758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01851759 143.49192810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01851760 143.49194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01851761 143.49195862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01851762 143.49197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01851763 143.49198914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01851764 143.49198914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01851765 143.49201965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01851766 143.49201965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01851767 143.49205017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01851768 143.49205017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01851769 143.49206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01851770 143.49208069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01851771 143.49211121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01851772 143.49211121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01851773 143.49214172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01851774 143.49214172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01851775 143.49215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01851776 143.49215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01851777 143.49218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01851778 143.49218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01851779 143.49221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01851780 143.49221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01851781 143.49224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01851782 143.49224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01851783 143.49227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01851784 143.49227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01851785 143.49229431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01851786 143.49229431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01851787 143.49232483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01851788 143.49232483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01851789 143.49235535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01851790 143.49237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01851791 143.49238586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01851792 143.49238586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01851793 143.49241638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01851794 143.49241638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01851795 143.49244690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01851796 143.49244690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01851797 143.49246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01851798 143.49246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01851799 143.49249268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01851800 143.49250793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01851801 143.49253845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01851802 143.49253845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01851803 143.49255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01851804 143.49255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01851805 143.49258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01851806 143.49258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01851807 143.49261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01851808 143.49261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01851809 143.49263000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01851810 143.49264526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01851811 143.49267578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01851812 143.49267578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01851813 143.49269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01851814 143.49269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01851815 143.49272156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01851816 143.49272156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01851817 143.49275208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01851818 143.49275208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01851819 143.49276733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01851820 143.49278259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01851821 143.49281311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01851822 143.49281311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01851823 143.49284363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01851824 143.49284363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01851825 143.49285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01851826 143.49285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01851827 143.49288940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01851828 143.49288940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01851829 143.49291992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01851830 143.49293518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01851831 143.49295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01851832 143.49295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01851833 143.49298096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01851834 143.49298096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01851835 143.49301147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01851836 143.49301147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01851837 143.49302673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01851838 143.49302673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01851839 143.49305725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01851840 143.49305725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01851841 143.49308777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01851842 143.49308777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01851843 143.49310303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01851844 143.49311829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01851845 143.49313354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01851846 143.49314880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01851847 143.49316406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01851848 143.49316406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01851849 143.49322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01851850 143.49322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01851851 143.49325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01851852 143.49325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01851853 143.49327087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01851854 143.49327087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01851855 143.49330139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01851856 143.49331665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01851857 143.49333191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01851858 143.49333191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01851859 143.49336243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01851860 143.49336243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01851861 143.49339294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01851862 143.49339294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01851863 143.49340820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01851864 143.49340820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01851865 143.49345398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01851866 143.49345398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01851867 143.49348450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01851868 143.49348450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01851869 143.49349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01851870 143.49349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01851871 143.49353027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01851872 143.49353027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01851873 143.49356079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01851874 143.49356079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01851875 143.49357605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01851876 143.49357605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01851877 143.49360657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01851878 143.49360657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01851879 143.49363708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01851880 143.49365234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01851881 143.49365234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01851882 143.49366760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01851883 143.49369812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01851884 143.49369812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01851885 143.49372864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01851886 143.49372864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01851887 143.49374390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01851888 143.49374390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01851889 143.49377441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01851890 143.49378967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01851891 143.49380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01851892 143.49380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01851893 143.49383545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01851894 143.49383545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01851895 143.49386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01851896 143.49386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01851897 143.49388123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01851898 143.49388123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01851899 143.49391174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01851900 143.49392700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01851901 143.49395752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01851902 143.49395752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01851903 143.49397278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01851904 143.49397278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01851905 143.49400330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01851906 143.49400330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01851907 143.49403381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01851908 143.49403381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01851909 143.49404907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01851910 143.49406433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01851911 143.49409485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01851912 143.49409485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01851913 143.49412537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01851914 143.49412537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01851915 143.49414063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01851916 143.49414063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01851917 143.49417114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01851918 143.49417114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01851919 143.49420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01851920 143.49420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01851921 143.49423218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01851922 143.49423218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01851923 143.49426270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01851924 143.49426270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01851925 143.49427795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01851926 143.49427795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01851927 143.49430847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01851928 143.49430847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01851929 143.49433899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01851930 143.49433899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01851931 143.49435425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01851932 143.49436951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01851933 143.49440002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01851934 143.49440002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01851935 143.49443054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01851936 143.49443054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01851937 143.49444580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01851938 143.49444580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01851939 143.49447632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01851940 143.49447632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01851941 143.49450684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01851942 143.49452209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01851943 143.49453735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01851944 143.49453735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01851945 143.49456787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01851946 143.49456787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01851947 143.49459839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01851948 143.49459839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01851949 143.49461365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01851950 143.49462891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01851951 143.49468994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01851952 143.49468994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01851953 143.49472046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01851954 143.49472046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01851955 143.49475098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01851956 143.49475098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01851957 143.49476624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01851958 143.49478149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01851959 143.49481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01851960 143.49481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01851961 143.49484253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01851962 143.49484253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01851963 143.49485779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01851964 143.49485779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01851965 143.49488831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01851966 143.49488831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01851967 143.49491882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01851968 143.49491882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01851969 143.49494934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01851970 143.49494934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01851971 143.49497986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01851972 143.49497986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01851973 143.49499512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01851974 143.49499512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01851975 143.49502563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01851976 143.49502563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01851977 143.49505615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01851978 143.49505615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01851979 143.49507141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01851980 143.49508667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01851981 143.49510193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01851982 143.49511719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01851983 143.49514771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01851984 143.49514771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01851985 143.49516296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01851986 143.49516296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01851987 143.49519348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01851988 143.49520874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01851989 143.49523926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01851990 143.49523926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01851991 143.49525452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01851992 143.49525452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01851993 143.49528503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01851994 143.49528503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01851995 143.49531555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01851996 143.49531555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01851997 143.49534607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01851998 143.49534607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01851999 143.49537659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01852000 143.49537659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01852001 143.49539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01852002 143.49539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01852003 143.49542236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01852004 143.49542236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01852005 143.49545288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01852006 143.49545288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01852007 143.49546814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01852008 143.49546814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01852009 143.49549866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01852010 143.49549866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01852011 143.49552917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01852012 143.49552917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01852013 143.49554443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01852014 143.49554443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01852015 143.49557495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01852016 143.49559021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01852017 143.49560547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01852018 143.49562073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01852019 143.49563599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01852020 143.49563599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01852021 143.49566650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01852022 143.49566650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01852023 143.49569702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01852024 143.49569702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01852025 143.49571228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01852026 143.49571228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01852027 143.49574280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01852028 143.49574280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01852029 143.49577332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01852030 143.49578857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01852031 143.49580383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01852032 143.49580383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01852033 143.49583435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01852034 143.49583435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01852035 143.49586487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01852036 143.49586487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01852037 143.49588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01852038 143.49588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01852039 143.49591064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01852040 143.49592590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01852041 143.49595642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01852042 143.49595642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01852043 143.49597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01852044 143.49597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01852045 143.49600220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01852046 143.49600220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01852047 143.49603271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01852048 143.49603271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01852049 143.49604797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01852050 143.49604797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01852051 143.49607849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01852052 143.49607849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01852053 143.49610901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01852054 143.49610901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01852055 143.49612427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01852056 143.49612427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01852057 143.49615479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01852058 143.49617004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01852059 143.49618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01852060 143.49618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01852061 143.49621582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01852062 143.49621582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01852063 143.49624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01852064 143.49624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01852065 143.49626160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01852066 143.49626160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01852067 143.49629211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01852068 143.49629211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01852069 143.49632263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01852070 143.49632263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01852071 143.49635315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01852072 143.49635315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01852073 143.49638367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01852074 143.49638367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01852075 143.49641418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01852076 143.49641418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01852077 143.49642944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01852078 143.49642944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01852079 143.49645996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01852080 143.49645996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01852081 143.49649048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01852082 143.49650574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01852083 143.49650574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01852084 143.49652100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01852085 143.49655151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01852086 143.49655151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01852087 143.49658203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01852088 143.49658203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01852089 143.49659729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01852090 143.49659729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01852091 143.49662781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01852092 143.49662781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01852093 143.49665833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01852094 143.49665833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01852095 143.49667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01852096 143.49667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01852097 143.49670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01852098 143.49670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01852099 143.49673462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01852100 143.49673462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01852101 143.49674988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01852102 143.49674988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01852103 143.49678040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01852104 143.49679565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01852105 143.49681091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01852106 143.49682617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01852107 143.49684143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01852108 143.49684143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01852109 143.49687195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01852110 143.49687195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01852111 143.49690247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01852112 143.49690247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01852113 143.49691772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01852114 143.49691772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01852115 143.49694824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01852116 143.49694824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01852117 143.49697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01852118 143.49697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01852119 143.49699402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01852120 143.49699402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01852121 143.49702454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01852122 143.49702454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01852123 143.49705505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01852124 143.49705505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01852125 143.49707031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01852126 143.49708557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01852127 143.49711609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01852128 143.49711609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01852129 143.49714661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01852130 143.49714661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01852131 143.49716187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01852132 143.49716187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01852133 143.49719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01852134 143.49719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01852135 143.49722290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01852136 143.49722290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01852137 143.49723816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01852138 143.49723816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01852139 143.49726868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01852140 143.49726868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01852141 143.49729919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01852142 143.49729919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01852143 143.49731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01852144 143.49731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01852145 143.49734497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01852146 143.49736023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01852147 143.49737549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01852148 143.49737549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01852149 143.49740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01852150 143.49740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01852151 143.49743652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01852152 143.49743652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01852153 143.49745178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01852154 143.49745178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01852155 143.49748230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01852156 143.49748230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01852157 143.49751282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01852158 143.49751282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01852159 143.49754333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01852160 143.49754333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01852161 143.49755859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01852162 143.49757385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01852163 143.49760437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01852164 143.49760437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01852165 143.49761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01852166 143.49761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01852167 143.49765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01852168 143.49765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01852169 143.49768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01852170 143.49768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01852171 143.49769592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01852172 143.49771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01852173 143.49774170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01852174 143.49774170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01852175 143.49777222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01852176 143.49777222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01852177 143.49778748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01852178 143.49778748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01852179 143.49787903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01852180 143.49787903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01852181 143.49790955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01852182 143.49790955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01852183 143.49794006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01852184 143.49794006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01852185 143.49797058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01852186 143.49797058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01852187 143.49800110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01852188 143.49800110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01852189 143.49801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01852190 143.49801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01852191 143.49804688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01852192 143.49804688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01852193 143.49807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01852194 143.49809265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01852195 143.49810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01852196 143.49810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01852197 143.49813843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01852198 143.49813843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01852199 143.49816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01852200 143.49816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01852201 143.49818420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01852202 143.49818420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01852203 143.49821472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01852204 143.49822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01852205 143.49824524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01852206 143.49824524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01852207 143.49827576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01852208 143.49827576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01852209 143.49830627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01852210 143.49830627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01852211 143.49833679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01852212 143.49833679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01852213 143.49835205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01852214 143.49836731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01852215 143.49839783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01852216 143.49839783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01852217 143.49841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01852218 143.49841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01852219 143.49844360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01852220 143.49844360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01852221 143.49847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01852222 143.49847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01852223 143.49848938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01852224 143.49848938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01852225 143.49851990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01852226 143.49853516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01852227 143.49856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01852228 143.49856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01852229 143.49858093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01852230 143.49858093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01852231 143.49861145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01852232 143.49861145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01852233 143.49864197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01852234 143.49864197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01852235 143.49865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01852236 143.49867249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01852237 143.49870300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01852238 143.49870300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01852239 143.49873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01852240 143.49873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01852241 143.49874878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01852242 143.49874878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01852243 143.49877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01852244 143.49877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01852245 143.49880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01852246 143.49880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01852247 143.49882507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01852248 143.49882507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01852249 143.49885559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01852250 143.49887085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01852251 143.49888611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01852252 143.49888611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01852253 143.49891663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01852254 143.49891663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01852255 143.49894714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01852256 143.49894714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01852257 143.49896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01852258 143.49897766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01852259 143.49900818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01852260 143.49900818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01852261 143.49903870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01852262 143.49903870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01852263 143.49905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01852264 143.49905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01852265 143.49908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01852266 143.49908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01852267 143.49911499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01852268 143.49911499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01852269 143.49913025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01852270 143.49913025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01852271 143.49916077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01852272 143.49917603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01852273 143.49919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01852274 143.49920654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01852275 143.49928284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01852276 143.49928284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01852277 143.49931335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01852278 143.49931335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01852279 143.49934387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01852280 143.49934387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01852281 143.49935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01852282 143.49935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01852283 143.49938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01852284 143.49938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01852285 143.49942017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01852286 143.49943542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01852287 143.49945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01852288 143.49945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01852289 143.49948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01852290 143.49948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01852291 143.49951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01852292 143.49951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01852293 143.49952698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01852294 143.49954224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01852295 143.49957275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01852296 143.49957275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01852297 143.49960327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01852298 143.49960327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01852299 143.49961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01852300 143.49961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01852301 143.49964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01852302 143.49964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01852303 143.49967957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01852304 143.49967957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01852305 143.49971008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01852306 143.49971008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01852307 143.49974060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01852308 143.49974060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01852309 143.49975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01852310 143.49975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01852311 143.49978638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01852312 143.49978638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01852313 143.49981689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01852314 143.49981689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01852315 143.49984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01852316 143.49984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01852317 143.49987793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01852318 143.49987793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01852319 143.49990845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01852320 143.49990845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01852321 143.49992371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01852322 143.49992371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01852323 143.49995422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01852324 143.49995422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01852325 143.49998474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01852326 143.50000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01852327 143.50001526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01852328 143.50001526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01852329 143.50004578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01852330 143.50004578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01852331 143.50007629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01852332 143.50007629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01852333 143.50009155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01852334 143.50009155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01852335 143.50012207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01852336 143.50013733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01852337 143.50015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01852338 143.50015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01852339 143.50018311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01852340 143.50018311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01852341 143.50021362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01852342 143.50021362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01852343 143.50024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01852344 143.50024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01852345 143.50025940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01852346 143.50027466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01852347 143.50030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01852348 143.50030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01852349 143.50032043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01852350 143.50032043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01852351 143.50035095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01852352 143.50035095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01852353 143.50038147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01852354 143.50038147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01852355 143.50039673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01852356 143.50041199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01852357 143.50044250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01852358 143.50044250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01852359 143.50047302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01852360 143.50047302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01852361 143.50048828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01852362 143.50048828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01852363 143.50051880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01852364 143.50051880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01852365 143.50054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01852366 143.50054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01852367 143.50057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01852368 143.50057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01852369 143.50061035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01852370 143.50061035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01852371 143.50064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01852372 143.50064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01852373 143.50065613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01852374 143.50065613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01852375 143.50068665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01852376 143.50068665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01852377 143.50071716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01852378 143.50071716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01852379 143.50074768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01852380 143.50074768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01852381 143.50077820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01852382 143.50077820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01852383 143.50079346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01852384 143.50079346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01852385 143.50082397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01852386 143.50082397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01852387 143.50086975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01852388 143.50086975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01852389 143.50088501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01852390 143.50088501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01852391 143.50091553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01852392 143.50091553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01852393 143.50094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01852394 143.50094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01852395 143.50096130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01852396 143.50097656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01852397 143.50100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01852398 143.50100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01852399 143.50103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01852400 143.50103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01852401 143.50105286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01852402 143.50105286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01852403 143.50108337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01852404 143.50108337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01852405 143.50111389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01852406 143.50111389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01852407 143.50112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01852408 143.50114441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01852409 143.50117493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01852410 143.50117493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01852411 143.50119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01852412 143.50119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01852413 143.50122070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01852414 143.50122070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01852415 143.50125122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01852416 143.50125122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01852417 143.50126648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01852418 143.50128174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01852419 143.50131226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01852420 143.50131226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01852421 143.50134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01852422 143.50134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01852423 143.50135803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01852424 143.50135803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01852425 143.50138855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01852426 143.50138855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01852427 143.50141907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01852428 143.50143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01852429 143.50144958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01852430 143.50144958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01852431 143.50148010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01852432 143.50148010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01852433 143.50151062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01852434 143.50151062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01852435 143.50152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01852436 143.50154114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01852437 143.50157166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01852438 143.50157166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01852439 143.50158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01852440 143.50158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01852441 143.50161743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01852442 143.50161743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01852443 143.50164795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01852444 143.50164795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01852445 143.50166321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01852446 143.50167847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01852447 143.50170898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01852448 143.50170898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01852449 143.50173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01852450 143.50173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01852451 143.50175476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01852452 143.50175476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01852453 143.50178528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01852454 143.50178528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01852455 143.50181580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01852456 143.50181580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01852457 143.50183105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01852458 143.50184631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01852459 143.50187683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01852460 143.50187683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01852461 143.50190735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01852462 143.50190735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01852463 143.50192261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01852464 143.50192261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01852465 143.50195313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01852466 143.50195313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01852467 143.50198364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01852468 143.50198364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01852469 143.50201416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01852470 143.50201416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01852471 143.50204468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01852472 143.50204468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01852473 143.50205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01852474 143.50205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01852475 143.50209045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01852476 143.50209045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01852477 143.50212097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01852478 143.50213623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01852479 143.50215149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01852480 143.50215149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01852481 143.50218201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01852482 143.50218201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01852483 143.50221252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01852484 143.50221252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01852485 143.50222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01852486 143.50222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01852487 143.50225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01852488 143.50227356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01852489 143.50230408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01852490 143.50230408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01852491 143.50231934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01852492 143.50231934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01852493 143.50234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01852494 143.50234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01852495 143.50238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01852496 143.50238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01852497 143.50241089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01852498 143.50241089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01852499 143.50244141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01852500 143.50244141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01852501 143.50245667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01852502 143.50245667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01852503 143.50248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01852504 143.50248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01852505 143.50251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01852506 143.50251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01852507 143.50254822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01852508 143.50254822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01852509 143.50256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01852510 143.50256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01852511 143.50259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01852512 143.50259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01852513 143.50262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01852514 143.50262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01852515 143.50265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01852516 143.50265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01852517 143.50268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01852518 143.50268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01852519 143.50270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01852520 143.50270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01852521 143.50273132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01852522 143.50274658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01852523 143.50277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01852524 143.50277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01852525 143.50279236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01852526 143.50279236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01852527 143.50282288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01852528 143.50282288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01852529 143.50285339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01852530 143.50285339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01852531 143.50286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01852532 143.50286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01852533 143.50289917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01852534 143.50291443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01852535 143.50294495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01852536 143.50294495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01852537 143.50296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01852538 143.50296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01852539 143.50299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01852540 143.50299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01852541 143.50302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01852542 143.50302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01852543 143.50303650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01852544 143.50305176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01852545 143.50308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01852546 143.50308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01852547 143.50309753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01852548 143.50309753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01852549 143.50312805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01852550 143.50312805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01852551 143.50315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01852552 143.50315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01852553 143.50317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01852554 143.50317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01852555 143.50320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01852556 143.50320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01852557 143.50323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01852558 143.50323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01852559 143.50326538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01852560 143.50326538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01852561 143.50329590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01852562 143.50329590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01852563 143.50332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01852564 143.50332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01852565 143.50334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01852566 143.50334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01852567 143.50337219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01852568 143.50338745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01852569 143.50340271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01852570 143.50341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01852571 143.50343323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01852572 143.50343323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01852573 143.50346375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01852574 143.50346375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01852575 143.50349426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01852576 143.50349426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01852577 143.50350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01852578 143.50350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01852579 143.50354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01852580 143.50354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01852581 143.50357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01852582 143.50357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01852583 143.50358582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01852584 143.50360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01852585 143.50363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01852586 143.50363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01852587 143.50364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01852588 143.50364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01852589 143.50367737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01852590 143.50367737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01852591 143.50376892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01852592 143.50376892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01852593 143.50379944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01852594 143.50379944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01852595 143.50381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01852596 143.50381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01852597 143.50384521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01852598 143.50384521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01852599 143.50387573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01852600 143.50387573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01852601 143.50390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01852602 143.50390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01852603 143.50393677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01852604 143.50393677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01852605 143.50396729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01852606 143.50396729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01852607 143.50398254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01852608 143.50398254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01852609 143.50401306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01852610 143.50402832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01852611 143.50404358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01852612 143.50404358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01852613 143.50407410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01852614 143.50407410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01852615 143.50410461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01852616 143.50410461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01852617 143.50413513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01852618 143.50413513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01852619 143.50415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01852620 143.50415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01852621 143.50418091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01852622 143.50419617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01852623 143.50421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01852624 143.50421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01852625 143.50424194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01852626 143.50424194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01852627 143.50427246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01852628 143.50427246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01852629 143.50428772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01852630 143.50428772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01852631 143.50431824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01852632 143.50433350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01852633 143.50434875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01852634 143.50436401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01852635 143.50437927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01852636 143.50437927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01852637 143.50440979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01852638 143.50440979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01852639 143.50444031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01852640 143.50444031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01852641 143.50445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01852642 143.50445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01852643 143.50448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01852644 143.50448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01852645 143.50451660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01852646 143.50451660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01852647 143.50453186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01852648 143.50454712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01852649 143.50457764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01852650 143.50457764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01852651 143.50460815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01852652 143.50460815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01852653 143.50462341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01852654 143.50462341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01852655 143.50465393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01852656 143.50465393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01852657 143.50468445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01852658 143.50468445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01852659 143.50471497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01852660 143.50471497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01852661 143.50474548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01852662 143.50474548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01852663 143.50476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01852664 143.50476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01852665 143.50479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01852666 143.50479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01852667 143.50482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01852668 143.50483704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01852669 143.50485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01852670 143.50485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01852671 143.50488281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01852672 143.50488281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01852673 143.50491333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01852674 143.50491333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01852675 143.50492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01852676 143.50492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01852677 143.50495911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01852678 143.50495911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01852679 143.50498962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01852680 143.50500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01852681 143.50502014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01852682 143.50502014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01852683 143.50505066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01852684 143.50505066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01852685 143.50508118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01852686 143.50508118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01852687 143.50509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01852688 143.50509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01852689 143.50512695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01852690 143.50514221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01852691 143.50515747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01852692 143.50515747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01852693 143.50518799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01852694 143.50518799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01852695 143.50521851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01852696 143.50523376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01852697 143.50524902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01852698 143.50524902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01852699 143.50527954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01852700 143.50527954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01852701 143.50531006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01852702 143.50531006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01852703 143.50532532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01852704 143.50532532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01852705 143.50535583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01852706 143.50535583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01852707 143.50538635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01852708 143.50538635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01852709 143.50540161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01852710 143.50541687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01852711 143.50544739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01852712 143.50544739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01852713 143.50547791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01852714 143.50547791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01852715 143.50549316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01852716 143.50549316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01852717 143.50552368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01852718 143.50552368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01852719 143.50555420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01852720 143.50555420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01852721 143.50558472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01852722 143.50558472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01852723 143.50561523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01852724 143.50561523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01852725 143.50564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01852726 143.50564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01852727 143.50566101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01852728 143.50566101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01852729 143.50569153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01852730 143.50569153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01852731 143.50572205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01852732 143.50572205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01852733 143.50573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01852734 143.50573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01852735 143.50578308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01852736 143.50578308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01852737 143.50579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01852738 143.50579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01852739 143.50582886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01852740 143.50582886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01852741 143.50585938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01852742 143.50585938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01852743 143.50588989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01852744 143.50588989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01852745 143.50592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01852746 143.50592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01852747 143.50595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01852748 143.50595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01852749 143.50596619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01852750 143.50596619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01852751 143.50599670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01852752 143.50601196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01852753 143.50604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01852754 143.50604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01852755 143.50605774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01852756 143.50605774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01852757 143.50608826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01852758 143.50608826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01852759 143.50611877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01852760 143.50611877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01852761 143.50613403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01852762 143.50614929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01852763 143.50617981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01852764 143.50617981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01852765 143.50619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01852766 143.50619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01852767 143.50622559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01852768 143.50622559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01852769 143.50625610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01852770 143.50625610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01852771 143.50627136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01852772 143.50628662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01852773 143.50630188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01852774 143.50631714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01852775 143.50634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01852776 143.50634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01852777 143.50636292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01852778 143.50636292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01852779 143.50639343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01852780 143.50639343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01852781 143.50642395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01852782 143.50642395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01852783 143.50645447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01852784 143.50645447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01852785 143.50648499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01852786 143.50648499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01852787 143.50651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01852788 143.50651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01852789 143.50653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01852790 143.50653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01852791 143.50656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01852792 143.50656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01852793 143.50659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01852794 143.50659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01852795 143.50660706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01852796 143.50660706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01852797 143.50663757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01852798 143.50665283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01852799 143.50666809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01852800 143.50666809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01852801 143.50669861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01852802 143.50669861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01852803 143.50672913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01852804 143.50672913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01852805 143.50674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01852806 143.50674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01852807 143.50677490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01852808 143.50679016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01852809 143.50682068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01852810 143.50682068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01852811 143.50683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01852812 143.50683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01852813 143.50686646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01852814 143.50686646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01852815 143.50689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01852816 143.50689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01852817 143.50692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01852818 143.50692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01852819 143.50695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01852820 143.50695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01852821 143.50698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01852822 143.50698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01852823 143.50700378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01852824 143.50700378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01852825 143.50703430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01852826 143.50704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01852827 143.50706482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01852828 143.50706482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01852829 143.50709534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01852830 143.50709534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01852831 143.50712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01852832 143.50712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01852833 143.50715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01852834 143.50715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01852835 143.50717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01852836 143.50718689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01852837 143.50721741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01852838 143.50721741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01852839 143.50723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01852840 143.50723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01852841 143.50726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01852842 143.50726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01852843 143.50729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01852844 143.50729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01852845 143.50730896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01852846 143.50730896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01852847 143.50733948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01852848 143.50733948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01852849 143.50738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01852850 143.50738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01852851 143.50740051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01852852 143.50740051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01852853 143.50743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01852854 143.50743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01852855 143.50746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01852856 143.50746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01852857 143.50749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01852858 143.50749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01852859 143.50752258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01852860 143.50752258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01852861 143.50755310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01852862 143.50755310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01852863 143.50756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01852864 143.50758362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01852865 143.50761414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01852866 143.50761414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01852867 143.50762939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01852868 143.50762939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01852869 143.50765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01852870 143.50765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01852871 143.50769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01852872 143.50769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01852873 143.50770569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01852874 143.50772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01852875 143.50775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01852876 143.50775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01852877 143.50778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01852878 143.50778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01852879 143.50779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01852880 143.50779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01852881 143.50782776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01852882 143.50782776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01852883 143.50785828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01852884 143.50785828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01852885 143.50788879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01852886 143.50788879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01852887 143.50791931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01852888 143.50791931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01852889 143.50794983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01852890 143.50794983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01852891 143.50796509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01852892 143.50798035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01852893 143.50801086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01852894 143.50801086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01852895 143.50802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01852896 143.50802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01852897 143.50805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01852898 143.50805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01852899 143.50808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01852900 143.50808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01852901 143.50811768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01852902 143.50811768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01852903 143.50814819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01852904 143.50814819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01852905 143.50817871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01852906 143.50817871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01852907 143.50819397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01852908 143.50819397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01852909 143.50822449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01852910 143.50822449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01852911 143.50825500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01852912 143.50825500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01852913 143.50828552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01852914 143.50828552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01852915 143.50831604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01852916 143.50831604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01852917 143.50834656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01852918 143.50834656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01852919 143.50836182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01852920 143.50836182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01852921 143.50839233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01852922 143.50840759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01852923 143.50842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01852924 143.50842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01852925 143.50845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01852926 143.50845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01852927 143.50848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01852928 143.50848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01852929 143.50849915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01852930 143.50849915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01852931 143.50852966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01852932 143.50854492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01852933 143.50857544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01852934 143.50857544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01852935 143.50859070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01852936 143.50859070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01852937 143.50862122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01852938 143.50862122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01852939 143.50865173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01852940 143.50865173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01852941 143.50866699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01852942 143.50868225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01852943 143.50871277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01852944 143.50871277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01852945 143.50874329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01852946 143.50874329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01852947 143.50875854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01852948 143.50875854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01852949 143.50878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01852950 143.50878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01852951 143.50881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01852952 143.50881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01852953 143.50883484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01852954 143.50885010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01852955 143.50888062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01852956 143.50888062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01852957 143.50889587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01852958 143.50889587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01852959 143.50892639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01852960 143.50892639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01852961 143.50895691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01852962 143.50897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01852963 143.50898743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01852964 143.50898743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01852965 143.50901794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01852966 143.50901794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01852967 143.50904846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01852968 143.50904846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01852969 143.50906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01852970 143.50907898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01852971 143.50909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01852972 143.50910950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01852973 143.50914001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01852974 143.50914001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01852975 143.50915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01852976 143.50915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01852977 143.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01852978 143.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01852979 143.50921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01852980 143.50921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01852981 143.50923157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01852982 143.50923157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01852983 143.50926208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01852984 143.50926208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01852985 143.50929260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01852986 143.50929260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01852987 143.50930786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01852988 143.50932312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01852989 143.50935364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01852990 143.50935364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01852991 143.50936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01852992 143.50936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01852993 143.50939941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01852994 143.50939941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01852995 143.50942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01852996 143.50942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01852997 143.50946045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01852998 143.50946045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01852999 143.50949097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01853000 143.50949097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01853001 143.50952148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01853002 143.50952148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01853003 143.50953674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01853004 143.50955200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01853005 143.50958252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01853006 143.50958252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01853007 143.50961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01853008 143.50961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01853009 143.50962830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01853010 143.50962830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01853011 143.50965881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01853012 143.50965881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01853013 143.50968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01853014 143.50968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01853015 143.50970459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01853016 143.50971985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01853017 143.50975037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01853018 143.50975037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01853019 143.50976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01853020 143.50976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01853021 143.50979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01853022 143.50979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01853023 143.50982666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01853024 143.50982666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01853025 143.50985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01853026 143.50985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01853027 143.50988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01853028 143.50988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01853029 143.50991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01853030 143.50991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01853031 143.50993347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01853032 143.50993347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01853033 143.50996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01853034 143.50996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01853035 143.50999451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01853036 143.51000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01853037 143.51002502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01853038 143.51002502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01853039 143.51005554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01853040 143.51005554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01853041 143.51008606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01853042 143.51008606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01853043 143.51010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01853044 143.51010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01853045 143.51013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01853046 143.51014709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01853047 143.51016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01853048 143.51016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01853049 143.51019287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01853050 143.51019287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01853051 143.51022339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01853052 143.51022339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01853053 143.51025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01853054 143.51025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01853055 143.51028442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01853056 143.51028442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01853057 143.51031494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01853058 143.51031494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01853059 143.51033020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01853060 143.51033020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01853061 143.51036072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01853062 143.51036072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01853063 143.51039124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01853064 143.51040649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01853065 143.51042175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01853066 143.51042175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01853067 143.51045227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01853068 143.51045227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01853069 143.51048279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01853070 143.51048279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01853071 143.51049805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01853072 143.51051331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01853073 143.51054382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01853074 143.51054382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01853075 143.51055908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01853076 143.51055908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01853077 143.51058960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01853078 143.51058960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01853079 143.51062012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01853080 143.51063538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01853081 143.51065063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01853082 143.51065063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01853083 143.51068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01853084 143.51068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01853085 143.51071167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01853086 143.51071167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01853087 143.51072693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01853088 143.51072693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01853089 143.51075745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01853090 143.51075745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01853091 143.51078796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01853092 143.51080322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01853093 143.51081848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01853094 143.51081848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01853095 143.51084900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01853096 143.51084900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01853097 143.51087952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01853098 143.51087952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01853099 143.51089478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01853100 143.51089478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01853101 143.51092529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01853102 143.51094055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01853103 143.51095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01853104 143.51095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01853105 143.51098633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01853106 143.51098633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01853107 143.51101685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01853108 143.51101685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01853109 143.51104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01853110 143.51104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01853111 143.51106262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01853112 143.51107788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01853113 143.51109314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01853114 143.51110840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01853115 143.51112366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01853116 143.51112366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01853117 143.51115417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01853118 143.51115417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01853119 143.51118469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01853120 143.51118469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01853121 143.51119995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01853122 143.51121521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01853123 143.51124573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01853124 143.51124573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01853125 143.51127625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01853126 143.51127625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01853127 143.51129150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01853128 143.51129150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01853129 143.51132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01853130 143.51132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01853131 143.51135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01853132 143.51135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01853133 143.51136780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01853134 143.51138306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01853135 143.51141357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01853136 143.51141357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01853137 143.51144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01853138 143.51144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01853139 143.51145935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01853140 143.51145935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01853141 143.51148987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01853142 143.51150513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01853143 143.51152039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01853144 143.51152039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01853145 143.51155090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01853146 143.51155090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01853147 143.51158142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01853148 143.51158142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01853149 143.51159668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01853150 143.51161194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01853151 143.51162720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01853152 143.51164246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01853153 143.51167297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01853154 143.51167297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01853155 143.51168823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01853156 143.51168823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01853157 143.51171875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01853158 143.51171875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01853159 143.51174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01853160 143.51174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01853161 143.51176453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01853162 143.51177979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01853163 143.51181030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01853164 143.51181030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01853165 143.51184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01853166 143.51184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01853167 143.51191711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01853168 143.51193237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01853169 143.51196289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01853170 143.51196289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01853171 143.51199341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01853172 143.51199341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01853173 143.51200867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01853174 143.51200867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01853175 143.51203918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01853176 143.51203918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01853177 143.51206970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01853178 143.51206970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01853179 143.51210022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01853180 143.51210022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01853181 143.51213074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01853182 143.51213074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01853183 143.51214600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01853184 143.51214600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01853185 143.51217651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01853186 143.51217651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01853187 143.51220703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01853188 143.51220703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01853189 143.51223755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01853190 143.51223755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01853191 143.51225281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01853192 143.51226807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01853193 143.51229858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01853194 143.51229858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01853195 143.51231384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01853196 143.51231384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01853197 143.51234436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01853198 143.51234436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01853199 143.51237488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01853200 143.51237488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01853201 143.51239014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01853202 143.51240540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01853203 143.51243591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01853204 143.51243591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01853205 143.51246643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01853206 143.51246643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01853207 143.51248169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01853208 143.51248169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01853209 143.51251221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01853210 143.51251221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01853211 143.51254272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01853212 143.51254272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01853213 143.51255798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01853214 143.51255798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01853215 143.51258850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01853216 143.51260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01853217 143.51261902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01853218 143.51263428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01853219 143.51264954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01853220 143.51264954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01853221 143.51268005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01853222 143.51268005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01853223 143.51271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01853224 143.51271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01853225 143.51274109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01853226 143.51274109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01853227 143.51277161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01853228 143.51277161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01853229 143.51278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01853230 143.51278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01853231 143.51281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01853232 143.51281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01853233 143.51284790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01853234 143.51286316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01853235 143.51287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01853236 143.51287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01853237 143.51290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01853238 143.51290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01853239 143.51293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01853240 143.51293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01853241 143.51295471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01853242 143.51295471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01853243 143.51298523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01853244 143.51298523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01853245 143.51301575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01853246 143.51303101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01853247 143.51304626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01853248 143.51304626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01853249 143.51307678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01853250 143.51307678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01853251 143.51310730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01853252 143.51310730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01853253 143.51312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01853254 143.51312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01853255 143.51315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01853256 143.51316833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01853257 143.51318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01853258 143.51318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01853259 143.51321411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01853260 143.51321411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01853261 143.51324463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01853262 143.51324463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01853263 143.51325989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01853264 143.51325989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01853265 143.51329041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01853266 143.51329041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01853267 143.51333618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01853268 143.51333618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01853269 143.51335144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01853270 143.51335144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01853271 143.51338196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01853272 143.51338196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01853273 143.51341248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01853274 143.51341248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01853275 143.51342773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01853276 143.51344299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01853277 143.51347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01853278 143.51347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01853279 143.51350403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01853280 143.51350403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01853281 143.51351929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01853282 143.51351929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01853283 143.51354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01853284 143.51354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01853285 143.51358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01853286 143.51358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01853287 143.51361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01853288 143.51361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01853289 143.51364136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01853290 143.51364136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01853291 143.51365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01853292 143.51365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01853293 143.51368713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01853294 143.51368713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01853295 143.51373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01853296 143.51373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01853297 143.51374817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01853298 143.51374817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01853299 143.51377869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01853300 143.51377869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01853301 143.51380920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01853302 143.51380920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01853303 143.51382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01853304 143.51382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01853305 143.51385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01853306 143.51385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01853307 143.51388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01853308 143.51388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01853309 143.51391602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01853310 143.51391602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01853311 143.51394653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01853312 143.51394653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01853313 143.51397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01853314 143.51397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01853315 143.51399231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01853316 143.51399231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01853317 143.51402283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01853318 143.51403809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01853319 143.51405334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01853320 143.51405334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01853321 143.51408386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01853322 143.51408386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01853323 143.51411438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01853324 143.51411438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01853325 143.51414490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01853326 143.51414490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01853327 143.51416016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01853328 143.51417542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01853329 143.51420593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01853330 143.51420593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01853331 143.51422119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01853332 143.51422119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01853333 143.51425171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01853334 143.51425171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01853335 143.51428223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01853336 143.51428223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01853337 143.51429749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01853338 143.51431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01853339 143.51434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01853340 143.51434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01853341 143.51437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01853342 143.51437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01853343 143.51438904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01853344 143.51438904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01853345 143.51441956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01853346 143.51441956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01853347 143.51445007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01853348 143.51445007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01853349 143.51446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01853350 143.51448059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01853351 143.51451111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01853352 143.51451111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01853353 143.51454163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01853354 143.51454163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01853355 143.51455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01853356 143.51455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01853357 143.51458740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01853358 143.51460266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01853359 143.51461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01853360 143.51461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01853361 143.51464844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01853362 143.51464844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01853363 143.51467896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01853364 143.51467896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01853365 143.51469421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01853366 143.51469421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01853367 143.51472473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01853368 143.51473999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01853369 143.51477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01853370 143.51477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01853371 143.51478577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01853372 143.51478577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01853373 143.51481628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01853374 143.51481628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01853375 143.51484680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01853376 143.51484680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01853377 143.51486206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01853378 143.51486206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01853379 143.51489258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01853380 143.51490784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01853381 143.51493835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01853382 143.51493835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01853383 143.51495361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01853384 143.51495361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01853385 143.51498413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01853386 143.51498413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01853387 143.51501465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01853388 143.51501465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01853389 143.51502991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01853390 143.51504517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01853391 143.51507568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01853392 143.51507568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01853393 143.51509094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01853394 143.51509094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01853395 143.51512146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01853396 143.51512146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01853397 143.51515198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01853398 143.51515198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01853399 143.51518250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01853400 143.51518250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01853401 143.51521301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01853402 143.51521301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01853403 143.51524353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01853404 143.51524353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01853405 143.51525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01853406 143.51525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01853407 143.51528931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01853408 143.51530457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01853409 143.51538086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01853410 143.51539612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01853411 143.51541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01853412 143.51541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01853413 143.51544189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01853414 143.51544189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01853415 143.51547241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01853416 143.51547241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01853417 143.51548767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01853418 143.51548767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01853419 143.51551819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01853420 143.51553345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01853421 143.51556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01853422 143.51556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01853423 143.51557922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01853424 143.51557922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01853425 143.51560974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01853426 143.51560974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01853427 143.51564026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01853428 143.51564026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01853429 143.51565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01853430 143.51565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01853431 143.51568604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01853432 143.51570129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01853433 143.51573181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01853434 143.51573181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01853435 143.51574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01853436 143.51574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01853437 143.51577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01853438 143.51577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01853439 143.51580811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01853440 143.51580811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01853441 143.51582336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01853442 143.51583862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01853443 143.51586914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01853444 143.51586914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01853445 143.51588440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01853446 143.51588440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01853447 143.51591492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01853448 143.51591492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01853449 143.51594543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01853450 143.51594543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01853451 143.51596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01853452 143.51597595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01853453 143.51600647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01853454 143.51600647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01853455 143.51603699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01853456 143.51603699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01853457 143.51605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01853458 143.51605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01853459 143.51608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01853460 143.51609802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01853461 143.51612854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01853462 143.51612854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01853463 143.51614380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01853464 143.51614380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01853465 143.51617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01853466 143.51617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01853467 143.51620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01853468 143.51620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01853469 143.51623535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01853470 143.51623535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01853471 143.51626587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01853472 143.51626587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01853473 143.51628113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01853474 143.51628113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01853475 143.51631165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01853476 143.51631165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01853477 143.51634216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01853478 143.51634216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01853479 143.51635742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01853480 143.51637268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01853481 143.51640320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01853482 143.51640320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01853483 143.51643372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01853484 143.51643372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01853485 143.51644897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01853486 143.51644897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01853487 143.51647949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01853488 143.51647949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01853489 143.51651001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01853490 143.51652527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01853491 143.51654053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01853492 143.51654053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01853493 143.51657104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01853494 143.51657104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01853495 143.51660156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01853496 143.51660156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01853497 143.51661682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01853498 143.51661682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01853499 143.51666260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01853500 143.51666260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01853501 143.51667786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01853502 143.51667786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01853503 143.51670837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01853504 143.51670837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01853505 143.51673889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01853506 143.51673889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01853507 143.51676941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01853508 143.51676941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01853509 143.51679993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01853510 143.51679993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01853511 143.51683044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01853512 143.51683044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01853513 143.51684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01853514 143.51684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01853515 143.51687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01853516 143.51687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01853517 143.51690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01853518 143.51690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01853519 143.51692200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01853520 143.51692200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01853521 143.51695251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01853522 143.51695251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01853523 143.51698303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01853524 143.51699829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01853525 143.51701355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01853526 143.51701355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01853527 143.51704407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01853528 143.51704407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01853529 143.51707458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01853530 143.51707458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01853531 143.51708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01853532 143.51708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01853533 143.51712036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01853534 143.51712036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01853535 143.51715088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01853536 143.51715088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01853537 143.51716614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01853538 143.51716614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01853539 143.51719666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01853540 143.51719666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01853541 143.51722717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01853542 143.51722717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01853543 143.51724243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01853544 143.51725769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01853545 143.51727295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01853546 143.51728821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01853547 143.51731873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01853548 143.51731873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01853549 143.51733398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01853550 143.51733398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01853551 143.51736450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01853552 143.51736450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01853553 143.51739502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01853554 143.51739502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01853555 143.51741028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01853556 143.51741028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01853557 143.51744080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01853558 143.51744080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01853559 143.51747131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01853560 143.51747131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01853561 143.51748657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01853562 143.51748657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01853563 143.51751709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01853564 143.51753235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01853565 143.51754761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01853566 143.51754761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01853567 143.51757813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01853568 143.51757813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01853569 143.51760864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01853570 143.51760864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01853571 143.51763916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01853572 143.51763916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01853573 143.51765442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01853574 143.51765442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01853575 143.51768494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01853576 143.51770020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01853577 143.51771545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01853578 143.51771545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01853579 143.51774597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01853580 143.51774597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01853581 143.51777649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01853582 143.51777649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01853583 143.51779175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01853584 143.51780701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01853585 143.51782227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01853586 143.51783752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01853587 143.51786804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01853588 143.51786804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01853589 143.51788330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01853590 143.51788330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01853591 143.51791382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01853592 143.51791382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01853593 143.51794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01853594 143.51794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01853595 143.51795959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01853596 143.51795959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01853597 143.51799011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01853598 143.51799011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01853599 143.51802063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01853600 143.51802063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01853601 143.51803589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01853602 143.51803589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01853603 143.51806641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01853604 143.51806641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01853605 143.51809692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01853606 143.51811218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01853607 143.51811218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01853608 143.51812744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01853609 143.51815796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01853610 143.51815796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01853611 143.51818848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01853612 143.51818848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01853613 143.51820374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01853614 143.51820374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01853615 143.51823425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01853616 143.51823425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01855165 143.54031372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01855166 143.54032898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01855167 143.54035950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01855168 143.54035950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01855169 143.54037476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01855170 143.54037476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01855171 143.54040527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01855172 143.54040527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01855173 143.54043579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01855174 143.54043579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01855175 143.54045105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01855176 143.54046631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01855177 143.54049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01855178 143.54049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01855179 143.54051208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01855180 143.54051208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01855181 143.54054260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01855182 143.54054260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01855183 143.54057312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01855184 143.54057312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01855185 143.54058838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01855186 143.54060364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01855187 143.54063416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01855188 143.54063416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01855189 143.54066467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01855190 143.54066467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01855191 143.54067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01855192 143.54067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01855193 143.54071045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01855194 143.54071045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01855195 143.54074097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01855196 143.54074097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01855197 143.54077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01855198 143.54077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01855199 143.54080200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01855200 143.54080200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01855201 143.54083252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01855202 143.54083252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01855203 143.54084778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01855204 143.54084778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01855205 143.54087830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01855206 143.54089355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01855207 143.54090881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01855208 143.54090881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01862611 143.64677429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16478 -01862612 143.64677429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16478 -01862613 143.64678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16488 -01862614 143.64678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16488 -01862615 143.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16498 -01862616 143.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16498 -01862617 143.64685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a8 -01862618 143.64685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a8 -01862619 143.64688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b8 -01862620 143.64688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b8 -01862621 143.64691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c8 -01862622 143.64691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c8 -01862623 143.64694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d8 -01862624 143.64694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d8 -01862625 143.64695740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e8 -01862626 143.64695740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e8 -01862627 143.64698792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f8 -01862628 143.64698792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f8 -01862629 143.64701843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16508 -01862630 143.64701843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16508 -01862631 143.64703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16518 -01862632 143.64704895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16518 -01862633 143.64706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16528 -01862634 143.64707947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16528 -01862635 143.64710999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16538 -01862636 143.64710999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16538 -01862637 143.64712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16548 -01862638 143.64712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16548 -01862639 143.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16558 -01862640 143.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16558 -01862641 143.64718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16568 -01862642 143.64718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16568 -01862643 143.64720154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16578 -01862644 143.64721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16578 -01862645 143.64724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16588 -01862646 143.64724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16588 -01862647 143.64727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16598 -01862648 143.64727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16598 -01862649 143.64729309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a8 -01862650 143.64730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a8 -01862651 143.64733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b8 -01862652 143.64733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b8 -01862653 143.64735413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c8 -01862654 143.64735413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c8 -01868833 143.73440552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -01868834 143.73440552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -01868835 143.73443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -01868836 143.73443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -01868837 143.73446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -01868838 143.73446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -01868839 143.73449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -01868840 143.73449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -01868841 143.73452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -01868842 143.73452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -01868843 143.73455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -01868844 143.73455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -01868845 143.73457336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -01868846 143.73458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -01868847 143.73461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -01868848 143.73461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -01868849 143.73464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -01868850 143.73464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -01868851 143.73466492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -01868852 143.73466492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -01868853 143.73469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -01868854 143.73469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -01868855 143.73472595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -01868856 143.73472595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -01868857 143.73474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -01868858 143.73474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -01868859 143.73477173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -01868860 143.73477173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -01868861 143.73480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -01868862 143.73480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -01868863 143.73481750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -01868864 143.73481750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -01868865 143.73486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -01868866 143.73486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -01868867 143.73489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f8 -01868868 143.73489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f8 -01868869 143.73490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22808 -01868870 143.73490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22808 -01868871 143.73493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22818 -01868872 143.73493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22818 -01868873 143.73497009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22828 -01868874 143.73497009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22828 -01868875 143.73500061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22838 -01868876 143.73500061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22838 -01886035 143.97895813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44078 -01886036 143.97895813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44078 -01886037 143.97898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44088 -01886038 143.97898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44088 -01886039 143.97901917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44098 -01886040 143.97901917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44098 -01886041 143.97904968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a8 -01886042 143.97904968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a8 -01886043 143.97906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b8 -01886044 143.97906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b8 -01886045 143.97909546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c8 -01886046 143.97909546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c8 -01886047 143.97912598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d8 -01886048 143.97914124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d8 -01886049 143.97915649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e8 -01886050 143.97915649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e8 -01886051 143.97918701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f8 -01886052 143.97918701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f8 -01886053 143.97921753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44108 -01886054 143.97921753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44108 -01886055 143.97923279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44118 -01886056 143.97923279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44118 -01886057 143.97926331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44128 -01886058 143.97927856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44128 -01886059 143.97930908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44138 -01886060 143.97930908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44138 -01886061 143.97932434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44148 -01886062 143.97932434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44148 -01886063 143.97935486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -01886064 143.97935486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -01886065 143.97938538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -01886066 143.97938538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -01886067 143.97940063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44178 -01886068 143.97941589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44178 -01886069 143.97944641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -01886070 143.97944641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -01886071 143.97946167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -01886072 143.97950745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -01886073 143.97953796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -01886074 143.97953796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -01886075 143.97955322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -01886076 143.97956848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -01886077 143.97959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -01886078 143.97959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -01890925 144.05731201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -01890926 144.05731201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -01890927 144.05734253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -01890928 144.05735779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -01890929 144.05738831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -01890930 144.05738831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -01890931 144.05740356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -01890932 144.05740356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -01890933 144.05743408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -01890934 144.05743408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -01890935 144.05746460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -01890936 144.05746460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -01890937 144.05749512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -01890938 144.05749512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -01890939 144.05752563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b8 -01890940 144.05752563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b8 -01890941 144.05755615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c8 -01890942 144.05755615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c8 -01890943 144.05757141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d8 -01890944 144.05757141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d8 -01890945 144.05760193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e8 -01890946 144.05760193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e8 -01890947 144.05763245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -01890948 144.05763245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -01890949 144.05766296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -01890950 144.05766296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -01890951 144.05769348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -01890952 144.05769348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -01890953 144.05770874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -01890954 144.05770874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -01890955 144.05773926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -01890956 144.05773926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -01890957 144.05776978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da48 -01890958 144.05778503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da48 -01890959 144.05780029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da58 -01890960 144.05780029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da58 -01890961 144.05783081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -01890962 144.05783081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -01890963 144.05786133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -01890964 144.05786133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -01890965 144.05787659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -01890966 144.05787659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -01890967 144.05790710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -01890968 144.05792236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -01893611 144.55227661 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01893612 144.57249451 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893613 144.57250977 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893614 144.68214417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893615 144.68217468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893616 144.68220520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893617 144.68222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01893618 144.68234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893619 144.68234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01893620 144.68240356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893621 144.68243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01893622 145.78546143 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01893623 145.88308716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01893624 145.88389587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01893625 145.88517761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01893626 145.88592529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01893627 146.57362366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01893628 146.59600830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893629 146.59603882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893630 147.18861389 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893631 147.18865967 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893632 147.18869019 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893633 147.18869019 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01893634 147.18882751 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893635 147.18882751 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01893636 147.18888855 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893637 147.18891907 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01893638 147.30302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01893639 147.30302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01893640 147.30305481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01893641 147.30305481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01893642 147.30308533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01893643 147.30308533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01893644 147.30311584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01893645 147.30311584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01893646 147.30314636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01893647 147.30314636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01893648 147.30316162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01893649 147.30316162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01893650 147.30319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01893651 147.30319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01893652 147.30322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01893653 147.30322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01893654 147.30323792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01893655 147.30325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01893656 147.30328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01893657 147.30328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01893658 147.30331421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01893659 147.30331421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01893660 147.30332947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01893661 147.30332947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01893662 147.30335999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01893663 147.30335999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01893664 147.30339050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01893665 147.30340576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01893666 147.30342102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01893667 147.30342102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01893668 147.30345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01893669 147.30345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01893670 147.30348206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01893671 147.30348206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01893672 147.30349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01893673 147.30349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01893674 147.30352783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01893675 147.30354309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01893676 147.30355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01893677 147.30355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01893678 147.30358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01893679 147.30358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01893680 147.30361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01893681 147.30361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01893682 147.30363464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01893683 147.30364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01893684 147.30366516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01893685 147.30368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01893686 147.30371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01893687 147.30371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01893688 147.30372620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01893689 147.30372620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01893690 147.30375671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01893691 147.30375671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01893692 147.30378723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01893693 147.30378723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01893694 147.30380249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01893695 147.30381775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01893696 147.30384827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01893697 147.30384827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01893698 147.30387878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01893699 147.30387878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01893700 147.30389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01893701 147.30389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01893702 147.30392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01893703 147.30392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01893704 147.30395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01893705 147.30395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01893706 147.30398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01893707 147.30398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01893708 147.30401611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01893709 147.30401611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01893710 147.30403137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01893711 147.30403137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01893712 147.30406189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01893713 147.30406189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01893714 147.30409241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01893715 147.30409241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01893716 147.30410767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01893717 147.30412292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01893718 147.30415344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01893719 147.30415344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01893720 147.30418396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01893721 147.30418396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01893722 147.30419922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01893723 147.30419922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01893724 147.30422974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01893725 147.30424500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01893726 147.30427551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01893727 147.30427551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01893728 147.30429077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01893729 147.30429077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01893730 147.30432129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01893731 147.30432129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01893732 147.30435181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01893733 147.30435181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01893734 147.30436707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01893735 147.30436707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01893736 147.30439758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01893737 147.30441284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01893738 147.30442810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01893739 147.30442810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01893740 147.30445862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01893741 147.30445862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01893742 147.30448914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01893743 147.30448914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01893744 147.30450439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01893745 147.30450439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01893746 147.30453491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01893747 147.30455017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01893748 147.30458069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01893749 147.30458069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01893750 147.30459595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01893751 147.30459595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01893752 147.30462646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01893753 147.30462646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01893754 147.30465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01893755 147.30465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01893756 147.30467224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01893757 147.30468750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01893758 147.30471802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01893759 147.30471802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01893760 147.30474854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01893761 147.30474854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01893762 147.30477905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01893763 147.30479431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01893764 147.30482483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01893765 147.30482483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01893766 147.30484009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01893767 147.30484009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01893768 147.30487061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01893769 147.30487061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01893770 147.30490112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01893771 147.30490112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01893772 147.30491638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01893773 147.30493164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01893774 147.30496216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01893775 147.30496216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01893776 147.30499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01893777 147.30499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01893778 147.30500793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01893779 147.30500793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01893780 147.30503845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01893781 147.30503845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01893782 147.30506897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01893783 147.30506897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01893784 147.30509949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01893785 147.30509949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01893786 147.30513000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01893787 147.30513000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01893788 147.30514526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01893789 147.30514526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01893790 147.30517578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01893791 147.30517578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01893792 147.30520630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01893793 147.30520630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01893794 147.30522156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01893795 147.30523682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01893796 147.30526733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01893797 147.30526733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01893798 147.30529785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01893799 147.30529785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01893800 147.30531311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01893801 147.30531311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01893802 147.30534363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01893803 147.30534363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01893804 147.30537415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01893805 147.30538940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01893806 147.30540466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01893807 147.30540466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01893808 147.30543518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01893809 147.30543518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01893810 147.30546570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01893811 147.30546570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01893812 147.30548096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01893813 147.30548096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01893814 147.30551147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01893815 147.30552673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01893816 147.30554199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01893817 147.30554199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01893818 147.30557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01893819 147.30557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01893820 147.30560303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01893821 147.30560303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01893822 147.30561829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01893823 147.30561829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01893824 147.30564880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01893825 147.30566406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01893826 147.30569458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01893827 147.30569458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01893828 147.30570984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01893829 147.30570984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01893830 147.30574036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01893831 147.30574036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01893832 147.30577087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01893833 147.30577087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01893834 147.30578613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01893835 147.30580139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01893836 147.30583191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01893837 147.30583191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01893838 147.30586243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01893839 147.30586243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01893840 147.30587769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01893841 147.30587769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01893842 147.30590820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01893843 147.30590820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01893844 147.30593872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01893845 147.30593872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01893846 147.30595398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01893847 147.30596924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01893848 147.30599976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01893849 147.30599976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01893850 147.30601501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01893851 147.30601501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01893852 147.30604553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01893853 147.30604553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01893854 147.30607605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01893855 147.30609131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01893856 147.30610657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01893857 147.30610657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01893858 147.30613708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01893859 147.30613708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01893860 147.30616760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01893861 147.30616760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01893862 147.30618286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01893863 147.30618286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01893864 147.30621338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01893865 147.30621338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01893866 147.30624390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01893867 147.30625916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01893868 147.30627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01893869 147.30627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01893870 147.30630493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01893871 147.30630493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01893872 147.30633545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01893873 147.30633545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01893874 147.30635071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01893875 147.30635071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01893876 147.30638123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01893877 147.30639648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01893878 147.30641174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01893879 147.30641174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01893880 147.30644226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01893881 147.30644226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01893882 147.30647278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01893883 147.30647278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01893884 147.30650330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01893885 147.30650330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01893886 147.30651855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01893887 147.30651855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01893888 147.30654907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01893889 147.30656433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01893890 147.30657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01893891 147.30657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01893892 147.30661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01893893 147.30661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01893894 147.30664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01893895 147.30664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01893896 147.30665588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01893897 147.30665588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01893898 147.30668640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01893899 147.30670166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01893900 147.30673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01893901 147.30673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01893902 147.30674744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01893903 147.30674744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01893904 147.30677795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01893905 147.30677795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01893906 147.30680847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01893907 147.30680847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01893908 147.30682373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01893909 147.30683899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01893910 147.30686951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01893911 147.30686951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01893912 147.30690002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01893913 147.30690002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01893914 147.30691528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01893915 147.30691528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01893916 147.30694580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01893917 147.30694580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01893918 147.30697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01893919 147.30697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01893920 147.30700684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01893921 147.30700684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01893922 147.30703735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01893923 147.30703735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01893924 147.30705261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01893925 147.30705261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01893926 147.30708313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01893927 147.30708313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01893928 147.30711365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01893929 147.30711365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01893930 147.30712891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01893931 147.30714417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01893932 147.30717468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01893933 147.30717468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01893934 147.30720520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01893935 147.30720520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01893936 147.30722046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01893937 147.30722046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01893938 147.30725098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01893939 147.30725098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01893940 147.30728149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01893941 147.30729675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01893942 147.30731201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01893943 147.30731201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01893944 147.30734253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01893945 147.30734253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01893946 147.30737305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01893947 147.30737305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01893948 147.30738831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01893949 147.30738831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01893950 147.30741882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01893951 147.30743408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01893952 147.30744934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01893953 147.30744934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01893954 147.30747986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01893955 147.30747986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01893956 147.30751038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01893957 147.30751038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01893958 147.30752563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01893959 147.30752563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01893960 147.30755615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01893961 147.30755615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01893962 147.30758667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01893963 147.30760193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01893964 147.30761719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01893965 147.30761719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01893966 147.30764771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01893967 147.30764771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01893968 147.30767822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01893969 147.30767822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01893970 147.30769348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01893971 147.30769348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01893972 147.30772400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01893973 147.30773926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01893974 147.30776978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01893975 147.30776978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01893976 147.30778503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01893977 147.30778503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01893978 147.30781555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01893979 147.30781555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01893980 147.30784607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01893981 147.30784607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01893982 147.30786133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01893983 147.30787659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01893984 147.30790710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01893985 147.30790710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01893986 147.30792236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01893987 147.30792236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01893988 147.30795288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01893989 147.30795288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01893990 147.30798340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01893991 147.30798340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01893992 147.30801392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01893993 147.30801392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01893994 147.30802917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01893995 147.30804443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01893996 147.30807495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01893997 147.30807495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01893998 147.30809021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01893999 147.30809021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01894000 147.30812073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01894001 147.30812073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01894002 147.30815125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01894003 147.30815125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01894004 147.30816650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01894005 147.30818176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01894006 147.30821228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01894007 147.30821228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01894008 147.30824280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01894009 147.30824280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01894010 147.30825806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01894011 147.30825806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01894012 147.30828857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01894013 147.30828857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01894014 147.30831909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01894015 147.30831909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01894016 147.30833435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01894017 147.30834961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01894018 147.30838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01894019 147.30838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01894020 147.30841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01894021 147.30841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01894022 147.30842590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01894023 147.30842590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01894024 147.30845642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01894025 147.30845642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01894026 147.30848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01894027 147.30848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01894028 147.30851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01894029 147.30851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01894030 147.30854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01894031 147.30854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01894032 147.30856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01894033 147.30856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01894034 147.30859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01894035 147.30859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01894036 147.30862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01894037 147.30863953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01894038 147.30865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01894039 147.30865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01894040 147.30871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01894041 147.30871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01894042 147.30873108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01894043 147.30873108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01894044 147.30876160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01894045 147.30877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01894046 147.30880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01894047 147.30880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01894048 147.30882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01894049 147.30882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01894050 147.30885315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01894051 147.30885315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01894052 147.30888367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01894053 147.30888367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01894054 147.30889893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01894055 147.30891418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01894056 147.30894470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01894057 147.30894470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01894058 147.30895996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01894059 147.30895996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01894060 147.30899048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01894061 147.30899048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01894062 147.30902100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01894063 147.30902100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01894064 147.30903625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01894065 147.30903625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01894066 147.30906677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01894067 147.30908203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01894068 147.30911255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01894069 147.30911255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01894070 147.30912781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01894071 147.30912781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01894072 147.30915833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01894073 147.30915833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01894074 147.30918884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01894075 147.30918884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01894076 147.30920410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01894077 147.30921936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01894078 147.30924988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01894079 147.30924988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01894080 147.30928040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01894081 147.30928040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01894082 147.30929565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01894083 147.30929565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01894084 147.30932617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01894085 147.30932617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01894086 147.30935669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01894087 147.30935669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01894088 147.30938721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01894089 147.30938721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01894090 147.30941772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01894091 147.30941772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01894092 147.30943298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01894093 147.30943298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01894094 147.30946350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01894095 147.30946350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01894096 147.30949402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01894097 147.30950928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01894098 147.30952454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01894099 147.30952454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01894100 147.30955505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01894101 147.30955505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01894102 147.30958557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01894103 147.30958557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01894104 147.30960083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01894105 147.30960083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01894106 147.30963135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01894107 147.30963135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01894108 147.30966187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01894109 147.30967712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01894110 147.30969238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01894111 147.30969238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01894112 147.30972290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01894113 147.30972290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01894114 147.30975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01894115 147.30975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01894116 147.30976868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01894117 147.30976868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01894118 147.30981445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01894119 147.30981445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01894120 147.30982971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01894121 147.30982971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01894122 147.30986023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01894123 147.30986023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01894124 147.30989075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01894125 147.30989075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01894126 147.30990601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01894127 147.30992126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01894128 147.30995178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01894129 147.30995178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01894130 147.30998230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01894131 147.30998230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01894132 147.30999756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01894133 147.30999756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01894134 147.31002808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01894135 147.31002808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01894136 147.31005859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01894137 147.31007385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01894138 147.31008911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01894139 147.31008911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01894140 147.31011963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01894141 147.31011963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01894142 147.31015015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01894143 147.31015015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01894144 147.31016541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01894145 147.31016541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01894146 147.31019592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01894147 147.31021118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01894148 147.31022644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01894149 147.31022644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01894150 147.31025696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01894151 147.31025696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01894152 147.31028748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01894153 147.31028748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01894154 147.31031799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01894155 147.31031799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01894156 147.31033325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01894157 147.31034851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01894158 147.31037903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01894159 147.31037903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01894160 147.31039429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01894161 147.31039429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01894162 147.31042480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01894163 147.31042480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01894164 147.31045532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01894165 147.31047058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01894166 147.31048584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01894167 147.31048584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01894168 147.31051636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01894169 147.31051636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01894170 147.31054688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01894171 147.31054688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01894172 147.31056213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01894173 147.31056213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01894174 147.31059265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01894175 147.31059265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01894176 147.31062317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01894177 147.31062317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01894178 147.31065369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01894179 147.31065369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01894180 147.31068420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01894181 147.31068420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01894182 147.31071472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01894183 147.31071472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01894184 147.31072998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01894185 147.31072998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01894186 147.31076050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01894187 147.31077576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01894188 147.31079102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01894189 147.31079102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01894190 147.31082153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01894191 147.31082153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01894192 147.31085205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01894193 147.31085205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01894194 147.31086731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01894195 147.31086731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01894196 147.31089783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01894197 147.31091309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01894198 147.31094360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01894199 147.31094360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01894200 147.31095886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01894201 147.31095886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01894202 147.31098938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01894203 147.31098938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01894204 147.31101990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01894205 147.31101990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01894206 147.31103516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01894207 147.31105042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01894208 147.31108093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01894209 147.31108093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01894210 147.31111145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01894211 147.31111145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01894212 147.31112671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01894213 147.31112671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01894214 147.31115723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01894215 147.31115723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01894216 147.31118774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01894217 147.31118774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01894218 147.31121826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01894219 147.31121826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01894220 147.31124878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01894221 147.31124878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01894222 147.31126404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01894223 147.31126404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01894224 147.31129456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01894225 147.31129456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01894226 147.31132507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01894227 147.31134033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01894228 147.31135559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01894229 147.31135559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01894230 147.31138611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01894231 147.31138611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01894232 147.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01894233 147.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01894234 147.31143188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01894235 147.31143188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01894236 147.31146240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01894237 147.31146240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01894238 147.31149292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01894239 147.31150818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01894240 147.31152344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01894241 147.31152344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01894242 147.31155396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01894243 147.31155396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01894244 147.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01894245 147.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01894246 147.31159973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01894247 147.31159973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01894248 147.31164551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01894249 147.31164551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01894250 147.31166077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01894251 147.31166077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01894252 147.31169128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01894253 147.31169128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01894254 147.31172180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01894255 147.31172180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01894256 147.31173706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01894257 147.31173706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01894258 147.31176758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01894259 147.31178284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01894260 147.31181335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01894261 147.31181335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01894262 147.31182861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01894263 147.31182861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01894264 147.31185913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01894265 147.31185913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01894266 147.31188965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01894267 147.31188965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01894268 147.31190491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01894269 147.31192017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01894270 147.31195068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01894271 147.31195068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01894272 147.31208801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01894273 147.31208801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01894274 147.31211853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01894275 147.31211853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01894276 147.31213379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01894277 147.31213379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01894278 147.31216431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01894279 147.31216431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01894280 147.31219482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01894281 147.31221008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01894282 147.31222534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01894283 147.31222534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01894284 147.31225586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01894285 147.31225586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01894286 147.31228638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01894287 147.31228638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01894288 147.31230164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01894289 147.31230164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01894290 147.31233215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01894291 147.31234741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01894292 147.31237793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01894293 147.31237793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01894294 147.31239319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01894295 147.31239319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01894296 147.31242371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01894297 147.31242371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01894298 147.31245422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01894299 147.31245422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01894300 147.31246948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01894301 147.31248474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01894302 147.31251526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01894303 147.31251526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01894304 147.31253052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01894305 147.31253052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01894306 147.31256104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01894307 147.31256104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01894308 147.31259155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01894309 147.31259155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01894310 147.31260681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01894311 147.31260681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01894312 147.31263733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01894313 147.31265259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01894314 147.31268311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01894315 147.31268311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01894316 147.31269836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01894317 147.31269836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01894318 147.31272888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01894319 147.31272888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01894320 147.31275940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01894321 147.31275940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01894322 147.31277466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01894323 147.31278992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01894324 147.31282043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01894325 147.31282043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01894326 147.31285095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01894327 147.31285095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01894328 147.31286621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01894329 147.31286621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01894330 147.31289673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01894331 147.31289673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01894332 147.31294250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01894333 147.31294250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01894334 147.31297302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01894335 147.31297302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01894336 147.31300354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01894337 147.31301880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01894338 147.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01894339 147.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01894340 147.31306458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01894341 147.31306458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01894342 147.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01894343 147.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01894344 147.31311035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01894345 147.31311035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01894346 147.31314087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01894347 147.31315613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01894348 147.31317139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01894349 147.31317139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01894350 147.31320190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01894351 147.31320190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01894352 147.31323242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01894353 147.31323242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01894354 147.31324768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01894355 147.31324768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01894356 147.31327820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01894357 147.31327820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01894358 147.31330872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01894359 147.31332397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01894360 147.31333923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01894361 147.31333923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01894362 147.31336975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01894363 147.31336975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01894364 147.31340027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01894365 147.31340027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01894366 147.31341553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01894367 147.31341553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01894368 147.31344604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01894369 147.31346130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01894370 147.31349182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01894371 147.31349182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01894372 147.31350708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01894373 147.31350708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01894374 147.31353760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01894375 147.31353760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01894376 147.31356812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01894377 147.31356812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01894378 147.31358337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01894379 147.31359863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01894380 147.31362915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01894381 147.31362915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01894382 147.31364441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01894383 147.31364441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01894384 147.31367493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01894385 147.31367493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01894386 147.31370544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01894387 147.31370544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01894388 147.31372070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01894389 147.31373596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01894390 147.31376648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01894391 147.31376648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01894392 147.31379700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01894393 147.31379700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01894394 147.31381226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01894395 147.31381226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01894396 147.31384277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01894397 147.31384277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01894398 147.31387329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01894399 147.31387329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01894400 147.31388855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01894401 147.31390381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01894402 147.31393433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01894403 147.31393433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01894404 147.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01894405 147.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01894406 147.31398010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01894407 147.31398010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01894408 147.31401062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01894409 147.31401062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01894410 147.31404114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01894411 147.31404114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01894412 147.31407166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01894413 147.31407166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01894414 147.31410217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01894415 147.31410217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01894416 147.31411743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01894417 147.31411743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01894418 147.31414795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01894419 147.31414795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01894420 147.31417847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01894421 147.31419373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01894422 147.31420898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01894423 147.31420898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01894424 147.31423950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01894425 147.31423950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01894426 147.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01894427 147.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01894428 147.31428528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01894429 147.31428528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01894430 147.31431580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01894431 147.31433105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01894432 147.31436157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01894433 147.31436157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01894434 147.31437683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01894435 147.31437683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01894436 147.31440735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01894437 147.31440735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01894438 147.31443787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01894439 147.31443787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01894440 147.31445313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01894441 147.31445313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01894442 147.31448364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01894443 147.31449890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01894444 147.31451416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01894445 147.31451416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01894446 147.31454468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01894447 147.31454468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01894448 147.31457520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01894449 147.31457520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01894450 147.31460571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01894451 147.31460571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01894452 147.31462097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01894453 147.31463623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01894454 147.31466675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01894455 147.31466675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01894456 147.31468201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01894457 147.31468201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01894458 147.31471252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01894459 147.31471252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01894460 147.31474304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01894461 147.31474304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01894462 147.31475830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01894463 147.31477356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01894464 147.31480408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01894465 147.31480408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01894466 147.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01894467 147.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01894468 147.31484985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01894469 147.31484985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01894470 147.31488037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01894471 147.31488037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01894472 147.31491089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01894473 147.31491089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01894474 147.31494141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01894475 147.31494141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01894476 147.31497192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01894477 147.31497192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01894478 147.31500244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01894479 147.31500244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01894480 147.31501770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01894481 147.31501770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01894482 147.31504822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01894483 147.31504822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01894484 147.31507874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01894485 147.31507874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01894486 147.31510925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01894487 147.31510925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01894488 147.31513977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01894489 147.31513977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01894490 147.31515503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01894491 147.31515503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01894492 147.31518555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01894493 147.31518555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01894494 147.31521606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01894495 147.31523132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01894496 147.31524658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01894497 147.31524658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01894498 147.31527710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01894499 147.31527710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01894500 147.31530762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01894501 147.31530762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01894502 147.31532288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01894503 147.31532288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01894504 147.31535339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01894505 147.31535339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01894506 147.31539917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01894507 147.31539917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01894508 147.31541443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01894509 147.31541443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01894510 147.31544495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01894511 147.31544495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01894512 147.31547546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01894513 147.31547546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01894514 147.31549072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01894515 147.31549072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01894516 147.31552124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01894517 147.31553650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01894518 147.31555176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01894519 147.31555176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01894520 147.31558228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01894521 147.31558228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01894522 147.31561279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01894523 147.31561279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01894524 147.31562805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01894525 147.31562805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01894526 147.31565857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01894527 147.31567383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01894528 147.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01894529 147.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01894530 147.31571960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01894531 147.31571960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01894532 147.31575012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01894533 147.31575012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01894534 147.31578064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01894535 147.31578064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01894536 147.31579590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01894537 147.31581116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01894538 147.31584167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01894539 147.31584167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01894540 147.31587219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01894541 147.31587219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01894542 147.31588745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01894543 147.31588745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01894544 147.31591797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01894545 147.31591797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01894546 147.31594849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01894547 147.31594849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01894548 147.31596375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01894549 147.31597900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01894550 147.31600952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01894551 147.31600952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01894552 147.31602478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01894553 147.31602478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01894554 147.31605530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01894555 147.31605530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01894556 147.31608582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01894557 147.31608582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01894558 147.31611633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01894559 147.31611633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01894560 147.31614685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01894561 147.31614685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01894562 147.31617737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01894563 147.31617737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01894564 147.31619263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01894565 147.31619263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01894566 147.31622314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01894567 147.31622314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01894568 147.31625366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01894569 147.31626892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01894570 147.31628418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01894571 147.31628418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01894572 147.31631470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01894573 147.31631470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01894574 147.31634521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01894575 147.31634521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01894576 147.31636047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01894577 147.31636047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01894578 147.31639099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01894579 147.31640625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01894580 147.31642151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01894581 147.31642151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01894582 147.31645203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01894583 147.31645203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01894584 147.31648254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01894585 147.31648254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01894586 147.31651306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01894587 147.31651306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01894588 147.31652832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01894589 147.31654358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01894590 147.31657410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01894591 147.31657410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01894592 147.31658936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01894593 147.31658936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01894594 147.31661987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01894595 147.31661987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01894596 147.31665039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01894597 147.31665039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01906081 147.47999573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19518 -01906082 147.48001099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19518 -01906083 147.48004150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19528 -01906084 147.48004150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19528 -01906085 147.48005676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19538 -01906086 147.48005676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19538 -01906087 147.48008728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19548 -01906088 147.48008728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19548 -01906089 147.48011780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19558 -01906090 147.48011780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19558 -01906091 147.48014832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19568 -01906092 147.48014832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19568 -01906093 147.48017883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19578 -01906094 147.48017883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19578 -01906095 147.48020935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19588 -01906096 147.48020935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19588 -01906097 147.48022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19598 -01906098 147.48022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19598 -01906099 147.48025513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a8 -01906100 147.48025513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a8 -01906101 147.48028564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b8 -01906102 147.48030090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b8 -01906103 147.48031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c8 -01906104 147.48031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c8 -01906105 147.48034668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d8 -01906106 147.48034668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d8 -01906107 147.48037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e8 -01906108 147.48037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e8 -01906109 147.48039246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f8 -01906110 147.48040771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f8 -01906111 147.48043823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19608 -01906112 147.48043823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19608 -01906113 147.48045349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19618 -01906114 147.48045349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19618 -01906115 147.48048401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19628 -01906116 147.48048401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19628 -01906117 147.48051453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19638 -01906118 147.48051453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19638 -01906119 147.48054504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19648 -01906120 147.48054504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19648 -01906121 147.48057556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19658 -01906122 147.48057556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19658 -01906123 147.48060608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19668 -01906124 147.48060608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19668 -01911117 147.55293274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23278 -01911118 147.55293274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23278 -01911119 147.55296326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23288 -01911120 147.55297852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23288 -01911121 147.55299377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23298 -01911122 147.55299377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23298 -01911123 147.55302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a8 -01911124 147.55302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a8 -01911125 147.55305481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b8 -01911126 147.55305481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b8 -01911127 147.55307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -01911128 147.55307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -01911129 147.55310059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -01911130 147.55311584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -01911131 147.55314636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -01911132 147.55314636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -01911133 147.55316162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -01911134 147.55316162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -01911135 147.55319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -01911136 147.55319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -01911137 147.55322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -01911138 147.55322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -01911139 147.55323792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -01911140 147.55323792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -01911141 147.55326843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -01911142 147.55328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -01911143 147.55329895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -01911144 147.55329895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -01911145 147.55332947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -01911146 147.55332947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -01911147 147.55335999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -01911148 147.55335999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -01911149 147.55337524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -01911150 147.55337524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -01911151 147.55340576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -01911152 147.55342102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -01911153 147.55345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -01911154 147.55345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -01911155 147.55346680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -01911156 147.55346680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -01911157 147.55349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -01911158 147.55349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -01911159 147.55352783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -01911160 147.55352783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -01917143 147.64045715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -01917144 147.64045715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -01917145 147.64048767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed8 -01917146 147.64048767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed8 -01917147 147.64051819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee8 -01917148 147.64051819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee8 -01917149 147.64054871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef8 -01917150 147.64054871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef8 -01917151 147.64057922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef08 -01917152 147.64057922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef08 -01917153 147.64059448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef18 -01917154 147.64059448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef18 -01917155 147.64062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef28 -01917156 147.64062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef28 -01917157 147.64067078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef38 -01917158 147.64067078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef38 -01917159 147.64068604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef48 -01917160 147.64068604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef48 -01917161 147.64071655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef58 -01917162 147.64071655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef58 -01917163 147.64074707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef68 -01917164 147.64074707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef68 -01917165 147.64076233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef78 -01917166 147.64076233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef78 -01917167 147.64079285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef88 -01917168 147.64079285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef88 -01917169 147.64082336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef98 -01917170 147.64082336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef98 -01917171 147.64083862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa8 -01917172 147.64083862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa8 -01917173 147.64086914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb8 -01917174 147.64086914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb8 -01917175 147.64089966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc8 -01917176 147.64091492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc8 -01917177 147.64091492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efd8 -01917178 147.64093018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efd8 -01917179 147.64096069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efe8 -01917180 147.64096069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efe8 -01917181 147.64099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eff8 -01917182 147.64099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eff8 -01917183 147.64100647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f008 -01917184 147.64100647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f008 -01917185 147.64103699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f018 -01917186 147.64103699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f018 -01924349 147.74215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -01924350 147.74217224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -01924351 147.74220276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -01924352 147.74220276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -01924353 147.74221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -01924354 147.74221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -01924355 147.74224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -01924356 147.74224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -01924357 147.74227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -01924358 147.74227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -01924359 147.74229431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -01924360 147.74230957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -01924361 147.74234009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -01924362 147.74234009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -01924363 147.74235535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -01924364 147.74235535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -01924365 147.74238586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -01924366 147.74238586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -01924367 147.74241638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -01924368 147.74241638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -01924369 147.74243164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -01924370 147.74244690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -01924371 147.74247742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -01924372 147.74247742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -01924373 147.74250793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -01924374 147.74250793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -01924375 147.74252319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -01924376 147.74252319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -01924377 147.74255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -01924378 147.74255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -01924379 147.74258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -01924380 147.74259949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -01924381 147.74261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -01924382 147.74261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -01924383 147.74264526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -01924384 147.74264526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -01924385 147.74269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -01924386 147.74269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -01924387 147.74272156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -01924388 147.74272156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -01924389 147.74275208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -01924390 147.74275208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -01924391 147.74276733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -01924392 147.74276733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -01935526 148.01687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01935527 148.51966858 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01935528 148.51968384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01935529 148.51971436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01935530 148.51971436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01935531 148.51976013 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01935532 148.51977539 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01935533 148.51979065 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01935534 148.51980591 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01935535 148.51983643 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01935536 148.51985168 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01935537 148.51988220 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01935538 148.51988220 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01935539 148.51992798 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01935540 148.51992798 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01935541 148.51995850 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01935542 148.51995850 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01935543 148.52000427 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01935544 148.52001953 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01935545 148.52005005 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01935546 148.52005005 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01935547 148.52009583 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01935548 148.52009583 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01935549 148.52012634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01935550 148.52012634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01935551 148.52017212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01935552 148.52017212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01935553 148.52020264 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01935554 148.52020264 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01935555 148.52026367 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01935556 148.52026367 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01935557 148.52032471 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01935558 148.52032471 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01935559 148.52037048 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01935560 148.52037048 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01935561 148.52041626 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01935562 148.52041626 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01935563 148.52049255 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01935564 148.52049255 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01935565 148.52055359 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01935566 148.52055359 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01935567 148.52058411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01935568 148.52058411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01935569 148.52062988 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01935570 148.52062988 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01935571 148.52066040 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01935572 148.52066040 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01935573 148.52070618 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01935574 148.52072144 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01935575 148.52073669 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01935576 148.52075195 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01935577 148.52078247 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01935578 148.52078247 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01935579 148.52081299 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01935580 148.52081299 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01935581 148.52082825 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01935582 148.52082825 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01935583 148.52085876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01935584 148.52087402 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01935585 148.52088928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01935586 148.52088928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01935587 148.52091980 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01935588 148.52091980 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01935589 148.52095032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01935590 148.52095032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01935591 148.52096558 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01935592 148.52098083 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01935593 148.52101135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01935594 148.52101135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01935595 148.52104187 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01935596 148.52104187 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01935597 148.52105713 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01935598 148.52105713 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01935599 148.52108765 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01935600 148.52108765 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01935601 148.52111816 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01935602 148.52113342 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01935603 148.52114868 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01935604 148.52114868 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01935605 148.52117920 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01935606 148.52117920 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01935607 148.52120972 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01935608 148.52120972 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01935609 148.52122498 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01935610 148.52124023 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01935611 148.52127075 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01935612 148.52127075 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01935613 148.52128601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01935614 148.52128601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01935615 148.52131653 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01935616 148.52131653 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01935617 148.52134705 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01935618 148.52134705 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01935619 148.52136230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01935620 148.52137756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01935621 148.52140808 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01935622 148.52140808 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01935623 148.52143860 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01935624 148.52143860 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01935625 148.52145386 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01935626 148.52145386 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01935627 148.52148438 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01935628 148.52149963 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01935629 148.52153015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01935630 148.52153015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01935631 148.52154541 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01935632 148.52154541 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01935633 148.52159119 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01935634 148.52159119 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01935635 148.52162170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01935636 148.52162170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01935637 148.52166748 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01935638 148.52166748 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01935639 148.52169800 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01935640 148.52171326 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01935641 148.52175903 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01935642 148.52175903 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01935643 148.52177429 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01935644 148.52178955 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01935645 148.52182007 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01935646 148.52182007 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01935647 148.52185059 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01935648 148.52185059 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01935649 148.52186584 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01935650 148.52186584 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01935651 148.52192688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01935652 148.52192688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01935653 148.52194214 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01935654 148.52194214 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01935655 148.52197266 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01935656 148.52197266 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01935657 148.52200317 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01935658 148.52200317 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01935659 148.52203369 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01935660 148.52203369 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01935661 148.52206421 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01935662 148.52206421 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01935663 148.52207947 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01935664 148.52207947 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01935665 148.52212524 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01935666 148.52212524 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01935667 148.52215576 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01935668 148.52215576 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01935669 148.52217102 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01935670 148.52217102 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01935671 148.52220154 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01935672 148.52221680 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01935673 148.52224731 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01935674 148.52224731 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01935675 148.52226257 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01935676 148.52226257 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01935677 148.52229309 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01935678 148.52229309 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01935679 148.52232361 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01935680 148.52232361 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01935681 148.52233887 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01935682 148.52235413 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01935683 148.52238464 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01935684 148.52238464 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01935685 148.52239990 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01935686 148.52239990 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01935687 148.52243042 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01935688 148.52243042 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01935689 148.52246094 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01935690 148.52246094 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01935691 148.52249146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01935692 148.52249146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01935693 148.52252197 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01935694 148.52252197 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01935695 148.52255249 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01935696 148.52255249 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01935697 148.52256775 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01935698 148.52256775 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01935699 148.52259827 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01935700 148.52261353 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01935701 148.52264404 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01935702 148.52264404 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01937043 148.54470825 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -01937044 148.54470825 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -01937045 148.54472351 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -01937046 148.54472351 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -01937047 148.54475403 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -01937048 148.54476929 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -01937049 148.54479980 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -01937050 148.54479980 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -01937051 148.54481506 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -01937052 148.54481506 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -01937053 148.54484558 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -01937054 148.54484558 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -01937055 148.54487610 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -01937056 148.54487610 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -01937057 148.54490662 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -01937058 148.54490662 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -01937059 148.54493713 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -01937060 148.54493713 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -01937061 148.54495239 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -01937062 148.54495239 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -01937063 148.54498291 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -01937064 148.54498291 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -01937065 148.54502869 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -01937066 148.54502869 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -01937067 148.54504395 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -01937068 148.54504395 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -01937069 148.54507446 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -01937070 148.54507446 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -01937071 148.54510498 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -01937072 148.54510498 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -01937073 148.54512024 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -01937074 148.54513550 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -01937075 148.54516602 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -01937076 148.54516602 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -01937077 148.54519653 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -01937078 148.54519653 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -01937079 148.54521179 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -01937080 148.54521179 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -01937081 148.54524231 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -01937082 148.54524231 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -01937083 148.54527283 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -01937084 148.54527283 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -01937085 148.54530334 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -01937086 148.54530334 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -01943786 148.64286804 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -01943787 148.64286804 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -01943788 148.64289856 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11250 -01943789 148.64289856 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11250 -01943790 148.64291382 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11260 -01943791 148.64291382 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11260 -01943792 148.64295959 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11270 -01943793 148.64295959 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11270 -01943794 148.64297485 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11280 -01943795 148.64297485 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11280 -01943796 148.64300537 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11290 -01943797 148.64300537 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11290 -01943798 148.64303589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a0 -01943799 148.64303589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a0 -01943800 148.64306641 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b0 -01943801 148.64306641 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b0 -01943802 148.64309692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c0 -01943803 148.64309692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c0 -01943804 148.64312744 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d0 -01943805 148.64312744 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d0 -01943806 148.64314270 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e0 -01943807 148.64314270 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e0 -01943808 148.64317322 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f0 -01943809 148.64318848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f0 -01943810 148.64321899 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11300 -01943811 148.64321899 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11300 -01943812 148.64323425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11310 -01943813 148.64323425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11310 -01943814 148.64326477 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11320 -01943815 148.64326477 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11320 -01943816 148.64329529 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11330 -01943817 148.64329529 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11330 -01943818 148.64332581 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11340 -01943819 148.64332581 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11340 -01943820 148.64335632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11350 -01943821 148.64335632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11350 -01943822 148.64337158 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11360 -01943823 148.64337158 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11360 -01943824 148.64340210 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11370 -01943825 148.64341736 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11370 -01943826 148.64344788 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11380 -01943827 148.64344788 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11380 -01943828 148.64346313 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11390 -01943829 148.64346313 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11390 -01950018 148.73513794 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d500 -01950019 148.73513794 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d500 -01950020 148.73516846 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d510 -01950021 148.73516846 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d510 -01950022 148.73519897 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d520 -01950023 148.73519897 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d520 -01950024 148.73522949 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d530 -01950025 148.73522949 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d530 -01950026 148.73526001 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d540 -01950027 148.73526001 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d540 -01950028 148.73529053 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d550 -01950029 148.73529053 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d550 -01950030 148.73532104 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d560 -01950031 148.73532104 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d560 -01950032 148.73535156 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d570 -01950033 148.73535156 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d570 -01950034 148.73538208 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d580 -01950035 148.73538208 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d580 -01950036 148.73541260 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d590 -01950037 148.73541260 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d590 -01950038 148.73544312 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a0 -01950039 148.73544312 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a0 -01950040 148.73547363 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b0 -01950041 148.73547363 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b0 -01950042 148.73550415 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c0 -01950043 148.73550415 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c0 -01950044 148.73551941 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d0 -01950045 148.73553467 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d0 -01950046 148.73556519 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e0 -01950047 148.73556519 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e0 -01950048 148.73559570 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f0 -01950049 148.73559570 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f0 -01950050 148.73561096 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d600 -01950051 148.73562622 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d600 -01950052 148.73565674 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d610 -01950053 148.73565674 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d610 -01950054 148.73568726 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d620 -01950055 148.73568726 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d620 -01950056 148.73570251 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d630 -01950057 148.73571777 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d630 -01950058 148.73574829 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d640 -01950059 148.73574829 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d640 -01950060 148.73576355 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d650 -01950061 148.73576355 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d650 -01966536 148.97718811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d930 -01966537 148.97718811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d930 -01966538 148.97721863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d940 -01966539 148.97721863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d940 -01966540 148.97724915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d950 -01966541 148.97724915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d950 -01966542 148.97727966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d960 -01966543 148.97727966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d960 -01966544 148.97731018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d970 -01966545 148.97731018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d970 -01966546 148.97734070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d980 -01966547 148.97734070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d980 -01966548 148.97737122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d990 -01966549 148.97737122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d990 -01966550 148.97740173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a0 -01966551 148.97740173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a0 -01966552 148.97743225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b0 -01966553 148.97743225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b0 -01966554 148.97746277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c0 -01966555 148.97746277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c0 -01966556 148.97747803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d0 -01966557 148.97749329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d0 -01966558 148.97752380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -01966559 148.97752380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -01966560 148.97755432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -01966561 148.97755432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -01966562 148.97756958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -01966563 148.97758484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -01966564 148.97761536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -01966565 148.97761536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -01966566 148.97764587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -01966567 148.97764587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -01966568 148.97766113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -01966569 148.97767639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -01966570 148.97770691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -01966571 148.97770691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -01966572 148.97772217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -01966573 148.97772217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -01966574 148.97776794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -01966575 148.97776794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -01966576 148.97779846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -01966577 148.97779846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -01966578 148.97781372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -01966579 148.97782898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -01970726 149.03837585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c20 -01970727 149.03839111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c20 -01970728 149.03840637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c30 -01970729 149.03840637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c30 -01970730 149.03843689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c40 -01970731 149.03843689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c40 -01970732 149.03846741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c50 -01970733 149.03848267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c50 -01970734 149.03849792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c60 -01970735 149.03849792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c60 -01970736 149.03854370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c70 -01970737 149.03854370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c70 -01970738 149.03855896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c80 -01970739 149.03855896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c80 -01970740 149.03858948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c90 -01970741 149.03860474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c90 -01970742 149.03863525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca0 -01970743 149.03863525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca0 -01970744 149.03865051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb0 -01970745 149.03865051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb0 -01970746 149.03868103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc0 -01970747 149.03868103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc0 -01970748 149.03871155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd0 -01970749 149.03872681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd0 -01970750 149.03874207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce0 -01970751 149.03874207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce0 -01970752 149.03877258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf0 -01970753 149.03877258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf0 -01970754 149.03880310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d00 -01970755 149.03880310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d00 -01970756 149.03881836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d10 -01970757 149.03881836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d10 -01970758 149.03886414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d20 -01970759 149.03886414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d20 -01970760 149.03887939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d30 -01970761 149.03887939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d30 -01970762 149.03890991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d40 -01970763 149.03890991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d40 -01970764 149.03894043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -01970765 149.03895569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -01970766 149.03897095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -01970767 149.03897095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -01970768 149.03900146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -01970769 149.03900146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -01978620 149.12326050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01978621 149.12326050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -01978622 149.12326050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01978623 149.12326050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -01978624 149.12329102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01978625 149.12329102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -01978626 149.12329102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01978627 149.12329102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -01978628 149.12332153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01978629 149.12332153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01978630 149.12332153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -01978631 149.12332153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -01978632 149.12333679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01978633 149.12333679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01978634 149.12335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -01978635 149.12335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -01978636 149.12336731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01978637 149.12336731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01978638 149.12338257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -01978639 149.12338257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -01978640 149.12339783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01978641 149.12339783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01978642 149.12339783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -01978643 149.12339783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -01978644 149.12342834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01978645 149.12342834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01978646 149.12342834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -01978647 149.12342834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -01978648 149.12345886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01978649 149.12345886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01978650 149.12345886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -01978651 149.12347412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -01978652 149.12347412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01978653 149.12347412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01978654 149.12348938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -01978655 149.12348938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -01978656 149.12351990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01978657 149.12351990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01978658 149.12351990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -01978659 149.12351990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -01978660 149.12355042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01978661 149.12355042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01978662 149.12355042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -01978663 149.12356567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -01984400 149.19703674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -01984401 149.19705200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -01984402 149.19708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -01984403 149.19708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -01984404 149.19711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -01984405 149.19711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -01984406 149.19712830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -01984407 149.19712830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -01984408 149.19715881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -01984409 149.19715881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -01984410 149.19718933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -01984411 149.19718933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -01984412 149.19721985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -01984413 149.19721985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -01984414 149.19725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -01984415 149.19725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -01984416 149.19728088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -01984417 149.19728088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -01984418 149.19729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -01984419 149.19729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -01984420 149.19732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -01984421 149.19734192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -01984422 149.19735718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -01984423 149.19735718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -01984424 149.19738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb08 -01984425 149.19738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb08 -01984426 149.19741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb18 -01984427 149.19741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb18 -01984428 149.19743347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb28 -01984429 149.19743347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb28 -01984430 149.19746399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb38 -01984431 149.19747925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb38 -01984432 149.19749451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb48 -01984433 149.19750977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb48 -01984434 149.19752502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb58 -01984435 149.19752502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb58 -01984436 149.19755554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb68 -01984437 149.19755554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb68 -01984438 149.19758606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb78 -01984439 149.19758606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb78 -01984440 149.19760132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb88 -01984441 149.19760132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb88 -01984442 149.19763184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb98 -01984443 149.19764709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb98 -01989946 149.27502441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19798 -01989947 149.27503967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19798 -01989948 149.27505493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a8 -01989949 149.27505493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a8 -01989950 149.27508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b8 -01989951 149.27508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b8 -01989952 149.27511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c8 -01989953 149.27511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c8 -01989954 149.27513123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d8 -01989955 149.27513123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d8 -01989956 149.27516174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e8 -01989957 149.27516174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e8 -01989958 149.27519226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f8 -01989959 149.27519226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f8 -01989960 149.27520752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19808 -01989961 149.27520752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19808 -01989962 149.27523804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19818 -01989963 149.27523804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19818 -01989964 149.27526855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19828 -01989965 149.27528381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19828 -01989966 149.27529907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19838 -01989967 149.27529907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19838 -01989968 149.27532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19848 -01989969 149.27532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19848 -01989970 149.27536011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19858 -01989971 149.27536011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19858 -01989972 149.27539063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19868 -01989973 149.27539063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19868 -01989974 149.27542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19878 -01989975 149.27542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19878 -01989976 149.27543640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19888 -01989977 149.27543640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19888 -01989978 149.27546692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19898 -01989979 149.27546692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19898 -01989980 149.27549744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198a8 -01989981 149.27549744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198a8 -01989982 149.27551270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b8 -01989983 149.27551270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b8 -01989984 149.27554321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c8 -01989985 149.27554321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c8 -01989986 149.27557373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d8 -01989987 149.27557373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d8 -01989988 149.27560425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e8 -01989989 149.27560425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e8 -02004231 149.47720337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x355f8 -02004232 149.47723389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35608 -02004233 149.47723389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35608 -02004234 149.47726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35618 -02004235 149.47726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35618 -02004236 149.47727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35628 -02004237 149.47729492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35628 -02004238 149.47732544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35638 -02004239 149.47732544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35638 -02004240 149.47735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35648 -02004241 149.47735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35648 -02004242 149.47737122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35658 -02004243 149.47737122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35658 -02004244 149.47740173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35668 -02004245 149.47740173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35668 -02004246 149.47743225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35678 -02004247 149.47744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35678 -02004248 149.47746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35688 -02004249 149.47746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35688 -02004250 149.47749329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35698 -02004251 149.47749329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35698 -02004252 149.47752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a8 -02004253 149.47752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a8 -02004254 149.47753906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -02004255 149.47753906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -02004256 149.47756958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -02004257 149.47756958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -02004258 149.47760010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d8 -02004259 149.47760010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d8 -02004260 149.47763062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e8 -02004261 149.47763062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e8 -02004262 149.47766113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f8 -02004263 149.47766113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f8 -02004264 149.47767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35708 -02004265 149.47767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35708 -02004266 149.47770691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35718 -02004267 149.47772217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35718 -02004268 149.47775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35728 -02004269 149.47775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35728 -02004270 149.47776794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35738 -02004271 149.47776794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35738 -02004272 149.47779846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35748 -02004273 149.47779846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35748 -02004274 149.47782898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35758 -02008180 149.53343201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -02008181 149.53343201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -02008182 149.53344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -02008183 149.53344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -02008184 149.53347778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -02008185 149.53349304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -02008186 149.53352356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -02008187 149.53352356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -02008188 149.53353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -02008189 149.53353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -02008190 149.53356934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -02008191 149.53356934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -02008192 149.53359985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -02008193 149.53359985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -02008194 149.53361511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -02008195 149.53363037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -02008196 149.53366089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -02008197 149.53366089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -02008198 149.53367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f8 -02008199 149.53367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f8 -02008200 149.53370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d208 -02008201 149.53370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d208 -02008202 149.53373718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d218 -02008203 149.53373718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d218 -02008204 149.53375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d228 -02008205 149.53375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d228 -02008206 149.53378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d238 -02008207 149.53379822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d238 -02008208 149.53382874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d248 -02008209 149.53382874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d248 -02008210 149.53384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d258 -02008211 149.53384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d258 -02008212 149.53387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d268 -02008213 149.53387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d268 -02008214 149.53390503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d278 -02008215 149.53390503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d278 -02008216 149.53392029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d288 -02008217 149.53393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d288 -02008218 149.53396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d298 -02008219 149.53396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d298 -02008220 149.53399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a8 -02008221 149.53399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a8 -02008222 149.53401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b8 -02008223 149.53401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b8 -02014616 149.62510681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a88 -02014617 149.62510681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a88 -02014618 149.62512207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a98 -02014619 149.62513733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a98 -02014620 149.62516785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49aa8 -02014621 149.62516785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49aa8 -02014622 149.62518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ab8 -02014623 149.62518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ab8 -02014624 149.62521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ac8 -02014625 149.62521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ac8 -02014626 149.62524414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ad8 -02014627 149.62524414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ad8 -02014628 149.62527466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ae8 -02014629 149.62527466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ae8 -02014630 149.62528992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49af8 -02014631 149.62530518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49af8 -02014632 149.62532043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b08 -02014633 149.62533569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b08 -02014634 149.62535095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b18 -02014635 149.62535095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b18 -02014636 149.62538147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b28 -02014637 149.62538147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b28 -02014638 149.62541199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b38 -02014639 149.62541199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b38 -02014640 149.62542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b48 -02014641 149.62542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b48 -02014642 149.62545776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b58 -02014643 149.62545776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b58 -02014644 149.62553406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b68 -02014645 149.62553406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b68 -02014646 149.62556458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b78 -02014647 149.62556458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b78 -02014648 149.62557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b88 -02014649 149.62559509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b88 -02014650 149.62561035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b98 -02014651 149.62562561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b98 -02014652 149.62565613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba8 -02014653 149.62565613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba8 -02014654 149.62567139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -02014655 149.62567139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -02014656 149.62570190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -02014657 149.62570190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -02014658 149.62573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -02014659 149.62573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -02019318 150.62001038 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02019319 150.64268494 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019320 150.64268494 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019321 152.20207214 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019322 152.20211792 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019323 152.20214844 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019324 152.20216370 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02019325 152.20228577 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019326 152.20228577 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02019327 152.20236206 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019328 152.20237732 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02019329 152.64421082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02019330 152.66374207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019331 152.66375732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019332 154.31544495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019333 154.66528320 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02019334 154.68838501 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019335 154.68838501 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019336 154.69172668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02019337 154.69174194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02019338 154.69175720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02019339 154.69177246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02019340 154.69180298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02019341 154.69180298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02019342 154.69183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02019343 154.69183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02019344 154.69186401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02019345 154.69186401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02019346 154.69189453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02019347 154.69189453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02019348 154.69190979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02019349 154.69190979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02019350 154.69194031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02019351 154.69194031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02019352 154.69197083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02019353 154.69198608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02019354 154.69200134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02019355 154.69200134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02019356 154.69203186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02019357 154.69203186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02019358 154.69206238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02019359 154.69206238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02019360 154.69207764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02019361 154.69207764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02019362 154.69210815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02019363 154.69212341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02019364 154.69219971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02019365 154.69221497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02019366 154.69223022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02019367 154.69223022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02019368 154.69226074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02019369 154.69226074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02019370 154.69229126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02019371 154.69229126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02019372 154.69230652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02019373 154.69230652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02019374 154.69233704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02019375 154.69235229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02019376 154.69238281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02019377 154.69238281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02019378 154.69239807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02019379 154.69239807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02019380 154.69242859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02019381 154.69242859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02019382 154.69245911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02019383 154.69245911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02019384 154.69247437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02019385 154.69248962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02019386 154.69252014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02019387 154.69252014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02019388 154.69255066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02019389 154.69255066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02019390 154.69256592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02019391 154.69256592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02019392 154.69259644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02019393 154.69259644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02019394 154.69262695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02019395 154.69262695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02019396 154.69264221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02019397 154.69265747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02019398 154.69268799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02019399 154.69268799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02019400 154.69270325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02019401 154.69270325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02019402 154.69273376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02019403 154.69273376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02019404 154.69276428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02019405 154.69276428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02019406 154.69279480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02019407 154.69279480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02019408 154.69282532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02019409 154.69282532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02019410 154.69285583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02019411 154.69285583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02019412 154.69287109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02019413 154.69287109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02019414 154.69290161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02019415 154.69291687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02019416 154.69294739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02019417 154.69294739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02019418 154.69296265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02019419 154.69296265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02019420 154.69299316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02019421 154.69299316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02019422 154.69302368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02019423 154.69302368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02019424 154.69303894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02019425 154.69303894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02019426 154.69306946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02019427 154.69308472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02019428 154.69309998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02019429 154.69309998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02019430 154.69313049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02019431 154.69313049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02019432 154.69316101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02019433 154.69316101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02019434 154.69319153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02019435 154.69319153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02019436 154.69320679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02019437 154.69322205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02019438 154.69325256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02019439 154.69325256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02019440 154.69326782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02019441 154.69326782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02019442 154.69329834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02019443 154.69329834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02019444 154.69332886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02019445 154.69332886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02019446 154.69334412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02019447 154.69335938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02019448 154.69338989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02019449 154.69338989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02019450 154.69342041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02019451 154.69342041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02019452 154.69343567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02019453 154.69343567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02019454 154.69346619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02019455 154.69346619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02019456 154.69349670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02019457 154.69349670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02019458 154.69352722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02019459 154.69352722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02019460 154.69357300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02019461 154.69357300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02019462 154.69358826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02019463 154.69360352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02019464 154.69363403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02019465 154.69363403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02019466 154.69366455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02019467 154.69366455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02019468 154.69367981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02019469 154.69367981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02019470 154.69371033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02019471 154.69371033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02019472 154.69374084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02019473 154.69374084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02019474 154.69375610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02019475 154.69377136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02019476 154.69380188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02019477 154.69380188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02019478 154.69381714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02019479 154.69381714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02019480 154.69384766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02019481 154.69384766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02019482 154.69387817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02019483 154.69387817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02019484 154.69389343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02019485 154.69390869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02019486 154.69393921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02019487 154.69393921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02019488 154.69396973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02019489 154.69396973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02019490 154.69398499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02019491 154.69398499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02019492 154.69401550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02019493 154.69401550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02019494 154.69404602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02019495 154.69406128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02019496 154.69407654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02019497 154.69407654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02019498 154.69410706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02019499 154.69410706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02019500 154.69413757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02019501 154.69413757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02019502 154.69415283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02019503 154.69415283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02019504 154.69418335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02019505 154.69419861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02019506 154.69421387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02019507 154.69421387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02019508 154.69424438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02019509 154.69424438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02019510 154.69427490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02019511 154.69427490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02019512 154.69429016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02019513 154.69429016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02019514 154.69432068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02019515 154.69433594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02019516 154.69436646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02019517 154.69436646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02019518 154.69438171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02019519 154.69438171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02019520 154.69441223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02019521 154.69441223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02019522 154.69444275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02019523 154.69444275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02019524 154.69445801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02019525 154.69445801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02019526 154.69448853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02019527 154.69450378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02019528 154.69453430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02019529 154.69453430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02019530 154.69454956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02019531 154.69454956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02019532 154.69458008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02019533 154.69458008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02019534 154.69461060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02019535 154.69461060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02019536 154.69462585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02019537 154.69464111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02019538 154.69467163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02019539 154.69467163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02019540 154.69468689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02019541 154.69468689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02019542 154.69471741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02019543 154.69471741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02019544 154.69474792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02019545 154.69474792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02019546 154.69477844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02019547 154.69477844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02019548 154.69480896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02019549 154.69480896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02019550 154.69483948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02019551 154.69483948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02019552 154.69485474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02019553 154.69485474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02019554 154.69488525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02019555 154.69488525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02019556 154.69491577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02019557 154.69493103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02019558 154.69494629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02019559 154.69494629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02019560 154.69497681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02019561 154.69497681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02019562 154.69500732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02019563 154.69500732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02019564 154.69502258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02019565 154.69502258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02019566 154.69505310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02019567 154.69505310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02019568 154.69508362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02019569 154.69508362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02019570 154.69511414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02019571 154.69511414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02019572 154.69514465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02019573 154.69514465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02019574 154.69517517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02019575 154.69517517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02019576 154.69519043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02019577 154.69519043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02019578 154.69522095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02019579 154.69523621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02019580 154.69525146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02019581 154.69525146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02019582 154.69528198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02019583 154.69528198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02019584 154.69531250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02019585 154.69531250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02019586 154.69532776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02019587 154.69532776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02019588 154.69535828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02019589 154.69537354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02019590 154.69540405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02019591 154.69540405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02019592 154.69541931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02019593 154.69541931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02019594 154.69544983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02019595 154.69544983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02019596 154.69548035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02019597 154.69548035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02019598 154.69549561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02019599 154.69551086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02019600 154.69554138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02019601 154.69554138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02019602 154.69557190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02019603 154.69557190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02019604 154.69558716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02019605 154.69558716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02019606 154.69561768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02019607 154.69561768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02019608 154.69564819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02019609 154.69564819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02019610 154.69567871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02019611 154.69567871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02019612 154.69570923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02019613 154.69570923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02019614 154.69572449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02019615 154.69572449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02019616 154.69575500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02019617 154.69575500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02019618 154.69578552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02019619 154.69578552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02019620 154.69580078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02019621 154.69581604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02019622 154.69584656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02019623 154.69584656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02019624 154.69587708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02019625 154.69587708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02019626 154.69589233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02019627 154.69589233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02019628 154.69592285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02019629 154.69593811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02019630 154.69596863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02019631 154.69596863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02019632 154.69598389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02019633 154.69598389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02019634 154.69601440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02019635 154.69601440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02019636 154.69604492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02019637 154.69604492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02019638 154.69606018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02019639 154.69607544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02019640 154.69610596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02019641 154.69610596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02019642 154.69612122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02019643 154.69612122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02019644 154.69615173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02019645 154.69615173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02019646 154.69618225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02019647 154.69618225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02019648 154.69619751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02019649 154.69621277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02019650 154.69622803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02019651 154.69624329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02019652 154.69627380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02019653 154.69627380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02019654 154.69628906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02019655 154.69628906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02019656 154.69631958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02019657 154.69633484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02019658 154.69635010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02019659 154.69636536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02019660 154.69638062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02019661 154.69638062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02019662 154.69641113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02019663 154.69641113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02019664 154.69644165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02019665 154.69644165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02019666 154.69647217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02019667 154.69647217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02019668 154.69650269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02019669 154.69650269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02019670 154.69651794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02019671 154.69651794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02019672 154.69654846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02019673 154.69656372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02019674 154.69659424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02019675 154.69659424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02019676 154.69660950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02019677 154.69660950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02019678 154.69664001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02019679 154.69664001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02019680 154.69667053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02019681 154.69667053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02019682 154.69668579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02019683 154.69670105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02019684 154.69673157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02019685 154.69673157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02019686 154.69676208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02019687 154.69676208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02019688 154.69677734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02019689 154.69677734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02019690 154.69680786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02019691 154.69680786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02019692 154.69683838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02019693 154.69683838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02019694 154.69686890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02019695 154.69686890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02019696 154.69689941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02019697 154.69689941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02019698 154.69691467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02019699 154.69691467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02019700 154.69694519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02019701 154.69694519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02019702 154.69697571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02019703 154.69697571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02019704 154.69699097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02019705 154.69700623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02019706 154.69703674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02019707 154.69703674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02019708 154.69706726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02019709 154.69706726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02019710 154.69708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02019711 154.69708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02019712 154.69711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02019713 154.69711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02019714 154.69714355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02019715 154.69715881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02019716 154.69717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02019717 154.69717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02019718 154.69720459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02019719 154.69720459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02019720 154.69723511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02019721 154.69723511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02019722 154.69725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02019723 154.69725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02019724 154.69728088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02019725 154.69729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02019726 154.69731140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02019727 154.69731140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02019728 154.69734192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02019729 154.69734192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02019730 154.69737244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02019731 154.69737244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02019732 154.69738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02019733 154.69738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02019734 154.69741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02019735 154.69743347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02019736 154.69746399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02019737 154.69746399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02019738 154.69747925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02019739 154.69747925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02019740 154.69750977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02019741 154.69750977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02019742 154.69761658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02019743 154.69761658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02019744 154.69763184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02019745 154.69764709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02019746 154.69767761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02019747 154.69767761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02019748 154.69770813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02019749 154.69770813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02019750 154.69772339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02019751 154.69772339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02019752 154.69775391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02019753 154.69776917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02019754 154.69778442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02019755 154.69778442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02019756 154.69781494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02019757 154.69781494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02019758 154.69784546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02019759 154.69784546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02019760 154.69787598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02019761 154.69787598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02019762 154.69789124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02019763 154.69790649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02019764 154.69793701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02019765 154.69793701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02019766 154.69795227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02019767 154.69795227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02019768 154.69798279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02019769 154.69798279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02019770 154.69801331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02019771 154.69801331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02019772 154.69802856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02019773 154.69804382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02019774 154.69807434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02019775 154.69807434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02019776 154.69810486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02019777 154.69810486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02019778 154.69812012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02019779 154.69812012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02019780 154.69815063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02019781 154.69815063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02019782 154.69818115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02019783 154.69819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02019784 154.69821167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02019785 154.69821167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02019786 154.69824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02019787 154.69824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02019788 154.69827271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02019789 154.69827271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02019790 154.69828796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02019791 154.69828796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02019792 154.69831848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02019793 154.69831848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02019794 154.69834900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02019795 154.69834900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02019796 154.69837952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02019797 154.69837952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02019798 154.69841003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02019799 154.69841003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02019800 154.69842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02019801 154.69842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02019802 154.69845581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02019803 154.69845581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02019804 154.69856262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02019805 154.69856262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02019806 154.69859314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02019807 154.69859314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02019808 154.69860840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02019809 154.69862366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02019810 154.69865417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02019811 154.69865417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02019812 154.69866943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02019813 154.69866943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02019814 154.69869995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02019815 154.69869995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02019816 154.69873047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02019817 154.69873047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02019818 154.69874573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02019819 154.69874573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02019820 154.69877625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02019821 154.69879150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02019822 154.69882202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02019823 154.69882202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02019824 154.69883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02019825 154.69883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02019826 154.69886780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02019827 154.69886780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02019828 154.69889832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02019829 154.69889832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02019830 154.69891357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02019831 154.69892883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02019832 154.69895935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02019833 154.69895935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02019834 154.69898987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02019835 154.69898987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02019836 154.69900513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02019837 154.69900513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02019838 154.69903564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02019839 154.69903564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02019840 154.69906616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02019841 154.69906616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02019842 154.69909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02019843 154.69909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02019844 154.69912720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02019845 154.69912720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02019846 154.69914246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02019847 154.69914246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02019848 154.69917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02019849 154.69917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02019850 154.69920349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02019851 154.69921875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02019852 154.69923401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02019853 154.69923401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02019854 154.69926453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02019855 154.69926453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02019856 154.69929504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02019857 154.69929504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02019858 154.69931030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02019859 154.69931030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02019860 154.69934082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02019861 154.69935608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02019862 154.69938660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02019863 154.69938660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02019864 154.69940186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02019865 154.69940186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02019866 154.69943237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02019867 154.69943237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02019868 154.69952393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02019869 154.69953918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02019870 154.69955444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02019871 154.69955444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02019872 154.69958496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02019873 154.69958496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02019874 154.69961548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02019875 154.69961548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02019876 154.69963074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02019877 154.69964600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02019878 154.69967651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02019879 154.69967651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02019880 154.69969177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02019881 154.69969177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02019882 154.69972229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02019883 154.69972229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02019884 154.69975281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02019885 154.69975281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02019886 154.69978333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02019887 154.69978333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02019888 154.69979858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02019889 154.69981384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02019890 154.69984436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02019891 154.69984436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02019892 154.69985962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02019893 154.69985962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02019894 154.69989014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02019895 154.69989014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02019896 154.69992065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02019897 154.69993591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02019898 154.69995117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02019899 154.69995117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02019900 154.69998169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02019901 154.69998169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02019902 154.70001221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02019903 154.70001221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02019904 154.70002747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02019905 154.70002747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02019906 154.70005798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02019907 154.70005798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02019908 154.70008850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02019909 154.70008850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02019910 154.70011902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02019911 154.70011902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02019912 154.70014954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02019913 154.70014954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02019914 154.70018005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02019915 154.70018005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02019916 154.70019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02019917 154.70019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02019918 154.70022583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02019919 154.70024109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02019920 154.70025635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02019921 154.70025635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02019922 154.70028687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02019923 154.70028687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02019924 154.70031738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02019925 154.70031738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02019926 154.70033264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02019927 154.70033264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02019928 154.70036316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02019929 154.70037842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02019930 154.70040894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02019931 154.70040894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02019932 154.70048523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02019933 154.70048523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02019934 154.70051575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02019935 154.70053101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02019936 154.70056152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02019937 154.70056152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02019938 154.70057678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02019939 154.70057678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02019940 154.70060730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02019941 154.70060730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02019942 154.70063782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02019943 154.70063782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02019944 154.70065308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02019945 154.70066833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02019946 154.70069885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02019947 154.70069885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02019948 154.70072937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02019949 154.70072937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02019950 154.70074463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02019951 154.70074463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02019952 154.70077515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02019953 154.70077515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02019954 154.70080566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02019955 154.70080566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02019956 154.70083618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02019957 154.70083618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02019958 154.70086670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02019959 154.70086670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02019960 154.70089722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02019961 154.70089722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02019962 154.70091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02019963 154.70091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02019964 154.70094299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02019965 154.70095825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02019966 154.70097351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02019967 154.70097351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02019968 154.70100403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02019969 154.70100403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02019970 154.70103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02019971 154.70103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02019972 154.70104980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02019973 154.70104980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02019974 154.70108032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02019975 154.70109558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02019976 154.70112610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02019977 154.70112610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02019978 154.70114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02019979 154.70114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02019980 154.70117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02019981 154.70117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02019982 154.70120239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02019983 154.70120239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02019984 154.70121765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02019985 154.70121765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02019986 154.70124817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02019987 154.70126343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02019988 154.70129395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02019989 154.70129395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02019990 154.70130920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02019991 154.70130920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02019992 154.70133972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02019993 154.70133972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02019994 154.70144653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02019995 154.70144653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02019996 154.70146179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02019997 154.70146179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02019998 154.70149231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02019999 154.70149231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02020000 154.70152283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02020001 154.70152283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02020002 154.70153809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02020003 154.70155334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02020004 154.70158386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02020005 154.70158386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02020006 154.70159912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02020007 154.70159912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02020008 154.70162964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02020009 154.70162964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02020010 154.70166016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02020011 154.70166016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02020012 154.70169067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02020013 154.70169067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02020014 154.70172119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02020015 154.70172119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02020016 154.70175171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02020017 154.70175171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02020018 154.70176697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02020019 154.70176697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02020020 154.70179749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02020021 154.70179749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02020022 154.70182800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02020023 154.70184326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02020024 154.70185852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02020025 154.70185852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02020026 154.70188904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02020027 154.70188904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02020028 154.70191956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02020029 154.70191956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02020030 154.70193481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02020031 154.70193481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02020032 154.70196533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02020033 154.70198059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02020034 154.70199585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02020035 154.70199585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02020036 154.70202637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02020037 154.70202637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02020038 154.70205688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02020039 154.70205688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02020040 154.70208740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02020041 154.70208740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02020042 154.70210266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02020043 154.70211792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02020044 154.70214844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02020045 154.70214844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02020046 154.70216370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02020047 154.70216370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02020048 154.70219421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02020049 154.70219421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02020050 154.70222473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02020051 154.70222473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02020052 154.70223999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02020053 154.70225525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02020054 154.70228577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02020055 154.70228577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02020056 154.70231628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02020057 154.70231628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02020058 154.70233154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02020059 154.70233154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02020060 154.70236206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02020061 154.70236206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02020062 154.70239258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02020063 154.70239258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02020064 154.70240784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02020065 154.70242310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02020066 154.70245361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02020067 154.70245361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02020068 154.70248413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02020069 154.70248413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02020070 154.70249939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02020071 154.70249939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02020072 154.70252991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02020073 154.70254517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02020074 154.70256042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02020075 154.70256042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02020076 154.70259094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02020077 154.70259094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02020078 154.70262146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02020079 154.70262146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02020080 154.70263672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02020081 154.70263672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02020082 154.70266724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02020083 154.70266724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02020084 154.70269775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02020085 154.70269775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02020086 154.70271301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02020087 154.70271301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02020088 154.70275879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02020089 154.70275879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02020090 154.70278931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02020091 154.70278931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02020092 154.70280457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02020093 154.70280457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02020094 154.70283508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02020095 154.70283508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02020096 154.70286560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02020097 154.70288086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02020098 154.70288086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02020099 154.70289612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02020100 154.70292664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02020101 154.70292664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02020102 154.70295715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02020103 154.70295715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02020104 154.70297241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02020105 154.70297241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02020106 154.70300293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02020107 154.70300293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02020108 154.70303345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02020109 154.70303345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02020110 154.70304871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02020111 154.70304871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02020112 154.70307922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02020113 154.70307922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02020114 154.70310974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02020115 154.70310974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02020116 154.70314026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02020117 154.70314026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02020118 154.70317078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02020119 154.70317078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02020120 154.70318604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02020121 154.70318604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02020122 154.70321655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02020123 154.70321655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02020124 154.70324707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02020125 154.70326233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02020126 154.70327759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02020127 154.70327759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02020128 154.70330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02020129 154.70330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02020130 154.70333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02020131 154.70333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02020132 154.70335388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02020133 154.70335388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02020134 154.70338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02020135 154.70338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02020136 154.70341492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02020137 154.70343018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02020138 154.70344543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02020139 154.70344543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02020140 154.70347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02020141 154.70347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02020142 154.70356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02020143 154.70358276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02020144 154.70359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02020145 154.70359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02020146 154.70362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02020147 154.70362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02020148 154.70365906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02020149 154.70365906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02020150 154.70367432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02020151 154.70367432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02020152 154.70370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02020153 154.70370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02020154 154.70373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02020155 154.70373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02020156 154.70375061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02020157 154.70375061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02020158 154.70378113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02020159 154.70378113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02020160 154.70381165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02020161 154.70382690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02020162 154.70382690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02020163 154.70384216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02020164 154.70387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02020165 154.70387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02020166 154.70390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02020167 154.70390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02020168 154.70391846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02020169 154.70391846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02020170 154.70394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02020171 154.70394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02020172 154.70397949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02020173 154.70397949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02020174 154.70399475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02020175 154.70401001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02020176 154.70404053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02020177 154.70404053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02020178 154.70407104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02020179 154.70407104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02020180 154.70408630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02020181 154.70408630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02020182 154.70411682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02020183 154.70413208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02020184 154.70414734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02020185 154.70414734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02020186 154.70417786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02020187 154.70417786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02020188 154.70420837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02020189 154.70420837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02020190 154.70422363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02020191 154.70422363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02020192 154.70425415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02020193 154.70425415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02020194 154.70428467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02020195 154.70428467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02020196 154.70429993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02020197 154.70429993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02020198 154.70433044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02020199 154.70433044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02020200 154.70436096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02020201 154.70436096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02020202 154.70439148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02020203 154.70439148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02020204 154.70440674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02020205 154.70442200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02020206 154.70451355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02020207 154.70451355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02020208 154.70454407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02020209 154.70454407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02020210 154.70455933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02020211 154.70455933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02020212 154.70458984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02020213 154.70458984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02020214 154.70462036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02020215 154.70462036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02020216 154.70465088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02020217 154.70465088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02020218 154.70468140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02020219 154.70468140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02020220 154.70469666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02020221 154.70469666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02020222 154.70472717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02020223 154.70472717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02020224 154.70475769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02020225 154.70475769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02020226 154.70478821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02020227 154.70478821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02020228 154.70480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02020229 154.70480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02020230 154.70483398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02020231 154.70483398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02020232 154.70486450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02020233 154.70486450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02020234 154.70487976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02020235 154.70489502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02020236 154.70492554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02020237 154.70492554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02020238 154.70494080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02020239 154.70494080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02020240 154.70497131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02020241 154.70497131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02020242 154.70500183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02020243 154.70500183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02020244 154.70501709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02020245 154.70501709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02020246 154.70504761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02020247 154.70504761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02020248 154.70507813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02020249 154.70507813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02020250 154.70509338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02020251 154.70509338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02020252 154.70512390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02020253 154.70513916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02020254 154.70515442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02020255 154.70516968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02020256 154.70518494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02020257 154.70518494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02020258 154.70521545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02020259 154.70521545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02020260 154.70524597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02020261 154.70524597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02020262 154.70526123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02020263 154.70526123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02020264 154.70529175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02020265 154.70529175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02020266 154.70532227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02020267 154.70532227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02020268 154.70533752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02020269 154.70533752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02020270 154.70536804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02020271 154.70536804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02020272 154.70547485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02020273 154.70547485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02020274 154.70549011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02020275 154.70549011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02020276 154.70552063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02020277 154.70552063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02020278 154.70558167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02020279 154.70558167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02020280 154.70559692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02020281 154.70559692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02020282 154.70562744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02020283 154.70562744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02020284 154.70565796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02020285 154.70565796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02020286 154.70567322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02020287 154.70567322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02020288 154.70570374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02020289 154.70570374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02020290 154.70573425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02020291 154.70573425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02020292 154.70574951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02020293 154.70576477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02020294 154.70579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02020295 154.70579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02020296 154.70581055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02020297 154.70581055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02020298 154.70584106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02020299 154.70584106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02020300 154.70587158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02020301 154.70587158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02020302 154.70588684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02020303 154.70588684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02020304 154.70591736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02020305 154.70593262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02020306 154.70596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02020307 154.70596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02020308 154.70597839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02020309 154.70597839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02020310 154.70600891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02020311 154.70600891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02020312 154.70603943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02020313 154.70603943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02020314 154.70605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02020315 154.70606995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02020316 154.70610046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02020317 154.70610046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02020318 154.70613098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02020319 154.70613098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02020320 154.70614624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02020321 154.70614624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02020322 154.70617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02020323 154.70617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02020324 154.70620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02020325 154.70620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02020326 154.70622253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02020327 154.70622253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02020328 154.70625305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02020329 154.70625305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02020330 154.70628357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02020331 154.70629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02020332 154.70629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02020333 154.70631409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02020334 154.70634460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02020335 154.70634460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02020336 154.70637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02020337 154.70637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02020338 154.70639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02020339 154.70639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02020340 154.70642090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02020341 154.70642090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02020342 154.70645142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02020343 154.70645142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02020344 154.70646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02020345 154.70646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02020346 154.70649719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02020347 154.70649719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02020348 154.70652771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02020349 154.70652771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02020350 154.70655823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02020351 154.70655823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02020352 154.70658875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02020353 154.70658875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02020354 154.70660400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02020355 154.70660400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02020356 154.70663452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02020357 154.70664978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02020358 154.70666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02020359 154.70668030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02020360 154.70669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02020361 154.70669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02020362 154.70672607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02020363 154.70672607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02020364 154.70675659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02020365 154.70675659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02020366 154.70677185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02020367 154.70677185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02020368 154.70680237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02020369 154.70680237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02020370 154.70683289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02020371 154.70683289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02020372 154.70684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02020373 154.70684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02020374 154.70687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02020375 154.70687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02020376 154.70690918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02020377 154.70692444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02020378 154.70692444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02020379 154.70693970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02020380 154.70697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02020381 154.70697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02020382 154.70700073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02020383 154.70700073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02020384 154.70701599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02020385 154.70701599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02020386 154.70704651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02020387 154.70704651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02020388 154.70707703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02020389 154.70707703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02020390 154.70709229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02020391 154.70709229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02020392 154.70712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02020393 154.70712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02020394 154.70715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02020395 154.70715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02020396 154.70716858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02020397 154.70718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02020398 154.70719910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02020399 154.70721436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02020400 154.70724487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02020401 154.70724487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02020402 154.70726013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02020403 154.70726013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02020404 154.70729065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02020405 154.70730591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02020406 154.70732117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02020407 154.70732117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02020408 154.70735168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02020409 154.70735168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02020410 154.70738220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02020411 154.70738220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02020412 154.70739746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02020413 154.70741272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02020414 154.70744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02020415 154.70744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02020416 154.70747375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02020417 154.70747375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02020418 154.70748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02020419 154.70748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02020420 154.70751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02020421 154.70753479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02020422 154.70756531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02020423 154.70756531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02020424 154.70758057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02020425 154.70758057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02020426 154.70761108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02020427 154.70761108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02020428 154.70764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02020429 154.70764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02020430 154.70765686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02020431 154.70767212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02020432 154.70770264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02020433 154.70770264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02020434 154.70771790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02020435 154.70771790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02020436 154.70774841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02020437 154.70774841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02020438 154.70777893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02020439 154.70777893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02020440 154.70779419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02020441 154.70780945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02020442 154.70783997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02020443 154.70783997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02020444 154.70787048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02020445 154.70787048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02020446 154.70788574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02020447 154.70788574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02020448 154.70791626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02020449 154.70791626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02020450 154.70794678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02020451 154.70794678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02020452 154.70796204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02020453 154.70797729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02020454 154.70800781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02020455 154.70800781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02020456 154.70803833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02020457 154.70803833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02020458 154.70805359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02020459 154.70805359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02020460 154.70808411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02020461 154.70808411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02020462 154.70811462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02020463 154.70811462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02020464 154.70814514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02020465 154.70814514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02020466 154.70817566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02020467 154.70817566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02020468 154.70819092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02020469 154.70819092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02020470 154.70822144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02020471 154.70822144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02020472 154.70825195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02020473 154.70826721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02020474 154.70828247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02020475 154.70828247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02020476 154.70831299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02020477 154.70831299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02020478 154.70834351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02020479 154.70834351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02020480 154.70835876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02020481 154.70835876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02020482 154.70838928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02020483 154.70840454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02020484 154.70843506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02020485 154.70843506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02020486 154.70845032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02020487 154.70845032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02020488 154.70848083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02020489 154.70848083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02020490 154.70851135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02020491 154.70851135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02020492 154.70852661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02020493 154.70854187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02020494 154.70855713 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02020495 154.70857239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02020496 154.70857239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02020497 154.70858765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02020498 154.70858765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02020499 154.70861816 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02020500 154.70861816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02020501 154.70861816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02020502 154.70863342 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02020503 154.70864868 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02020504 154.70864868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02020505 154.70864868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02020506 154.70867920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02020507 154.70867920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02020508 154.70870972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02020509 154.70870972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02020510 154.70874023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02020511 154.70874023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02020512 154.70875549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02020513 154.70875549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02020514 154.70877075 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02020515 154.70877075 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02020516 154.70878601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02020517 154.70880127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02020518 154.70883179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02020519 154.70883179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02020520 154.70883179 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02020521 154.70884705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02020522 154.70884705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02020523 154.70886230 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02020524 154.70887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02020525 154.70887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02020526 154.70890808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02020527 154.70890808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02020528 154.70892334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02020529 154.70893860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02020530 154.70895386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02020531 154.70896912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02020532 154.70898438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02020533 154.70898438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02020534 154.70901489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02020535 154.70901489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02020536 154.70904541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02020537 154.70904541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02020538 154.70907593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02020539 154.70907593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02020540 154.70913696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02020541 154.70913696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02020542 154.70915222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02020543 154.70915222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02020544 154.70918274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02020545 154.70919800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02020546 154.70922852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02020547 154.70922852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02020548 154.70924377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02020549 154.70924377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02020550 154.70927429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02020551 154.70927429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02020552 154.70930481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02020553 154.70930481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02020554 154.70932007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02020555 154.70933533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02020556 154.70936584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02020557 154.70936584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02020558 154.70939636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02020559 154.70939636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02020560 154.70941162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02020561 154.70941162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02020562 154.70944214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02020563 154.70944214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02020564 154.70947266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02020565 154.70947266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02020566 154.70950317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02020567 154.70950317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02020568 154.70953369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02020569 154.70953369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02020570 154.70954895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02020571 154.70954895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02020572 154.70957947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02020573 154.70957947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02020574 154.70960999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02020575 154.70960999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02020576 154.70962524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02020577 154.70964050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02020578 154.70967102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02020579 154.70967102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02020580 154.70970154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02020581 154.70970154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02020582 154.70971680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02020583 154.70971680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02020584 154.70974731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02020585 154.70974731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02020586 154.70977783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02020587 154.70979309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02020588 154.70980835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02020589 154.70980835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02020590 154.70983887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02020591 154.70983887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02020592 154.70986938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02020593 154.70986938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02020594 154.70988464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02020595 154.70988464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02020596 154.70993042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02020597 154.70993042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02020598 154.70994568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02020599 154.70994568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02020600 154.70997620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02020601 154.70997620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02020602 154.71000671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02020603 154.71000671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02020604 154.71002197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02020605 154.71002197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02020606 154.71005249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02020607 154.71005249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02020608 154.71008301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02020609 154.71008301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02020610 154.71009827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02020611 154.71009827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02020612 154.71012878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02020613 154.71012878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02020614 154.71015930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02020615 154.71017456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02020616 154.71018982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02020617 154.71018982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02020618 154.71022034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02020619 154.71022034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02020620 154.71025085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02020621 154.71025085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02020622 154.71026611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02020623 154.71026611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02020624 154.71029663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02020625 154.71029663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02020626 154.71032715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02020627 154.71034241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02020628 154.71035767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02020629 154.71035767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02020630 154.71038818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02020631 154.71038818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02020632 154.71041870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02020633 154.71041870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02020634 154.71043396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02020635 154.71044922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02020636 154.71047974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02020637 154.71047974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02020638 154.71051025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02020639 154.71051025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02020640 154.71054077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02020641 154.71055603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02020642 154.71064758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02020643 154.71064758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02020644 154.71066284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02020645 154.71066284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02020646 154.71069336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02020647 154.71069336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02020648 154.71076965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02020649 154.71076965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02020650 154.71080017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02020651 154.71080017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02020652 154.71081543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02020653 154.71081543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02020654 154.71084595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02020655 154.71084595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02020656 154.71087646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02020657 154.71089172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02020658 154.71090698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02020659 154.71090698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02020660 154.71093750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02020661 154.71093750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02020662 154.71096802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02020663 154.71096802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02020664 154.71098328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02020665 154.71098328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02020666 154.71101379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02020667 154.71101379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02020668 154.71104431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02020669 154.71104431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02020670 154.71105957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02020671 154.71105957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02020672 154.71109009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02020673 154.71109009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02020674 154.71112061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02020675 154.71113586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02020676 154.71113586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02020677 154.71115112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02020678 154.71118164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02020679 154.71118164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02020680 154.71121216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02020681 154.71121216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02020682 154.71122742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02020683 154.71122742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02020684 154.71125793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02020685 154.71125793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02020686 154.71128845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02020687 154.71128845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02020688 154.71130371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02020689 154.71130371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02020690 154.71133423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02020691 154.71133423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02020692 154.71136475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02020693 154.71136475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02020694 154.71138000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02020695 154.71139526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02020696 154.71141052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02020697 154.71142578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02020698 154.71145630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02020699 154.71145630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02020700 154.71147156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02020701 154.71147156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02020702 154.71150208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02020703 154.71150208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02020704 154.71153259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02020705 154.71153259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02020706 154.71154785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02020707 154.71156311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02020708 154.71159363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02020709 154.71159363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02020710 154.71160889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02020711 154.71160889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02020712 154.71163940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02020713 154.71163940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02020714 154.71166992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02020715 154.71166992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02020716 154.71168518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02020717 154.71170044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02020718 154.71171570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02020719 154.71173096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02020720 154.71176147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02020721 154.71176147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02020722 154.71177673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02020723 154.71177673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02020724 154.71180725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02020725 154.71180725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02020726 154.71183777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02020727 154.71183777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02020728 154.71185303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02020729 154.71185303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02020730 154.71188354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02020731 154.71188354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02020732 154.71191406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02020733 154.71191406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02020734 154.71192932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02020735 154.71192932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02020736 154.71195984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02020737 154.71197510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02020738 154.71200562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02020739 154.71200562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02020740 154.71202087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02020741 154.71202087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02020742 154.71205139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02020743 154.71205139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02020744 154.71214294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02020745 154.71214294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02020746 154.71217346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02020747 154.71217346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02020748 154.71218872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02020749 154.71218872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02020750 154.71221924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02020751 154.71221924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02020752 154.71224976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02020753 154.71224976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02020754 154.71226501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02020755 154.71228027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02020756 154.71231079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02020757 154.71231079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02020758 154.71232605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02020759 154.71232605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02020760 154.71235657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02020761 154.71235657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02020762 154.71238708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02020763 154.71238708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02020764 154.71240234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02020765 154.71240234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02020766 154.71243286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02020767 154.71243286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02020768 154.71246338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02020769 154.71246338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02020770 154.71249390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02020771 154.71249390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02020772 154.71250916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02020773 154.71252441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02020774 154.71253967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02020775 154.71255493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02020776 154.71257019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02020777 154.71257019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02020778 154.71260071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02020779 154.71260071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02020780 154.71263123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02020781 154.71269226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02020782 154.71272278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02020783 154.71272278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02020784 154.71272278 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02020785 154.71273804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02020786 154.71273804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02020787 154.71278381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02020788 154.71278381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02020789 154.71279907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02020790 154.71279907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02020791 154.71282959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02020792 154.71282959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02020793 154.71286011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02020794 154.71287537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02020795 154.71289063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02020796 154.71289063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02020797 154.71292114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02020798 154.71292114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02020799 154.71295166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02020800 154.71295166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02020801 154.71296692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02020802 154.71296692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02020803 154.71296692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02020804 154.71299744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02020805 154.71299744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02020806 154.71302795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02020807 154.71302795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02020808 154.71304321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02020809 154.71304321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02020810 154.71307373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02020811 154.71307373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02020812 154.71310425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02020813 154.71310425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02020814 154.71311951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02020815 154.71313477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02020816 154.71315002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02020817 154.71316528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02020818 154.71319580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02020819 154.71319580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02020820 154.71328735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02020821 154.71328735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02020822 154.71330261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02020823 154.71330261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02020824 154.71333313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02020825 154.71333313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02020826 154.71336365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02020827 154.71336365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02020828 154.71337891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02020829 154.71337891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02020830 154.71340942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02020831 154.71342468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02020832 154.71343994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02020833 154.71343994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02020834 154.71347046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02020835 154.71347046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02020836 154.71353149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02020837 154.71354675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02020838 154.71357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02020839 154.71357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02020840 154.71359253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02020841 154.71359253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02020842 154.71362305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02020843 154.71362305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02020844 154.71365356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02020845 154.71365356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02020846 154.71368408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02020847 154.71368408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02020848 154.71369934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02020849 154.71369934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02020850 154.71372986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02020851 154.71372986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02020852 154.71376038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02020853 154.71376038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02020854 154.71383667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02020855 154.71385193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02020856 154.71386719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02020857 154.71388245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02020858 154.71391296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02020859 154.71391296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02020860 154.71392822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02020861 154.71392822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02020862 154.71395874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02020863 154.71395874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02020864 154.71398926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02020865 154.71398926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02020866 154.71400452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02020867 154.71400452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02020868 154.71403503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02020869 154.71405029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02020870 154.71415710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02020871 154.71415710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02020872 154.71418762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02020873 154.71418762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02020874 154.71421814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02020875 154.71421814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02020876 154.71423340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02020877 154.71423340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02020878 154.71427917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02020879 154.71427917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02020880 154.71430969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02020881 154.71430969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02020882 154.71432495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02020883 154.71432495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02020884 154.71441650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02020885 154.71441650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02020886 154.71444702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02020887 154.71444702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02020888 154.71447754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02020889 154.71447754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02020890 154.71450806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02020891 154.71450806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02020892 154.71453857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02020893 154.71453857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02020894 154.71455383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02020895 154.71455383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02020896 154.71458435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02020897 154.71458435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02020898 154.71461487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02020899 154.71461487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02020900 154.71463013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02020901 154.71463013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02020902 154.71466064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02020903 154.71466064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02024950 154.77497864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -02024951 154.77497864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -02024952 154.77500916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -02024953 154.77500916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -02024954 154.77502441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -02024955 154.77503967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -02024956 154.77505493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -02024957 154.77507019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -02024958 154.77508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -02024959 154.77508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -02024960 154.77511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -02024961 154.77511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -02024962 154.77514648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -02024963 154.77514648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -02024964 154.77516174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -02024965 154.77516174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -02024966 154.77519226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -02024967 154.77519226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -02024968 154.77522278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -02024969 154.77522278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -02024970 154.77523804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -02024971 154.77525330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -02024972 154.77528381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -02024973 154.77528381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -02024974 154.77531433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -02024975 154.77531433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -02024976 154.77532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -02024977 154.77532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -02024978 154.77536011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -02024979 154.77537537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -02024980 154.77539063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -02024981 154.77540588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -02024982 154.77542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -02024983 154.77542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -02024984 154.77545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -02024985 154.77545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -02024986 154.77548218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -02024987 154.77548218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -02024988 154.77549744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -02024989 154.77549744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -02024990 154.77552795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -02024991 154.77552795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -02024992 154.77555847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -02024993 154.77555847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -02038892 154.98226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -02038893 154.98226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -02038894 154.98229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -02038895 154.98229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -02038896 154.98233032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -02038897 154.98233032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -02038898 154.98234558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -02038899 154.98236084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -02038900 154.98239136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -02038901 154.98239136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -02038902 154.98240662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -02038903 154.98240662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -02038904 154.98243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -02038905 154.98243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -02038906 154.98246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -02038907 154.98246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -02038908 154.98248291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -02038909 154.98248291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -02038910 154.98257446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -02038911 154.98258972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -02038912 154.98260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -02038913 154.98262024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -02038914 154.98265076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -02038915 154.98265076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -02038916 154.98266602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -02038917 154.98266602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -02038918 154.98269653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -02038919 154.98269653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -02038920 154.98272705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -02038921 154.98272705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -02038922 154.98274231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27398 -02038923 154.98274231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27398 -02038924 154.98277283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a8 -02038925 154.98277283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a8 -02038926 154.98280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b8 -02038927 154.98280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b8 -02038928 154.98281860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c8 -02038929 154.98281860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c8 -02038930 154.98284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d8 -02038931 154.98286438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d8 -02038932 154.98287964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e8 -02038933 154.98287964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e8 -02038934 154.98291016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f8 -02038935 154.98291016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f8 -02043830 155.05519104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf8 -02043831 155.05519104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf8 -02043832 155.05523682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -02043833 155.05523682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -02043834 155.05525208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -02043835 155.05525208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -02043836 155.05528259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -02043837 155.05528259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -02043838 155.05531311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -02043839 155.05531311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -02043840 155.05532837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -02043841 155.05532837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -02043842 155.05535889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -02043843 155.05535889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -02043844 155.05538940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -02043845 155.05538940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -02043846 155.05540466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -02043847 155.05541992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -02043848 155.05543518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -02043849 155.05545044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -02043850 155.05548096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -02043851 155.05548096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -02043852 155.05549622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -02043853 155.05549622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -02043854 155.05552673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -02043855 155.05552673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -02043856 155.05555725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -02043857 155.05555725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -02043858 155.05557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -02043859 155.05557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -02043860 155.05560303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -02043861 155.05560303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -02043862 155.05563354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -02043863 155.05563354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -02043864 155.05564880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -02043865 155.05564880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -02043866 155.05567932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -02043867 155.05567932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -02043868 155.05570984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -02043869 155.05572510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -02043870 155.05574036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -02043871 155.05574036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -02043872 155.05577087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -02043873 155.05577087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -02048788 155.12705994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e8 -02048789 155.12705994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e8 -02048790 155.12707520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f8 -02048791 155.12707520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f8 -02048792 155.12710571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a808 -02048793 155.12710571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a808 -02048794 155.12713623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a818 -02048795 155.12713623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a818 -02048796 155.12716675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a828 -02048797 155.12716675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a828 -02048798 155.12719727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a838 -02048799 155.12719727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a838 -02048800 155.12721252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a848 -02048801 155.12721252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a848 -02048802 155.12724304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a858 -02048803 155.12724304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a858 -02048804 155.12727356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a868 -02048805 155.12727356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a868 -02048806 155.12730408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a878 -02048807 155.12730408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a878 -02048808 155.12733459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a888 -02048809 155.12733459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a888 -02048810 155.12736511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a898 -02048811 155.12736511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a898 -02048812 155.12738037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a8 -02048813 155.12738037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a8 -02048814 155.12741089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b8 -02048815 155.12742615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b8 -02048816 155.12745667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c8 -02048817 155.12745667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c8 -02048818 155.12747192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d8 -02048819 155.12747192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d8 -02048820 155.12750244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e8 -02048821 155.12750244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e8 -02048822 155.12753296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f8 -02048823 155.12753296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f8 -02048824 155.12756348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a908 -02048825 155.12756348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a908 -02048826 155.12759399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a918 -02048827 155.12759399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a918 -02048828 155.12760925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a928 -02048829 155.12760925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a928 -02048830 155.12763977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a938 -02048831 155.12765503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a938 -02054047 155.20347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -02054048 155.20347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -02054049 155.20350647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd8 -02054050 155.20350647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd8 -02054051 155.20353699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be8 -02054052 155.20353699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be8 -02054053 155.20356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf8 -02054054 155.20356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf8 -02054055 155.20359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c08 -02054056 155.20359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c08 -02054057 155.20362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c18 -02054058 155.20362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c18 -02054059 155.20365906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c28 -02054060 155.20365906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c28 -02054061 155.20368958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c38 -02054062 155.20368958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c38 -02054063 155.20370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c48 -02054064 155.20370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c48 -02054065 155.20373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c58 -02054066 155.20375061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c58 -02054067 155.20376587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c68 -02054068 155.20378113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c68 -02054069 155.20379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c78 -02054070 155.20379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c78 -02054071 155.20382690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c88 -02054072 155.20382690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c88 -02054073 155.20385742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c98 -02054074 155.20385742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c98 -02054075 155.20387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca8 -02054076 155.20387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca8 -02054077 155.20390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb8 -02054078 155.20390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb8 -02054079 155.20393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc8 -02054080 155.20393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc8 -02054081 155.20394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -02054082 155.20394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -02054083 155.20397949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -02054084 155.20397949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -02054085 155.20401001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -02054086 155.20401001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -02054087 155.20402527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -02054088 155.20404053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -02054089 155.20405579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -02054090 155.20407104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -02061271 155.53799438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061272 155.53881836 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061273 155.53909302 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061274 155.53997803 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061275 155.54023743 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061276 155.81097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061277 155.81291199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061278 155.81317139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061279 155.84260559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061280 155.88172913 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061281 155.88255310 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061282 155.88279724 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061283 155.94093323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061284 155.94238281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061285 155.94309998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061286 155.94332886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061287 155.94363403 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061288 155.99995422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061289 156.00080872 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061290 156.00161743 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061291 156.00186157 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061292 156.00289917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061293 156.00305176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061294 156.00305176 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061295 156.00314331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061296 156.00366211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061297 156.07312012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061298 156.07810974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061299 156.07836914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061300 156.10401917 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061301 156.10481262 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061302 156.10505676 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061303 156.12188721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061304 156.12942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061305 156.12989807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061306 156.13037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061307 156.13078308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061308 156.13113403 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061309 156.13150024 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061310 156.13208008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02061311 156.13230896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061312 156.14907837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061313 156.15977478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061314 156.16030884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061315 156.16076660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061316 156.16113281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061317 156.16818237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061318 156.16860962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061319 156.16865540 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061320 156.25828552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061321 156.25881958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061322 156.33306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061323 156.33384705 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061324 156.68977356 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02061325 156.70767212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061326 156.70768738 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061327 156.77728271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061328 157.21531677 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061329 157.21536255 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061330 157.21537781 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061331 157.21539307 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02061332 157.21551514 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061333 157.21551514 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061334 157.21557617 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061335 157.21560669 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061336 158.39691162 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02061337 158.70898438 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02061338 158.72673035 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061339 158.72674561 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061340 159.72207642 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061341 159.72210693 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061342 159.72213745 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061343 159.72215271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02061344 159.72227478 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061345 159.72227478 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061346 159.72233582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061347 159.72236633 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061348 160.30833435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02061349 160.30834961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02061350 160.30838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02061351 160.30838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02061352 160.30841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02061353 160.30841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02061354 160.30842590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02061355 160.30842590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02061356 160.30845642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02061357 160.30847168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02061358 160.30848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02061359 160.30848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02061360 160.30851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02061361 160.30851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02061362 160.30854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02061363 160.30854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02061364 160.30856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02061365 160.30856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02061366 160.30859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02061367 160.30860901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02061368 160.30863953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02061369 160.30863953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02061370 160.30865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02061371 160.30865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02061372 160.30868530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02061373 160.30868530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02061374 160.30871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02061375 160.30871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02061376 160.30873108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02061377 160.30874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02061378 160.30877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02061379 160.30877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02061380 160.30880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02061381 160.30880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02061382 160.30882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02061383 160.30882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02061384 160.30885315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02061385 160.30885315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02061386 160.30888367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02061387 160.30888367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02061388 160.30891418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02061389 160.30891418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02061390 160.30894470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02061391 160.30894470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02061392 160.30895996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02061393 160.30895996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02061394 160.30899048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02061395 160.30899048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02061396 160.30909729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02061397 160.30909729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02061398 160.30911255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02061399 160.30911255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02061400 160.30914307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02061401 160.30915833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02061402 160.30918884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02061403 160.30918884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02061404 160.30920410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02061405 160.30920410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02061406 160.30923462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02061407 160.30923462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02061408 160.30926514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02061409 160.30928040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02061410 160.30929565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02061411 160.30929565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02061412 160.30932617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02061413 160.30932617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02061414 160.30935669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02061415 160.30935669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02061416 160.30937195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02061417 160.30937195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02061418 160.30940247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02061419 160.30940247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02061420 160.30943298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02061421 160.30943298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02061422 160.30946350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02061423 160.30946350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02061424 160.30949402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02061425 160.30949402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02061426 160.30950928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02061427 160.30950928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02061428 160.30953979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02061429 160.30955505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02061430 160.30958557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02061431 160.30958557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02061432 160.30960083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02061433 160.30960083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02061434 160.30963135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02061435 160.30963135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02061436 160.30966187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02061437 160.30966187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02061438 160.30967712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02061439 160.30969238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02061440 160.30972290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02061441 160.30972290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02061442 160.30975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02061443 160.30975342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02061444 160.30976868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02061445 160.30976868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02061446 160.30979919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02061447 160.30979919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02061448 160.30982971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02061449 160.30982971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02061450 160.30986023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02061451 160.30986023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02061452 160.30989075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02061453 160.30989075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02061454 160.30990601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02061455 160.30990601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02061456 160.30993652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02061457 160.30993652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02061458 160.30996704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02061459 160.31004333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02061460 160.31007385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02061461 160.31007385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02061462 160.31013489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02061463 160.31015015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02061464 160.31016541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02061465 160.31016541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02061466 160.31019592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02061467 160.31019592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02061468 160.31022644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02061469 160.31022644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02061470 160.31024170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02061471 160.31024170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02061472 160.31034851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02061473 160.31036377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02061474 160.31039429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02061475 160.31039429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02061476 160.31040955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02061477 160.31040955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02061478 160.31044006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02061479 160.31044006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02061480 160.31047058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02061481 160.31047058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02061482 160.31048584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02061483 160.31050110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02061484 160.31053162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02061485 160.31053162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02061486 160.31054688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02061487 160.31054688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02061488 160.31057739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02061489 160.31057739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02061490 160.31060791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02061491 160.31060791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02061492 160.31062317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02061493 160.31063843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02061494 160.31066895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02061495 160.31066895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02061496 160.31069946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02061497 160.31069946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02061498 160.31071472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02061499 160.31071472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02061500 160.31074524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02061501 160.31074524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02061502 160.31077576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02061503 160.31079102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02061504 160.31080627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02061505 160.31080627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02061506 160.31083679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02061507 160.31083679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02061508 160.31086731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02061509 160.31086731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02061510 160.31088257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02061511 160.31088257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02061512 160.31091309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02061513 160.31091309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02061514 160.31094360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02061515 160.31094360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02061516 160.31097412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02061517 160.31097412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02061518 160.31100464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02061519 160.31100464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02061520 160.31101990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02061521 160.31101990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02061522 160.31105042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02061523 160.31105042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02061524 160.31108093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02061525 160.31109619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02061526 160.31111145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02061527 160.31111145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02061528 160.31114197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02061529 160.31114197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02061530 160.31117249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02061531 160.31117249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02061532 160.31118774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02061533 160.31118774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02061534 160.31121826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02061535 160.31123352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02061536 160.31126404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02061537 160.31126404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02061538 160.31127930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02061539 160.31127930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02061540 160.31130981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02061541 160.31130981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02061542 160.31134033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02061543 160.31134033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02061544 160.31135559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02061545 160.31137085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02061546 160.31140137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02061547 160.31140137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02061548 160.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02061549 160.31141663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02061550 160.31144714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02061551 160.31144714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02061552 160.31147766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02061553 160.31147766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02061554 160.31150818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02061555 160.31150818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02061556 160.31153870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02061557 160.31153870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02061558 160.31156921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02061559 160.31156921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02061560 160.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02061561 160.31158447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02061562 160.31161499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02061563 160.31161499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02061564 160.31164551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02061565 160.31166077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02061566 160.31167603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02061567 160.31167603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02061568 160.31170654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02061569 160.31170654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02061570 160.31173706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02061571 160.31173706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02061572 160.31175232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02061573 160.31175232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02061574 160.31178284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02061575 160.31179810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02061576 160.31181335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02061577 160.31181335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02061578 160.31184387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02061579 160.31184387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02061580 160.31187439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02061581 160.31187439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02061582 160.31190491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02061583 160.31190491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02061584 160.31192017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02061585 160.31193542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02061586 160.31196594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02061587 160.31196594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02061588 160.31198120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02061589 160.31198120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02061590 160.31201172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02061591 160.31201172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02061592 160.31204224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02061593 160.31204224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02061594 160.31205750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02061595 160.31207275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02061596 160.31210327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02061597 160.31210327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02061598 160.31213379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02061599 160.31213379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02061600 160.31221008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02061601 160.31221008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02061602 160.31224060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02061603 160.31224060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02061604 160.31227112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02061605 160.31228638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02061606 160.31230164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02061607 160.31230164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02061608 160.31233215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02061609 160.31233215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02061610 160.31236267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02061611 160.31236267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02061612 160.31237793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02061613 160.31237793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02061614 160.31240845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02061615 160.31242371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02061616 160.31245422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02061617 160.31245422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02061618 160.31246948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02061619 160.31246948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02061620 160.31250000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02061621 160.31250000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02061622 160.31253052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02061623 160.31253052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02061624 160.31254578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02061625 160.31256104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02061626 160.31259155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02061627 160.31259155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02061628 160.31260681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02061629 160.31260681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02061630 160.31263733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02061631 160.31263733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02061632 160.31266785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02061633 160.31266785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02061634 160.31269836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02061635 160.31269836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02061636 160.31272888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02061637 160.31272888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02061638 160.31275940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02061639 160.31275940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02061640 160.31277466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02061641 160.31277466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02061642 160.31280518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02061643 160.31280518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02061644 160.31283569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02061645 160.31285095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02061646 160.31286621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02061647 160.31286621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02061648 160.31289673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02061649 160.31289673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02061650 160.31292725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02061651 160.31292725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02061652 160.31294250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02061653 160.31294250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02061654 160.31297302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02061655 160.31298828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02061656 160.31301880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02061657 160.31301880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02061658 160.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02061659 160.31303406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02061660 160.31306458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02061661 160.31306458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02061662 160.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02061663 160.31309509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02061664 160.31318665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02061665 160.31318665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02061666 160.31321716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02061667 160.31321716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02061668 160.31324768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02061669 160.31324768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02061670 160.31326294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02061671 160.31326294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02061672 160.31329346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02061673 160.31330872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02061674 160.31332397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02061675 160.31332397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02061676 160.31335449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02061677 160.31335449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02061678 160.31338501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02061679 160.31338501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02061680 160.31341553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02061681 160.31341553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02061682 160.31343079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02061683 160.31344604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02061684 160.31347656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02061685 160.31347656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02061686 160.31349182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02061687 160.31349182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02061688 160.31352234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02061689 160.31352234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02061690 160.31355286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02061691 160.31355286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02061692 160.31356812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02061693 160.31358337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02061694 160.31361389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02061695 160.31361389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02061696 160.31364441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02061697 160.31364441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02061698 160.31365967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02061699 160.31365967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02061700 160.31369019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02061701 160.31369019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02061702 160.31372070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02061703 160.31372070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02061704 160.31375122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02061705 160.31375122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02061706 160.31378174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02061707 160.31378174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02061708 160.31381226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02061709 160.31381226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02061710 160.31382751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02061711 160.31382751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02061712 160.31385803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02061713 160.31387329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02061714 160.31388855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02061715 160.31388855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02061716 160.31391907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02061717 160.31391907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02061718 160.31394958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02061719 160.31394958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02061720 160.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02061721 160.31396484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02061722 160.31399536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02061723 160.31401062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02061724 160.31404114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02061725 160.31404114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02061726 160.31411743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02061727 160.31411743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02061728 160.31414795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02061729 160.31414795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02061730 160.31417847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02061731 160.31419373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02061732 160.31420898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02061733 160.31420898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02061734 160.31423950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02061735 160.31423950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02061736 160.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02061737 160.31427002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02061738 160.31428528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02061739 160.31428528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02061740 160.31431580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02061741 160.31431580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02061742 160.31434631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02061743 160.31436157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02061744 160.31437683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02061745 160.31437683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02061746 160.31440735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02061747 160.31440735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02061748 160.31443787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02061749 160.31443787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02061750 160.31445313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02061751 160.31446838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02061752 160.31449890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02061753 160.31449890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02061754 160.31451416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02061755 160.31451416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02061756 160.31454468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02061757 160.31454468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02061758 160.31457520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02061759 160.31457520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02061760 160.31460571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02061761 160.31460571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02061762 160.31463623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02061763 160.31463623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02061764 160.31466675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02061765 160.31466675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02061766 160.31468201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02061767 160.31468201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02061768 160.31471252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02061769 160.31471252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02061770 160.31474304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02061771 160.31475830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02061772 160.31477356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02061773 160.31477356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02061774 160.31480408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02061775 160.31480408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02061776 160.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02061777 160.31483459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02061778 160.31484985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02061779 160.31484985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02061780 160.31488037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02061781 160.31488037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02061782 160.31491089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02061783 160.31491089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02061784 160.31494141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02061785 160.31494141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02061786 160.31497192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02061787 160.31497192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02061788 160.31500244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02061789 160.31500244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02061790 160.31510925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02061791 160.31510925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02061792 160.31513977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02061793 160.31515503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02061794 160.31517029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02061795 160.31517029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02061796 160.31520081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02061797 160.31520081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02061798 160.31523132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02061799 160.31523132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02061800 160.31524658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02061801 160.31524658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02061802 160.31527710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02061803 160.31529236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02061804 160.31530762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02061805 160.31530762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02061806 160.31533813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02061807 160.31533813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02061808 160.31536865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02061809 160.31536865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02061810 160.31539917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02061811 160.31539917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02061812 160.31541443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02061813 160.31542969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02061814 160.31546021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02061815 160.31546021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02061816 160.31547546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02061817 160.31547546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02061818 160.31550598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02061819 160.31550598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02061820 160.31553650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02061821 160.31553650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02061822 160.31555176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02061823 160.31556702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02061824 160.31559753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02061825 160.31559753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02061826 160.31562805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02061827 160.31562805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02061828 160.31564331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02061829 160.31564331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02061830 160.31567383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02061831 160.31567383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02061832 160.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02061833 160.31570435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02061834 160.31573486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02061835 160.31573486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02061836 160.31576538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02061837 160.31576538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02061838 160.31579590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02061839 160.31579590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02061840 160.31581116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02061841 160.31581116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02061842 160.31584167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02061843 160.31585693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02061844 160.31587219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02061845 160.31587219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02061846 160.31590271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02061847 160.31590271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02061848 160.31593323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02061849 160.31593323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02061850 160.31594849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02061851 160.31594849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02061852 160.31597900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02061853 160.31599426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02061854 160.31602478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02061855 160.31602478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02061856 160.31604004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02061857 160.31604004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02061858 160.31607056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02061859 160.31607056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02061860 160.31610107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02061861 160.31610107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02061862 160.31611633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02061863 160.31613159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02061864 160.31616211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02061865 160.31616211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02061866 160.31619263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02061867 160.31619263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02061868 160.31620789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02061869 160.31620789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02061870 160.31623840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02061871 160.31623840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02061872 160.31626892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02061873 160.31626892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02061874 160.31628418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02061875 160.31629944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02061876 160.31632996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02061877 160.31632996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02061878 160.31634521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02061879 160.31634521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02061880 160.31637573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02061881 160.31637573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02061882 160.31640625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02061883 160.31642151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02061884 160.31643677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02061885 160.31643677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02061886 160.31646729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02061887 160.31646729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02061888 160.31649780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02061889 160.31649780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02061890 160.31651306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02061891 160.31651306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02061892 160.31654358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02061893 160.31655884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02061894 160.31658936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02061895 160.31658936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02061896 160.31660461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02061897 160.31660461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02061898 160.31663513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02061899 160.31663513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02061900 160.31666565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02061901 160.31666565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02061902 160.31668091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02061903 160.31668091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02061904 160.31671143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02061905 160.31672668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02061906 160.31674194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02061907 160.31674194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02061908 160.31677246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02061909 160.31677246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02061910 160.31680298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02061911 160.31680298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02061912 160.31681824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02061913 160.31681824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02061914 160.31684875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02061915 160.31686401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02061916 160.31689453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02061917 160.31689453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02061918 160.31690979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02061919 160.31690979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02061920 160.31694031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02061921 160.31694031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02061922 160.31697083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02061923 160.31697083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02061924 160.31698608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02061925 160.31700134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02061926 160.31703186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02061927 160.31703186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02061928 160.31706238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02061929 160.31706238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02061930 160.31707764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02061931 160.31707764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02061932 160.31710815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02061933 160.31710815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02061934 160.31713867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02061935 160.31713867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02061936 160.31716919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02061937 160.31716919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02061938 160.31719971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02061939 160.31719971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02061940 160.31721497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02061941 160.31721497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02061942 160.31724548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02061943 160.31724548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02061944 160.31727600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02061945 160.31729126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02061946 160.31730652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02061947 160.31730652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02061948 160.31733704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02061949 160.31733704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02061950 160.31736755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02061951 160.31736755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02061952 160.31738281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02061953 160.31738281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02061954 160.31741333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02061955 160.31742859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02061956 160.31745911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02061957 160.31745911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02061958 160.31747437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02061959 160.31747437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02061960 160.31750488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02061961 160.31750488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02061962 160.31753540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02061963 160.31753540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02061964 160.31755066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02061965 160.31756592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02061966 160.31759644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02061967 160.31759644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02061968 160.31761169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02061969 160.31761169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02061970 160.31764221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02061971 160.31764221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02061972 160.31767273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02061973 160.31767273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02061974 160.31770325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02061975 160.31770325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02061976 160.31773376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02061977 160.31773376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02061978 160.31776428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02061979 160.31776428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02061980 160.31777954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02061981 160.31777954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02061982 160.31781006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02061983 160.31781006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02061984 160.31784058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02061985 160.31785583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02061986 160.31787109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02061987 160.31787109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02061988 160.31790161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02061989 160.31790161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02061990 160.31793213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02061991 160.31793213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02061992 160.31794739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02061993 160.31794739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02061994 160.31797791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02061995 160.31797791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02061996 160.31800842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02061997 160.31800842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02061998 160.31803894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02061999 160.31803894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02062000 160.31806946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02062001 160.31806946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02062002 160.31809998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02062003 160.31809998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02062004 160.31811523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02062005 160.31811523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02062006 160.31814575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02062007 160.31816101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02062008 160.31817627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02062009 160.31817627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02062010 160.31820679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02062011 160.31820679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02062012 160.31823730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02062013 160.31823730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02062014 160.31825256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02062015 160.31826782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02062016 160.31829834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02062017 160.31829834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02062018 160.31832886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02062019 160.31832886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02062020 160.31834412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02062021 160.31834412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02062022 160.31837463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02062023 160.31837463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02062024 160.31840515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02062025 160.31840515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02062026 160.31842041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02062027 160.31842041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02062028 160.31845093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02062029 160.31845093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02062030 160.31848145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02062031 160.31848145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02062032 160.31849670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02062033 160.31851196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02062034 160.31852722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02062035 160.31854248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02062036 160.31857300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02062037 160.31857300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02062038 160.31858826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02062039 160.31858826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02062040 160.31861877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02062041 160.31861877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02062042 160.31864929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02062043 160.31864929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02062044 160.31866455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02062045 160.31866455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02062046 160.31869507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02062047 160.31869507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02062048 160.31872559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02062049 160.31872559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02062050 160.31874084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02062051 160.31874084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02062052 160.31877136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02062053 160.31877136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02062054 160.31880188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02062055 160.31881714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02062056 160.31881714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02062057 160.31883240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02062058 160.31886292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02062059 160.31886292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02062060 160.31889343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02062061 160.31889343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02062062 160.31890869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02062063 160.31890869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02062064 160.31893921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02062065 160.31893921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02062066 160.31896973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02062067 160.31896973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02062068 160.31898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02062069 160.31898499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02062070 160.31901550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02062071 160.31901550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02062072 160.31904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02062073 160.31904602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02062074 160.31906128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02062075 160.31907654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02062076 160.31909180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02062077 160.31910706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02062078 160.31912231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02062079 160.31912231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02062080 160.31915283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02062081 160.31915283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02062082 160.31918335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02062083 160.31918335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02062084 160.31921387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02062085 160.31921387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02062086 160.31922913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02062087 160.31922913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02062088 160.31925964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02062089 160.31925964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02062090 160.31929016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02062091 160.31929016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02062092 160.31930542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02062093 160.31930542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02062094 160.31933594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02062095 160.31935120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02062096 160.31936646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02062097 160.31936646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02062098 160.31939697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02062099 160.31939697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02062100 160.31942749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02062101 160.31942749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02062102 160.31944275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02062103 160.31944275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02062104 160.31947327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02062105 160.31947327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02062106 160.31950378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02062107 160.31950378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02062108 160.31951904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02062109 160.31953430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02062110 160.31956482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02062111 160.31956482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02062112 160.31959534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02062113 160.31959534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02062114 160.31961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02062115 160.31961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02062116 160.31964111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02062117 160.31964111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02062118 160.31967163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02062119 160.31968689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02062120 160.31970215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02062121 160.31970215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02062122 160.31973267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02062123 160.31973267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02062124 160.31976318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02062125 160.31976318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02062126 160.31977844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02062127 160.31979370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02062128 160.31982422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02062129 160.31982422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02062130 160.31983948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02062131 160.31983948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02062132 160.31987000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02062133 160.31987000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02062134 160.31990051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02062135 160.31990051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02062136 160.31991577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02062137 160.31991577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02062138 160.31994629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02062139 160.31994629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02062140 160.31997681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02062141 160.31997681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02062142 160.32000732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02062143 160.32000732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02062144 160.32002258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02062145 160.32002258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02062146 160.32005310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02062147 160.32006836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02062148 160.32008362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02062149 160.32008362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02062150 160.32011414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02062151 160.32011414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02062152 160.32014465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02062153 160.32014465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02062154 160.32026672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02062155 160.32026672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02062156 160.32029724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02062157 160.32029724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02062158 160.32031250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02062159 160.32032776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02062160 160.32035828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02062161 160.32035828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02062162 160.32038879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02062163 160.32038879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02062164 160.32040405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02062165 160.32040405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02062166 160.32043457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02062167 160.32043457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02062168 160.32046509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02062169 160.32046509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02062170 160.32049561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02062171 160.32049561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02062172 160.32052612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02062173 160.32052612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02062174 160.32055664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02062175 160.32055664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02062176 160.32057190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02062177 160.32057190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02062178 160.32060242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02062179 160.32061768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02062180 160.32063293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02062181 160.32063293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02062182 160.32066345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02062183 160.32066345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02062184 160.32069397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02062185 160.32069397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02062186 160.32070923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02062187 160.32070923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02062188 160.32073975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02062189 160.32075500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02062190 160.32078552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02062191 160.32078552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02062192 160.32080078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02062193 160.32080078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02062194 160.32083130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02062195 160.32083130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02062196 160.32086182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02062197 160.32086182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02062198 160.32087708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02062199 160.32089233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02062200 160.32090759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02062201 160.32092285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02062202 160.32095337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02062203 160.32095337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02062204 160.32096863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02062205 160.32096863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02062206 160.32099915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02062207 160.32099915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02062208 160.32102966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02062209 160.32102966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02062210 160.32104492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02062211 160.32104492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02062212 160.32107544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02062213 160.32107544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02062214 160.32110596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02062215 160.32112122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02062216 160.32113647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02062217 160.32113647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02062218 160.32116699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02062219 160.32116699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02062220 160.32119751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02062221 160.32119751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02062222 160.32121277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02062223 160.32121277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02062224 160.32125854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02062225 160.32125854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02062226 160.32127380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02062227 160.32127380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02062228 160.32130432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02062229 160.32130432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02062230 160.32133484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02062231 160.32133484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02062232 160.32135010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02062233 160.32135010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02062234 160.32138062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02062235 160.32138062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02062236 160.32141113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02062237 160.32141113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02062238 160.32142639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02062239 160.32144165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02062240 160.32145691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02062241 160.32147217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02062242 160.32150269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02062243 160.32150269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02062244 160.32151794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02062245 160.32151794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02062246 160.32154846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02062247 160.32154846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02062248 160.32157898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02062249 160.32157898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02062250 160.32159424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02062251 160.32159424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02062252 160.32162476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02062253 160.32162476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02062254 160.32165527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02062255 160.32165527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02062256 160.32167053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02062257 160.32167053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02062258 160.32170105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02062259 160.32170105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02062260 160.32173157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02062261 160.32174683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02062262 160.32174683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02062263 160.32176208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02062264 160.32179260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02062265 160.32179260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02062266 160.32182312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02062267 160.32182312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02062268 160.32183838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02062269 160.32183838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02062270 160.32186890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02062271 160.32186890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02062272 160.32189941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02062273 160.32189941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02062274 160.32191467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02062275 160.32191467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02062276 160.32194519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02062277 160.32194519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02062278 160.32197571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02062279 160.32197571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02062280 160.32200623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02062281 160.32200623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02062282 160.32203674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02062283 160.32203674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02062284 160.32206726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02062285 160.32206726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02062286 160.32208252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02062287 160.32208252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02062288 160.32211304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02062289 160.32212830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02062290 160.32214355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02062291 160.32214355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02062292 160.32217407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02062293 160.32217407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02062294 160.32220459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02062295 160.32220459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02062296 160.32221985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02062297 160.32221985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02062298 160.32225037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02062299 160.32225037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02062300 160.32228088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02062301 160.32228088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02062302 160.32231140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02062303 160.32231140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02062304 160.32232666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02062305 160.32234192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02062306 160.32237244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02062307 160.32237244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02062308 160.32238770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02062309 160.32238770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02062310 160.32241821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02062311 160.32241821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02062312 160.32244873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02062313 160.32244873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02062314 160.32246399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02062315 160.32246399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02062316 160.32249451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02062317 160.32249451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02062318 160.32252502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02062319 160.32252502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02062320 160.32254028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02062321 160.32254028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02062322 160.32257080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02062323 160.32258606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02062324 160.32260132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02062325 160.32261658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02062326 160.32263184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02062327 160.32263184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02062328 160.32266235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02062329 160.32266235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02062330 160.32269287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02062331 160.32270813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02062332 160.32270813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02062333 160.32272339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02062334 160.32275391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02062335 160.32275391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02062336 160.32278442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02062337 160.32278442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02062338 160.32279968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02062339 160.32279968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02062340 160.32283020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02062341 160.32283020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02062342 160.32286072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02062343 160.32286072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02062344 160.32287598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02062345 160.32287598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02062346 160.32290649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02062347 160.32290649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02062348 160.32293701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02062349 160.32293701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02062350 160.32295227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02062351 160.32295227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02062352 160.32298279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02062353 160.32299805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02062354 160.32301331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02062355 160.32301331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02062356 160.32304382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02062357 160.32304382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02062358 160.32307434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02062359 160.32307434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02062360 160.32310486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02062361 160.32310486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02062362 160.32312012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02062363 160.32313538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02062364 160.32316589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02062365 160.32316589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02062366 160.32318115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02062367 160.32318115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02062368 160.32321167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02062369 160.32321167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02062370 160.32324219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02062371 160.32325745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02062372 160.32327271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02062373 160.32327271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02062374 160.32330322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02062375 160.32330322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02062376 160.32333374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02062377 160.32333374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02062378 160.32334900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02062379 160.32334900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02062380 160.32339478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02062381 160.32339478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02062382 160.32341003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02062383 160.32341003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02062384 160.32344055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02062385 160.32344055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02062386 160.32347107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02062387 160.32347107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02062388 160.32350159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02062389 160.32350159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02062390 160.32351685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02062391 160.32351685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02062392 160.32354736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02062393 160.32354736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02062394 160.32357788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02062395 160.32357788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02062396 160.32359314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02062397 160.32360840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02062398 160.32362366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02062399 160.32363892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02062400 160.32365417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02062401 160.32365417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02062402 160.32368469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02062403 160.32368469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02062404 160.32371521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02062405 160.32371521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02062406 160.32373047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02062407 160.32373047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02062408 160.32376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02062409 160.32376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02062410 160.32379150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02062411 160.32379150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02062412 160.32382202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02062413 160.32382202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02062414 160.32383728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02062415 160.32383728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02062416 160.32386780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02062417 160.32386780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02062418 160.32389832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02062419 160.32389832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02062420 160.32392883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02062421 160.32392883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02062422 160.32395935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02062423 160.32395935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02062424 160.32397461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02062425 160.32397461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02062426 160.32400513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02062427 160.32402039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02062428 160.32405090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02062429 160.32405090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02062430 160.32406616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02062431 160.32406616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02062432 160.32409668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02062433 160.32409668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02062434 160.32412720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02062435 160.32412720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02062436 160.32414246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02062437 160.32414246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02062438 160.32417297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02062439 160.32417297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02062440 160.32420349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02062441 160.32421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02062442 160.32421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02062443 160.32423401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02062444 160.32426453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02062445 160.32426453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02062446 160.32429504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02062447 160.32429504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02062448 160.32431030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02062449 160.32431030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02062450 160.32434082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02062451 160.32434082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02062452 160.32437134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02062453 160.32437134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02062454 160.32438660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02062455 160.32438660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02062456 160.32441711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02062457 160.32441711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02062458 160.32444763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02062459 160.32444763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02062460 160.32446289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02062461 160.32447815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02062462 160.32450867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02062463 160.32450867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02062464 160.32452393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02062465 160.32452393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02062466 160.32455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02062467 160.32455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02062468 160.32458496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02062469 160.32458496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02062470 160.32461548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02062471 160.32461548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02062472 160.32464600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02062473 160.32464600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02062474 160.32467651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02062475 160.32467651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02062476 160.32469177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02062477 160.32469177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02062478 160.32472229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02062479 160.32472229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02062480 160.32475281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02062481 160.32475281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02062482 160.32476807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02062483 160.32478333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02062484 160.32479858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02062485 160.32481384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02062486 160.32484436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02062487 160.32484436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02062488 160.32485962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02062489 160.32485962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02062490 160.32489014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02062491 160.32489014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02062492 160.32492065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02062493 160.32492065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02062494 160.32493591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02062495 160.32493591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02062496 160.32496643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02062497 160.32496643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02062498 160.32499695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02062499 160.32499695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02062500 160.32501221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02062501 160.32501221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02062502 160.32504272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02062503 160.32505798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02062504 160.32507324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02062505 160.32508850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02062506 160.32510376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02062507 160.32510376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02062508 160.32513428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02062509 160.32513428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02062510 160.32516479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02062511 160.32516479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02062512 160.32518005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02062513 160.32518005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02062514 160.32521057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02062515 160.32521057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02062516 160.32524109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02062517 160.32524109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02062518 160.32525635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02062519 160.32525635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02062520 160.32528687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02062521 160.32528687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02062522 160.32531738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02062523 160.32531738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02062524 160.32533264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02062525 160.32534790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02062526 160.32537842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02062527 160.32537842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02062528 160.32540894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02062529 160.32540894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02062530 160.32542419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02062531 160.32542419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02062532 160.32545471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02062533 160.32545471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02062534 160.32548523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02062535 160.32548523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02073290 160.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18578 -02073291 160.47654724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18578 -02073292 160.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18588 -02073293 160.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18588 -02073294 160.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18598 -02073295 160.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18598 -02073296 160.47662354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185a8 -02073297 160.47663879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185a8 -02073298 160.47665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185b8 -02073299 160.47665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185b8 -02073300 160.47668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185c8 -02073301 160.47668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185c8 -02073302 160.47671509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185d8 -02073303 160.47671509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185d8 -02073304 160.47673035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185e8 -02073305 160.47673035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185e8 -02073306 160.47676086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185f8 -02073307 160.47676086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x185f8 -02073308 160.47679138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18608 -02073309 160.47680664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18608 -02073310 160.47682190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18618 -02073311 160.47682190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18618 -02073312 160.47685242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18628 -02073313 160.47685242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18628 -02073314 160.47688293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18638 -02073315 160.47688293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18638 -02073316 160.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18648 -02073317 160.47691345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18648 -02073318 160.47694397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18658 -02073319 160.47694397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18658 -02073320 160.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18668 -02073321 160.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18668 -02073322 160.47698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18678 -02073323 160.47698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18678 -02073324 160.47702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18688 -02073325 160.47702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18688 -02073326 160.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18698 -02073327 160.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18698 -02073328 160.47706604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a8 -02073329 160.47706604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a8 -02073330 160.47709656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b8 -02073331 160.47709656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b8 -02073332 160.47712708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c8 -02073333 160.47712708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c8 -02077348 160.53392029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -02077349 160.53392029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -02077350 160.53395081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -02077351 160.53396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -02077352 160.53399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -02077353 160.53399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -02077354 160.53401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -02077355 160.53401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -02077356 160.53404236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -02077357 160.53404236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -02077358 160.53407288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -02077359 160.53407288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -02077360 160.53408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -02077361 160.53410339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -02077362 160.53413391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -02077363 160.53413391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -02077364 160.53416443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -02077365 160.53416443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -02077366 160.53417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -02077367 160.53417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -02077368 160.53421021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e8 -02077369 160.53421021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e8 -02077370 160.53424072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f8 -02077371 160.53424072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f8 -02077372 160.53427124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20508 -02077373 160.53427124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20508 -02077374 160.53430176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20518 -02077375 160.53430176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20518 -02077376 160.53431702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20528 -02077377 160.53431702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20528 -02077378 160.53434753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20538 -02077379 160.53434753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20538 -02077380 160.53437805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20548 -02077381 160.53439331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20548 -02077382 160.53440857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20558 -02077383 160.53440857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20558 -02077384 160.53443909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20568 -02077385 160.53443909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20568 -02077386 160.53446960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20578 -02077387 160.53446960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20578 -02077388 160.53448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20588 -02077389 160.53448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20588 -02077390 160.53451538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20598 -02077391 160.53453064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20598 -02084593 160.63763428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6a8 -02084594 160.63766479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b8 -02084595 160.63766479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b8 -02084596 160.63768005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c8 -02084597 160.63768005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c8 -02084598 160.63771057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d8 -02084599 160.63771057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d8 -02084600 160.63774109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e8 -02084601 160.63774109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e8 -02084602 160.63775635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6f8 -02084603 160.63777161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6f8 -02084604 160.63780212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e708 -02084605 160.63780212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e708 -02084606 160.63781738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e718 -02084607 160.63781738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e718 -02084608 160.63784790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e728 -02084609 160.63784790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e728 -02084610 160.63787842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e738 -02084611 160.63787842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e738 -02084612 160.63789368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e748 -02084613 160.63789368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e748 -02084614 160.63792419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e758 -02084615 160.63793945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e758 -02084616 160.63796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e768 -02084617 160.63796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e768 -02084618 160.63798523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e778 -02084619 160.63798523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e778 -02084620 160.63801575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e788 -02084621 160.63801575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e788 -02084622 160.63804626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e798 -02084623 160.63804626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e798 -02084624 160.63807678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a8 -02084625 160.63807678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a8 -02084626 160.63810730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b8 -02084627 160.63810730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b8 -02084628 160.63813782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c8 -02084629 160.63813782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c8 -02084630 160.63815308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d8 -02084631 160.63815308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d8 -02084632 160.63818359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7e8 -02084633 160.63818359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7e8 -02084634 160.63821411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7f8 -02084635 160.63821411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7f8 -02084636 160.63824463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e808 -02089486 160.70719910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -02089487 160.70719910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -02089488 160.70722961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa8 -02089489 160.70722961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa8 -02089490 160.70724487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb8 -02089491 160.70724487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb8 -02089492 160.70727539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc8 -02089493 160.70729065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc8 -02089494 160.70730591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd8 -02089495 160.70732117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd8 -02089496 160.70733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe8 -02089497 160.70733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe8 -02089498 160.70736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff8 -02089499 160.70736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff8 -02089500 160.70739746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38008 -02089501 160.70739746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38008 -02089502 160.70741272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38018 -02089503 160.70741272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38018 -02089504 160.70744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38028 -02089505 160.70744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38028 -02089506 160.70747375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38038 -02089507 160.70747375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38038 -02089508 160.70748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38048 -02089509 160.70748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38048 -02089510 160.70751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38058 -02089511 160.70751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38058 -02089512 160.70755005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38068 -02089513 160.70756531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38068 -02089514 160.70756531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38078 -02089515 160.70758057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38078 -02089516 160.70761108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38088 -02089517 160.70761108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38088 -02089518 160.70764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38098 -02089519 160.70764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38098 -02089520 160.70765686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380a8 -02089521 160.70765686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380a8 -02089522 160.70768738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380b8 -02089523 160.70768738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380b8 -02089524 160.70771790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380c8 -02089525 160.70771790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380c8 -02089526 160.70773315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380d8 -02089527 160.70773315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380d8 -02089528 160.70777893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380e8 -02089529 160.70777893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x380e8 -02094509 160.77775574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c78 -02094510 160.77777100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c78 -02094511 160.77778625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c88 -02094512 160.77778625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c88 -02094513 160.77781677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c98 -02094514 160.77781677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c98 -02094515 160.77784729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca8 -02094516 160.77784729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca8 -02094517 160.77786255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb8 -02094518 160.77786255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb8 -02094519 160.77789307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc8 -02094520 160.77789307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc8 -02094521 160.77792358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd8 -02094522 160.77792358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd8 -02094523 160.77793884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce8 -02094524 160.77793884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce8 -02094525 160.77798462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf8 -02094526 160.77798462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf8 -02094527 160.77801514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d08 -02094528 160.77801514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d08 -02094529 160.77803040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d18 -02094530 160.77803040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d18 -02094531 160.77806091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d28 -02094532 160.77806091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d28 -02094533 160.77809143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d38 -02094534 160.77810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d38 -02094535 160.77812195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d48 -02094536 160.77812195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d48 -02094537 160.77815247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d58 -02094538 160.77815247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d58 -02094539 160.77818298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d68 -02094540 160.77818298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d68 -02094541 160.77819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d78 -02094542 160.77819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d78 -02094543 160.77822876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d88 -02094544 160.77824402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d88 -02094545 160.77825928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d98 -02094546 160.77825928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d98 -02094547 160.77828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da8 -02094548 160.77828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da8 -02094549 160.77832031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41db8 -02094550 160.77832031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41db8 -02094551 160.77833557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dc8 -02094552 160.77835083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dc8 -02103237 162.22865295 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103238 162.22872925 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103239 162.22872925 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103240 162.22874451 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02103241 162.22891235 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103242 162.22891235 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02103243 162.22897339 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103244 162.22901917 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02103245 162.74981689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02103246 162.77168274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103247 162.77169800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103248 164.73500061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103249 164.73504639 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103250 164.73506165 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103251 164.73507690 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02103252 164.73519897 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103253 164.73521423 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02103254 164.73529053 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103255 164.73530579 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02103256 164.77314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02103257 164.79454041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103258 164.79454041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103259 165.90016174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02103260 165.90016174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02103261 165.90019226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02103262 165.90019226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02103263 165.90022278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02103264 165.90022278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02103265 165.90025330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02103266 165.90025330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02103267 165.90026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02103268 165.90028381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02103269 165.90031433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02103270 165.90031433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02103271 165.90034485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02103272 165.90034485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02103273 165.90036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02103274 165.90036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02103275 165.90039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02103276 165.90039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02103277 165.90042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02103278 165.90042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02103279 165.90043640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02103280 165.90043640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02103281 165.90046692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02103282 165.90048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02103283 165.90049744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02103284 165.90051270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02103285 165.90052795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02103286 165.90052795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02103287 165.90055847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02103288 165.90055847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02103289 165.90058899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02103290 165.90058899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02103291 165.90060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02103292 165.90060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02103293 165.90063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02103294 165.90063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02103295 165.90066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02103296 165.90066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02103297 165.90068054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02103298 165.90068054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02103299 165.90072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02103300 165.90072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02103301 165.90074158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02103302 165.90074158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02103303 165.90077209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02103304 165.90077209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02103305 165.90080261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02103306 165.90080261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02103307 165.90083313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02103308 165.90083313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02103309 165.90084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02103310 165.90086365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02103311 165.90089417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02103312 165.90089417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02103313 165.90090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02103314 165.90090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02103315 165.90093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02103316 165.90093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02103317 165.90097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02103318 165.90097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02103319 165.90098572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02103320 165.90098572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02103321 165.90101624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02103322 165.90101624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02103323 165.90104675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02103324 165.90104675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02103325 165.90106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02103326 165.90106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02103327 165.90109253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02103328 165.90110779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02103329 165.90112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02103330 165.90113831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02103331 165.90115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02103332 165.90115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02103333 165.90118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02103334 165.90118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02103335 165.90121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02103336 165.90121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02103337 165.90122986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02103338 165.90122986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02103339 165.90126038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02103340 165.90126038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02103341 165.90129089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02103342 165.90129089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02103343 165.90130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02103344 165.90130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02103345 165.90135193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02103346 165.90135193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02103347 165.90138245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02103348 165.90138245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02103349 165.90139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02103350 165.90139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02103351 165.90142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02103352 165.90144348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02103353 165.90145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02103354 165.90145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02103355 165.90148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02103356 165.90148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02103357 165.90151978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02103358 165.90151978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02103359 165.90153503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02103360 165.90153503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02103361 165.90156555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02103362 165.90156555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02103363 165.90159607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02103364 165.90159607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02103365 165.90162659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02103366 165.90162659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02103367 165.90164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02103368 165.90164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02103369 165.90167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02103370 165.90167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02103371 165.90170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02103372 165.90170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02103373 165.90171814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02103374 165.90173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02103375 165.90174866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02103376 165.90176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02103377 165.90177917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02103378 165.90177917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02103379 165.90180969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02103380 165.90180969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02103381 165.90184021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02103382 165.90184021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02103383 165.90187073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02103384 165.90187073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02103385 165.90190125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02103386 165.90191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02103387 165.90193176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02103388 165.90193176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02103389 165.90196228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02103390 165.90196228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02103391 165.90199280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02103392 165.90199280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02103393 165.90202332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02103394 165.90202332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02103395 165.90203857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02103396 165.90205383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02103397 165.90208435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02103398 165.90208435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02103399 165.90209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02103400 165.90209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02103401 165.90213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02103402 165.90213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02103403 165.90216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02103404 165.90216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02103405 165.90217590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02103406 165.90219116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02103407 165.90222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02103408 165.90222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02103409 165.90225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02103410 165.90225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02103411 165.90226746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02103412 165.90226746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02103413 165.90229797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02103414 165.90231323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02103415 165.90232849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02103416 165.90232849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02103417 165.90235901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02103418 165.90235901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02103419 165.90238953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02103420 165.90238953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02103421 165.90242004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02103422 165.90242004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02103423 165.90243530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02103424 165.90243530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02103425 165.90246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02103426 165.90246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02103427 165.90249634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02103428 165.90249634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02103429 165.90252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02103430 165.90252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02103431 165.90255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02103432 165.90255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02103433 165.90257263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02103434 165.90257263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02103435 165.90260315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02103436 165.90260315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02103437 165.90263367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02103438 165.90264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02103439 165.90266418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02103440 165.90266418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02103441 165.90269470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02103442 165.90269470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02103443 165.90272522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02103444 165.90272522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02103445 165.90274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02103446 165.90274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02103447 165.90277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02103448 165.90277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02103449 165.90280151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02103450 165.90281677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02103451 165.90281677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02103452 165.90283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02103453 165.90286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02103454 165.90286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02103455 165.90289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02103456 165.90289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02103457 165.90290833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02103458 165.90290833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02103459 165.90293884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02103460 165.90293884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02103461 165.90296936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02103462 165.90296936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02103463 165.90298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02103464 165.90298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02103465 165.90301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02103466 165.90301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02103467 165.90304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02103468 165.90304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02103469 165.90306091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02103470 165.90306091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02103471 165.90309143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02103472 165.90310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02103473 165.90312195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02103474 165.90313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02103475 165.90315247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02103476 165.90315247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02103477 165.90318298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02103478 165.90318298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02103479 165.90321350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02103480 165.90321350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02103481 165.90322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02103482 165.90322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02103483 165.90325928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02103484 165.90327454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02103485 165.90328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02103486 165.90328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02103487 165.90332031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02103488 165.90332031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02103489 165.90335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02103490 165.90335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02103491 165.90336609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02103492 165.90336609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02103493 165.90339661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02103494 165.90341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02103495 165.90344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02103496 165.90344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02103497 165.90345764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02103498 165.90345764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02103499 165.90348816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02103500 165.90348816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02103501 165.90351868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02103502 165.90351868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02103503 165.90354919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02103504 165.90354919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02103505 165.90357971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02103506 165.90357971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02103507 165.90361023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02103508 165.90361023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02103509 165.90362549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02103510 165.90362549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02103511 165.90365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02103512 165.90367126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02103513 165.90368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02103514 165.90368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02103515 165.90371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02103516 165.90371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02103517 165.90374756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02103518 165.90374756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02103519 165.90376282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02103520 165.90376282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02103521 165.90379333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02103522 165.90380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02103523 165.90383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02103524 165.90383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02103525 165.90385437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02103526 165.90385437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02103527 165.90388489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02103528 165.90388489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02103529 165.90391541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02103530 165.90391541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02103531 165.90393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02103532 165.90394592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02103533 165.90397644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02103534 165.90397644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02103535 165.90400696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02103536 165.90400696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02103537 165.90402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02103538 165.90402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02103539 165.90405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02103540 165.90405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02103541 165.90408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02103542 165.90408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02103543 165.90411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02103544 165.90411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02103545 165.90414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02103546 165.90414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02103547 165.90415955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02103548 165.90415955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02103549 165.90419006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02103550 165.90419006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02103551 165.90422058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02103552 165.90422058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02103553 165.90423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02103554 165.90425110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02103555 165.90428162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02103556 165.90428162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02103557 165.90431213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02103558 165.90431213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02103559 165.90432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02103560 165.90432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02103561 165.90438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02103562 165.90440369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02103563 165.90441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02103564 165.90441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02103565 165.90444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02103566 165.90444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02103567 165.90447998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02103568 165.90447998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02103569 165.90449524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02103570 165.90449524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02103571 165.90452576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02103572 165.90454102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02103573 165.90455627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02103574 165.90455627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02103575 165.90458679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02103576 165.90458679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02103577 165.90461731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02103578 165.90461731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02103579 165.90463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02103580 165.90463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02103581 165.90466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02103582 165.90467834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02103583 165.90470886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02103584 165.90470886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02103585 165.90472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02103586 165.90472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02103587 165.90475464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02103588 165.90475464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02103589 165.90478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02103590 165.90478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02103591 165.90480042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02103592 165.90480042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02103593 165.90484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02103594 165.90484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02103595 165.90487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02103596 165.90487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02103597 165.90489197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02103598 165.90490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02103599 165.90493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02103600 165.90493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02103601 165.90495300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02103602 165.90495300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02103603 165.90498352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02103604 165.90498352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02103605 165.90501404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02103606 165.90501404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02103607 165.90502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02103608 165.90502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02103609 165.90507507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02103610 165.90507507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02103611 165.90510559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02103612 165.90510559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02103613 165.90512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02103614 165.90512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02103615 165.90515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02103616 165.90515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02103617 165.90518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02103618 165.90519714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02103619 165.90521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02103620 165.90521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02103621 165.90524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02103622 165.90524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02103623 165.90527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02103624 165.90527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02103625 165.90528870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02103626 165.90528870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02103627 165.90533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02103628 165.90533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02103629 165.90534973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02103630 165.90534973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02103631 165.90538025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02103632 165.90538025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02103633 165.90541077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02103634 165.90541077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02103635 165.90542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02103636 165.90542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02103637 165.90545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02103638 165.90545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02103639 165.90548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02103640 165.90548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02103641 165.90551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02103642 165.90551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02103643 165.90553284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02103644 165.90553284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02103645 165.90556335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02103646 165.90557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02103647 165.90559387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02103648 165.90559387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02103649 165.90562439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02103650 165.90562439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02103651 165.90565491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02103652 165.90565491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02103653 165.90567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02103654 165.90567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02103655 165.90570068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02103656 165.90570068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02103657 165.90573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02103658 165.90573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02103659 165.90574646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02103660 165.90576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02103661 165.90579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02103662 165.90579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02103663 165.90582275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02103664 165.90582275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02103665 165.90583801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02103666 165.90583801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02103667 165.90586853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02103668 165.90586853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02103669 165.90589905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02103670 165.90591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02103671 165.90592957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02103672 165.90592957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02103673 165.90596008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02103674 165.90596008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02103675 165.90599060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02103676 165.90599060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02103677 165.90600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02103678 165.90600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02103679 165.90603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02103680 165.90605164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02103681 165.90606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02103682 165.90606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02103683 165.90609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02103684 165.90609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02103685 165.90612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02103686 165.90612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02103687 165.90614319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02103688 165.90614319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02103689 165.90617371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02103690 165.90618896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02103691 165.90621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02103692 165.90621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02103693 165.90623474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02103694 165.90623474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02103695 165.90626526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02103696 165.90626526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02103697 165.90629578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02103698 165.90629578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02103699 165.90631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02103700 165.90632629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02103701 165.90635681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02103702 165.90635681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02103703 165.90638733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02103704 165.90638733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02103705 165.90640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02103706 165.90640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02103707 165.90643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02103708 165.90643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02103709 165.90646362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02103710 165.90646362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02103711 165.90649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02103712 165.90649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02103713 165.90652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02103714 165.90652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02103715 165.90653992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02103716 165.90653992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02103717 165.90657043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02103718 165.90657043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02103719 165.90660095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02103720 165.90660095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02103721 165.90663147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02103722 165.90663147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02103723 165.90664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02103724 165.90664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02103725 165.90667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02103726 165.90667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02103727 165.90670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02103728 165.90670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02103729 165.90672302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02103730 165.90673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02103731 165.90676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02103732 165.90676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02103733 165.90678406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02103734 165.90678406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02103735 165.90681458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02103736 165.90681458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02103737 165.90684509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02103738 165.90684509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02103739 165.90686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02103740 165.90686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02103741 165.90689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02103742 165.90689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02103743 165.90692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02103744 165.90692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02103745 165.90693665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02103746 165.90693665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02103747 165.90698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02103748 165.90698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02103749 165.90701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02103750 165.90701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02103751 165.90702820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02103752 165.90702820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02103753 165.90705872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02103754 165.90707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02103755 165.90708923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02103756 165.90710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02103757 165.90711975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02103758 165.90711975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02103759 165.90715027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02103760 165.90715027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02103761 165.90718079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02103762 165.90718079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02103763 165.90719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02103764 165.90719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02103765 165.90722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02103766 165.90722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02103767 165.90725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02103768 165.90725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02103769 165.90727234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02103770 165.90727234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02103771 165.90730286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02103772 165.90730286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02103773 165.90733337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02103774 165.90733337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02103775 165.90734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02103776 165.90736389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02103777 165.90739441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02103778 165.90739441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02103779 165.90742493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02103780 165.90742493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02103781 165.90744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02103782 165.90744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02103783 165.90747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02103784 165.90747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02103785 165.90750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02103786 165.90750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02103787 165.90751648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02103788 165.90751648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02103789 165.90754700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02103790 165.90754700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02103791 165.90757751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02103792 165.90757751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02103793 165.90760803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02103794 165.90760803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02103795 165.90763855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02103796 165.90763855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02103797 165.90765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02103798 165.90765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02103799 165.90768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02103800 165.90768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02103801 165.90771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02103802 165.90773010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02103803 165.90774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02103804 165.90774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02103805 165.90777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02103806 165.90777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02103807 165.90780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02103808 165.90780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02103809 165.90782166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02103810 165.90782166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02103811 165.90785217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02103812 165.90786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02103813 165.90788269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02103814 165.90789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02103815 165.90791321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02103816 165.90791321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02103817 165.90794373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02103818 165.90794373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02103819 165.90797424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02103820 165.90797424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02103821 165.90798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02103822 165.90798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02103823 165.90802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02103824 165.90802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02103825 165.90805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02103826 165.90805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02103827 165.90806580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02103828 165.90806580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02103829 165.90809631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02103830 165.90809631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02103831 165.90812683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02103832 165.90812683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02103833 165.90814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02103834 165.90815735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02103835 165.90817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02103836 165.90818787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02103837 165.90821838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02103838 165.90821838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02103839 165.90823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02103840 165.90823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02103841 165.90826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02103842 165.90826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02103843 165.90829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02103844 165.90829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02103845 165.90830994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02103846 165.90830994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02103847 165.90834045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02103848 165.90834045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02103849 165.90837097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02103850 165.90837097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02103851 165.90838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02103852 165.90838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02103853 165.90841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02103854 165.90843201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02103855 165.90844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02103856 165.90844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02103857 165.90847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02103858 165.90847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02103859 165.90850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02103860 165.90850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02103861 165.90853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02103862 165.90853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02103863 165.90855408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02103864 165.90855408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02103865 165.90858459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02103866 165.90858459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02103867 165.90861511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02103868 165.90861511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02103869 165.90863037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02103870 165.90863037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02103871 165.90866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02103872 165.90866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02103873 165.90869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02103874 165.90869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02103875 165.90870667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02103876 165.90872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02103877 165.90873718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02103878 165.90875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02103879 165.90876770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02103880 165.90876770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02103881 165.90879822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02103882 165.90879822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02103883 165.90882874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02103884 165.90882874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02103885 165.90884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02103886 165.90884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02103887 165.90887451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02103888 165.90887451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02103889 165.90890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02103890 165.90890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02103891 165.90893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02103892 165.90893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02103893 165.90895081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02103894 165.90895081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02103895 165.90898132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02103896 165.90899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02103897 165.90901184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02103898 165.90901184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02103899 165.90904236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02103900 165.90904236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02103901 165.90907288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02103902 165.90907288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02103903 165.90908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02103904 165.90908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02103905 165.90911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02103906 165.90911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02103907 165.90914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02103908 165.90914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02103909 165.90916443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02103910 165.90916443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02103911 165.90919495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02103912 165.90919495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02103913 165.90922546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02103914 165.90922546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02103915 165.90924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02103916 165.90924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02103917 165.90927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02103918 165.90928650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02103919 165.90930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02103920 165.90931702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02103921 165.90933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02103922 165.90933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02103923 165.90936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02103924 165.90936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02103925 165.90939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02103926 165.90939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02103927 165.90940857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02103928 165.90940857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02103929 165.90943909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02103930 165.90943909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02103931 165.90946960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02103932 165.90946960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02103933 165.90948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02103934 165.90948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02103935 165.90953064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02103936 165.90953064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02103937 165.90956116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02103938 165.90956116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02103939 165.90957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02103940 165.90957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02103941 165.90960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02103942 165.90960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02103943 165.90963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02103944 165.90963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02103945 165.90965271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02103946 165.90966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02103947 165.90969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02103948 165.90969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02103949 165.90972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02103950 165.90972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02103951 165.90974426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02103952 165.90974426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02103953 165.90977478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02103954 165.90977478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02103955 165.90980530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02103956 165.90980530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02103957 165.90983582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02103958 165.90983582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02103959 165.90986633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02103960 165.90986633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02103961 165.90988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02103962 165.90988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02103963 165.90995789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02103964 165.90997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02103965 165.91000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02103966 165.91000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02103967 165.91003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02103968 165.91003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02103969 165.91004944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02103970 165.91004944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02103971 165.91007996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02103972 165.91007996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02103973 165.91011047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02103974 165.91011047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02103975 165.91014099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02103976 165.91015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02103977 165.91018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02103978 165.91018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02103979 165.91020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02103980 165.91020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02103981 165.91023254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02103982 165.91023254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02103983 165.91026306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02103984 165.91026306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02103985 165.91027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02103986 165.91027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02103987 165.91030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02103988 165.91030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02103989 165.91033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02103990 165.91033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02103991 165.91035461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02103992 165.91036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02103993 165.91038513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02103994 165.91040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02103995 165.91043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02103996 165.91043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02103997 165.91044617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02103998 165.91044617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02103999 165.91047668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02104000 165.91047668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02104001 165.91050720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02104002 165.91050720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02104003 165.91052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02104004 165.91052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02104005 165.91055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02104006 165.91055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02104007 165.91058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02104008 165.91058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02104009 165.91059875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02104010 165.91059875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02104011 165.91062927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02104012 165.91064453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02104013 165.91065979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02104014 165.91067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02104015 165.91069031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02104016 165.91069031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02104017 165.91072083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02104018 165.91072083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02104019 165.91075134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02104020 165.91075134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02104021 165.91076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02104022 165.91078186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02104023 165.91081238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02104024 165.91081238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02104025 165.91082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02104026 165.91082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02104027 165.91085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02104028 165.91085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02104029 165.91088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02104030 165.91088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02104031 165.91091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02104032 165.91091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02104033 165.91094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02104034 165.91094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02104035 165.91098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02104036 165.91098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02104037 165.91099548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02104038 165.91099548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02104039 165.91102600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02104040 165.91102600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02104041 165.91105652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02104042 165.91107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02104043 165.91108704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02104044 165.91108704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02104045 165.91111755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02104046 165.91111755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02104047 165.91114807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02104048 165.91114807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02104049 165.91116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02104050 165.91116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02104051 165.91119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02104052 165.91119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02104053 165.91122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02104054 165.91122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02104055 165.91123962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02104056 165.91125488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02104057 165.91128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02104058 165.91128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02104059 165.91131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02104060 165.91131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02104061 165.91133118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02104062 165.91133118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02104063 165.91136169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02104064 165.91136169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02104065 165.91139221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02104066 165.91139221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02104067 165.91140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02104068 165.91140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02104069 165.91143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02104070 165.91143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02104071 165.91146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02104072 165.91146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02104073 165.91148376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02104074 165.91148376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02104075 165.91151428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02104076 165.91152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02104077 165.91154480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02104078 165.91154480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02104079 165.91157532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02104080 165.91157532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02104081 165.91160583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02104082 165.91160583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02104083 165.91163635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02104084 165.91163635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02104085 165.91165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02104086 165.91165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02104087 165.91168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02104088 165.91168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02104089 165.91171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02104090 165.91171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02104091 165.91172791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02104092 165.91172791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02104093 165.91175842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02104094 165.91175842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02104095 165.91178894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02104096 165.91178894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02104097 165.91180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02104098 165.91181946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02104099 165.91184998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02104100 165.91184998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02104101 165.91186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02104102 165.91186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02104103 165.91189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02104104 165.91189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02104105 165.91192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02104106 165.91192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02104107 165.91194153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02104108 165.91194153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02104109 165.91197205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02104110 165.91197205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02104111 165.91200256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02104112 165.91200256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02104113 165.91203308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02104114 165.91203308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02104115 165.91206360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02104116 165.91206360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02104117 165.91209412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02104118 165.91209412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02104119 165.91210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02104120 165.91210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02104121 165.91213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02104122 165.91213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02104123 165.91218567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02104124 165.91218567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02104125 165.91220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02104126 165.91220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02104127 165.91223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02104128 165.91223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02104129 165.91226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02104130 165.91226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02104131 165.91227722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02104132 165.91227722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02104133 165.91230774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02104134 165.91230774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02104135 165.91233826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02104136 165.91233826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02104137 165.91235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02104138 165.91235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02104139 165.91238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02104140 165.91239929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02104141 165.91241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02104142 165.91242981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02104143 165.91244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02104144 165.91244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02104145 165.91247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02104146 165.91247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02104147 165.91250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02104148 165.91250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02104149 165.91252136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02104150 165.91252136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02104151 165.91255188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02104152 165.91255188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02104153 165.91258240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02104154 165.91258240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02104155 165.91259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02104156 165.91259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02104157 165.91262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02104158 165.91262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02104159 165.91265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02104160 165.91265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02104161 165.91267395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02104162 165.91268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02104163 165.91271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02104164 165.91271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02104165 165.91273499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02104166 165.91273499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02104167 165.91276550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02104168 165.91276550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02104169 165.91279602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02104170 165.91279602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02104171 165.91282654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02104172 165.91282654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02104173 165.91284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02104174 165.91284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02104175 165.91287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02104176 165.91287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02104177 165.91290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02104178 165.91290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02104179 165.91291809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02104180 165.91291809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02104181 165.91294861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02104182 165.91296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02104183 165.91297913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02104184 165.91297913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02104185 165.91300964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02104186 165.91300964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02104187 165.91304016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02104188 165.91304016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02104189 165.91305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02104190 165.91305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02104191 165.91308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02104192 165.91308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02104193 165.91311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02104194 165.91311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02104195 165.91313171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02104196 165.91313171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02104197 165.91316223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02104198 165.91316223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02104199 165.91319275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02104200 165.91319275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02104201 165.91322327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02104202 165.91322327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02104203 165.91323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02104204 165.91325378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02104205 165.91326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02104206 165.91328430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02104207 165.91329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02104208 165.91329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02104209 165.91333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02104210 165.91333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02104211 165.91336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02104212 165.91337585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02104213 165.91339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02104214 165.91339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02104215 165.91342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02104216 165.91342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02104217 165.91345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02104218 165.91345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02104219 165.91346741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02104220 165.91346741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02104221 165.91349792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02104222 165.91349792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02104223 165.91352844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02104224 165.91352844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02104225 165.91354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02104226 165.91354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02104227 165.91357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02104228 165.91357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02104229 165.91360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02104230 165.91360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02104231 165.91362000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02104232 165.91363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02104233 165.91365051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02104234 165.91366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02104235 165.91369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02104236 165.91369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02104237 165.91371155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02104238 165.91371155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02104239 165.91374207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02104240 165.91374207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02104241 165.91377258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02104242 165.91377258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02104243 165.91378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02104244 165.91378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02104245 165.91381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02104246 165.91381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02104247 165.91384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02104248 165.91384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02104249 165.91386414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02104250 165.91387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02104251 165.91389465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02104252 165.91390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02104253 165.91392517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02104254 165.91392517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02104255 165.91395569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02104256 165.91395569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02104257 165.91398621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02104258 165.91398621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02104259 165.91401672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02104260 165.91401672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02104261 165.91404724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02104262 165.91404724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02104263 165.91407776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02104264 165.91407776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02104265 165.91409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02104266 165.91409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02104267 165.91412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02104268 165.91412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02104269 165.91415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02104270 165.91416931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02104271 165.91416931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02104272 165.91418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02104273 165.91421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02104274 165.91421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02104275 165.91424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02104276 165.91424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02104277 165.91426086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02104278 165.91426086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02104279 165.91429138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02104280 165.91429138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02104281 165.91432190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02104282 165.91432190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02104283 165.91433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02104284 165.91433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02104285 165.91436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02104286 165.91436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02104287 165.91439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02104288 165.91439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02104289 165.91441345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02104290 165.91442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02104291 165.91444397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02104292 165.91445923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02104293 165.91448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02104294 165.91448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02104295 165.91450500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02104296 165.91450500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02104297 165.91453552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02104298 165.91453552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02104299 165.91456604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02104300 165.91456604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02104301 165.91459656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02104302 165.91459656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02104303 165.91462708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02104304 165.91462708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02104305 165.91464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02104306 165.91464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02104307 165.91467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02104308 165.91467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02104309 165.91470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02104310 165.91470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02104311 165.91473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02104312 165.91473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02104313 165.91474915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02104314 165.91474915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02104315 165.91477966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02104316 165.91477966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02104317 165.91481018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02104318 165.91481018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02104319 165.91482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02104320 165.91484070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02104321 165.91487122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02104322 165.91487122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02104323 165.91488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02104324 165.91488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02104325 165.91491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02104326 165.91491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02104327 165.91494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02104328 165.91494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02104329 165.91496277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02104330 165.91496277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02104331 165.91499329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02104332 165.91499329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02104333 165.91502380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02104334 165.91502380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02104335 165.91503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02104336 165.91503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02104337 165.91506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02104338 165.91506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02104339 165.91510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02104340 165.91511536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02104341 165.91513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02104342 165.91513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02104343 165.91516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02104344 165.91516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02104345 165.91519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02104346 165.91519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02104347 165.91520691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02104348 165.91522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02104349 165.91525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02104350 165.91525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02104351 165.91528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02104352 165.91528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02104353 165.91529846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02104354 165.91529846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02104355 165.91532898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02104356 165.91532898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02104357 165.91535950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02104358 165.91535950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02104359 165.91537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02104360 165.91537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02104361 165.91540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02104362 165.91540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02104363 165.91543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02104364 165.91543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02104365 165.91545105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02104366 165.91546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02104367 165.91548157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02104368 165.91549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02104369 165.91552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02104370 165.91552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02104371 165.91554260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02104372 165.91554260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02104373 165.91557312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02104374 165.91557312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02104375 165.91560364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02104376 165.91560364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02104377 165.91561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02104378 165.91561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02104379 165.91564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02104380 165.91564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02104381 165.91567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02104382 165.91567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02104383 165.91569519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02104384 165.91569519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02104385 165.91572571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02104386 165.91572571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02104387 165.91575623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02104388 165.91575623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02104389 165.91578674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02104390 165.91578674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02104391 165.91581726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02104392 165.91581726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02104393 165.91583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02104394 165.91583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02104395 165.91586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02104396 165.91587830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02104397 165.91590881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02104398 165.91590881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02104399 165.91592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02104400 165.91592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02104401 165.91595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02104402 165.91595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02104403 165.91598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02104404 165.91598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02104405 165.91600037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02104406 165.91600037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02104407 165.91603088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02104408 165.91604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02104409 165.91607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02104410 165.91607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02104411 165.91609192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02104412 165.91609192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02104413 165.91612244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02104414 165.91612244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02104415 165.91615295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02104416 165.91615295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02104417 165.91618347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02104418 165.91618347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02104419 165.91621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02104420 165.91621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02104421 165.91622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02104422 165.91622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02104423 165.91625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02104424 165.91625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02104425 165.91629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02104426 165.91629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02104427 165.91632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02104428 165.91632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02104429 165.91635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02104430 165.91635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02104431 165.91638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02104432 165.91638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02104433 165.91639709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02104434 165.91639709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02104435 165.91642761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02104436 165.91642761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02104437 165.91645813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02104438 165.91647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02104439 165.91648865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02104440 165.91648865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02104441 165.91651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02104442 165.91651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02104443 165.91654968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02104444 165.91654968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02104445 165.91658020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02104446 165.91658020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02104447 165.91661072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02104448 165.91661072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02104449 165.91662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02104450 165.91662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02104451 165.91665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02104452 165.91665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02104453 165.91668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02104454 165.91670227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02104455 165.91671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02104456 165.91671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02104457 165.91674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02104458 165.91674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02104459 165.91677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02104460 165.91677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02104461 165.91679382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02104462 165.91679382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02104463 165.91682434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02104464 165.91682434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02104465 165.91685486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02104466 165.91687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02104467 165.91687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02104468 165.91688538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02104469 165.91691589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02104470 165.91691589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02104471 165.91694641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02104472 165.91694641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02104473 165.91696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02104474 165.91696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02104475 165.91699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02104476 165.91699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02104477 165.91702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02104478 165.91702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02104479 165.91703796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02104480 165.91705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02104481 165.91708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02104482 165.91708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02104483 165.91711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02104484 165.91711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02104485 165.91712952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02104486 165.91712952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02104487 165.91716003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02104488 165.91717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02104489 165.91719055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02104490 165.91719055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02104491 165.91722107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02104492 165.91722107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02104493 165.91725159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02104494 165.91725159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02104495 165.91726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02104496 165.91726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02104497 165.91729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02104498 165.91731262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02104499 165.91732788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02104500 165.91734314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02104501 165.91735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02104502 165.91735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02104503 165.91738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02104504 165.91738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02104505 165.91741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02104506 165.91741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02104507 165.91743469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02104508 165.91743469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02104509 165.91746521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02104510 165.91746521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02104511 165.91749573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02104512 165.91749573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02104513 165.91751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02104514 165.91751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02104515 165.91754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02104516 165.91755676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02104517 165.91758728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02104518 165.91758728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02104519 165.91760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02104520 165.91760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02104521 165.91763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02104522 165.91763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02104523 165.91766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02104524 165.91766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02104525 165.91767883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02104526 165.91769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02104527 165.91772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02104528 165.91772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02104529 165.91773987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02104530 165.91773987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02104531 165.91777039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02104532 165.91777039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02104533 165.91780090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02104534 165.91780090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02104535 165.91783142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02104536 165.91783142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02104537 165.91786194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02104538 165.91786194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02104539 165.91789246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02104540 165.91789246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02104541 165.91790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02104542 165.91790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02104543 165.91793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02104544 165.91793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02104545 165.91796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02104546 165.91798401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02104547 165.91799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02104548 165.91799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02104549 165.91802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02104550 165.91802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02104551 165.91806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02104552 165.91806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02104553 165.91807556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02104554 165.91807556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02104555 165.91810608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02104556 165.91812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02104557 165.91813660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02104558 165.91813660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02104559 165.91816711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02104560 165.91816711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02104561 165.91819763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02104562 165.91819763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02104563 165.91822815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02104564 165.91822815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02104565 165.91824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02104566 165.91824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02104567 165.91827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02104568 165.91828918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02104569 165.91830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02104570 165.91830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02104571 165.91833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02104572 165.91833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02104573 165.91836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02104574 165.91836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02104575 165.91838074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02104576 165.91838074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02104577 165.91841125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02104578 165.91842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02104579 165.91844177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02104580 165.91845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02104581 165.91847229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02104582 165.91847229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02104583 165.91850281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02104584 165.91850281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02104585 165.91853333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02104586 165.91853333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02104587 165.91854858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02104588 165.91854858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02104589 165.91857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02104590 165.91857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02104591 165.91860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02104592 165.91860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02104593 165.91862488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02104594 165.91862488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02104595 165.91865540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02104596 165.91865540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02104597 165.91868591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02104598 165.91868591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02104599 165.91870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02104600 165.91871643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02104601 165.91873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02104602 165.91874695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02104603 165.91877747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02104604 165.91877747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02104605 165.91879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02104606 165.91879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02104607 165.91882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02104608 165.91882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02104609 165.91885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02104610 165.91885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02104611 165.91886902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02104612 165.91886902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02104613 165.91889954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02104614 165.91889954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02104615 165.91893005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02104616 165.91893005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02104617 165.91894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02104618 165.91894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02104619 165.91897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02104620 165.91897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02104621 165.91900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02104622 165.91902161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02104623 165.91903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02104624 165.91903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02104625 165.91906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02104626 165.91906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02104627 165.91909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02104628 165.91909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02104629 165.91911316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02104630 165.91911316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02104631 165.91914368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02104632 165.91914368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02104633 165.91917419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02104634 165.91917419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02104635 165.91918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02104636 165.91918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02104637 165.91921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02104638 165.91921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02104639 165.91925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02104640 165.91925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02104641 165.91926575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02104642 165.91928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02104643 165.91929626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02104644 165.91931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02104645 165.91932678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02104646 165.91932678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02104647 165.91935730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02104648 165.91935730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02104649 165.91938782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02104650 165.91938782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02104651 165.91941833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02104652 165.91941833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02104653 165.91946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02104654 165.91946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02104655 165.91949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02104656 165.91949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02104657 165.91950989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02104658 165.91950989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02104659 165.91954041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02104660 165.91955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02104661 165.91957092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02104662 165.91957092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02104663 165.91960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02104664 165.91960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02104665 165.91963196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02104666 165.91963196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02104667 165.91964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02104668 165.91964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02104669 165.91967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02104670 165.91969299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02104671 165.91972351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02104672 165.91972351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02104673 165.91973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02104674 165.91973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02104675 165.91976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02104676 165.91976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02104677 165.91979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02104678 165.91979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02104679 165.91981506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02104680 165.91983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02104681 165.91986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02104682 165.91986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02104683 165.91989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02104684 165.91989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02104685 165.91990662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02104686 165.91990662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02104687 165.91993713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02104688 165.91993713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02104689 165.91996765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02104690 165.91996765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02104691 165.91998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02104692 165.91998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02104693 165.92001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02104694 165.92002869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02104695 165.92004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02104696 165.92004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02104697 165.92007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02104698 165.92007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02104699 165.92010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02104700 165.92010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02104701 165.92013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02104702 165.92013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02104703 165.92015076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02104704 165.92015076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02104705 165.92018127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02104706 165.92019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02104707 165.92021179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02104708 165.92021179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02104709 165.92024231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02104710 165.92024231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02104711 165.92027283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02104712 165.92027283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02104713 165.92028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02104714 165.92028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02104715 165.92031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02104716 165.92031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02104717 165.92034912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02104718 165.92034912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02104719 165.92036438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02104720 165.92037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02104721 165.92039490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02104722 165.92041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02104723 165.92044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02104724 165.92044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02104725 165.92045593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02104726 165.92045593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02104727 165.92048645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02104728 165.92048645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02104729 165.92051697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02104730 165.92051697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02104731 165.92053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02104732 165.92053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02104733 165.92056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02104734 165.92056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02104735 165.92059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02104736 165.92059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02104737 165.92060852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02104738 165.92060852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02104739 165.92063904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02104740 165.92063904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02104741 165.92066956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02104742 165.92068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02104743 165.92068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02104744 165.92070007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02104745 165.92073059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02104746 165.92073059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02104747 165.92076111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02104748 165.92076111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02104749 165.92077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02104750 165.92079163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02104751 165.92082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02104752 165.92082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02104753 165.92083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02104754 165.92083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02104755 165.92086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02104756 165.92086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02104757 165.92089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02104758 165.92089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02104759 165.92092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02104760 165.92092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02104761 165.92094421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02104762 165.92094421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02104763 165.92097473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02104764 165.92098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02104765 165.92100525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02104766 165.92100525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02104767 165.92103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02104768 165.92103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02104769 165.92106628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02104770 165.92106628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02104771 165.92108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02104772 165.92108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02104773 165.92111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02104774 165.92112732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02104775 165.92115784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02104776 165.92115784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02104777 165.92117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02104778 165.92117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02104779 165.92120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02104780 165.92120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02104781 165.92123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02104782 165.92123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02104783 165.92124939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02104784 165.92126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02104785 165.92129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02104786 165.92129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02104787 165.92132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02104788 165.92132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02104789 165.92134094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02104790 165.92134094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02104791 165.92137146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02104792 165.92137146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02104793 165.92140198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02104794 165.92140198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02104795 165.92143250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02104796 165.92143250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02104797 165.92146301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02104798 165.92146301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02104799 165.92147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02104800 165.92147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02104801 165.92150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02104802 165.92150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02104803 165.92153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02104804 165.92155457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02104805 165.92156982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02104806 165.92156982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02104807 165.92160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02104808 165.92160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02104809 165.92163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02104810 165.92163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02104811 165.92164612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02104812 165.92164612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02104813 165.92167664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02104814 165.92169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02104815 165.92173767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02104816 165.92175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02104817 165.92178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02104818 165.92178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02104819 165.92179871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02104820 165.92179871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02104821 165.92184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02104822 165.92184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02104823 165.92187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02104824 165.92187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02104825 165.92189026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02104826 165.92189026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02104827 165.92192078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02104828 165.92192078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02104829 165.92195129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02104830 165.92195129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02104831 165.92198181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02104832 165.92198181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02104833 165.92201233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02104834 165.92201233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02104835 165.92202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02104836 165.92202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02104837 165.92205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02104838 165.92205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02104839 165.92208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02104840 165.92210388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02104841 165.92211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02104842 165.92211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02104843 165.92214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02104844 165.92214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02104845 165.92218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02104846 165.92218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02104847 165.92219543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02104848 165.92219543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02104849 165.92222595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02104850 165.92224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02104851 165.92225647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02104852 165.92227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02104853 165.92228699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02104854 165.92228699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02104855 165.92231750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02104856 165.92231750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02104857 165.92234802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02104858 165.92234802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02104859 165.92236328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02104860 165.92236328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02104861 165.92239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02104862 165.92239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02104863 165.92242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02104864 165.92242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02104865 165.92243958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02104866 165.92243958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02104867 165.92247009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02104868 165.92247009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02104869 165.92250061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02104870 165.92251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02104871 165.92251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02104872 165.92253113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02104873 165.92256165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02104874 165.92256165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02104875 165.92259216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02104876 165.92259216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02104877 165.92260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02104878 165.92260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02104879 165.92263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02104880 165.92263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02104881 165.92266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02104882 165.92266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02104883 165.92268372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02104884 165.92268372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02104885 165.92271423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02104886 165.92271423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02104887 165.92274475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02104888 165.92274475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02104889 165.92276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02104890 165.92276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02104891 165.92279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02104892 165.92280579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02104893 165.92282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02104894 165.92283630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02104895 165.92285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02104896 165.92285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02104897 165.92288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02104898 165.92288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02104899 165.92291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02104900 165.92291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02104901 165.92292786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02104902 165.92292786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02104903 165.92295837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02104904 165.92295837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02104905 165.92298889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02104906 165.92298889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02104907 165.92300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02104908 165.92300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02104909 165.92303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02104910 165.92303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02104911 165.92306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02104912 165.92306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02104913 165.92308044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02104914 165.92309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02104915 165.92312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02104916 165.92312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02104917 165.92314148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02104918 165.92314148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02104919 165.92317200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02104920 165.92317200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02104921 165.92320251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02104922 165.92320251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02104923 165.92323303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02104924 165.92323303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02104925 165.92326355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02104926 165.92326355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02104927 165.92329407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02104928 165.92329407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02104929 165.92330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02104930 165.92330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02104931 165.92333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02104932 165.92333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02104933 165.92337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02104934 165.92338562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02104935 165.92340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02104936 165.92340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02104937 165.92343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02104938 165.92343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02104939 165.92346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02104940 165.92346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02104941 165.92349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02104942 165.92349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02104943 165.92352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02104944 165.92352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02104945 165.92353821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02104946 165.92353821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02104947 165.92356873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02104948 165.92356873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02104949 165.92359924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02104950 165.92359924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02104951 165.92362976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02104952 165.92362976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02104953 165.92364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02104954 165.92364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02104955 165.92367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02104956 165.92369080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02104957 165.92370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02104958 165.92370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02104959 165.92373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02104960 165.92373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02104961 165.92376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02104962 165.92376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02104963 165.92378235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02104964 165.92378235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02104965 165.92381287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02104966 165.92381287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02104967 165.92384338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02104968 165.92384338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02104969 165.92385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02104970 165.92385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02104971 165.92388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02104972 165.92388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02104973 165.92393494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02104974 165.92393494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02104975 165.92395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02104976 165.92395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02104977 165.92398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02104978 165.92398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02104979 165.92401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02104980 165.92401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02104981 165.92402649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02104982 165.92404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02104983 165.92407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02104984 165.92407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02104985 165.92410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02104986 165.92410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02104987 165.92411804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02104988 165.92411804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02104989 165.92414856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02104990 165.92414856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02104991 165.92417908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02104992 165.92417908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02104993 165.92419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02104994 165.92420959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02104995 165.92424011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02104996 165.92424011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02104997 165.92425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02104998 165.92425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02104999 165.92428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02105000 165.92428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02105001 165.92431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02105002 165.92431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02105003 165.92433167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02105004 165.92433167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02105005 165.92436218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02105006 165.92436218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02105007 165.92439270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02105008 165.92440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02105009 165.92442322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02105010 165.92442322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02105011 165.92445374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02105012 165.92445374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02105013 165.92448425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02105014 165.92448425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02105015 165.92449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02105016 165.92449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02105017 165.92453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02105018 165.92453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02105019 165.92456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02105020 165.92457581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02105021 165.92459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02105022 165.92459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02105023 165.92462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02105024 165.92462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02105025 165.92465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02105026 165.92465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02105027 165.92469788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02105028 165.92469788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02105029 165.92472839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02105030 165.92472839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02105031 165.92475891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02105032 165.92475891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02105033 165.92478943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02105034 165.92478943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02105035 165.92481995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02105036 165.92481995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02105037 165.92483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02105038 165.92485046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02105039 165.92488098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02105040 165.92488098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02105041 165.92489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02105042 165.92489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02105043 165.92492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02105044 165.92492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02105045 165.92495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02105046 165.92495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02105047 165.92500305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02105048 165.92500305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02105049 165.92504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02105050 165.92504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02105051 165.92506409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02105052 165.92506409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02105053 165.92510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02105054 165.92510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02105055 165.92514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02105056 165.92514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02105057 165.92515564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02105058 165.92517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02105059 165.92520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02105060 165.92520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02105061 165.92521667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02105062 165.92521667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02105063 165.92524719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02105064 165.92524719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02105065 165.92527771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02105066 165.92527771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02105067 165.92529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02105068 165.92529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02105069 165.92532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02105070 165.92533875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02105071 165.92535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02105072 165.92536926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02105073 165.92538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02105074 165.92538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02105075 165.92541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02105076 165.92541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02105077 165.92544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02105078 165.92544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02105079 165.92546082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02105080 165.92546082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02105081 165.92549133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02105082 165.92550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02105083 165.92553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02105084 165.92553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02105085 165.92555237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02105086 165.92555237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02105087 165.92558289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02105088 165.92558289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02105089 165.92561340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02105090 165.92561340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02105091 165.92562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02105092 165.92562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02105093 165.92565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02105094 165.92567444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02105095 165.92568970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02105096 165.92568970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02105097 165.92572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02105098 165.92576599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02105099 165.92579651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02105100 165.92579651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02105101 165.92582703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02105102 165.92584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02105103 165.92584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02105104 165.92585754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02105105 165.92588806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02105106 165.92588806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02105107 165.92591858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02105108 165.92591858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02105109 165.92593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02105110 165.92593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02105111 165.92596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02105112 165.92596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02105113 165.92599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02105114 165.92599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02105115 165.92601013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02105116 165.92601013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02105117 165.92604065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02105118 165.92604065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02105119 165.92607117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02105120 165.92607117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02105121 165.92608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02105122 165.92610168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02105123 165.92611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02105124 165.92613220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02105125 165.92616272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02105126 165.92616272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02105127 165.92617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02105128 165.92617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02105129 165.92620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02105130 165.92620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02105131 165.92623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02105132 165.92623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02105133 165.92625427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02105134 165.92625427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02105135 165.92628479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02105136 165.92628479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02105137 165.92631531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02105138 165.92631531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02105139 165.92633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02105140 165.92633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02105141 165.92637634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02105142 165.92637634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02105143 165.92640686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02105144 165.92640686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02105145 165.92642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02105146 165.92642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02105147 165.92645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02105148 165.92645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02105149 165.92648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02105150 165.92648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02105151 165.92649841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02105152 165.92651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02105153 165.92654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02105154 165.92654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02105155 165.92655945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02105156 165.92655945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02105157 165.92658997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02105158 165.92658997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02105159 165.92662048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02105160 165.92662048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02105161 165.92663574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02105162 165.92663574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02105163 165.92666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02105164 165.92666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02105165 165.92669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02105166 165.92669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02105167 165.92672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02105168 165.92672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02105169 165.92674255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02105170 165.92674255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02105171 165.92677307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02105172 165.92678833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02105173 165.92680359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02105174 165.92680359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02105175 165.92683411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02105176 165.92683411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02105177 165.92686462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02105178 165.92686462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02105179 165.92687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02105180 165.92687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02105181 165.92691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02105182 165.92691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02105183 165.92694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02105184 165.92694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02105185 165.92695618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02105186 165.92695618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02105187 165.92698669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02105188 165.92698669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02105189 165.92701721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02105190 165.92701721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02105191 165.92703247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02105192 165.92704773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02105193 165.92706299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02105194 165.92707825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02105195 165.92710876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02105196 165.92710876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02105197 165.92712402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02105198 165.92712402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02105199 165.92715454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02105200 165.92715454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02105201 165.92718506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02105202 165.92718506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02105203 165.92720032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02105204 165.92720032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02105205 165.92723083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02105206 165.92723083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02105207 165.92726135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02105208 165.92726135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02105209 165.92727661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02105210 165.92727661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02105211 165.92730713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02105212 165.92730713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02105213 165.92733765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02105214 165.92735291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02105215 165.92735291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02105216 165.92736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02105217 165.92739868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02105218 165.92739868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02105219 165.92742920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02105220 165.92742920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02105221 165.92744446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02105222 165.92744446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02105223 165.92747498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02105224 165.92747498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02105225 165.92750549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02105226 165.92750549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02105227 165.92752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02105228 165.92752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02105229 165.92755127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02105230 165.92755127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02105231 165.92758179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02105232 165.92758179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02105233 165.92761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02105234 165.92761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02105235 165.92764282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02105236 165.92764282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02105237 165.92767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02105238 165.92767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02105239 165.92768860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02105240 165.92768860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02105241 165.92771912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02105242 165.92773438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02105243 165.92774963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02105244 165.92774963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02105245 165.92778015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02105246 165.92778015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02105247 165.92781067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02105248 165.92781067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02105249 165.92784119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02105250 165.92784119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02105251 165.92785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02105252 165.92785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02105253 165.92788696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02105254 165.92788696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02105255 165.92791748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02105256 165.92791748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02105257 165.92793274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02105258 165.92794800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02105259 165.92796326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02105260 165.92797852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02105261 165.92799377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02105262 165.92799377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02105263 165.92802429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02105264 165.92802429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02105265 165.92805481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02105266 165.92805481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02105267 165.92807007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02105268 165.92807007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02105269 165.92810059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02105270 165.92810059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02105271 165.92813110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02105272 165.92813110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02105273 165.92814636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02105274 165.92814636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02105275 165.92817688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02105276 165.92817688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02105277 165.92820740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02105278 165.92820740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02105279 165.92823792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02105280 165.92823792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02105281 165.92826843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02105282 165.92826843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02105283 165.92829895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02105284 165.92829895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02105285 165.92831421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02105286 165.92831421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02105287 165.92834473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02105288 165.92834473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02105289 165.92837524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02105290 165.92837524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02105291 165.92839050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02105292 165.92839050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02105293 165.92842102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02105294 165.92842102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02105295 165.92845154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02105296 165.92845154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02105297 165.92846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02105298 165.92846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02105299 165.92849731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02105300 165.92851257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02105301 165.92852783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02105302 165.92854309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02105303 165.92855835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02105304 165.92855835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02105305 165.92858887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02105306 165.92858887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02105307 165.92861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02105308 165.92861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02105309 165.92863464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02105310 165.92863464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02105311 165.92866516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02105312 165.92866516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02105313 165.92869568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02105314 165.92869568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02105315 165.92871094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02105316 165.92871094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02105317 165.92874146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02105318 165.92874146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02105319 165.92877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02105320 165.92877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02105321 165.92878723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02105322 165.92880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02105323 165.92881775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02105324 165.92883301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02105325 165.92886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02105326 165.92886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02105327 165.92887878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02105328 165.92887878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02105329 165.92890930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02105330 165.92892456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02105331 165.92893982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02105332 165.92893982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02105333 165.92897034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02105334 165.92897034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02105335 165.92900085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02105336 165.92900085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02105337 165.92903137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02105338 165.92903137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02105339 165.92906189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02105340 165.92906189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02105341 165.92909241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02105342 165.92909241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02105343 165.92910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02105344 165.92910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02105345 165.92913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02105346 165.92913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02105347 165.92916870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02105348 165.92916870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02105349 165.92918396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02105350 165.92918396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02105351 165.92921448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02105352 165.92921448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02105353 165.92924500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02105354 165.92924500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02105355 165.92926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02105356 165.92926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02105357 165.92929077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02105358 165.92930603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02105359 165.92932129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02105360 165.92933655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02105361 165.92935181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02105362 165.92935181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02105363 165.92938232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02105364 165.92938232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02105365 165.92941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02105366 165.92941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02105367 165.92942810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02105368 165.92942810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02105369 165.92945862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02105370 165.92947388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02109081 165.98132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -02109082 165.98132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -02109083 165.98135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -02109084 165.98135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -02109085 165.98136902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -02109086 165.98136902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -02109087 165.98139954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -02109088 165.98139954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -02109089 165.98143005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -02109090 165.98143005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -02109091 165.98144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -02109092 165.98144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -02109093 165.98147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -02109094 165.98147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -02109095 165.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -02109096 165.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -02109097 165.98153687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -02109098 165.98153687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -02109099 165.98156738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -02109100 165.98156738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -02109101 165.98159790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -02109102 165.98159790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -02109103 165.98162842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -02109104 165.98162842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -02109105 165.98165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -02109106 165.98165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -02109107 165.98168945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -02109108 165.98168945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -02109109 165.98170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -02109110 165.98170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -02109111 165.98173523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -02109112 165.98173523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -02109113 165.98176575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -02109114 165.98176575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -02109115 165.98178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -02109116 165.98178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -02109117 165.98181152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -02109118 165.98182678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -02109119 165.98184204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -02109120 165.98184204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -02109121 165.98187256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -02109122 165.98187256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -02109123 165.98190308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -02109124 165.98190308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -02111513 166.01574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11238 -02111514 166.01574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11238 -02111515 166.01576233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11248 -02111516 166.01576233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11248 -02111517 166.01579285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11258 -02111518 166.01579285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11258 -02111519 166.01582336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11268 -02111520 166.01583862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11268 -02111521 166.01585388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11278 -02111522 166.01585388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11278 -02111523 166.01588440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11288 -02111524 166.01588440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11288 -02111525 166.01591492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11298 -02111526 166.01591492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11298 -02111527 166.01593018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a8 -02111528 166.01593018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a8 -02111529 166.01596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b8 -02111530 166.01597595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b8 -02111531 166.01600647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c8 -02111532 166.01600647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c8 -02111533 166.01602173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d8 -02111534 166.01602173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d8 -02111535 166.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e8 -02111536 166.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e8 -02111537 166.01608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f8 -02111538 166.01608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f8 -02111539 166.01609802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11308 -02111540 166.01609802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11308 -02111541 166.01612854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11318 -02111542 166.01614380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11318 -02111543 166.01615906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11328 -02111544 166.01615906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11328 -02111545 166.01618958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11338 -02111546 166.01618958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11338 -02111547 166.01622009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11348 -02111548 166.01622009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11348 -02111549 166.01625061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11358 -02111550 166.01625061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11358 -02111551 166.01626587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11368 -02111552 166.01628113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11368 -02111553 166.01631165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11378 -02111554 166.01631165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11378 -02111555 166.01632690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11388 -02111556 166.01632690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11388 -02113583 166.04507446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -02113584 166.04507446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -02113585 166.04508972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -02113586 166.04510498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -02113587 166.04513550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -02113588 166.04513550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -02113589 166.04516602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -02113590 166.04516602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -02113591 166.04518127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -02113592 166.04518127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -02113593 166.04521179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -02113594 166.04521179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -02113595 166.04524231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -02113596 166.04524231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -02113597 166.04525757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -02113598 166.04527283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -02113599 166.04530334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15368 -02113600 166.04530334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15368 -02113601 166.04531860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15378 -02113602 166.04531860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15378 -02113603 166.04534912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15388 -02113604 166.04534912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15388 -02113605 166.04537964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15398 -02113606 166.04537964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15398 -02113607 166.04539490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a8 -02113608 166.04541016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a8 -02113609 166.04544067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b8 -02113610 166.04544067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b8 -02113611 166.04547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c8 -02113612 166.04547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c8 -02113613 166.04548645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d8 -02113614 166.04548645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d8 -02113615 166.04551697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e8 -02113616 166.04551697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e8 -02113617 166.04554749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f8 -02113618 166.04556274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f8 -02113619 166.04557800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15408 -02113620 166.04557800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15408 -02113621 166.04560852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15418 -02113622 166.04560852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15418 -02113623 166.04563904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15428 -02113624 166.04563904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15428 -02113625 166.04565430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15438 -02113626 166.04565430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15438 -02121705 166.15985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -02121706 166.15985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -02121707 166.15986633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -02121708 166.15988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -02121709 166.15989685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -02121710 166.15991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -02121711 166.15994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -02121712 166.15994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -02121713 166.15995789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -02121714 166.15995789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -02121715 166.15998840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -02121716 166.15998840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -02121717 166.16001892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -02121718 166.16001892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -02121719 166.16003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -02121720 166.16003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -02121721 166.16006470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -02121722 166.16007996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -02121723 166.16009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -02121724 166.16009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -02121725 166.16012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -02121726 166.16012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -02121727 166.16015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -02121728 166.16015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -02121729 166.16018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -02121730 166.16018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -02121731 166.16020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -02121732 166.16020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -02121733 166.16023254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -02121734 166.16024780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -02121735 166.16026306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -02121736 166.16026306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -02121737 166.16029358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -02121738 166.16029358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -02121739 166.16032410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -02121740 166.16032410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -02121741 166.16033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -02121742 166.16033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -02121743 166.16036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -02121744 166.16036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -02121745 166.16040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f8 -02121746 166.16040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f8 -02121747 166.16041565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25208 -02121748 166.16041565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25208 -02126437 166.22746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e498 -02126438 166.22747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e498 -02126439 166.22750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a8 -02126440 166.22750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a8 -02126441 166.22753906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b8 -02126442 166.22753906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b8 -02126443 166.22755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c8 -02126444 166.22755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c8 -02126445 166.22758484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d8 -02126446 166.22758484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d8 -02126447 166.22761536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e8 -02126448 166.22761536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e8 -02126449 166.22764587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f8 -02126450 166.22764587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f8 -02126451 166.22767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e508 -02126452 166.22767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e508 -02126453 166.22769165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e518 -02126454 166.22769165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e518 -02126455 166.22772217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e528 -02126456 166.22772217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e528 -02126457 166.22775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e538 -02126458 166.22775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e538 -02126459 166.22778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e548 -02126460 166.22778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e548 -02126461 166.22781372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e558 -02126462 166.22781372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e558 -02126463 166.22784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e568 -02126464 166.22784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e568 -02126465 166.22785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e578 -02126466 166.22785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e578 -02126467 166.22789001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e588 -02126468 166.22789001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e588 -02126469 166.22792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e598 -02126470 166.22793579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e598 -02126471 166.22795105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a8 -02126472 166.22795105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a8 -02126473 166.22798157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b8 -02126474 166.22798157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b8 -02126475 166.22801208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c8 -02126476 166.22801208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c8 -02126477 166.22802734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d8 -02126478 166.22802734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d8 -02126479 166.22805786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e8 -02126480 166.22807312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e8 -02143734 166.47787476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50118 -02143735 166.47790527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50128 -02143736 166.47790527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50128 -02143737 166.47792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50138 -02143738 166.47792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50138 -02143739 166.47795105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50148 -02143740 166.47796631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50148 -02143741 166.47799683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50158 -02143742 166.47799683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50158 -02143743 166.47801208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50168 -02143744 166.47801208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50168 -02143745 166.47804260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50178 -02143746 166.47804260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50178 -02143747 166.47807312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50188 -02143748 166.47807312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50188 -02143749 166.47810364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -02143750 166.47810364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -02143751 166.47813416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -02143752 166.47813416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -02143753 166.47814941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -02143754 166.47814941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -02143755 166.47817993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -02143756 166.47817993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -02143757 166.47821045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -02143758 166.47822571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -02143759 166.47824097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -02143760 166.47824097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -02143761 166.47827148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -02143762 166.47827148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -02143763 166.47830200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -02143764 166.47830200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -02143765 166.47831726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -02143766 166.47831726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -02143767 166.47834778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -02143768 166.47836304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -02143769 166.47839355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -02143770 166.47839355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -02143771 166.47840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -02143772 166.47840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -02143773 166.47843933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -02143774 166.47843933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -02143775 166.47846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -02143776 166.47846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -02143777 166.47850037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -02145145 166.79612732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02145146 166.81520081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02145147 166.81521606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02145148 167.13780212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02145149 167.13780212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02145150 167.13783264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02145151 167.13784790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02145152 167.13786316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02145153 167.13786316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02145154 167.13789368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02145155 167.13789368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02145156 167.13792419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02145157 167.13792419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02145158 167.13793945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02145159 167.13793945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02145160 167.13798523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02145161 167.13798523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02145162 167.13801575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02145163 167.13801575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02145164 167.13803101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02145165 167.13803101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02145166 167.13806152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02145167 167.13806152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02145168 167.13809204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02145169 167.13809204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02145170 167.13812256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02145171 167.13812256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02145172 167.13815308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02145173 167.13815308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02145174 167.13818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02145175 167.13818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02145176 167.13819885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02145177 167.13821411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02145178 167.13824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02145179 167.13824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02145180 167.13825989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02145181 167.13825989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02145182 167.13829041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02145183 167.13829041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02145184 167.13832092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02145185 167.13833618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02145186 167.13835144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02145187 167.13835144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02145188 167.13838196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02145189 167.13838196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02145190 167.13841248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02145191 167.13841248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02145192 167.13842773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02145193 167.13842773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02145194 167.13845825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02145195 167.13847351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02145196 167.13848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02145197 167.13848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02145198 167.13851929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02145199 167.13851929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02145200 167.13854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02145201 167.13854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02145202 167.13858032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02145203 167.13858032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02145204 167.13861084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02145205 167.13861084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02145206 167.13864136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02145207 167.13864136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02145208 167.13865662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02145209 167.13865662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02145210 167.13868713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02145211 167.13870239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02145212 167.13873291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02145213 167.13873291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02145214 167.13874817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02145215 167.13874817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02145216 167.13877869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02145217 167.13877869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02145218 167.13880920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02145219 167.13880920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02145220 167.13882446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02145221 167.13883972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02145222 167.13887024 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02145223 167.13887024 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02145224 167.13888550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02145225 167.13888550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02145226 167.13891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02145227 167.13891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02145228 167.13894653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02145229 167.13894653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02145230 167.13897705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02145231 167.13897705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02145232 167.13900757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02145233 167.13900757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02145234 167.13903809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02145235 167.13903809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02145236 167.13905334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02145237 167.13905334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02145238 167.13908386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02145239 167.13909912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02145240 167.13912964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02145241 167.13912964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02145242 167.13914490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02145243 167.13914490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02145244 167.13917542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02145245 167.13917542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02145246 167.13920593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02145247 167.13920593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02145248 167.13923645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02145249 167.13923645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02145250 167.13926697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02145251 167.13926697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02145252 167.13928223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02145253 167.13928223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02145254 167.13931274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02145255 167.13931274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02145256 167.13934326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02145257 167.13935852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02145258 167.13937378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02145259 167.13937378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02145260 167.13940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02145261 167.13940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02145262 167.13943481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02145263 167.13943481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02145264 167.13945007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02145265 167.13946533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02145266 167.13949585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02145267 167.13949585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02145268 167.13952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02145269 167.13952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02145270 167.13954163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02145271 167.13954163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02145272 167.13960266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02145273 167.13960266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02145274 167.13961792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02145275 167.13961792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02145276 167.13964844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02145277 167.13964844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02145278 167.13967896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02145279 167.13967896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02145280 167.13970947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02145281 167.13970947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02145282 167.13973999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02145283 167.13973999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02145284 167.13977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02145285 167.13977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02145286 167.13978577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02145287 167.13978577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02145288 167.13981628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02145289 167.13983154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02145290 167.13984680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02145291 167.13984680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02145292 167.13987732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02145293 167.13987732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02145294 167.13990784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02145295 167.13990784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02145296 167.13992310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02145297 167.13993835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02145298 167.13996887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02145299 167.13996887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02145300 167.13999939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02145301 167.13999939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02145302 167.14001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02145303 167.14001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02145304 167.14004517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02145305 167.14004517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02145306 167.14007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02145307 167.14007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02145308 167.14010620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02145309 167.14010620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02145310 167.14013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02145311 167.14013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02145312 167.14016724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02145313 167.14016724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02145314 167.14019775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02145315 167.14019775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02145316 167.14022827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02145317 167.14022827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02145318 167.14024353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02145319 167.14024353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02145320 167.14027405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02145321 167.14028931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02145322 167.14031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02145323 167.14031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02145324 167.14033508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02145325 167.14033508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02145326 167.14036560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02145327 167.14036560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02145328 167.14039612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02145329 167.14039612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02145330 167.14042664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02145331 167.14042664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02145332 167.14045715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02145333 167.14045715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02145334 167.14047241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02145335 167.14047241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02145336 167.14050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02145337 167.14050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02145338 167.14053345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02145339 167.14054871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02145340 167.14056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02145341 167.14056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02145342 167.14059448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02145343 167.14059448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02145344 167.14062500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02145345 167.14062500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02145346 167.14064026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02145347 167.14065552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02145348 167.14068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02145349 167.14068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02145350 167.14071655 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02145351 167.14071655 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02145352 167.14073181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02145353 167.14073181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02145354 167.14076233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02145355 167.14076233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02145356 167.14079285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02145357 167.14079285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02145358 167.14082336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02145359 167.14082336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02145360 167.14085388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02145361 167.14085388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02145362 167.14088440 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02145363 167.14088440 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02145364 167.14089966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02145365 167.14091492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02145366 167.14094543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02145367 167.14094543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02147178 167.16691589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -02147179 167.16691589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -02147180 167.16693115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -02147181 167.16693115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -02147182 167.16696167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -02147183 167.16697693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -02147184 167.16700745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -02147185 167.16700745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -02147186 167.16702271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -02147187 167.16702271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -02147188 167.16705322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -02147189 167.16705322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -02147190 167.16708374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -02147191 167.16708374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -02147192 167.16711426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -02147193 167.16711426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -02147194 167.16714478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -02147195 167.16714478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -02147196 167.16717529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -02147197 167.16717529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -02147198 167.16719055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -02147199 167.16719055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -02147200 167.16722107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -02147201 167.16723633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -02147202 167.16725159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -02147203 167.16725159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -02147204 167.16728210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -02147205 167.16728210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -02147206 167.16731262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -02147207 167.16731262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -02147208 167.16732788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -02147209 167.16732788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -02147210 167.16737366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -02147211 167.16737366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -02147212 167.16740417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -02147213 167.16740417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -02147214 167.16741943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -02147215 167.16741943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -02147216 167.16744995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -02147217 167.16744995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -02147218 167.16748047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -02147219 167.16748047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -02147220 167.16751099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -02147221 167.16751099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -02148380 167.18472290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -02148381 167.18472290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -02148382 167.18473816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -02148383 167.18473816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -02148384 167.18476868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -02148385 167.18478394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -02148386 167.18479919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -02148387 167.18479919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -02148388 167.18482971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -02148389 167.18482971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -02148390 167.18487549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -02148391 167.18487549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -02148392 167.18489075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -02148393 167.18489075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -02148394 167.18492126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -02148395 167.18492126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -02148396 167.18496704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -02148397 167.18496704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -02148398 167.18498230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -02148399 167.18499756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -02148400 167.18502808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -02148401 167.18502808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -02148402 167.18504333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -02148403 167.18504333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -02148404 167.18507385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -02148405 167.18508911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -02148406 167.18511963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -02148407 167.18511963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -02148408 167.18513489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -02148409 167.18513489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -02148410 167.18518066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -02148411 167.18518066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -02148412 167.18519592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -02148413 167.18519592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -02148414 167.18522644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -02148415 167.18522644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -02148416 167.18527222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -02148417 167.18527222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -02148418 167.18528748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -02148419 167.18528748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -02148420 167.18531799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -02148421 167.18533325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -02148422 167.18536377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -02148423 167.18536377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -02148532 167.18702698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -02148533 167.18702698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -02148534 167.18704224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -02148535 167.18704224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -02148536 167.18707275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -02148537 167.18708801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -02148538 167.18710327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -02148539 167.18710327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -02148540 167.18713379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -02148541 167.18713379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -02148542 167.18717957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -02148543 167.18717957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -02148544 167.18719482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -02148545 167.18719482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -02148546 167.18722534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -02148547 167.18724060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -02148548 167.18727112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -02148549 167.18727112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -02148550 167.18728638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -02148551 167.18728638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -02148552 167.18733215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -02148553 167.18733215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -02148554 167.18734741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -02148555 167.18734741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -02148556 167.18737793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -02148557 167.18739319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -02148558 167.18742371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -02148559 167.18742371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -02148560 167.18743896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -02148561 167.18743896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -02148562 167.18746948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -02148563 167.18746948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -02148564 167.18750000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -02148565 167.18750000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -02148566 167.18753052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -02148567 167.18753052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -02148568 167.18756104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -02148569 167.18756104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -02148570 167.18759155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -02148571 167.18759155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -02148572 167.18762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -02148573 167.18762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -02148574 167.18765259 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -02148575 167.18766785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -02149040 167.19473267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e0 -02149041 167.19473267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e0 -02149042 167.19474792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f0 -02149043 167.19476318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f0 -02149044 167.19479370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a00 -02149045 167.19479370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a00 -02149046 167.19480896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a10 -02149047 167.19480896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a10 -02149048 167.19483948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a20 -02149049 167.19485474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a20 -02149050 167.19488525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a30 -02149051 167.19488525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a30 -02149052 167.19490051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a40 -02149053 167.19490051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a40 -02149054 167.19494629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a50 -02149055 167.19494629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a50 -02149056 167.19497681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a60 -02149057 167.19497681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a60 -02149058 167.19499207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a70 -02149059 167.19500732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a70 -02149060 167.19503784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a80 -02149061 167.19503784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a80 -02149062 167.19505310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a90 -02149063 167.19505310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a90 -02149064 167.19508362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa0 -02149065 167.19509888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa0 -02149066 167.19512939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab0 -02149067 167.19512939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab0 -02149068 167.19514465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac0 -02149069 167.19514465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac0 -02149070 167.19519043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad0 -02149071 167.19519043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad0 -02149072 167.19520569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae0 -02149073 167.19520569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae0 -02149074 167.19523621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af0 -02149075 167.19523621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af0 -02149076 167.19526672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b00 -02149077 167.19528198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b00 -02149078 167.19529724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b10 -02149079 167.19529724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b10 -02149080 167.19532776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b20 -02149081 167.19532776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b20 -02149082 167.19535828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b30 -02149083 167.19535828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b30 -02149246 167.19795227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9050 -02149247 167.19795227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9050 -02149248 167.19798279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9060 -02149249 167.19798279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9060 -02149250 167.19799805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9070 -02149251 167.19799805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9070 -02149252 167.19804382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9080 -02149253 167.19804382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9080 -02149254 167.19807434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9090 -02149255 167.19807434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9090 -02149256 167.19808960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a0 -02149257 167.19810486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a0 -02149258 167.19813538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b0 -02149259 167.19813538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b0 -02149260 167.19815063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c0 -02149261 167.19815063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c0 -02149262 167.19819641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d0 -02149263 167.19819641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d0 -02149264 167.19822693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e0 -02149265 167.19822693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e0 -02149266 167.19824219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f0 -02149267 167.19824219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f0 -02149268 167.19828796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9100 -02149269 167.19828796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9100 -02149270 167.19830322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9110 -02149271 167.19830322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9110 -02149272 167.19833374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9120 -02149273 167.19834900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9120 -02149274 167.19837952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9130 -02149275 167.19837952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9130 -02149276 167.19839478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9140 -02149277 167.19839478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9140 -02149278 167.19842529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9150 -02149279 167.19844055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9150 -02149280 167.19847107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9160 -02149281 167.19847107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9160 -02149282 167.19848633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9170 -02149283 167.19848633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9170 -02149284 167.19853210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9180 -02149285 167.19853210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9180 -02149286 167.19854736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9190 -02149287 167.19854736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9190 -02149288 167.19857788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a0 -02149289 167.19859314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a0 -02149394 167.20019531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f0 -02149395 167.20019531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f0 -02149396 167.20021057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9500 -02149397 167.20022583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9500 -02149398 167.20025635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9510 -02149399 167.20025635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9510 -02149400 167.20028687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9520 -02149401 167.20028687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9520 -02149402 167.20030212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9530 -02149403 167.20031738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9530 -02149404 167.20034790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9540 -02149405 167.20034790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9540 -02149406 167.20037842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9550 -02149407 167.20037842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9550 -02149408 167.20040894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9560 -02149409 167.20040894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9560 -02149410 167.20043945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9570 -02149411 167.20043945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9570 -02149412 167.20045471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9580 -02149413 167.20046997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9580 -02149414 167.20050049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9590 -02149415 167.20050049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9590 -02149416 167.20053101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a0 -02149417 167.20053101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a0 -02149418 167.20054626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b0 -02149419 167.20056152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b0 -02149420 167.20059204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c0 -02149421 167.20059204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c0 -02149422 167.20060730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d0 -02149423 167.20060730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d0 -02149424 167.20065308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e0 -02149425 167.20065308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e0 -02149426 167.20068359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f0 -02149427 167.20068359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f0 -02149428 167.20069885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9600 -02149429 167.20071411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9600 -02149430 167.20074463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9610 -02149431 167.20074463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9610 -02149432 167.20077515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9620 -02149433 167.20077515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9620 -02149434 167.20079041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9630 -02149435 167.20080566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9630 -02149436 167.20083618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9640 -02149437 167.20083618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9640 -02149630 167.20378113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -02149631 167.20378113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -02149632 167.20379639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -02149633 167.20381165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -02149634 167.20384216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -02149635 167.20384216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -02149636 167.20387268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -02149637 167.20387268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -02149638 167.20388794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -02149639 167.20390320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -02149640 167.20393372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -02149641 167.20393372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -02149642 167.20394897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -02149643 167.20394897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -02149644 167.20397949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -02149645 167.20399475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -02149646 167.20402527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -02149647 167.20402527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -02149648 167.20404053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce0 -02149649 167.20404053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce0 -02149650 167.20407104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf0 -02149651 167.20407104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf0 -02149652 167.20410156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d00 -02149653 167.20410156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d00 -02149654 167.20413208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d10 -02149655 167.20413208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d10 -02149656 167.20416260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d20 -02149657 167.20416260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d20 -02149658 167.20419312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d30 -02149659 167.20419312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d30 -02149660 167.20422363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d40 -02149661 167.20422363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d40 -02149662 167.20425415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d50 -02149663 167.20425415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d50 -02149664 167.20426941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d60 -02149665 167.20426941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d60 -02149666 167.20431519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d70 -02149667 167.20431519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d70 -02149668 167.20434570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d80 -02149669 167.20434570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d80 -02149670 167.20436096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d90 -02149671 167.20436096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d90 -02149672 167.20439148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da0 -02149673 167.20440674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da0 -02149902 167.20783997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -02149903 167.20783997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -02149904 167.20788574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -02149905 167.20788574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -02149906 167.20791626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -02149907 167.20791626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -02149908 167.20793152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -02149909 167.20793152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -02149910 167.20797729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -02149911 167.20797729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -02149912 167.20799255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -02149913 167.20799255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -02149914 167.20802307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -02149915 167.20803833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -02149916 167.20806885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -02149917 167.20806885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -02149918 167.20808411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa550 -02149919 167.20808411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa550 -02149920 167.20811462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa560 -02149921 167.20812988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa560 -02149922 167.20816040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa570 -02149923 167.20816040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa570 -02149924 167.20817566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa580 -02149925 167.20817566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa580 -02149926 167.20820618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa590 -02149927 167.20820618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa590 -02149928 167.20823669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a0 -02149929 167.20823669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a0 -02149930 167.20826721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b0 -02149931 167.20826721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b0 -02149932 167.20829773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c0 -02149933 167.20831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c0 -02149934 167.20832825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d0 -02149935 167.20832825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d0 -02149936 167.20835876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e0 -02149937 167.20835876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e0 -02149938 167.20838928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f0 -02149939 167.20838928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f0 -02149940 167.20841980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa600 -02149941 167.20841980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa600 -02149942 167.20845032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa610 -02149943 167.20845032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa610 -02149944 167.20848083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa620 -02149945 167.20848083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xa620 -02150492 167.21681213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb740 -02150493 167.21681213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb740 -02150494 167.21684265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb750 -02150495 167.21684265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb750 -02150496 167.21688843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb760 -02150497 167.21688843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb760 -02150498 167.21690369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb770 -02150499 167.21690369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb770 -02150500 167.21693420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb780 -02150501 167.21693420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb780 -02150502 167.21696472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb790 -02150503 167.21697998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb790 -02150504 167.21699524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a0 -02150505 167.21699524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a0 -02150506 167.21702576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b0 -02150507 167.21702576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b0 -02150508 167.21705627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c0 -02150509 167.21705627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c0 -02150510 167.21708679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d0 -02150511 167.21708679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d0 -02150512 167.21711731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e0 -02150513 167.21713257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e0 -02150514 167.21714783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f0 -02150515 167.21714783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f0 -02150516 167.21717834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb800 -02150517 167.21717834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb800 -02150518 167.21720886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb810 -02150519 167.21720886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb810 -02150520 167.21723938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb820 -02150521 167.21723938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb820 -02150522 167.21726990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb830 -02150523 167.21728516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb830 -02150524 167.21730042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb840 -02150525 167.21730042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb840 -02150526 167.21733093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb850 -02150527 167.21733093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb850 -02150528 167.21736145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb860 -02150529 167.21737671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb860 -02150530 167.21739197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb870 -02150531 167.21739197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb870 -02150532 167.21742249 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb880 -02150533 167.21742249 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb880 -02150534 167.21745300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb890 -02150535 167.21745300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb890 -02151332 167.22900391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -02151333 167.22901917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -02151334 167.22904968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -02151335 167.22904968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -02151336 167.22906494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -02151337 167.22906494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -02151338 167.22909546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -02151339 167.22909546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -02151340 167.22912598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -02151341 167.22912598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -02151342 167.22914124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -02151343 167.22915649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -02151344 167.22918701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -02151345 167.22918701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -02151346 167.22920227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -02151347 167.22920227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -02151348 167.22923279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -02151349 167.22923279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -02151350 167.22926331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -02151351 167.22927856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -02151352 167.22929382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -02151353 167.22929382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -02151354 167.22932434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -02151355 167.22932434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -02151356 167.22935486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -02151357 167.22937012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -02151358 167.22938538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -02151359 167.22938538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -02151360 167.22941589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -02151361 167.22941589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -02151362 167.22944641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -02151363 167.22944641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -02151364 167.22946167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -02151365 167.22946167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -02151366 167.22949219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -02151367 167.22950745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -02151368 167.22952271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -02151369 167.22952271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -02151370 167.22955322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -02151371 167.22955322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -02151372 167.22958374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -02151373 167.22958374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -02151374 167.22959900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d0 -02151375 167.22961426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d0 -02151592 167.23275757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a0 -02151593 167.23275757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a0 -02151594 167.23278809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b0 -02151595 167.23278809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b0 -02151596 167.23280334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c0 -02151597 167.23281860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c0 -02151598 167.23284912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d0 -02151599 167.23284912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d0 -02151600 167.23286438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e0 -02151601 167.23286438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e0 -02151602 167.23289490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f0 -02151603 167.23289490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f0 -02151604 167.23292542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda00 -02151605 167.23292542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda00 -02151606 167.23294067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda10 -02151607 167.23295593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda10 -02151608 167.23298645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda20 -02151609 167.23298645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda20 -02151610 167.23301697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda30 -02151611 167.23301697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda30 -02151612 167.23303223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda40 -02151613 167.23303223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda40 -02151614 167.23306274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda50 -02151615 167.23307800 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda50 -02151616 167.23309326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda60 -02151617 167.23309326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda60 -02151618 167.23312378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda70 -02151619 167.23312378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda70 -02151620 167.23315430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda80 -02151621 167.23315430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda80 -02151622 167.23318481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda90 -02151623 167.23318481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xda90 -02151624 167.23320007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa0 -02151625 167.23321533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa0 -02151626 167.23324585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab0 -02151627 167.23324585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab0 -02151628 167.23326111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac0 -02151629 167.23326111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac0 -02151630 167.23329163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad0 -02151631 167.23329163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad0 -02151632 167.23332214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae0 -02151633 167.23332214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae0 -02151634 167.23333740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf0 -02151635 167.23335266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf0 -02154086 167.26783752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12750 -02154087 167.26783752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12750 -02154088 167.26786804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12760 -02154089 167.26788330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12760 -02154090 167.26789856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12770 -02154091 167.26789856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12770 -02154092 167.26792908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12780 -02154093 167.26792908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12780 -02154094 167.26795959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12790 -02154095 167.26795959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12790 -02154096 167.26797485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a0 -02154097 167.26797485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a0 -02154098 167.26800537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b0 -02154099 167.26800537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b0 -02154100 167.26803589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c0 -02154101 167.26803589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c0 -02154102 167.26806641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d0 -02154103 167.26806641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d0 -02154104 167.26809692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e0 -02154105 167.26809692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e0 -02154106 167.26812744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f0 -02154107 167.26812744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f0 -02154108 167.26815796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12800 -02154109 167.26815796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12800 -02154110 167.26818848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12810 -02154111 167.26818848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12810 -02154112 167.26820374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12820 -02154113 167.26820374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12820 -02154114 167.26823425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12830 -02154115 167.26824951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12830 -02154116 167.26828003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12840 -02154117 167.26828003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12840 -02154118 167.26829529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12850 -02154119 167.26829529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12850 -02154120 167.26832581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12860 -02154121 167.26832581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12860 -02154122 167.26835632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12870 -02154123 167.26837158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12870 -02154124 167.26838684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12880 -02154125 167.26838684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12880 -02154126 167.26841736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12890 -02154127 167.26841736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12890 -02154128 167.26844788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a0 -02154129 167.26844788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a0 -02169164 167.48573303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe80 -02169165 167.48574829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe80 -02169166 167.48577881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe90 -02169167 167.48577881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe90 -02169168 167.48579407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea0 -02169169 167.48579407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea0 -02169170 167.48582458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb0 -02169171 167.48582458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb0 -02169172 167.48585510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec0 -02169173 167.48585510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec0 -02169174 167.48588562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed0 -02169175 167.48588562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed0 -02169176 167.48591614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee0 -02169177 167.48591614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee0 -02169178 167.48594666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef0 -02169179 167.48594666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef0 -02169180 167.48596191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff00 -02169181 167.48596191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff00 -02169182 167.48599243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff10 -02169183 167.48600769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff10 -02169184 167.48602295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff20 -02169185 167.48602295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff20 -02169186 167.48605347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff30 -02169187 167.48605347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff30 -02169188 167.48608398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff40 -02169189 167.48608398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff40 -02169190 167.48609924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff50 -02169191 167.48611450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff50 -02169192 167.48614502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff60 -02169193 167.48614502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff60 -02169194 167.48617554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff70 -02169195 167.48617554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff70 -02169196 167.48619080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff80 -02169197 167.48619080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff80 -02169198 167.48622131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff90 -02169199 167.48622131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff90 -02169200 167.48625183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa0 -02169201 167.48625183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa0 -02169202 167.48628235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb0 -02169203 167.48628235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb0 -02169204 167.48631287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc0 -02169205 167.48631287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc0 -02169206 167.48634338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd0 -02169207 167.48634338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd0 -02174370 167.56039429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a130 -02174371 167.56039429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a130 -02174372 167.56042480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a140 -02174373 167.56042480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a140 -02174374 167.56045532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a150 -02174375 167.56045532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a150 -02174376 167.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a160 -02174377 167.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a160 -02174378 167.56051636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a170 -02174379 167.56051636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a170 -02174380 167.56053162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a180 -02174381 167.56053162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a180 -02174382 167.56056213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a190 -02174383 167.56056213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a190 -02174384 167.56060791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a0 -02174385 167.56060791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a0 -02174386 167.56062317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b0 -02174387 167.56062317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b0 -02174388 167.56065369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c0 -02174389 167.56065369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c0 -02174390 167.56068420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d0 -02174391 167.56068420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d0 -02174392 167.56069946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e0 -02174393 167.56071472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e0 -02174394 167.56074524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f0 -02174395 167.56074524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f0 -02174396 167.56076050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a200 -02174397 167.56076050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a200 -02174398 167.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a210 -02174399 167.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a210 -02174400 167.56082153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a220 -02174401 167.56082153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a220 -02174402 167.56085205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a230 -02174403 167.56085205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a230 -02174404 167.56088257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a240 -02174405 167.56088257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a240 -02174406 167.56091309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a250 -02174407 167.56091309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a250 -02174408 167.56092834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a260 -02174409 167.56092834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a260 -02174410 167.56095886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a270 -02174411 167.56097412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a270 -02174412 167.56100464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a280 -02174413 167.56100464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a280 -02175750 167.58018494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -02175751 167.58018494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -02175752 167.58021545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -02175753 167.58021545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -02175754 167.58023071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -02175755 167.58024597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -02175756 167.58027649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -02175757 167.58027649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -02175758 167.58030701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -02175759 167.58030701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -02175760 167.58032227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -02175761 167.58032227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -02175762 167.58036804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -02175763 167.58036804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -02175764 167.58038330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -02175765 167.58038330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -02175766 167.58041382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -02175767 167.58041382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -02175768 167.58045959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -02175769 167.58045959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -02175770 167.58047485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -02175771 167.58047485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -02175772 167.58050537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -02175773 167.58050537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -02175774 167.58053589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -02175775 167.58055115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -02175776 167.58056641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -02175777 167.58056641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -02175778 167.58059692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -02175779 167.58059692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -02175780 167.58062744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -02175781 167.58062744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -02175782 167.58065796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -02175783 167.58065796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -02175784 167.58068848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -02175785 167.58068848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -02175786 167.58070374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -02175787 167.58070374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -02175788 167.58074951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -02175789 167.58074951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -02175790 167.58078003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd90 -02175791 167.58078003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd90 -02175792 167.58079529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda0 -02175793 167.58079529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda0 -02178934 167.62687683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fd0 -02178935 167.62687683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fd0 -02178936 167.62692261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fe0 -02178937 167.62693787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fe0 -02178938 167.62695313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff0 -02178939 167.62696838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff0 -02178940 167.62701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43000 -02178941 167.62701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43000 -02178942 167.62704468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43010 -02178943 167.62704468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43010 -02178944 167.62707520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43020 -02178945 167.62707520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43020 -02178946 167.62709045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43030 -02178947 167.62709045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43030 -02178948 167.62712097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43040 -02178949 167.62713623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43040 -02178950 167.62716675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43050 -02178951 167.62716675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43050 -02178952 167.62718201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43060 -02178953 167.62718201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43060 -02178954 167.62721252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43070 -02178955 167.62721252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43070 -02178956 167.62724304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43080 -02178957 167.62724304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43080 -02178958 167.62725830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43090 -02178959 167.62727356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43090 -02178960 167.62730408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a0 -02178961 167.62730408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a0 -02178962 167.62733459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b0 -02178963 167.62733459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b0 -02178964 167.62734985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c0 -02178965 167.62734985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c0 -02178966 167.62738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d0 -02178967 167.62738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d0 -02178968 167.62741089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e0 -02178969 167.62741089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e0 -02178970 167.62744141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f0 -02178971 167.62744141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f0 -02178972 167.62747192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43100 -02178973 167.62747192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43100 -02178974 167.62748718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43110 -02178975 167.62748718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43110 -02178976 167.62751770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43120 -02178977 167.62753296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43120 -02180464 167.64947510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa0 -02180465 167.64949036 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa0 -02180466 167.64950562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb0 -02180467 167.64950562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb0 -02180468 167.64953613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc0 -02180469 167.64953613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc0 -02180470 167.64956665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd0 -02180471 167.64956665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd0 -02180472 167.64958191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe0 -02180473 167.64959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe0 -02180474 167.64962769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ff0 -02180475 167.64962769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ff0 -02180476 167.64965820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46000 -02180477 167.64965820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46000 -02180478 167.64967346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46010 -02180479 167.64967346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46010 -02180480 167.64970398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46020 -02180481 167.64970398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46020 -02180482 167.64973450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46030 -02180483 167.64973450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46030 -02180484 167.64976501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46040 -02180485 167.64976501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46040 -02180486 167.64979553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46050 -02180487 167.64979553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46050 -02180488 167.64981079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46060 -02180489 167.64981079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46060 -02180490 167.64984131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46070 -02180491 167.64985657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46070 -02180492 167.64988708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46080 -02180493 167.64988708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46080 -02180494 167.64990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46090 -02180495 167.64990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46090 -02180496 167.64993286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a0 -02180497 167.64993286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a0 -02180498 167.64996338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b0 -02180499 167.64996338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b0 -02180500 167.64997864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c0 -02180501 167.64999390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c0 -02180502 167.65002441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d0 -02180503 167.65002441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d0 -02180504 167.65005493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e0 -02180505 167.65005493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e0 -02180506 167.65007019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f0 -02180507 167.65007019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f0 -02183552 167.69424438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c020 -02183553 167.69424438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c020 -02183554 167.69427490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c030 -02183555 167.69427490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c030 -02183556 167.69430542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c040 -02183557 167.69430542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c040 -02183558 167.69433594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c050 -02183559 167.69433594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c050 -02183560 167.69436646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c060 -02183561 167.69438171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c060 -02183562 167.69439697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c070 -02183563 167.69439697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c070 -02183564 167.69442749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c080 -02183565 167.69442749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c080 -02183566 167.69445801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c090 -02183567 167.69445801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c090 -02183568 167.69448853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a0 -02183569 167.69448853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a0 -02183570 167.69451904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b0 -02183571 167.69453430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b0 -02183572 167.69454956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c0 -02183573 167.69454956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c0 -02183574 167.69458008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d0 -02183575 167.69458008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d0 -02183576 167.69461060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e0 -02183577 167.69461060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e0 -02183578 167.69464111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f0 -02183579 167.69464111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f0 -02183580 167.69467163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c100 -02183581 167.69468689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c100 -02183582 167.69470215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c110 -02183583 167.69470215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c110 -02183584 167.69473267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c120 -02183585 167.69473267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c120 -02183586 167.69476318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c130 -02183587 167.69477844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c130 -02183588 167.69479370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c140 -02183589 167.69479370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c140 -02183590 167.69482422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c150 -02183591 167.69482422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c150 -02183592 167.69485474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c160 -02183593 167.69485474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c160 -02183594 167.69488525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c170 -02183595 167.69488525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c170 -02186448 167.73793030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa0 -02186449 167.73793030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa0 -02186450 167.73796082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab0 -02186451 167.73796082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab0 -02186452 167.73799133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac0 -02186453 167.73799133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac0 -02186454 167.73802185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad0 -02186455 167.73802185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad0 -02186456 167.73805237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae0 -02186457 167.73805237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae0 -02186458 167.73806763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af0 -02186459 167.73806763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af0 -02186460 167.73809814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b00 -02186461 167.73811340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b00 -02186462 167.73814392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b10 -02186463 167.73814392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b10 -02186464 167.73815918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b20 -02186465 167.73815918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b20 -02186466 167.73818970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b30 -02186467 167.73818970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b30 -02186468 167.73822021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b40 -02186469 167.73822021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b40 -02186470 167.73823547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b50 -02186471 167.73825073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b50 -02186472 167.73828125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b60 -02186473 167.73828125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b60 -02186474 167.73829651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b70 -02186475 167.73829651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b70 -02186476 167.73832703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b80 -02186477 167.73832703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b80 -02186478 167.73835754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b90 -02186479 167.73837280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b90 -02186480 167.73838806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ba0 -02186481 167.73838806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ba0 -02186482 167.73841858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bb0 -02186483 167.73841858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bb0 -02186484 167.73844910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bc0 -02186485 167.73844910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bc0 -02186486 167.73846436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd0 -02186487 167.73846436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd0 -02186488 167.73849487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be0 -02186489 167.73851013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be0 -02186490 167.73854065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf0 -02186491 167.73854065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf0 -02187050 168.81640625 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02187051 168.83702087 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187052 168.83703613 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187053 169.74841309 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187054 169.74847412 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187055 169.74848938 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187056 169.74850464 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02187057 169.74862671 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187058 169.74862671 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02187059 169.74870300 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187060 169.74871826 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02187061 170.83792114 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02187062 170.85919189 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187063 170.85920715 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187064 171.49790955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02187065 171.49792480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02187066 171.49797058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02187067 171.49797058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02187068 171.49801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02187069 171.49801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02187070 171.49803162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02187071 171.49803162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02187072 171.49806213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02187073 171.49807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02187074 171.49809265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02187075 171.49809265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02187076 171.49812317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02187077 171.49812317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02187078 171.49815369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02187079 171.49815369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02187080 171.49816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02187081 171.49816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02187082 171.49819946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02187083 171.49819946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02187084 171.49822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02187085 171.49824524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02187086 171.49826050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02187087 171.49826050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02187088 171.49829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02187089 171.49829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02187090 171.49832153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02187091 171.49832153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02187092 171.49833679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02187093 171.49833679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02187094 171.49836731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02187095 171.49838257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02187096 171.49841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02187097 171.49841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02187098 171.49842834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02187099 171.49842834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02187100 171.49845886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02187101 171.49845886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02187102 171.49848938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02187103 171.49848938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02187104 171.49850464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02187105 171.49851990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02187106 171.49855042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02187107 171.49855042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02187108 171.49856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02187109 171.49856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02187110 171.49859619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02187111 171.49859619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02187112 171.49862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02187113 171.49862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02187114 171.49865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02187115 171.49865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02187116 171.49867249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02187117 171.49867249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02187118 171.49870300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02187119 171.49871826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02187120 171.49873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02187121 171.49873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02187122 171.49876404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02187123 171.49876404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02187124 171.49879456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02187125 171.49879456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02187126 171.49880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02187127 171.49880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02187128 171.49884033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02187129 171.49884033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02187130 171.49887085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02187131 171.49887085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02187132 171.49888611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02187133 171.49888611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02187134 171.49891663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02187135 171.49891663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02187136 171.49894714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02187137 171.49894714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02187138 171.49897766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02187139 171.49897766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02187140 171.49900818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02187141 171.49900818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02187142 171.49903870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02187143 171.49903870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02187144 171.49905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02187145 171.49906921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02187146 171.49909973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02187147 171.49909973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02187148 171.49913025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02187149 171.49913025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02187150 171.49914551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02187151 171.49914551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02187152 171.49919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02187153 171.49919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02187154 171.49920654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02187155 171.49920654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02187156 171.49923706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02187157 171.49923706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02187158 171.49926758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02187159 171.49926758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02187160 171.49928284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02187161 171.49929810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02187162 171.49931335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02187163 171.49932861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02187164 171.49935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02187165 171.49935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02187166 171.49937439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02187167 171.49937439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02187168 171.49940491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02187169 171.49940491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02187170 171.49943542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02187171 171.49943542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02187172 171.49945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02187173 171.49945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02187174 171.49948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02187175 171.49948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02187176 171.49951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02187177 171.49951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02187178 171.49952698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02187179 171.49952698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02187180 171.49955750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02187181 171.49955750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02187182 171.49960327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02187183 171.49960327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02187184 171.49961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02187185 171.49961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02187186 171.49964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02187187 171.49964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02187188 171.49969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02187189 171.49969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02187190 171.49972534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02187191 171.49972534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02187192 171.49975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02187193 171.49975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02187194 171.49977112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02187195 171.49977112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02187196 171.49980164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02187197 171.49981689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02187198 171.49984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02187199 171.49984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02187200 171.49986267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02187201 171.49986267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02187202 171.49989319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02187203 171.49989319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02187204 171.49992371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02187205 171.49992371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02187206 171.49995422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02187207 171.49995422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02187208 171.49998474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02187209 171.49998474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02187210 171.50000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02187211 171.50000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02187212 171.50003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02187213 171.50003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02187214 171.50006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02187215 171.50006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02187216 171.50007629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02187217 171.50009155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02187218 171.50012207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02187219 171.50012207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02187220 171.50015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02187221 171.50015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02187222 171.50016785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02187223 171.50016785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02187224 171.50019836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02187225 171.50021362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02187226 171.50024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02187227 171.50024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02187228 171.50025940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02187229 171.50025940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02187230 171.50028992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02187231 171.50028992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02187232 171.50032043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02187233 171.50032043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02187234 171.50035095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02187235 171.50035095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02187236 171.50038147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02187237 171.50038147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02187238 171.50039673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02187239 171.50039673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02187240 171.50042725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02187241 171.50042725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02187242 171.50045776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02187243 171.50047302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02187244 171.50048828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02187245 171.50048828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02187246 171.50051880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02187247 171.50051880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02187248 171.50054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02187249 171.50054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02187250 171.50056458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02187251 171.50057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02187252 171.50059509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02187253 171.50061035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02187254 171.50064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02187255 171.50064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02187256 171.50065613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02187257 171.50065613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02187258 171.50068665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02187259 171.50068665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02187260 171.50071716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02187261 171.50071716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02187262 171.50073242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02187263 171.50073242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02187264 171.50076294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02187265 171.50076294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02187266 171.50079346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02187267 171.50079346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02187268 171.50080872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02187269 171.50080872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02187270 171.50085449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02187271 171.50085449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02187272 171.50086975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02187273 171.50086975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02187274 171.50090027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02187275 171.50090027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02187276 171.50093079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02187277 171.50093079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02187278 171.50094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02187279 171.50096130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02187280 171.50099182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02187281 171.50099182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02187282 171.50102234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02187283 171.50102234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02187284 171.50103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02187285 171.50103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02187286 171.50106812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02187287 171.50106812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02187288 171.50109863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02187289 171.50111389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02187290 171.50112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02187291 171.50112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02187292 171.50115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02187293 171.50115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02187294 171.50119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02187295 171.50119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02187296 171.50120544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02187297 171.50120544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02187298 171.50123596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02187299 171.50125122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02187300 171.50126648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02187301 171.50126648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02187302 171.50129700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02187303 171.50129700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02187304 171.50132751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02187305 171.50132751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02187306 171.50134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02187307 171.50134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02187308 171.50137329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02187309 171.50138855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02187310 171.50141907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02187311 171.50141907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02187312 171.50143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02187313 171.50143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02187314 171.50146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02187315 171.50146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02187316 171.50149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02187317 171.50149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02187318 171.50151062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02187319 171.50152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02187320 171.50155640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02187321 171.50155640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02187322 171.50158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02187323 171.50158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02187324 171.50160217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02187325 171.50160217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02187326 171.50163269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02187327 171.50163269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02187328 171.50166321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02187329 171.50166321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02187330 171.50169373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02187331 171.50169373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02187332 171.50172424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02187333 171.50172424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02187334 171.50175476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02187335 171.50175476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02187336 171.50177002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02187337 171.50177002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02187338 171.50180054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02187339 171.50181580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02187340 171.50183105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02187341 171.50183105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02187342 171.50186157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02187343 171.50186157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02187344 171.50189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02187345 171.50189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02187346 171.50190735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02187347 171.50190735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02187348 171.50193787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02187349 171.50193787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02187350 171.50196838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02187351 171.50198364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02187352 171.50199890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02187353 171.50199890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02187354 171.50202942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02187355 171.50202942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02187356 171.50205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02187357 171.50205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02187358 171.50207520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02187359 171.50207520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02187360 171.50210571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02187361 171.50212097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02187362 171.50215149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02187363 171.50215149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02187364 171.50216675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02187365 171.50216675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02187366 171.50219727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02187367 171.50219727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02187368 171.50222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02187369 171.50222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02187370 171.50224304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02187371 171.50225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02187372 171.50228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02187373 171.50228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02187374 171.50230408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02187375 171.50230408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02187376 171.50233459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02187377 171.50234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02187378 171.50238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02187379 171.50238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02187380 171.50239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02187381 171.50239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02187382 171.50242615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02187383 171.50242615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02187384 171.50245667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02187385 171.50245667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02187386 171.50248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02187387 171.50248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02187388 171.50251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02187389 171.50251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02187390 171.50254822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02187391 171.50254822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02187392 171.50256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02187393 171.50256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02187394 171.50259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02187395 171.50260925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02187396 171.50262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02187397 171.50262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02187398 171.50265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02187399 171.50265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02187400 171.50268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02187401 171.50268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02187402 171.50270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02187403 171.50270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02187404 171.50273132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02187405 171.50274658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02187406 171.50277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02187407 171.50277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02187408 171.50279236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02187409 171.50279236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02187410 171.50282288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02187411 171.50282288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02187412 171.50285339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02187413 171.50285339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02187414 171.50286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02187415 171.50288391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02187416 171.50291443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02187417 171.50291443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02187418 171.50294495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02187419 171.50294495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02187420 171.50296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02187421 171.50296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02187422 171.50299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02187423 171.50299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02187424 171.50302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02187425 171.50302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02187426 171.50303650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02187427 171.50305176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02187428 171.50308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02187429 171.50308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02187430 171.50309753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02187431 171.50309753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02187432 171.50312805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02187433 171.50312805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02187434 171.50315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02187435 171.50315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02187436 171.50317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02187437 171.50317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02187438 171.50320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02187439 171.50320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02187440 171.50323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02187441 171.50323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02187442 171.50325012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02187443 171.50325012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02187444 171.50328064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02187445 171.50328064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02187446 171.50331116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02187447 171.50332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02187448 171.50334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02187449 171.50334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02187450 171.50337219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02187451 171.50337219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02187452 171.50340271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02187453 171.50340271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02187454 171.50341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02187455 171.50341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02187456 171.50344849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02187457 171.50344849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02187458 171.50347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02187459 171.50347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02187460 171.50349426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02187461 171.50349426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02187462 171.50352478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02187463 171.50352478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02187464 171.50355530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02187465 171.50355530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02187466 171.50357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02187467 171.50358582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02187468 171.50361633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02187469 171.50361633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02187470 171.50364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02187471 171.50364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02187472 171.50366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02187473 171.50366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02187474 171.50369263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02187475 171.50369263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02187476 171.50372314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02187477 171.50372314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02187478 171.50373840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02187479 171.50373840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02187480 171.50376892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02187481 171.50376892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02187482 171.50379944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02187483 171.50379944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02187484 171.50381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02187485 171.50381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02187486 171.50384521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02187487 171.50386047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02187488 171.50389099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02187489 171.50389099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02187490 171.50398254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02187491 171.50398254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02187492 171.50401306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02187493 171.50401306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02187494 171.50404358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02187495 171.50404358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02187496 171.50405884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02187497 171.50405884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02187498 171.50408936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02187499 171.50410461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02187500 171.50413513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02187501 171.50413513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02187502 171.50415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02187503 171.50415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02187504 171.50418091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02187505 171.50418091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02187506 171.50421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02187507 171.50421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02187508 171.50422668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02187509 171.50424194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02187510 171.50425720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02187511 171.50427246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02187512 171.50428772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02187513 171.50428772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02187514 171.50431824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02187515 171.50431824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02187516 171.50434875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02187517 171.50434875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02187518 171.50436401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02187519 171.50436401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02187520 171.50439453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02187521 171.50439453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02187522 171.50442505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02187523 171.50444031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02187524 171.50445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02187525 171.50445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02187526 171.50448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02187527 171.50448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02187528 171.50454712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02187529 171.50454712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02187530 171.50457764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02187531 171.50459290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02187532 171.50460815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02187533 171.50460815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02187534 171.50463867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02187535 171.50463867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02187536 171.50466919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02187537 171.50466919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02187538 171.50468445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02187539 171.50468445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02187540 171.50471497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02187541 171.50471497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02187542 171.50474548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02187543 171.50474548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02187544 171.50476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02187545 171.50476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02187546 171.50479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02187547 171.50479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02187548 171.50482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02187549 171.50482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02187550 171.50485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02187551 171.50485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02187552 171.50486755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02187553 171.50488281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02187554 171.50489807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02187555 171.50491333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02187556 171.50492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02187557 171.50492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02187558 171.50495911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02187559 171.50495911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02187560 171.50498962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02187561 171.50498962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02187562 171.50500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02187563 171.50500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02187564 171.50503540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02187565 171.50503540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02187566 171.50506592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02187567 171.50506592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02187568 171.50508118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02187569 171.50508118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02187570 171.50511169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02187571 171.50511169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02187572 171.50514221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02187573 171.50515747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02187574 171.50517273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02187575 171.50517273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02187576 171.50520325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02187577 171.50520325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02187578 171.50523376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02187579 171.50523376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02187580 171.50524902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02187581 171.50526428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02187582 171.50529480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02187583 171.50529480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02187584 171.50532532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02187585 171.50532532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02187586 171.50534058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02187587 171.50534058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02187588 171.50537109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02187589 171.50537109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02187590 171.50540161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02187591 171.50540161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02187592 171.50543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02187593 171.50543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02187594 171.50546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02187595 171.50546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02187596 171.50547791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02187597 171.50547791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02187598 171.50550842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02187599 171.50550842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02187600 171.50553894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02187601 171.50555420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02187602 171.50556946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02187603 171.50556946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02187604 171.50559998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02187605 171.50559998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02187606 171.50563049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02187607 171.50563049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02187608 171.50564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02187609 171.50564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02187610 171.50567627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02187611 171.50569153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02187612 171.50572205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02187613 171.50572205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02187614 171.50573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02187615 171.50573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02187616 171.50576782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02187617 171.50576782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02187618 171.50579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02187619 171.50579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02187620 171.50581360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02187621 171.50582886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02187622 171.50585938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02187623 171.50585938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02187624 171.50587463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02187625 171.50587463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02187626 171.50590515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02187627 171.50590515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02187628 171.50593567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02187629 171.50593567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02187630 171.50595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02187631 171.50596619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02187632 171.50599670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02187633 171.50599670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02187634 171.50602722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02187635 171.50602722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02187636 171.50604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02187637 171.50604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02187638 171.50607300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02187639 171.50607300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02187640 171.50610352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02187641 171.50610352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02187642 171.50613403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02187643 171.50613403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02187644 171.50616455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02187645 171.50616455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02187646 171.50619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02187647 171.50619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02187648 171.50621033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02187649 171.50621033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02187650 171.50624084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02187651 171.50624084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02187652 171.50627136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02187653 171.50627136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02187654 171.50630188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02187655 171.50630188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02187656 171.50633240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02187657 171.50633240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02187658 171.50634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02187659 171.50634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02187660 171.50637817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02187661 171.50637817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02187662 171.50640869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02187663 171.50642395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02187664 171.50643921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02187665 171.50643921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02187666 171.50646973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02187667 171.50646973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02187668 171.50650024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02187669 171.50650024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02187670 171.50651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02187671 171.50651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02187672 171.50654602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02187673 171.50656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02187674 171.50659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02187675 171.50659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02187676 171.50660706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02187677 171.50660706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02187678 171.50663757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02187679 171.50663757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02187680 171.50666809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02187681 171.50666809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02187682 171.50668335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02187683 171.50668335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02187684 171.50671387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02187685 171.50672913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02187686 171.50674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02187687 171.50674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02187688 171.50677490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02187689 171.50677490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02187690 171.50680542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02187691 171.50680542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02187692 171.50683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02187693 171.50683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02187694 171.50685120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02187695 171.50685120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02187696 171.50688171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02187697 171.50688171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02187698 171.50691223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02187699 171.50691223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02187700 171.50692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02187701 171.50692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02187702 171.50695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02187703 171.50695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02187704 171.50698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02187705 171.50698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02187706 171.50700378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02187707 171.50701904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02187708 171.50704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02187709 171.50704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02187710 171.50706482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02187711 171.50706482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02187712 171.50709534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02187713 171.50709534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02187714 171.50712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02187715 171.50712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02187716 171.50715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02187717 171.50715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02187718 171.50717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02187719 171.50718689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02187720 171.50721741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02187721 171.50721741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02187722 171.50723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02187723 171.50723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02187724 171.50726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02187725 171.50726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02187726 171.50729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02187727 171.50729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02187728 171.50730896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02187729 171.50732422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02187730 171.50733948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02187731 171.50735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02187732 171.50738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02187733 171.50738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02187734 171.50740051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02187735 171.50740051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02187736 171.50743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02187737 171.50743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02187738 171.50746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02187739 171.50746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02187740 171.50749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02187741 171.50749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02187742 171.50752258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02187743 171.50752258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02187744 171.50755310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02187745 171.50755310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02187746 171.50756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02187747 171.50758362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02187748 171.50759888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02187749 171.50761414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02187750 171.50762939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02187751 171.50762939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02187752 171.50765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02187753 171.50765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02187754 171.50769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02187755 171.50769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02187756 171.50770569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02187757 171.50772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02187758 171.50775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02187759 171.50775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02187760 171.50778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02187761 171.50778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02187762 171.50779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02187763 171.50779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02187764 171.50782776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02187765 171.50782776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02187766 171.50785828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02187767 171.50785828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02187768 171.50787354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02187769 171.50788879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02187770 171.50790405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02187771 171.50791931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02187772 171.50794983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02187773 171.50794983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02187774 171.50796509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02187775 171.50796509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02187776 171.50799561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02187777 171.50799561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02187778 171.50802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02187779 171.50802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02187780 171.50805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02187781 171.50805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02187782 171.50808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02187783 171.50808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02187784 171.50813293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02187785 171.50814819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02187786 171.50817871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02187787 171.50817871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02187788 171.50819397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02187789 171.50819397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02187790 171.50822449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02187791 171.50822449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02187792 171.50825500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02187793 171.50825500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02187794 171.50827026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02187795 171.50827026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02187796 171.50831604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02187797 171.50831604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02187798 171.50834656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02187799 171.50834656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02187800 171.50836182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02187801 171.50836182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02187802 171.50839233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02187803 171.50840759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02187804 171.50842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02187805 171.50842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02187806 171.50845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02187807 171.50845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02187808 171.50848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02187809 171.50848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02187810 171.50849915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02187811 171.50849915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02187812 171.50852966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02187813 171.50854492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02187814 171.50856018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02187815 171.50857544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02187816 171.50859070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02187817 171.50859070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02187818 171.50862122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02187819 171.50862122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02187820 171.50865173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02187821 171.50865173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02187822 171.50866699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02187823 171.50866699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02187824 171.50869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02187825 171.50869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02187826 171.50872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02187827 171.50872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02187828 171.50874329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02187829 171.50874329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02187830 171.50878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02187831 171.50878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02187832 171.50881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02187833 171.50881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02187834 171.50883484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02187835 171.50883484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02187836 171.50886536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02187837 171.50886536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02187838 171.50889587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02187839 171.50889587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02187840 171.50892639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02187841 171.50892639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02187842 171.50895691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02187843 171.50895691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02187844 171.50897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02187845 171.50897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02187846 171.50900269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02187847 171.50901794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02187848 171.50904846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02187849 171.50904846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02187850 171.50906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02187851 171.50906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02187852 171.50909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02187853 171.50909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02187854 171.50912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02187855 171.50912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02187856 171.50914001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02187857 171.50915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02187858 171.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02187859 171.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02187860 171.50921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02187861 171.50921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02187862 171.50923157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02187863 171.50923157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02187864 171.50926208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02187865 171.50927734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02187866 171.50929260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02187867 171.50929260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02187868 171.50932312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02187869 171.50932312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02187870 171.50935364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02187871 171.50935364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02187872 171.50936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02187873 171.50936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02187874 171.50939941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02187875 171.50939941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02187876 171.50942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02187877 171.50942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02187878 171.50944519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02187879 171.50944519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02187880 171.50947571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02187881 171.50949097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02187882 171.50950623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02187883 171.50952148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02187884 171.50953674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02187885 171.50953674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02187886 171.50956726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02187887 171.50956726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02187888 171.50959778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02187889 171.50959778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02187890 171.50961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02187891 171.50962830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02187892 171.50965881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02187893 171.50965881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02187894 171.50968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02187895 171.50968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02187896 171.50970459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02187897 171.50971985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02187898 171.50975037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02187899 171.50975037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02187900 171.50976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02187901 171.50976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02187902 171.50979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02187903 171.50979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02187904 171.50982666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02187905 171.50984192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02187906 171.50985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02187907 171.50985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02187908 171.50988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02187909 171.50988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02187910 171.50991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02187911 171.50991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02187912 171.50993347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02187913 171.50993347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02187914 171.50996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02187915 171.50996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02187916 171.50999451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02187917 171.50999451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02187918 171.51000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02187919 171.51000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02187920 171.51004028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02187921 171.51004028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02187922 171.51007080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02187923 171.51007080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02187924 171.51008606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02187925 171.51010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02187926 171.51013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02187927 171.51013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02187928 171.51016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02187929 171.51016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02187930 171.51017761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02187931 171.51017761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02187932 171.51020813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02187933 171.51020813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02187934 171.51025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02187935 171.51025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02187936 171.51026917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02187937 171.51026917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02187938 171.51029968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02187939 171.51029968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02187940 171.51033020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02187941 171.51033020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02187942 171.51034546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02187943 171.51036072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02187944 171.51039124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02187945 171.51039124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02187946 171.51040649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02187947 171.51040649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02187948 171.51043701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02187949 171.51043701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02187950 171.51046753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02187951 171.51046753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02187952 171.51048279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02187953 171.51048279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02187954 171.51051331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02187955 171.51051331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02187956 171.51054382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02187957 171.51054382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02187958 171.51055908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02187959 171.51055908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02187960 171.51058960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02187961 171.51060486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02187962 171.51062012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02187963 171.51063538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02187964 171.51065063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02187965 171.51065063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02187966 171.51068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02187967 171.51068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02187968 171.51071167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02187969 171.51071167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02187970 171.51072693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02187971 171.51072693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02187972 171.51075745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02187973 171.51075745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02187974 171.51078796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02187975 171.51078796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02187976 171.51080322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02187977 171.51080322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02187978 171.51083374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02187979 171.51083374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02187980 171.51086426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02187981 171.51087952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02187982 171.51087952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02187983 171.51089478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02187984 171.51092529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02187985 171.51092529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02187986 171.51095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02187987 171.51095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02187988 171.51097107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02187989 171.51097107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02187990 171.51100159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02187991 171.51100159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02187992 171.51103210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02187993 171.51103210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02187994 171.51104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02187995 171.51104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02187996 171.51107788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02187997 171.51107788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02187998 171.51110840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02187999 171.51110840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02188000 171.51112366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02188001 171.51112366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02188002 171.51115417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02188003 171.51116943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02188004 171.51118469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02188005 171.51119995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02188006 171.51121521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02188007 171.51121521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02188008 171.51124573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02188009 171.51124573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02188010 171.51127625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02188011 171.51127625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02188012 171.51129150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02188013 171.51129150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02188014 171.51132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02188015 171.51132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02188016 171.51135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02188017 171.51135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02188018 171.51136780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02188019 171.51136780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02188020 171.51139832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02188021 171.51139832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02188022 171.51144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02188023 171.51144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02188024 171.51145935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02188025 171.51145935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02188026 171.51148987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02188027 171.51148987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02188028 171.51152039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02188029 171.51152039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02188030 171.51153564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02188031 171.51155090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02188032 171.51158142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02188033 171.51158142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02188034 171.51159668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02188035 171.51159668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02188036 171.51162720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02188037 171.51164246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02188038 171.51167297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02188039 171.51167297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02188040 171.51170349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02188041 171.51170349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02188042 171.51173401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02188043 171.51174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02188044 171.51174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02188045 171.51176453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02188046 171.51179504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02188047 171.51179504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02188048 171.51182556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02188049 171.51182556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02188050 171.51184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02188051 171.51184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02188052 171.51187134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02188053 171.51187134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02188054 171.51190186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02188055 171.51190186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02188056 171.51191711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02188057 171.51191711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02188058 171.51194763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02188059 171.51194763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02188060 171.51197815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02188061 171.51197815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02188062 171.51199341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02188063 171.51200867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02188064 171.51202393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02188065 171.51203918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02188066 171.51206970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02188067 171.51206970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02188068 171.51208496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02188069 171.51208496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02188070 171.51211548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02188071 171.51211548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02188072 171.51214600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02188073 171.51214600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02188074 171.51216125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02188075 171.51216125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02188076 171.51219177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02188077 171.51219177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02188078 171.51222229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02188079 171.51222229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02188080 171.51223755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02188081 171.51225281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02188082 171.51228333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02188083 171.51228333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02188084 171.51231384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02188085 171.51231384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02188086 171.51232910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02188087 171.51232910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02188088 171.51235962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02188089 171.51237488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02188090 171.51239014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02188091 171.51239014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02188092 171.51242065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02188093 171.51242065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02188094 171.51245117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02188095 171.51245117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02188096 171.51246643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02188097 171.51246643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02188098 171.51249695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02188099 171.51249695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02188100 171.51252747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02188101 171.51252747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02188102 171.51255798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02188103 171.51255798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02188104 171.51257324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02188105 171.51257324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02188106 171.51266479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02188107 171.51268005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02188108 171.51271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02188109 171.51271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02188110 171.51272583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02188111 171.51272583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02188112 171.51275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02188113 171.51275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02188114 171.51278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02188115 171.51278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02188116 171.51281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02188117 171.51281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02188118 171.51284790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02188119 171.51284790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02188120 171.51286316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02188121 171.51286316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02188122 171.51289368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02188123 171.51289368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02188124 171.51292419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02188125 171.51292419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02188126 171.51295471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02188127 171.51295471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02188128 171.51296997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02188129 171.51296997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02188130 171.51300049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02188131 171.51300049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02188132 171.51303101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02188133 171.51303101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02188134 171.51304626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02188135 171.51306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02188136 171.51312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02188137 171.51312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02188138 171.51315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02188139 171.51315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02188140 171.51318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02188141 171.51318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02188142 171.51319885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02188143 171.51319885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02188144 171.51322937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02188145 171.51322937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02188146 171.51325989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02188147 171.51325989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02188148 171.51327515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02188149 171.51327515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02188150 171.51330566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02188151 171.51332092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02188152 171.51335144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02188153 171.51335144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02188154 171.51336670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02188155 171.51336670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02188156 171.51339722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02188157 171.51339722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02188158 171.51342773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02188159 171.51342773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02188160 171.51344299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02188161 171.51344299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02188162 171.51347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02188163 171.51347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02188164 171.51350403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02188165 171.51350403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02188166 171.51351929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02188167 171.51351929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02188168 171.51354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02188169 171.51356506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02188170 171.51358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02188171 171.51358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02188172 171.51361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02188173 171.51361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02188174 171.51364136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02188175 171.51364136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02188176 171.51365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02188177 171.51365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02188178 171.51368713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02188179 171.51368713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02188180 171.51371765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02188181 171.51371765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02188182 171.51374817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02188183 171.51374817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02188184 171.51376343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02188185 171.51376343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02188186 171.51379395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02188187 171.51379395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02188188 171.51382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02188189 171.51382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02188190 171.51383972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02188191 171.51385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02188192 171.51387024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02188193 171.51388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02188194 171.51390076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02188195 171.51390076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02188196 171.51393127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02188197 171.51393127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02188198 171.51396179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02188199 171.51396179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02188200 171.51397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02188201 171.51399231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02188202 171.51412964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02188203 171.51412964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02188204 171.51414490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02188205 171.51414490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02188206 171.51417542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02188207 171.51419067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02188208 171.51422119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02188209 171.51422119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02188210 171.51423645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02188211 171.51423645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02188212 171.51426697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02188213 171.51426697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02188214 171.51429749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02188215 171.51429749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02188216 171.51431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02188217 171.51431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02188218 171.51434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02188219 171.51434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02188220 171.51437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02188221 171.51437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02188222 171.51438904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02188223 171.51438904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02188224 171.51441956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02188225 171.51441956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02188226 171.51445007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02188227 171.51445007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02188228 171.51446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02188229 171.51448059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02188230 171.51451111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02188231 171.51451111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02188232 171.51454163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02188233 171.51454163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02188234 171.51455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02188235 171.51455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02188236 171.51458740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02188237 171.51458740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02188238 171.51461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02188239 171.51461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02188240 171.51463318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02188241 171.51463318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02188242 171.51466370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02188243 171.51466370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02188244 171.51469421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02188245 171.51469421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02188246 171.51470947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02188247 171.51472473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02188248 171.51473999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02188249 171.51475525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02188250 171.51477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02188251 171.51477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02188252 171.51480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02188253 171.51480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02188254 171.51483154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02188255 171.51483154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02188256 171.51484680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02188257 171.51486206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02188258 171.51489258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02188259 171.51489258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02188260 171.51492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02188261 171.51492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02188262 171.51493835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02188263 171.51493835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02188264 171.51496887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02188265 171.51496887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02188266 171.51499939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02188267 171.51501465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02188268 171.51502991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02188269 171.51502991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02188270 171.51506042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02188271 171.51506042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02188272 171.51509094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02188273 171.51509094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02188274 171.51510620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02188275 171.51510620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02188276 171.51513672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02188277 171.51513672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02188278 171.51516724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02188279 171.51516724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02188280 171.51519775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02188281 171.51519775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02188282 171.51522827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02188283 171.51522827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02188284 171.51525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02188285 171.51525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02188286 171.51527405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02188287 171.51527405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02188288 171.51530457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02188289 171.51531982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02188290 171.51533508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02188291 171.51533508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02188292 171.51536560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02188293 171.51536560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02188294 171.51539612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02188295 171.51539612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02188296 171.51541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02188297 171.51541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02188298 171.51544189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02188299 171.51545715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02188300 171.51548767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02188301 171.51548767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02188302 171.51550293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02188303 171.51550293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02188304 171.51553345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02188305 171.51553345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02188306 171.51556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02188307 171.51556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02188308 171.51557922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02188309 171.51557922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02188310 171.51560974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02188311 171.51560974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02188312 171.51564026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02188313 171.51565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02188314 171.51565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02188315 171.51567078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02188316 171.51570129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02188317 171.51570129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02188318 171.51573181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02188319 171.51573181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02188320 171.51574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02188321 171.51574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02188322 171.51577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02188323 171.51577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02188324 171.51580811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02188325 171.51580811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02188326 171.51582336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02188327 171.51583862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02188328 171.51586914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02188329 171.51586914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02188330 171.51588440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02188331 171.51588440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02188332 171.51591492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02188333 171.51591492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02188334 171.51594543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02188335 171.51594543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02188336 171.51596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02188337 171.51597595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02188338 171.51600647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02188339 171.51600647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02188340 171.51603699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02188341 171.51603699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02188342 171.51605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02188343 171.51605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02188344 171.51608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02188345 171.51608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02188346 171.51611328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02188347 171.51611328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02188348 171.51612854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02188349 171.51614380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02188350 171.51617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02188351 171.51617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02188352 171.51620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02188353 171.51620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02188354 171.51622009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02188355 171.51622009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02188356 171.51625061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02188357 171.51625061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02188358 171.51628113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02188359 171.51628113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02188360 171.51631165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02188361 171.51631165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02188362 171.51634216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02188363 171.51634216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02188364 171.51635742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02188365 171.51635742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02188366 171.51638794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02188367 171.51640320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02188368 171.51643372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02188369 171.51643372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02188370 171.51644897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02188371 171.51644897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02188372 171.51647949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02188373 171.51647949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02188374 171.51651001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02188375 171.51652527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02188376 171.51654053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02188377 171.51654053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02188378 171.51657104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02188379 171.51657104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02188380 171.51660156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02188381 171.51660156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02188382 171.51661682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02188383 171.51661682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02188384 171.51664734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02188385 171.51666260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02188386 171.51667786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02188387 171.51667786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02188388 171.51670837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02188389 171.51670837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02188390 171.51673889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02188391 171.51673889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02188392 171.51675415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02188393 171.51675415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02188394 171.51678467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02188395 171.51678467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02188396 171.51681519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02188397 171.51683044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02188398 171.51684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02188399 171.51684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02188400 171.51687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02188401 171.51687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02188402 171.51690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02188403 171.51690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02188404 171.51692200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02188405 171.51692200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02188406 171.51695251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02188407 171.51696777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02188408 171.51699829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02188409 171.51699829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02188410 171.51701355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02188411 171.51701355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02188412 171.51704407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02188413 171.51704407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02188414 171.51707458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02188415 171.51707458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02188416 171.51708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02188417 171.51708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02188418 171.51712036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02188419 171.51713562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02188420 171.51715088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02188421 171.51715088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02188422 171.51718140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02188423 171.51718140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02188424 171.51721191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02188425 171.51721191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02188426 171.51724243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02188427 171.51724243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02188428 171.51725769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02188429 171.51725769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02188430 171.51728821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02188431 171.51728821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02188432 171.51731873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02188433 171.51731873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02188434 171.51733398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02188435 171.51733398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02188436 171.51736450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02188437 171.51736450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02188438 171.51739502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02188439 171.51739502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02188440 171.51741028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02188441 171.51742554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02188442 171.51744080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02188443 171.51745605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02188444 171.51747131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02188445 171.51747131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02188446 171.51750183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02188447 171.51750183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02188448 171.51753235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02188449 171.51753235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02188450 171.51754761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02188451 171.51754761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02188452 171.51757813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02188453 171.51757813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02188454 171.51760864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02188455 171.51760864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02188456 171.51763916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02188457 171.51763916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02188458 171.51766968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02188459 171.51766968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02188460 171.51770020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02188461 171.51770020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02188462 171.51777649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02188463 171.51777649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02188464 171.51779175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02188465 171.51779175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02188466 171.51782227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02188467 171.51782227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02188468 171.51785278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02188469 171.51785278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02188470 171.51786804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02188471 171.51788330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02188472 171.51789856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02188473 171.51791382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02188474 171.51794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02188475 171.51794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02188476 171.51795959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02188477 171.51795959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02188478 171.51799011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02188479 171.51799011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02188480 171.51805115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02188481 171.51805115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02188482 171.51808167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02188483 171.51808167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02188484 171.51811218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02188485 171.51811218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02188486 171.51812744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02188487 171.51812744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02188488 171.51815796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02188489 171.51815796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02188490 171.51818848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02188491 171.51818848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02188492 171.51820374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02188493 171.51821899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02188494 171.51824951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02188495 171.51824951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02188496 171.51826477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02188497 171.51826477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02188498 171.51829529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02188499 171.51829529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02188500 171.51832581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02188501 171.51832581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02188502 171.51835632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02188503 171.51835632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02188504 171.51837158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02188505 171.51837158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02188506 171.51840210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02188507 171.51840210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02188508 171.51843262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02188509 171.51843262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02188510 171.51844788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02188511 171.51846313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02188512 171.51847839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02188513 171.51849365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02188514 171.51850891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02188515 171.51850891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02188516 171.51853943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02188517 171.51853943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02188518 171.51856995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02188519 171.51856995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02188520 171.51858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02188521 171.51858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02188522 171.51861572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02188523 171.51861572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02188524 171.51864624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02188525 171.51864624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02188526 171.51866150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02188527 171.51866150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02188528 171.51869202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02188529 171.51869202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02188530 171.51872253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02188531 171.51872253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02188532 171.51875305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02188533 171.51875305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02188534 171.51876831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02188535 171.51878357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02188536 171.51881409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02188537 171.51881409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02188538 171.51882935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02188539 171.51882935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02188540 171.51885986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02188541 171.51885986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02188542 171.51889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02188543 171.51889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02188544 171.51890564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02188545 171.51890564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02188546 171.51893616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02188547 171.51893616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02188548 171.51896667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02188549 171.51896667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02188550 171.51898193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02188551 171.51898193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02188552 171.51901245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02188553 171.51901245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02188554 171.51904297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02188555 171.51905823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02188556 171.51905823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02188557 171.51907349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02188558 171.51910400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02188559 171.51910400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02188560 171.51913452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02188561 171.51913452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02188562 171.51914978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02188563 171.51914978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02188564 171.51918030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02188565 171.51918030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02188566 171.51921082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02188567 171.51921082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02188568 171.51922607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02188569 171.51922607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02188570 171.51925659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02188571 171.51925659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02188572 171.51928711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02188573 171.51928711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02188574 171.51930237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02188575 171.51930237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02188576 171.51933289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02188577 171.51934814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02188578 171.51936340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02188579 171.51937866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02188580 171.51939392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02188581 171.51939392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02188582 171.51942444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02188583 171.51942444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02188584 171.51945496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02188585 171.51945496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02188586 171.51947021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02188587 171.51947021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02188588 171.51950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02188589 171.51950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02188590 171.51953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02188591 171.51953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02188592 171.51954651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02188593 171.51956177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02188594 171.51959229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02188595 171.51959229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02188596 171.51962280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02188597 171.51962280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02188598 171.51963806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02188599 171.51963806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02188600 171.51966858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02188601 171.51966858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02188602 171.51969910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02188603 171.51969910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02188604 171.51972961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02188605 171.51972961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02188606 171.51976013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02188607 171.51976013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02188608 171.51977539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02188609 171.51977539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02188610 171.51980591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02188611 171.51980591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02188612 171.51983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02188613 171.51983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02188614 171.51985168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02188615 171.51986694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02188616 171.51988220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02188617 171.51989746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02188618 171.51992798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02188619 171.51992798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02188620 171.51994324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02188621 171.51994324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02188622 171.51997375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02188623 171.51997375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02188624 171.52000427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02188625 171.52000427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02188626 171.52001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02188627 171.52001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02188628 171.52005005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02188629 171.52005005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02188630 171.52008057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02188631 171.52008057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02188632 171.52009583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02188633 171.52009583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02188634 171.52012634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02188635 171.52012634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02188636 171.52015686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02188637 171.52017212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02188638 171.52018738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02188639 171.52018738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02188640 171.52021790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02188641 171.52021790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02188642 171.52024841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02188643 171.52024841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02188644 171.52027893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02188645 171.52027893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02188646 171.52030945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02188647 171.52030945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02188648 171.52033997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02188649 171.52033997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02188650 171.52035522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02188651 171.52035522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02188652 171.52038574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02188653 171.52038574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02188654 171.52041626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02188655 171.52041626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02188656 171.52043152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02188657 171.52043152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02188658 171.52046204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02188659 171.52047729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02188660 171.52049255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02188661 171.52049255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02188662 171.52052307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02188663 171.52052307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02188664 171.52055359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02188665 171.52055359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02188666 171.52056885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02188667 171.52056885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02188668 171.52059937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02188669 171.52059937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02188670 171.52062988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02188671 171.52062988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02188672 171.52066040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02188673 171.52066040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02188674 171.52067566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02188675 171.52067566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02188676 171.52075195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02188677 171.52075195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02188678 171.52078247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02188679 171.52078247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02188680 171.52081299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02188681 171.52081299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02188682 171.52084351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02188683 171.52084351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02188684 171.52087402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02188685 171.52087402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02188686 171.52088928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02188687 171.52088928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02188688 171.52091980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02188689 171.52091980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02188690 171.52095032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02188691 171.52096558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02188692 171.52098083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02188693 171.52098083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02188694 171.52101135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02188695 171.52101135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02188696 171.52104187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02188697 171.52104187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02188698 171.52105713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02188699 171.52105713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02188700 171.52108765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02188701 171.52108765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02188702 171.52111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02188703 171.52111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02188704 171.52113342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02188705 171.52114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02188706 171.52116394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02188707 171.52117920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02188708 171.52120972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02188709 171.52120972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02188710 171.52122498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02188711 171.52122498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02188712 171.52125549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02188713 171.52125549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02188714 171.52128601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02188715 171.52128601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02188716 171.52130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02188717 171.52130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02188718 171.52133179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02188719 171.52133179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02188720 171.52136230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02188721 171.52136230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02188722 171.52137756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02188723 171.52137756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02188724 171.52140808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02188725 171.52142334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02188726 171.52145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02188727 171.52145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02188728 171.52146912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02188729 171.52146912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02188730 171.52149963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02188731 171.52149963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02188732 171.52153015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02188733 171.52153015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02188734 171.52156067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02188735 171.52156067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02188736 171.52159119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02188737 171.52159119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02188738 171.52160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02188739 171.52160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02188740 171.52163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02188741 171.52163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02188742 171.52166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02188743 171.52166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02188744 171.52168274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02188745 171.52169800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02188746 171.52171326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02188747 171.52172852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02188748 171.52175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02188749 171.52175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02188750 171.52177429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02188751 171.52177429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02188752 171.52180481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02188753 171.52180481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02188754 171.52183533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02188755 171.52183533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02188756 171.52185059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02188757 171.52185059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02188758 171.52188110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02188759 171.52189636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02188760 171.52192688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02188761 171.52192688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02188762 171.52194214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02188763 171.52194214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02188764 171.52197266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02188765 171.52197266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02188766 171.52200317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02188767 171.52200317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02188768 171.52201843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02188769 171.52203369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02188770 171.52206421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02188771 171.52206421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02188772 171.52207947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02188773 171.52207947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02188774 171.52210999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02188775 171.52210999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02188776 171.52214050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02188777 171.52214050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02188778 171.52215576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02188779 171.52217102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02188780 171.52218628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02188781 171.52220154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02188782 171.52223206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02188783 171.52223206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02188784 171.52224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02188785 171.52224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02188786 171.52227783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02188787 171.52227783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02188788 171.52230835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02188789 171.52230835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02188790 171.52232361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02188791 171.52232361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02188792 171.52235413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02188793 171.52235413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02188794 171.52238464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02188795 171.52238464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02188796 171.52239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02188797 171.52239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02188798 171.52243042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02188799 171.52243042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02188800 171.52246094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02188801 171.52247620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02188802 171.52247620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02188803 171.52249146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02188804 171.52252197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02188805 171.52252197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02188806 171.52255249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02188807 171.52255249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02188808 171.52256775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02188809 171.52256775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02188810 171.52259827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02188811 171.52259827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02188812 171.52262878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02188813 171.52262878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02188814 171.52264404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02188815 171.52264404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02188816 171.52268982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02188817 171.52268982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02188818 171.52272034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02188819 171.52272034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02188820 171.52273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02188821 171.52273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02188822 171.52276611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02188823 171.52276611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02188824 171.52279663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02188825 171.52279663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02188826 171.52281189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02188827 171.52282715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02188828 171.52285767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02188829 171.52285767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02188830 171.52287292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02188831 171.52287292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02188832 171.52290344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02188833 171.52290344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02188834 171.52293396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02188835 171.52293396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02188836 171.52294922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02188837 171.52294922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02188838 171.52297974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02188839 171.52299500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02188840 171.52301025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02188841 171.52302551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02188842 171.52304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02188843 171.52304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02188844 171.52307129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02188845 171.52307129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02188846 171.52310181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02188847 171.52310181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02188848 171.52311707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02188849 171.52311707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02188850 171.52314758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02188851 171.52314758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02188852 171.52317810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02188853 171.52317810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02194166 171.59762573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -02194167 171.59762573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -02194168 171.59765625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -02194169 171.59765625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -02194170 171.59768677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -02194171 171.59768677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -02194172 171.59770203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee68 -02194173 171.59770203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee68 -02194174 171.59773254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee78 -02194175 171.59773254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee78 -02194176 171.59776306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee88 -02194177 171.59777832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee88 -02194178 171.59779358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee98 -02194179 171.59779358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee98 -02194180 171.59782410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea8 -02194181 171.59782410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea8 -02194182 171.59785461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb8 -02194183 171.59785461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb8 -02194184 171.59786987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec8 -02194185 171.59786987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec8 -02194186 171.59790039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed8 -02194187 171.59790039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed8 -02194188 171.59793091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee8 -02194189 171.59793091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee8 -02194190 171.59794617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef8 -02194191 171.59796143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef8 -02194192 171.59797668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef08 -02194193 171.59799194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef08 -02194194 171.59802246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef18 -02194195 171.59802246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef18 -02194196 171.59803772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef28 -02194197 171.59803772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef28 -02194198 171.59806824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef38 -02194199 171.59806824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef38 -02194200 171.59809875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -02194201 171.59809875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -02194202 171.59811401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -02194203 171.59811401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -02194204 171.59814453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -02194205 171.59814453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -02194206 171.59817505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -02194207 171.59817505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -02194208 171.59820557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -02194209 171.59820557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -02199966 171.68045044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a378 -02199967 171.68045044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a378 -02199968 171.68048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a388 -02199969 171.68048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a388 -02199970 171.68049622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a398 -02199971 171.68049622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a398 -02199972 171.68052673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a8 -02199973 171.68052673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a8 -02199974 171.68055725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b8 -02199975 171.68055725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b8 -02199976 171.68057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c8 -02199977 171.68057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c8 -02199978 171.68060303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d8 -02199979 171.68061829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d8 -02199980 171.68063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e8 -02199981 171.68063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e8 -02199982 171.68066406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f8 -02199983 171.68066406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f8 -02199984 171.68069458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a408 -02199985 171.68069458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a408 -02199986 171.68070984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a418 -02199987 171.68070984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a418 -02199988 171.68074036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a428 -02199989 171.68074036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a428 -02199990 171.68077087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a438 -02199991 171.68077087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a438 -02199992 171.68078613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a448 -02199993 171.68080139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a448 -02199994 171.68083191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a458 -02199995 171.68083191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a458 -02199996 171.68086243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a468 -02199997 171.68086243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a468 -02199998 171.68087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a478 -02199999 171.68087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a478 -02200000 171.68090820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a488 -02200001 171.68092346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a488 -02200002 171.68093872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a498 -02200003 171.68095398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a498 -02200004 171.68096924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a8 -02200005 171.68096924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a8 -02200006 171.68099976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b8 -02200007 171.68099976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b8 -02200008 171.68103027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c8 -02200009 171.68103027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c8 -02205980 171.76670837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f68 -02205981 171.76670837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f68 -02205982 171.76673889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -02205983 171.76673889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -02205984 171.76675415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -02205985 171.76675415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -02205986 171.76678467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -02205987 171.76678467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -02205988 171.76681519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -02205989 171.76681519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -02205990 171.76684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -02205991 171.76684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -02205992 171.76687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -02205993 171.76687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -02205994 171.76690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -02205995 171.76690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -02205996 171.76692200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -02205997 171.76692200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -02205998 171.76695251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -02205999 171.76695251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -02206000 171.76698303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26008 -02206001 171.76698303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26008 -02206002 171.76701355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26018 -02206003 171.76701355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26018 -02206004 171.76704407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26028 -02206005 171.76704407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26028 -02206006 171.76705933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26038 -02206007 171.76705933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26038 -02206008 171.76708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26048 -02206009 171.76708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26048 -02206010 171.76712036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26058 -02206011 171.76713562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26058 -02206012 171.76715088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26068 -02206013 171.76715088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26068 -02206014 171.76718140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26078 -02206015 171.76718140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26078 -02206016 171.76721191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26088 -02206017 171.76721191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26088 -02206018 171.76722717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26098 -02206019 171.76722717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26098 -02206020 171.76725769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a8 -02206021 171.76727295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a8 -02206022 171.76730347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b8 -02206023 171.76730347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b8 -02221338 171.98440552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f48 -02221339 171.98442078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f48 -02221340 171.98445129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f58 -02221341 171.98445129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f58 -02221342 171.98446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f68 -02221343 171.98446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f68 -02221344 171.98449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f78 -02221345 171.98449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f78 -02221346 171.98452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f88 -02221347 171.98454285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f88 -02221348 171.98455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f98 -02221349 171.98455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f98 -02221350 171.98458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa8 -02221351 171.98458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa8 -02221352 171.98461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb8 -02221353 171.98461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb8 -02221354 171.98463440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc8 -02221355 171.98463440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc8 -02221356 171.98466492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd8 -02221357 171.98466492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd8 -02221358 171.98469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe8 -02221359 171.98471069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe8 -02221360 171.98472595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff8 -02221361 171.98472595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff8 -02221362 171.98475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44008 -02221363 171.98475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44008 -02221364 171.98478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44018 -02221365 171.98478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44018 -02221366 171.98480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44028 -02221367 171.98481750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44028 -02221368 171.98484802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44038 -02221369 171.98484802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44038 -02221370 171.98486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44048 -02221371 171.98486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44048 -02221372 171.98489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44058 -02221373 171.98489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44058 -02221374 171.98492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44068 -02221375 171.98492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44068 -02221376 171.98493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44078 -02221377 171.98495483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44078 -02221378 171.98497009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44088 -02221379 171.98498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44088 -02221380 171.98501587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44098 -02221381 171.98501587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44098 -02227798 172.07522583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50928 -02227799 172.07522583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50928 -02227800 172.07525635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50938 -02227801 172.07525635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50938 -02227802 172.07528687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50948 -02227803 172.07528687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50948 -02227804 172.07531738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50958 -02227805 172.07531738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50958 -02227806 172.07534790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50968 -02227807 172.07534790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50968 -02227808 172.07536316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50978 -02227809 172.07537842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50978 -02227810 172.07539368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50988 -02227811 172.07540894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50988 -02227812 172.07542419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50998 -02227813 172.07542419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50998 -02227814 172.07545471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a8 -02227815 172.07545471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a8 -02227816 172.07548523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b8 -02227817 172.07548523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b8 -02227818 172.07550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c8 -02227819 172.07550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c8 -02227820 172.07553101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d8 -02227821 172.07553101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d8 -02227822 172.07556152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e8 -02227823 172.07556152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e8 -02227824 172.07557678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f8 -02227825 172.07557678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f8 -02227826 172.07560730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a08 -02227827 172.07560730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a08 -02227828 172.07563782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a18 -02227829 172.07563782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a18 -02227830 172.07566833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a28 -02227831 172.07566833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a28 -02227832 172.07568359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a38 -02227833 172.07569885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a38 -02227834 172.07572937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a48 -02227835 172.07572937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a48 -02227836 172.07574463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a58 -02227837 172.07574463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a58 -02227838 172.07577515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a68 -02227839 172.07577515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a68 -02227840 172.07580566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a78 -02227841 172.07580566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a78 -02228952 172.25465393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228953 172.25469971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228954 172.25471497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228955 172.25473022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02228956 172.25486755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228957 172.25486755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228958 172.25492859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228959 172.25494385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228960 172.86065674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02228961 172.88198853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228962 172.88200378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228963 174.76101685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228964 174.76106262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228965 174.76109314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228966 174.76110840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02228967 174.76123047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228968 174.76123047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228969 174.76130676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228970 174.76133728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228971 174.88366699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02228972 174.90515137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228973 174.90516663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228974 176.90628052 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02228975 176.92427063 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228976 176.92428589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228977 176.96014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02228978 177.09187317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02228979 177.09188843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02228980 177.09191895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02228981 177.09191895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02228982 177.09194946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02228983 177.09194946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02228984 177.09196472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02228985 177.09197998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02228986 177.09201050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02228987 177.09201050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02228988 177.09202576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02228989 177.09202576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02228990 177.09205627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02228991 177.09205627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02228992 177.09208679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02228993 177.09208679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02228994 177.09210205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02228995 177.09211731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02228996 177.09214783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02228997 177.09214783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02228998 177.09217834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02228999 177.09217834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02229000 177.09219360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02229001 177.09219360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02229002 177.09222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02229003 177.09222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02229004 177.09225464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02229005 177.09225464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02229006 177.09226990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02229007 177.09228516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02229008 177.09231567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02229009 177.09231567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02229010 177.09234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02229011 177.09234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02229012 177.09236145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02229013 177.09236145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02229014 177.09239197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02229015 177.09239197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02229016 177.09242249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02229017 177.09242249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02229018 177.09245300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02229019 177.09245300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02229020 177.09248352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02229021 177.09248352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02229022 177.09249878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02229023 177.09249878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02229024 177.09252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02229025 177.09252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02229026 177.09255981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02229027 177.09257507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02229028 177.09259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02229029 177.09259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02229030 177.09262085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02229031 177.09262085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02229032 177.09265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02229033 177.09265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02229034 177.09266663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02229035 177.09266663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02229036 177.09269714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02229037 177.09271240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02229038 177.09274292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02229039 177.09274292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02229040 177.09275818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02229041 177.09275818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02229042 177.09278870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02229043 177.09278870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02229044 177.09281921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02229045 177.09281921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02229046 177.09283447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02229047 177.09284973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02229048 177.09288025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02229049 177.09288025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02229050 177.09289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02229051 177.09289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02229052 177.09292603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02229053 177.09292603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02229054 177.09295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02229055 177.09295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02229056 177.09297180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02229057 177.09298706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02229058 177.09301758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02229059 177.09301758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02229060 177.09304810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02229061 177.09304810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02229062 177.09306335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02229063 177.09306335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02229064 177.09309387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02229065 177.09309387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02229066 177.09312439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02229067 177.09313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02229068 177.09315491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02229069 177.09315491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02229070 177.09318542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02229071 177.09318542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02229072 177.09321594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02229073 177.09321594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02229074 177.09323120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02229075 177.09323120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02229076 177.09326172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02229077 177.09327698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02229078 177.09329224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02229079 177.09329224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02229080 177.09332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02229081 177.09332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02229082 177.09335327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02229083 177.09335327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02229084 177.09336853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02229085 177.09336853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02229086 177.09339905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02229087 177.09341431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02229088 177.09344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02229089 177.09344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02229090 177.09346008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02229091 177.09346008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02229092 177.09349060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02229093 177.09350586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02229094 177.09353638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02229095 177.09353638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02229096 177.09355164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02229097 177.09355164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02229098 177.09358215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02229099 177.09358215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02229100 177.09361267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02229101 177.09361267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02229102 177.09365845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02229103 177.09365845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02229104 177.09368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02229105 177.09368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02229106 177.09370422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02229107 177.09370422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02229108 177.09373474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02229109 177.09375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02229110 177.09376526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02229111 177.09376526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02229112 177.09379578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02229113 177.09379578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02229114 177.09382629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02229115 177.09382629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02229116 177.09385681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02229117 177.09385681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02229118 177.09387207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02229119 177.09388733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02229120 177.09391785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02229121 177.09391785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02229122 177.09393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02229123 177.09393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02229124 177.09396362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02229125 177.09396362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02229126 177.09399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02229127 177.09399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02229128 177.09400940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02229129 177.09402466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02229130 177.09405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02229131 177.09405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02229132 177.09408569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02229133 177.09408569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02229134 177.09410095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02229135 177.09410095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02229136 177.09413147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02229137 177.09413147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02229138 177.09416199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02229139 177.09416199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02229140 177.09417725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02229141 177.09419250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02229142 177.09422302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02229143 177.09422302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02229144 177.09425354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02229145 177.09425354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02229146 177.09426880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02229147 177.09428406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02229148 177.09431458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02229149 177.09431458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02229150 177.09432983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02229151 177.09432983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02229152 177.09436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02229153 177.09436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02229154 177.09439087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02229155 177.09439087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02229156 177.09440613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02229157 177.09442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02229158 177.09445190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02229159 177.09445190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02229160 177.09448242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02229161 177.09448242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02229162 177.09449768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02229163 177.09449768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02229164 177.09452820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02229165 177.09452820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02229166 177.09455872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02229167 177.09455872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02229168 177.09457397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02229169 177.09457397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02229170 177.09460449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02229171 177.09461975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02229172 177.09463501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02229173 177.09465027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02229174 177.09466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02229175 177.09466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02229176 177.09469604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02229177 177.09469604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02229178 177.09472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02229179 177.09472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02229180 177.09474182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02229181 177.09474182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02229182 177.09477234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02229183 177.09478760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02229184 177.09480286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02229185 177.09480286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02229186 177.09483337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02229187 177.09483337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02229188 177.09486389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02229189 177.09486389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02229190 177.09487915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02229191 177.09487915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02229192 177.09490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02229193 177.09492493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02229194 177.09494019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02229195 177.09495544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02229196 177.09497070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02229197 177.09497070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02229198 177.09500122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02229199 177.09500122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02229200 177.09503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02229201 177.09503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02229202 177.09504700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02229203 177.09504700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02229204 177.09507751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02229205 177.09507751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02229206 177.09510803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02229207 177.09510803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02229208 177.09512329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02229209 177.09512329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02229210 177.09515381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02229211 177.09515381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02229212 177.09518433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02229213 177.09519958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02229214 177.09519958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02229215 177.09521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02229216 177.09524536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02229217 177.09524536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02229218 177.09527588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02229219 177.09527588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02229220 177.09529114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02229221 177.09529114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02229222 177.09532166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02229223 177.09532166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02229224 177.09535217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02229225 177.09535217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02229226 177.09536743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02229227 177.09536743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02229228 177.09539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02229229 177.09539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02229230 177.09542847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02229231 177.09542847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02229232 177.09544373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02229233 177.09544373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02229234 177.09547424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02229235 177.09548950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02229236 177.09550476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02229237 177.09552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02229238 177.09553528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02229239 177.09553528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02229240 177.09556580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02229241 177.09556580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02229242 177.09559631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02229243 177.09559631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02229244 177.09561157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02229245 177.09562683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02229246 177.09565735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02229247 177.09565735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02229248 177.09567261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02229249 177.09567261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02229250 177.09570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02229251 177.09570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02229252 177.09573364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02229253 177.09573364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02229254 177.09576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02229255 177.09576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02229256 177.09577942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02229257 177.09577942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02229258 177.09580994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02229259 177.09582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02229260 177.09584045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02229261 177.09584045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02229262 177.09587097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02229263 177.09587097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02229264 177.09590149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02229265 177.09590149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02229266 177.09591675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02229267 177.09591675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02229268 177.09594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02229269 177.09594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02229270 177.09597778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02229271 177.09597778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02229272 177.09599304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02229273 177.09599304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02229274 177.09602356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02229275 177.09602356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02229276 177.09605408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02229277 177.09605408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02229278 177.09606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02229279 177.09606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02229280 177.09609985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02229281 177.09611511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02229282 177.09613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02229283 177.09614563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02229284 177.09616089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02229285 177.09616089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02229286 177.09619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02229287 177.09619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02229288 177.09622192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02229289 177.09622192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02229290 177.09623718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02229291 177.09623718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02229292 177.09626770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02229293 177.09628296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02229294 177.09631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02229295 177.09631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02229296 177.09632874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02229297 177.09632874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02229298 177.09635925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02229299 177.09635925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02229300 177.09638977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02229301 177.09638977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02229302 177.09640503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02229303 177.09640503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02229304 177.09643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02229305 177.09643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02229306 177.09646606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02229307 177.09646606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02229308 177.09648132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02229309 177.09649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02229310 177.09652710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02229311 177.09652710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02229312 177.09655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02229313 177.09655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02229314 177.09657288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02229315 177.09657288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02229316 177.09660339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02229317 177.09660339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02229318 177.09663391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02229319 177.09663391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02229320 177.09664917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02229321 177.09664917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02229322 177.09667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02229323 177.09667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02229324 177.09671021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02229325 177.09671021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02229326 177.09674072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02229327 177.09674072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02229328 177.09677124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02229329 177.09677124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02229330 177.09678650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02229331 177.09678650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02229332 177.09681702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02229333 177.09681702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02229334 177.09684753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02229335 177.09686279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02229336 177.09687805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02229337 177.09687805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02229338 177.09690857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02229339 177.09690857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02229340 177.09693909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02229341 177.09693909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02229342 177.09695435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02229343 177.09695435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02229344 177.09698486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02229345 177.09700012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02229346 177.09703064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02229347 177.09703064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02229348 177.09704590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02229349 177.09704590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02229350 177.09707642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02229351 177.09707642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02229352 177.09710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02229353 177.09710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02229354 177.09712219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02229355 177.09712219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02229356 177.09715271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02229357 177.09716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02229358 177.09718323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02229359 177.09718323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02229360 177.09721375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02229361 177.09721375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02229362 177.09724426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02229363 177.09724426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02229364 177.09727478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02229365 177.09727478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02229366 177.09729004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02229367 177.09729004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02229368 177.09732056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02229369 177.09732056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02229370 177.09735107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02229371 177.09735107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02229372 177.09736633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02229373 177.09736633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02229374 177.09739685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02229375 177.09739685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02229376 177.09742737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02229377 177.09742737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02229378 177.09744263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02229379 177.09745789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02229380 177.09747314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02229381 177.09748840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02229382 177.09750366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02229383 177.09750366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02229384 177.09753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02229385 177.09753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02229386 177.09756470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02229387 177.09756470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02229388 177.09757996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02229389 177.09757996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02229390 177.09761047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02229391 177.09762573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02229392 177.09765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02229393 177.09765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02229394 177.09767151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02229395 177.09767151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02229396 177.09770203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02229397 177.09770203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02229398 177.09773254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02229399 177.09773254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02229400 177.09774780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02229401 177.09774780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02229402 177.09777832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02229403 177.09779358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02229404 177.09780884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02229405 177.09782410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02229406 177.09783936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02229407 177.09783936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02229408 177.09786987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02229409 177.09786987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02229410 177.09790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02229411 177.09790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02229412 177.09791565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02229413 177.09791565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02229414 177.09794617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02229415 177.09794617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02229416 177.09797668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02229417 177.09797668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02229418 177.09799194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02229419 177.09799194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02229420 177.09802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02229421 177.09802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02229422 177.09806824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02229423 177.09806824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02229424 177.09808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02229425 177.09808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02229426 177.09811401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02229427 177.09811401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02229428 177.09814453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02229429 177.09814453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02229430 177.09817505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02229431 177.09817505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02229432 177.09820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02229433 177.09820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02229434 177.09822083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02229435 177.09822083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02229436 177.09825134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02229437 177.09825134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02229438 177.09828186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02229439 177.09829712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02229440 177.09831238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02229441 177.09831238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02229442 177.09834290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02229443 177.09834290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02229444 177.09837341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02229445 177.09837341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02229446 177.09838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02229447 177.09838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02229448 177.09841919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02229449 177.09841919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02229450 177.09844971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02229451 177.09846497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02229452 177.09848022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02229453 177.09848022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02229454 177.09851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02229455 177.09851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02229456 177.09854126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02229457 177.09854126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02229458 177.09855652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02229459 177.09855652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02229460 177.09858704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02229461 177.09860229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02229462 177.09861755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02229463 177.09861755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02229464 177.09864807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02229465 177.09866333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02229466 177.09869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02229467 177.09869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02229468 177.09870911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02229469 177.09870911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02229470 177.09873962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02229471 177.09873962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02229472 177.09877014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02229473 177.09877014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02229474 177.09878540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02229475 177.09880066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02229476 177.09881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02229477 177.09883118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02229478 177.09886169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02229479 177.09886169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02229480 177.09887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02229481 177.09887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02229482 177.09890747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02229483 177.09890747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02229484 177.09893799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02229485 177.09893799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02229486 177.09895325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02229487 177.09895325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02229488 177.09898376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02229489 177.09898376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02229490 177.09901428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02229491 177.09901428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02229492 177.09902954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02229493 177.09902954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02229494 177.09907532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02229495 177.09907532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02229496 177.09909058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02229497 177.09909058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02229498 177.09912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02229499 177.09912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02229500 177.09915161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02229501 177.09916687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02229502 177.09916687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02229503 177.09918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02229504 177.09921265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02229505 177.09921265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02229506 177.09924316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02229507 177.09924316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02229508 177.09925842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02229509 177.09925842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02229510 177.09928894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02229511 177.09928894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02229512 177.09931946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02229513 177.09933472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02229514 177.09934998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02229515 177.09934998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02229516 177.09938049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02229517 177.09938049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02229518 177.09941101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02229519 177.09941101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02229520 177.09942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02229521 177.09942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02229522 177.09945679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02229523 177.09947205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02229524 177.09948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02229525 177.09948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02229526 177.09951782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02229527 177.09951782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02229528 177.09954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02229529 177.09954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02229530 177.09956360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02229531 177.09956360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02229532 177.09959412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02229533 177.09959412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02229534 177.09962463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02229535 177.09962463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02229536 177.09965515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02229537 177.09965515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02229538 177.09967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02229539 177.09968567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02229540 177.09971619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02229541 177.09971619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02229542 177.09973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02229543 177.09973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02229544 177.09976196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02229545 177.09976196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02229546 177.09979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02229547 177.09979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02229548 177.09980774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02229549 177.09980774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02229550 177.09983826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02229551 177.09983826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02229552 177.09986877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02229553 177.09986877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02229554 177.09988403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02229555 177.09989929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02229556 177.09992981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02229557 177.09992981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02229558 177.09996033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02229559 177.09996033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02229560 177.09997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02229561 177.09997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02229562 177.10002136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02229563 177.10002136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02229564 177.10005188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02229565 177.10005188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02229566 177.10006714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02229567 177.10006714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02229568 177.10009766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02229569 177.10011292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02229570 177.10012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02229571 177.10012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02229572 177.10015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02229573 177.10015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02229574 177.10018921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02229575 177.10018921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02229576 177.10020447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02229577 177.10020447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02229578 177.10025024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02229579 177.10025024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02229580 177.10028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02229581 177.10028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02229582 177.10029602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02229583 177.10029602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02229584 177.10032654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02229585 177.10034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02229586 177.10037231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02229587 177.10037231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02229588 177.10038757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02229589 177.10038757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02229590 177.10041809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02229591 177.10041809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02229592 177.10044861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02229593 177.10044861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02229594 177.10046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02229595 177.10046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02229596 177.10049438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02229597 177.10049438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02229598 177.10052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02229599 177.10052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02229600 177.10055542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02229601 177.10055542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02229602 177.10058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02229603 177.10058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02229604 177.10060120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02229605 177.10060120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02229606 177.10063171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02229607 177.10064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02229608 177.10067749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02229609 177.10067749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02229610 177.10069275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02229611 177.10069275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02229612 177.10072327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02229613 177.10072327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02229614 177.10075378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02229615 177.10075378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02229616 177.10076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02229617 177.10076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02229618 177.10079956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02229619 177.10079956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02229620 177.10083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02229621 177.10084534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02229622 177.10084534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02229623 177.10086060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02229624 177.10089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02229625 177.10089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02229626 177.10092163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02229627 177.10092163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02229628 177.10093689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02229629 177.10093689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02229630 177.10096741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02229631 177.10096741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02229632 177.10099792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02229633 177.10099792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02229634 177.10101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02229635 177.10101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02229636 177.10104370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02229637 177.10104370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02229638 177.10107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02229639 177.10107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02229640 177.10108948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02229641 177.10108948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02229642 177.10112000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02229643 177.10113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02229644 177.10116577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02229645 177.10116577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02229646 177.10118103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02229647 177.10118103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02229648 177.10121155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02229649 177.10121155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02229650 177.10124207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02229651 177.10124207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02229652 177.10125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02229653 177.10125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02229654 177.10128784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02229655 177.10128784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02229656 177.10131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02229657 177.10131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02229658 177.10133362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02229659 177.10133362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02229660 177.10136414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02229661 177.10136414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02229662 177.10139465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02229663 177.10139465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02229664 177.10140991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02229665 177.10142517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02229666 177.10145569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02229667 177.10145569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02229668 177.10147095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02229669 177.10147095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02229670 177.10150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02229671 177.10150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02229672 177.10153198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02229673 177.10153198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02229674 177.10156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02229675 177.10156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02229676 177.10157776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02229677 177.10157776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02229678 177.10160828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02229679 177.10160828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02229680 177.10163879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02229681 177.10163879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02229682 177.10165405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02229683 177.10166931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02229684 177.10168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02229685 177.10169983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02229686 177.10171509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02229687 177.10171509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02229688 177.10174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02229689 177.10174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02229690 177.10177612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02229691 177.10177612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02229692 177.10179138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02229693 177.10179138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02229694 177.10182190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02229695 177.10183716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02229696 177.10186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02229697 177.10186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02229698 177.10188293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02229699 177.10188293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02229700 177.10191345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02229701 177.10191345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02229702 177.10194397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02229703 177.10194397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02229704 177.10195923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02229705 177.10195923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02229706 177.10198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02229707 177.10200500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02229708 177.10202026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02229709 177.10203552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02229710 177.10205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02229711 177.10205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02229712 177.10208130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02229713 177.10208130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02229714 177.10211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02229715 177.10211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02229716 177.10212708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02229717 177.10212708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02229718 177.10215759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02229719 177.10215759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02229720 177.10218811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02229721 177.10218811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02229722 177.10220337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02229723 177.10221863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02229724 177.10224915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02229725 177.10224915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02229726 177.10226440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02229727 177.10226440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02229728 177.10229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02229729 177.10229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02229730 177.10232544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02229731 177.10234070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02229732 177.10235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02229733 177.10235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02229734 177.10238647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02229735 177.10238647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02229736 177.10241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02229737 177.10241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02229738 177.10243225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02229739 177.10244751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02229740 177.10247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02229741 177.10247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02229742 177.10250854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02229743 177.10250854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02229744 177.10252380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02229745 177.10252380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02229746 177.10255432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02229747 177.10255432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02229748 177.10258484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02229749 177.10258484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02229750 177.10260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02229751 177.10260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02229752 177.10263062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02229753 177.10263062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02229754 177.10266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02229755 177.10266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02229756 177.10267639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02229757 177.10269165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02229758 177.10270691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02229759 177.10272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02229760 177.10275269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02229761 177.10275269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02229762 177.10276794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02229763 177.10276794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02229764 177.10279846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02229765 177.10279846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02229766 177.10282898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02229767 177.10282898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02229768 177.10284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02229769 177.10284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02229770 177.10287476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02229771 177.10287476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02229772 177.10290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02229773 177.10290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02229774 177.10292053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02229775 177.10292053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02229776 177.10295105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02229777 177.10296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02229778 177.10298157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02229779 177.10298157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02229780 177.10301208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02229781 177.10301208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02229782 177.10304260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02229783 177.10304260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02229784 177.10307312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02229785 177.10307312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02229786 177.10308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02229787 177.10308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02229788 177.10311890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02229789 177.10311890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02229790 177.10314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02229791 177.10314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02229792 177.10316467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02229793 177.10316467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02229794 177.10319519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02229795 177.10319519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02229796 177.10322571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02229797 177.10322571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02229798 177.10324097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02229799 177.10325623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02229800 177.10328674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02229801 177.10328674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02229802 177.10330200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02229803 177.10330200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02229804 177.10333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02229805 177.10333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02229806 177.10336304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02229807 177.10336304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02229808 177.10337830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02229809 177.10337830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02229810 177.10340881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02229811 177.10340881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02229812 177.10343933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02229813 177.10343933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02229814 177.10346985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02229815 177.10346985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02229816 177.10348511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02229817 177.10350037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02229818 177.10351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02229819 177.10353088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02229820 177.10354614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02229821 177.10354614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02229822 177.10357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02229823 177.10357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02229824 177.10360718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02229825 177.10360718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02229826 177.10362244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02229827 177.10362244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02229828 177.10365295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02229829 177.10365295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02229830 177.10368347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02229831 177.10369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02229832 177.10371399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02229833 177.10371399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02229834 177.10374451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02229835 177.10374451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02229836 177.10377502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02229837 177.10377502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02229838 177.10379028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02229839 177.10379028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02229840 177.10382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02229841 177.10383606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02229842 177.10386658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02229843 177.10386658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02229844 177.10388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02229845 177.10388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02229846 177.10391235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02229847 177.10391235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02229848 177.10394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02229849 177.10394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02229850 177.10395813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02229851 177.10397339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02229852 177.10400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02229853 177.10400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02229854 177.10401917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02229855 177.10401917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02229856 177.10404968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02229857 177.10404968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02229858 177.10408020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02229859 177.10408020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02229860 177.10409546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02229861 177.10411072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02229862 177.10414124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02229863 177.10414124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02229864 177.10417175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02229865 177.10417175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02229866 177.10418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02229867 177.10418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02229868 177.10421753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02229869 177.10421753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02229870 177.10426331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02229871 177.10426331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02229872 177.10427856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02229873 177.10427856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02229874 177.10430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02229875 177.10430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02229876 177.10433960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02229877 177.10433960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02229878 177.10435486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02229879 177.10437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02229880 177.10440063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02229881 177.10440063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02229882 177.10441589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02229883 177.10441589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02229884 177.10444641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02229885 177.10444641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02229886 177.10447693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02229887 177.10447693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02229888 177.10449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02229889 177.10449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02229890 177.10452271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02229891 177.10453796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02229892 177.10455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02229893 177.10456848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02229894 177.10458374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02229895 177.10458374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02229896 177.10461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02229897 177.10461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02229898 177.10464478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02229899 177.10464478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02229900 177.10466003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02229901 177.10466003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02229902 177.10469055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02229903 177.10469055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02229904 177.10472107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02229905 177.10472107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02229906 177.10473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02229907 177.10473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02229908 177.10478210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02229909 177.10478210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02229910 177.10481262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02229911 177.10481262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02229912 177.10482788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02229913 177.10482788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02229914 177.10485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02229915 177.10485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02229916 177.10488892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02229917 177.10488892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02229918 177.10491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02229919 177.10491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02229920 177.10494995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02229921 177.10494995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02229922 177.10496521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02229923 177.10496521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02229924 177.10499573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02229925 177.10501099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02229926 177.10502625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02229927 177.10504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02229928 177.10505676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02229929 177.10505676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02229930 177.10508728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02229931 177.10508728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02229932 177.10511780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02229933 177.10511780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02229934 177.10513306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02229935 177.10513306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02229936 177.10516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02229937 177.10517883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02229938 177.10520935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02229939 177.10520935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02229940 177.10522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02229941 177.10522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02229942 177.10525513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02229943 177.10525513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02229944 177.10528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02229945 177.10528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02229946 177.10530090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02229947 177.10531616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02229948 177.10534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02229949 177.10534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02229950 177.10537720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02229951 177.10537720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02229952 177.10539246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02229953 177.10539246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02229954 177.10542297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02229955 177.10542297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02229956 177.10545349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02229957 177.10545349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02229958 177.10546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02229959 177.10548401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02229960 177.10551453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02229961 177.10551453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02229962 177.10552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02229963 177.10552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02229964 177.10556030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02229965 177.10556030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02229966 177.10559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02229967 177.10559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02229968 177.10560608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02229969 177.10562134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02229970 177.10565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02229971 177.10565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02229972 177.10568237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02229973 177.10568237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02229974 177.10569763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02229975 177.10569763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02229976 177.10572815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02229977 177.10572815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02229978 177.10575867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02229979 177.10577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02229980 177.10578918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02229981 177.10578918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02229982 177.10581970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02229983 177.10581970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02229984 177.10585022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02229985 177.10585022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02229986 177.10586548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02229987 177.10586548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02229988 177.10589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02229989 177.10591125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02229990 177.10592651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02229991 177.10592651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02229992 177.10595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02229993 177.10595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02229994 177.10598755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02229995 177.10598755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02229996 177.10600281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02229997 177.10600281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02229998 177.10603333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02229999 177.10603333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02230000 177.10606384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02230001 177.10607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02230002 177.10609436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02230003 177.10609436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02230004 177.10612488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02230005 177.10612488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02230006 177.10615540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02230007 177.10615540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02230008 177.10617065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02230009 177.10617065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02230010 177.10620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02230011 177.10621643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02230012 177.10624695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02230013 177.10624695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02230014 177.10626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02230015 177.10626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02230016 177.10629272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02230017 177.10629272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02230018 177.10632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02230019 177.10632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02230020 177.10635376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02230021 177.10635376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02230022 177.10638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02230023 177.10638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02230024 177.10639954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02230025 177.10639954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02230026 177.10643005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02230027 177.10644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02230028 177.10647583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02230029 177.10647583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02230030 177.10649109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02230031 177.10649109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02230032 177.10652161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02230033 177.10652161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02230034 177.10655212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02230035 177.10655212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02230036 177.10656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02230037 177.10658264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02230038 177.10659790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02230039 177.10661316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02230040 177.10664368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02230041 177.10664368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02230042 177.10665894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02230043 177.10665894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02230044 177.10668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02230045 177.10668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02230046 177.10671997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02230047 177.10671997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02230048 177.10673523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02230049 177.10673523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02230050 177.10676575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02230051 177.10676575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02230052 177.10679626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02230053 177.10679626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02230054 177.10682678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02230055 177.10682678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02230056 177.10685730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02230057 177.10685730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02230058 177.10687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02230059 177.10687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02230060 177.10690308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02230061 177.10690308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02230062 177.10693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02230063 177.10693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02230064 177.10696411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02230065 177.10696411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02230066 177.10697937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02230067 177.10699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02230068 177.10702515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02230069 177.10702515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02230070 177.10704041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02230071 177.10704041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02230072 177.10707092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02230073 177.10707092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02230074 177.10710144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02230075 177.10710144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02230076 177.10711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02230077 177.10711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02230078 177.10714722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02230079 177.10714722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02230080 177.10717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02230081 177.10717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02230082 177.10719299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02230083 177.10719299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02230084 177.10722351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02230085 177.10722351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02230086 177.10725403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02230087 177.10726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02230088 177.10726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02230089 177.10728455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02230090 177.10731506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02230091 177.10731506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02230092 177.10734558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02230093 177.10734558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02230094 177.10736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02230095 177.10736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02230096 177.10739136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02230097 177.10739136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02230098 177.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02230099 177.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02230100 177.10743713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02230101 177.10743713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02230102 177.10746765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02230103 177.10748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02230104 177.10751343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02230105 177.10751343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02230106 177.10752869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02230107 177.10752869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02230108 177.10755920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02230109 177.10755920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02230110 177.10758972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02230111 177.10758972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02230112 177.10762024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02230113 177.10762024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02230114 177.10765076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02230115 177.10765076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02230116 177.10766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02230117 177.10766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02230118 177.10769653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02230119 177.10769653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02230120 177.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02230121 177.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02230122 177.10775757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02230123 177.10775757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02230124 177.10777283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02230125 177.10777283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02230126 177.10780334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02230127 177.10780334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02230128 177.10783386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02230129 177.10783386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02230130 177.10784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02230131 177.10786438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02230132 177.10787964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02230133 177.10789490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02230134 177.10791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02230135 177.10791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02230136 177.10794067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02230137 177.10794067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02230138 177.10797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02230139 177.10797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02230140 177.10798645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02230141 177.10798645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02230142 177.10801697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02230143 177.10801697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02230144 177.10804749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02230145 177.10806274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02230146 177.10807800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02230147 177.10807800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02230148 177.10810852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02230149 177.10810852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02230150 177.10813904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02230151 177.10813904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02230152 177.10815430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02230153 177.10815430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02230154 177.10818481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02230155 177.10820007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02230156 177.10823059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02230157 177.10823059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02230158 177.10824585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02230159 177.10824585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02230160 177.10827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02230161 177.10827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02230162 177.10830688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02230163 177.10830688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02230164 177.10832214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02230165 177.10832214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02230166 177.10835266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02230167 177.10836792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02230168 177.10838318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02230169 177.10838318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02230170 177.10841370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02230171 177.10841370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02230172 177.10844421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02230173 177.10844421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02230174 177.10847473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02230175 177.10847473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02230176 177.10848999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02230177 177.10850525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02230178 177.10853577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02230179 177.10853577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02230180 177.10855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02230181 177.10855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02230182 177.10858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02230183 177.10858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02230184 177.10861206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02230185 177.10861206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02230186 177.10862732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02230187 177.10864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02230188 177.10867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02230189 177.10867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02230190 177.10870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02230191 177.10870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02230192 177.10871887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02230193 177.10871887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02230194 177.10874939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02230195 177.10874939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02230196 177.10877991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02230197 177.10877991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02230198 177.10881042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02230199 177.10881042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02230200 177.10884094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02230201 177.10884094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02230202 177.10887146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02230203 177.10887146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02230204 177.10888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02230205 177.10888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02230206 177.10891724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02230207 177.10891724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02230208 177.10894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02230209 177.10894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02230210 177.10897827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02230211 177.10897827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02230212 177.10900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02230213 177.10900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02230214 177.10902405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02230215 177.10902405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02230216 177.10905457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02230217 177.10905457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02230218 177.10908508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02230219 177.10910034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02230220 177.10911560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02230221 177.10911560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02230222 177.10914612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02230223 177.10914612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02230224 177.10917664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02230225 177.10917664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02230226 177.10919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02230227 177.10919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02230228 177.10922241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02230229 177.10922241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02230230 177.10925293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02230231 177.10926819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02230232 177.10928345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02230233 177.10928345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02230234 177.10931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02230235 177.10931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02230236 177.10934448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02230237 177.10934448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02230238 177.10935974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02230239 177.10935974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02230240 177.10939026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02230241 177.10940552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02230242 177.10942078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02230243 177.10942078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02230244 177.10945129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02230245 177.10945129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02230246 177.10948181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02230247 177.10948181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02230248 177.10949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02230249 177.10949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02230250 177.10952759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02230251 177.10954285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02230252 177.10957336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02230253 177.10957336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02230254 177.10958862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02230255 177.10958862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02230256 177.10961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02230257 177.10961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02230258 177.10964966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02230259 177.10964966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02230260 177.10966492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02230261 177.10968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02230262 177.10971069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02230263 177.10971069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02230264 177.10974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02230265 177.10974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02230266 177.10975647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02230267 177.10975647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02230268 177.10978699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02230269 177.10978699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02230270 177.10981750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02230271 177.10981750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02230272 177.10983276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02230273 177.10984802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02230274 177.10987854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02230275 177.10987854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02230276 177.10989380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02230277 177.10989380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02230278 177.10992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02230279 177.10992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02230280 177.10995483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02230281 177.10995483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02230282 177.10997009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02230283 177.10998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02230284 177.11001587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02230285 177.11001587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02230286 177.11004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02230287 177.11004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02230288 177.11006165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02230289 177.11006165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02230290 177.11009216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02230291 177.11009216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02230292 177.11012268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02230293 177.11013794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02230294 177.11015320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02230295 177.11015320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02230296 177.11018372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02230297 177.11018372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02230298 177.11021423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02230299 177.11021423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02230300 177.11022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02230301 177.11022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02230302 177.11026001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02230303 177.11027527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02230304 177.11029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02230305 177.11029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02230306 177.11032104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02230307 177.11032104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02230308 177.11035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02230309 177.11035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02230310 177.11036682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02230311 177.11036682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02230312 177.11039734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02230313 177.11039734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02230314 177.11042786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02230315 177.11044312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02230316 177.11045837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02230317 177.11045837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02230318 177.11048889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02230319 177.11048889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02230320 177.11051941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02230321 177.11051941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02230322 177.11053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02230323 177.11053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02230324 177.11056519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02230325 177.11058044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02230326 177.11061096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02230327 177.11061096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02230328 177.11062622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02230329 177.11062622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02230330 177.11065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02230331 177.11065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02230332 177.11068726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02230333 177.11068726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02230334 177.11070251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02230335 177.11071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02230336 177.11074829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02230337 177.11074829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02230338 177.11077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02230339 177.11077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02230340 177.11079407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02230341 177.11079407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02230342 177.11082458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02230343 177.11082458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02230344 177.11085510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02230345 177.11085510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02230346 177.11087036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02230347 177.11088562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02230348 177.11091614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02230349 177.11091614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02230350 177.11093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02230351 177.11093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02230352 177.11096191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02230353 177.11096191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02230354 177.11099243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02230355 177.11099243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02230356 177.11100769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02230357 177.11102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02230358 177.11105347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02230359 177.11105347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02230360 177.11108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02230361 177.11108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02230362 177.11109924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02230363 177.11109924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02230364 177.11112976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02230365 177.11112976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02230366 177.11116028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02230367 177.11117554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02230368 177.11119080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02230369 177.11119080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02230370 177.11122131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02230371 177.11122131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02230372 177.11125183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02230373 177.11125183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02230374 177.11128235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02230375 177.11128235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02230376 177.11131287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02230377 177.11131287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02230378 177.11132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02230379 177.11132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02230380 177.11135864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02230381 177.11135864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02230382 177.11138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02230383 177.11140442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02230384 177.11141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02230385 177.11141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02230386 177.11145020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02230387 177.11145020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02230388 177.11148071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02230389 177.11148071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02230390 177.11149597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02230391 177.11149597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02230392 177.11152649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02230393 177.11154175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02230394 177.11155701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02230395 177.11157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02230396 177.11158752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02230397 177.11158752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02230398 177.11161804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02230399 177.11161804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02230400 177.11164856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02230401 177.11164856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02230402 177.11166382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02230403 177.11166382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02230404 177.11169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02230405 177.11169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02230406 177.11172485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02230407 177.11172485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02230408 177.11174011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02230409 177.11174011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02230410 177.11178589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02230411 177.11178589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02230412 177.11180115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02230413 177.11180115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02230414 177.11183167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02230415 177.11183167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02230416 177.11186218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02230417 177.11186218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02230418 177.11187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02230419 177.11187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02230420 177.11190796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02230421 177.11192322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02230422 177.11195374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02230423 177.11195374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02230424 177.11196899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02230425 177.11196899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02230426 177.11199951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02230427 177.11199951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02230428 177.11203003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02230429 177.11204529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02230430 177.11206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02230431 177.11206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02230432 177.11209106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02230433 177.11209106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02230434 177.11212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02230435 177.11212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02230436 177.11213684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02230437 177.11213684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02230438 177.11216736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02230439 177.11218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02230440 177.11219788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02230441 177.11219788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02230442 177.11222839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02230443 177.11222839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02230444 177.11225891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02230445 177.11225891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02230446 177.11227417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02230447 177.11227417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02230448 177.11230469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02230449 177.11231995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02230450 177.11235046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02230451 177.11235046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02230452 177.11236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02230453 177.11236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02230454 177.11239624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02230455 177.11239624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02230456 177.11242676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02230457 177.11244202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02230458 177.11245728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02230459 177.11245728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02230460 177.11248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02230461 177.11248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02230462 177.11251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02230463 177.11251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02230464 177.11253357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02230465 177.11253357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02230466 177.11256409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02230467 177.11257935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02230468 177.11259460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02230469 177.11259460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02230470 177.11262512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02230471 177.11262512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02230472 177.11265564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02230473 177.11265564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02230474 177.11267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02230475 177.11267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02230476 177.11270142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02230477 177.11271667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02230478 177.11274719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02230479 177.11274719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02230480 177.11276245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02230481 177.11276245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02230482 177.11279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02230483 177.11279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02230484 177.11282349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02230485 177.11282349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02230486 177.11283875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02230487 177.11285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02230488 177.11288452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02230489 177.11288452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02230490 177.11291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02230491 177.11291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02230492 177.11293030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02230493 177.11293030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02230494 177.11296082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02230495 177.11296082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02230496 177.11299133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02230497 177.11299133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02230498 177.11300659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02230499 177.11302185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02230500 177.11305237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02230501 177.11305237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02230502 177.11306763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02230503 177.11306763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02230504 177.11309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02230505 177.11309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02230506 177.11312866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02230507 177.11312866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02230508 177.11315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02230509 177.11315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02230510 177.11318970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02230511 177.11318970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02230512 177.11322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02230513 177.11322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02230514 177.11323547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02230515 177.11323547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02230516 177.11326599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02230517 177.11326599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02230518 177.11329651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02230519 177.11331177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02230520 177.11332703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02230521 177.11332703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02230522 177.11335754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02230523 177.11335754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02230524 177.11338806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02230525 177.11338806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02230526 177.11340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02230527 177.11340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02230528 177.11343384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02230529 177.11344910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02230530 177.11347961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02230531 177.11347961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02230532 177.11349487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02230533 177.11349487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02230534 177.11352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02230535 177.11352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02230536 177.11355591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02230537 177.11355591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02230538 177.11357117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02230539 177.11358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02230540 177.11361694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02230541 177.11361694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02230542 177.11363220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02230543 177.11363220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02230544 177.11366272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02230545 177.11366272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02230546 177.11369324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02230547 177.11369324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02230548 177.11370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02230549 177.11372375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02230550 177.11375427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02230551 177.11375427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02230552 177.11378479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02230553 177.11378479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02230554 177.11380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02230555 177.11380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02230556 177.11383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02230557 177.11383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02230558 177.11386108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02230559 177.11386108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02230560 177.11387634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02230561 177.11389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02230562 177.11392212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02230563 177.11392212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02230564 177.11395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02230565 177.11395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02230566 177.11396790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02230567 177.11396790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02230568 177.11399841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02230569 177.11401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02230570 177.11402893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02230571 177.11402893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02230572 177.11405945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02230573 177.11405945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02230574 177.11408997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02230575 177.11408997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02230576 177.11410522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02230577 177.11410522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02230578 177.11413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02230579 177.11413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02230580 177.11416626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02230581 177.11416626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02230582 177.11418152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02230583 177.11419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02230584 177.11422729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02230585 177.11422729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02230586 177.11425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02230587 177.11425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02230588 177.11427307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02230589 177.11427307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02230590 177.11430359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02230591 177.11430359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02230592 177.11433411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02230593 177.11434937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02230594 177.11436462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02230595 177.11436462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02230596 177.11439514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02230597 177.11439514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02230598 177.11442566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02230599 177.11442566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02230600 177.11444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02230601 177.11444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02230602 177.11447144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02230603 177.11448669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02230604 177.11450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02230605 177.11450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02230606 177.11453247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02230607 177.11453247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02230608 177.11456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02230609 177.11456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02230610 177.11457825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02230611 177.11457825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02230612 177.11460876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02230613 177.11462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02230614 177.11465454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02230615 177.11465454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02230616 177.11466980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02230617 177.11466980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02230618 177.11470032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02230619 177.11470032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02230620 177.11473083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02230621 177.11473083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02230622 177.11474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02230623 177.11474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02230624 177.11477661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02230625 177.11479187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02230626 177.11480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02230627 177.11482239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02230628 177.11483765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02230629 177.11483765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02230630 177.11486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02230631 177.11486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02230632 177.11489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02230633 177.11489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02230634 177.11491394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02230635 177.11491394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02230636 177.11495972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02230637 177.11495972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02230638 177.11497498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02230639 177.11497498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02230640 177.11500549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02230641 177.11500549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02230642 177.11503601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02230643 177.11503601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02230644 177.11506653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02230645 177.11506653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02230646 177.11509705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02230647 177.11509705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02230648 177.11512756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02230649 177.11512756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02230650 177.11514282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02230651 177.11514282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02230652 177.11517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02230653 177.11517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02230654 177.11520386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02230655 177.11520386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02230656 177.11521912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02230657 177.11523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02230658 177.11524963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02230659 177.11526489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02230660 177.11529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02230661 177.11529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02230662 177.11531067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02230663 177.11531067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02230664 177.11534119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02230665 177.11534119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02230666 177.11537170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02230667 177.11537170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02230668 177.11540222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02230669 177.11540222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02230670 177.11543274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02230671 177.11543274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02230672 177.11546326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02230673 177.11546326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02230674 177.11547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02230675 177.11547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02230676 177.11550903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02230677 177.11550903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02230678 177.11553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02230679 177.11553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02230680 177.11557007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02230681 177.11557007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02230682 177.11560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02230683 177.11560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02230684 177.11561584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02230685 177.11561584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02230686 177.11564636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02230687 177.11566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02230688 177.11569214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02230689 177.11569214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02230690 177.11570740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02230691 177.11570740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02230692 177.11573792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02230693 177.11573792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02230694 177.11576843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02230695 177.11576843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02230696 177.11578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02230697 177.11578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02230698 177.11581421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02230699 177.11582947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02230700 177.11585999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02230701 177.11585999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02230702 177.11587524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02230703 177.11587524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02230704 177.11590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02230705 177.11590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02230706 177.11593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02230707 177.11593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02230708 177.11595154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02230709 177.11595154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02230710 177.11598206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02230711 177.11599731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02230712 177.11601257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02230713 177.11601257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02230714 177.11604309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02230715 177.11604309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02230716 177.11607361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02230717 177.11607361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02230718 177.11608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02230719 177.11610413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02230720 177.11611938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02230721 177.11613464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02230722 177.11616516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02230723 177.11616516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02230724 177.11618042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02230725 177.11618042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02230726 177.11621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02230727 177.11621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02230728 177.11624146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02230729 177.11625671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02230730 177.11627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02230731 177.11627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02230732 177.11630249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02230733 177.11630249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02230734 177.11633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02230735 177.11633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02230736 177.11634827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02230737 177.11634827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02230738 177.11637878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02230739 177.11639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02230740 177.11640930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02230741 177.11640930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02230742 177.11643982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02230743 177.11643982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02230744 177.11647034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02230745 177.11647034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02230746 177.11648560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02230747 177.11648560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02230748 177.11651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02230749 177.11651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02230750 177.11654663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02230751 177.11654663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02230752 177.11657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02230753 177.11657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02230754 177.11659241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02230755 177.11659241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02230756 177.11662292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02230757 177.11662292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02230758 177.11665344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02230759 177.11665344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02230760 177.11666870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02230761 177.11668396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02230762 177.11671448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02230763 177.11671448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02230764 177.11672974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02230765 177.11672974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02230766 177.11676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02230767 177.11676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02230768 177.11679077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02230769 177.11680603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02230770 177.11682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02230771 177.11682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02230772 177.11685181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02230773 177.11685181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02230774 177.11688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02230775 177.11688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02230776 177.11689758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02230777 177.11689758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02230778 177.11692810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02230779 177.11694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02230780 177.11697388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02230781 177.11697388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02230782 177.11698914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02230783 177.11698914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02230784 177.11701965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02230785 177.11701965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02230786 177.11705017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02230787 177.11705017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02230788 177.11708069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02230789 177.11708069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02230790 177.11711121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02230791 177.11711121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02230792 177.11712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02230793 177.11712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02230794 177.11715698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02230795 177.11715698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02230796 177.11718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02230797 177.11718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02230798 177.11720276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02230799 177.11720276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02230800 177.11723328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02230801 177.11724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02230802 177.11727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02230803 177.11727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02230804 177.11729431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02230805 177.11729431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02230806 177.11732483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02230807 177.11732483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02230808 177.11735535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02230809 177.11735535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02230810 177.11737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02230811 177.11738586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02230812 177.11741638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02230813 177.11741638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02230814 177.11744690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02230815 177.11744690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02230816 177.11746216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02230817 177.11746216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02230818 177.11749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02230819 177.11750793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02230820 177.11752319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02230821 177.11752319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02230822 177.11755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02230823 177.11755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02230824 177.11758423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02230825 177.11758423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02230826 177.11761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02230827 177.11761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02230828 177.11764526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02230829 177.11764526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02230830 177.11767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02230831 177.11767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02230832 177.11769104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02230833 177.11769104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02230834 177.11772156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02230835 177.11772156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02230836 177.11775208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02230837 177.11776733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02230838 177.11778259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02230839 177.11778259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02230840 177.11781311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02230841 177.11781311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02230842 177.11784363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02230843 177.11784363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02230844 177.11785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02230845 177.11785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02230846 177.11788940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02230847 177.11788940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02230848 177.11791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02230849 177.11791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02230850 177.11793518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02230851 177.11795044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02230852 177.11798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02230853 177.11798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02230854 177.11799622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02230855 177.11799622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02230856 177.11802673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02230857 177.11802673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02230858 177.11805725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02230859 177.11805725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02230860 177.11807251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02230861 177.11808777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02230862 177.11811829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02230863 177.11811829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02230864 177.11814880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02230865 177.11814880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02230866 177.11816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02230867 177.11816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02230868 177.11819458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02230869 177.11819458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02230870 177.11822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02230871 177.11824036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02230872 177.11824036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02230873 177.11825562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02230874 177.11828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02230875 177.11828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02230876 177.11831665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02230877 177.11831665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02230878 177.11833191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02230879 177.11833191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02230880 177.11836243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02230881 177.11836243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02230882 177.11839294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02230883 177.11839294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02230884 177.11840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02230885 177.11840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02230886 177.11843872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02230887 177.11843872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02230888 177.11846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02230889 177.11846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02230890 177.11849976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02230891 177.11849976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02230892 177.11853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02230893 177.11853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02230894 177.11856079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02230895 177.11856079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02230896 177.11857605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02230897 177.11857605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02230898 177.11860657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02230899 177.11862183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02230900 177.11863708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02230901 177.11863708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02230902 177.11866760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02230903 177.11866760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02230904 177.11869812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02230905 177.11869812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02230906 177.11871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02230907 177.11872864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02230908 177.11874390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02230909 177.11875916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02230910 177.11878967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02230911 177.11878967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02230912 177.11880493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02230913 177.11880493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02234816 177.17309570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -02234817 177.17309570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -02234818 177.17312622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -02234819 177.17312622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -02234820 177.17314148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -02234821 177.17314148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -02234822 177.17317200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -02234823 177.17317200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -02234824 177.17320251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -02234825 177.17320251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -02234826 177.17323303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -02234827 177.17323303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -02234828 177.17326355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -02234829 177.17326355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -02234830 177.17327881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -02234831 177.17327881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -02234832 177.17330933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -02234833 177.17330933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -02234834 177.17333984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -02234835 177.17335510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -02234836 177.17337036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -02234837 177.17337036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -02234838 177.17340088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -02234839 177.17340088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -02234840 177.17343140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -02234841 177.17343140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -02234842 177.17344666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -02234843 177.17344666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -02234844 177.17347717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -02234845 177.17347717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -02234846 177.17350769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -02234847 177.17352295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -02234848 177.17353821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -02234849 177.17353821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -02234850 177.17356873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -02234851 177.17356873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -02234852 177.17359924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -02234853 177.17359924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -02234854 177.17361450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -02234855 177.17361450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -02234856 177.17364502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -02234857 177.17366028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -02234858 177.17369080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -02234859 177.17369080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -02239506 177.23840332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15948 -02239507 177.23840332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15948 -02239508 177.23841858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15958 -02239509 177.23843384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15958 -02239510 177.23844910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15968 -02239511 177.23846436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15968 -02239512 177.23849487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15978 -02239513 177.23849487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15978 -02239514 177.23851013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15988 -02239515 177.23851013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15988 -02239516 177.23854065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15998 -02239517 177.23854065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15998 -02239518 177.23857117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -02239519 177.23857117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -02239520 177.23858643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b8 -02239521 177.23858643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b8 -02239522 177.23861694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -02239523 177.23861694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -02239524 177.23864746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -02239525 177.23866272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -02239526 177.23867798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -02239527 177.23867798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -02239528 177.23870850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -02239529 177.23870850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -02239530 177.23873901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -02239531 177.23873901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -02239532 177.23875427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -02239533 177.23875427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -02239534 177.23878479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a28 -02239535 177.23880005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a28 -02239536 177.23881531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a38 -02239537 177.23881531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a38 -02239538 177.23884583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a48 -02239539 177.23884583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a48 -02239540 177.23887634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a58 -02239541 177.23887634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a58 -02239542 177.23889160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a68 -02239543 177.23889160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a68 -02239544 177.23892212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a78 -02239545 177.23892212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a78 -02239546 177.23895264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a88 -02239547 177.23896790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a88 -02239548 177.23898315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a98 -02239549 177.23898315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a98 -02257580 177.48834229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd8 -02257581 177.48834229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd8 -02257582 177.48837280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de8 -02257583 177.48837280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de8 -02257584 177.48840332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df8 -02257585 177.48840332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df8 -02257586 177.48843384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e08 -02257587 177.48843384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e08 -02257588 177.48846436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e18 -02257589 177.48846436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e18 -02257590 177.48847961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e28 -02257591 177.48847961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e28 -02257592 177.48851013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e38 -02257593 177.48852539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e38 -02257594 177.48855591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e48 -02257595 177.48855591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e48 -02257596 177.48857117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -02257597 177.48857117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -02257598 177.48860168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -02257599 177.48860168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -02257600 177.48863220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -02257601 177.48863220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -02257602 177.48864746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -02257603 177.48866272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -02257604 177.48869324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -02257605 177.48869324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -02257606 177.48872375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea8 -02257607 177.48872375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea8 -02257608 177.48873901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb8 -02257609 177.48873901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb8 -02257610 177.48876953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec8 -02257611 177.48876953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec8 -02257612 177.48880005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed8 -02257613 177.48880005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed8 -02257614 177.48881531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee8 -02257615 177.48883057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee8 -02257616 177.48886108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef8 -02257617 177.48886108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef8 -02257618 177.48887634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f08 -02257619 177.48887634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f08 -02257620 177.48890686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f18 -02257621 177.48890686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f18 -02257622 177.48893738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f28 -02257623 177.48893738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f28 -02262122 177.55152893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bc8 -02262123 177.55152893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bc8 -02262124 177.55155945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bd8 -02262125 177.55155945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bd8 -02262126 177.55157471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41be8 -02262127 177.55157471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41be8 -02262128 177.55160522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bf8 -02262129 177.55160522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bf8 -02262130 177.55163574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c08 -02262131 177.55163574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c08 -02262132 177.55166626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c18 -02262133 177.55166626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c18 -02262134 177.55169678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c28 -02262135 177.55169678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c28 -02262136 177.55171204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c38 -02262137 177.55171204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c38 -02262138 177.55174255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c48 -02262139 177.55174255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c48 -02262140 177.55177307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c58 -02262141 177.55178833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c58 -02262142 177.55180359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c68 -02262143 177.55180359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c68 -02262144 177.55183411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c78 -02262145 177.55183411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c78 -02262146 177.55186462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c88 -02262147 177.55186462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c88 -02262148 177.55187988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c98 -02262149 177.55187988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c98 -02262150 177.55191040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca8 -02262151 177.55192566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca8 -02262152 177.55194092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb8 -02262153 177.55195618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb8 -02262154 177.55197144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc8 -02262155 177.55197144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc8 -02262156 177.55200195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd8 -02262157 177.55200195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd8 -02262158 177.55203247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce8 -02262159 177.55203247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce8 -02262160 177.55204773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf8 -02262161 177.55204773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf8 -02262162 177.55207825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d08 -02262163 177.55207825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d08 -02262164 177.55210876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d18 -02262165 177.55210876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d18 -02268222 177.63621521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -02268223 177.63621521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -02268224 177.63623047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -02268225 177.63623047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -02268226 177.63626099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -02268227 177.63626099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -02268228 177.63629150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -02268229 177.63630676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -02268230 177.63630676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa8 -02268231 177.63632202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa8 -02268232 177.63635254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab8 -02268233 177.63635254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab8 -02268234 177.63638306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac8 -02268235 177.63638306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac8 -02268236 177.63639832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad8 -02268237 177.63639832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad8 -02268238 177.63642883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae8 -02268239 177.63642883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae8 -02268240 177.63645935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf8 -02268241 177.63645935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf8 -02268242 177.63647461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db08 -02268243 177.63647461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db08 -02268244 177.63650513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db18 -02268245 177.63650513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db18 -02268246 177.63653564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db28 -02268247 177.63653564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db28 -02268248 177.63655090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db38 -02268249 177.63655090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db38 -02268250 177.63658142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db48 -02268251 177.63659668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db48 -02268252 177.63661194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db58 -02268253 177.63662720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db58 -02268254 177.63664246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db68 -02268255 177.63664246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db68 -02268256 177.63667297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db78 -02268257 177.63667297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db78 -02268258 177.63670349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db88 -02268259 177.63670349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db88 -02268260 177.63671875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db98 -02268261 177.63671875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db98 -02268262 177.63674927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba8 -02268263 177.63674927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba8 -02268264 177.63677979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb8 -02268265 177.63677979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb8 -02270872 178.01838684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02270873 178.01838684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02270874 178.01841736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02270875 178.01841736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02270876 178.01844788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02270877 178.01844788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02270878 178.01846313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02270879 178.01846313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02270880 178.01849365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02270881 178.01850891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02270882 178.01853943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02270883 178.01853943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02270884 178.01855469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02270885 178.01855469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02270886 178.01858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02270887 178.01858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02270888 178.01861572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02270889 178.01861572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02270890 178.01863098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02270891 178.01864624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02270892 178.01866150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02270893 178.01867676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02270894 178.01870728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02270895 178.01870728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02270896 178.01872253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02270897 178.01872253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02270898 178.01875305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02270899 178.01875305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02270900 178.01878357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02270901 178.01878357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02270902 178.01879883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02270903 178.01879883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02270904 178.01882935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02270905 178.01884460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02270906 178.01885986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02270907 178.01885986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02270908 178.01889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02270909 178.01889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02270910 178.01892090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02270911 178.01892090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02270912 178.01895142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02270913 178.01895142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02270914 178.01898193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02270915 178.01898193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02270916 178.01901245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02270917 178.01901245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02270918 178.01902771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02270919 178.01902771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02270920 178.01905823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02270921 178.01905823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02270922 178.01908875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02270923 178.01910400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02270924 178.01911926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02270925 178.01911926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02270926 178.01914978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02270927 178.01914978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02270928 178.01918030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02270929 178.01918030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02270930 178.01919556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02270931 178.01921082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02270932 178.01924133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02270933 178.01924133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02270934 178.01925659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02270935 178.01925659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02270936 178.01928711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02270937 178.01928711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02270938 178.01931763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02270939 178.01931763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02270940 178.01934814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02270941 178.01934814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02270942 178.01936340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02270943 178.01936340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02270944 178.01939392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02270945 178.01939392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02270946 178.01942444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02270947 178.01942444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02270948 178.01943970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02270949 178.01945496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02270950 178.01947021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02270951 178.01948547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02270952 178.01950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02270953 178.01950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02270954 178.01953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02270955 178.01953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02270956 178.01956177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02270957 178.01956177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02270958 178.01957703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02270959 178.01959229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02272960 178.04815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02272961 178.04815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02272962 178.04817200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02272963 178.04817200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02272964 178.04820251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02272965 178.04820251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02272966 178.04823303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02272967 178.04823303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02272968 178.04826355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02272969 178.04826355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02272970 178.04827881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02272971 178.04827881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02272972 178.04830933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02272973 178.04830933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02272974 178.04833984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02272975 178.04833984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02272976 178.04835510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02272977 178.04837036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02272978 178.04840088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02272979 178.04840088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02272980 178.04841614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02272981 178.04841614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02272982 178.04844666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02272983 178.04844666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02272984 178.04847717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02272985 178.04847717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02272986 178.04849243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02272987 178.04849243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02272988 178.04852295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02272989 178.04852295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02272990 178.04855347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02272991 178.04855347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02272992 178.04856873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02272993 178.04856873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02272994 178.04862976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02272995 178.04862976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02272996 178.04866028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02272997 178.04866028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02272998 178.04869080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02272999 178.04869080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02273000 178.04872131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02273001 178.04873657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02273002 178.04882813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02273003 178.04882813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02279153 178.13619995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11308 -02279154 178.13623047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11318 -02279155 178.13623047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11318 -02279156 178.13626099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11328 -02279157 178.13626099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11328 -02279158 178.13627625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11338 -02279159 178.13629150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11338 -02279160 178.13630676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11348 -02279161 178.13632202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11348 -02279162 178.13635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11358 -02279163 178.13635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11358 -02279164 178.13636780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11368 -02279165 178.13636780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11368 -02279166 178.13639832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11378 -02279167 178.13639832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11378 -02279168 178.13642883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11388 -02279169 178.13642883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11388 -02279170 178.13644409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11398 -02279171 178.13644409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11398 -02279172 178.13647461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a8 -02279173 178.13647461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a8 -02279174 178.13650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b8 -02279175 178.13650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b8 -02279176 178.13652039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c8 -02279177 178.13652039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c8 -02279178 178.13655090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d8 -02279179 178.13656616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d8 -02279180 178.13658142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e8 -02279181 178.13658142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e8 -02279182 178.13661194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f8 -02279183 178.13661194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f8 -02279184 178.13664246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11408 -02279185 178.13664246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11408 -02279186 178.13667297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11418 -02279187 178.13667297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11418 -02279188 178.13668823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11428 -02279189 178.13668823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11428 -02279190 178.13671875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11438 -02279191 178.13671875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11438 -02279192 178.13674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11448 -02279193 178.13674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11448 -02279194 178.13676453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11458 -02279195 178.13676453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11458 -02279196 178.13679504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11468 -02283970 178.20329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a998 -02283971 178.20329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a998 -02283972 178.20330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a8 -02283973 178.20330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a8 -02283974 178.20333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b8 -02283975 178.20333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b8 -02283976 178.20336914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c8 -02283977 178.20338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c8 -02283978 178.20339966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d8 -02283979 178.20339966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d8 -02283980 178.20343018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e8 -02283981 178.20343018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e8 -02283982 178.20346069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f8 -02283983 178.20346069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f8 -02283984 178.20347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa08 -02283985 178.20347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa08 -02283986 178.20350647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa18 -02283987 178.20350647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa18 -02283988 178.20353699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa28 -02283989 178.20355225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa28 -02283990 178.20356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa38 -02283991 178.20356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa38 -02283992 178.20359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa48 -02283993 178.20359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa48 -02283994 178.20362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa58 -02283995 178.20362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa58 -02283996 178.20364380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -02283997 178.20364380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -02283998 178.20367432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -02283999 178.20368958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -02284000 178.20370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -02284001 178.20370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -02284002 178.20373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -02284003 178.20373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -02284004 178.20376587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -02284005 178.20376587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -02284006 178.20379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -02284007 178.20379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -02284008 178.20381165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -02284009 178.20382690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -02284010 178.20385742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -02284011 178.20385742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -02284012 178.20387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -02284013 178.20387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -02289372 178.27995300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25268 -02289373 178.27995300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25268 -02289374 178.27996826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25278 -02289375 178.27996826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25278 -02289376 178.27999878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25288 -02289377 178.27999878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25288 -02289378 178.28002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25298 -02289379 178.28002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25298 -02289380 178.28004456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a8 -02289381 178.28005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a8 -02289382 178.28009033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b8 -02289383 178.28009033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b8 -02289384 178.28012085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c8 -02289385 178.28012085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c8 -02289386 178.28013611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d8 -02289387 178.28013611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d8 -02289388 178.28016663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e8 -02289389 178.28016663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e8 -02289390 178.28019714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f8 -02289391 178.28021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f8 -02289392 178.28022766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25308 -02289393 178.28022766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25308 -02289394 178.28025818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25318 -02289395 178.28025818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25318 -02289396 178.28028870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25328 -02289397 178.28028870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25328 -02289398 178.28030396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25338 -02289399 178.28030396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25338 -02289400 178.28033447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25348 -02289401 178.28034973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25348 -02289402 178.28036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25358 -02289403 178.28036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25358 -02289404 178.28039551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25368 -02289405 178.28039551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25368 -02289406 178.28042603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25378 -02289407 178.28042603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25378 -02289408 178.28044128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25388 -02289409 178.28044128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25388 -02289410 178.28047180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25398 -02289411 178.28048706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25398 -02289412 178.28051758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x253a8 -02289413 178.28051758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x253a8 -02289414 178.28053284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x253b8 -02289415 178.28053284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x253b8 -02303810 178.48744202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41598 -02303811 178.48744202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41598 -02303812 178.48747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a8 -02303813 178.48747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a8 -02303814 178.48751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b8 -02303815 178.48751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b8 -02303816 178.48753357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c8 -02303817 178.48753357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c8 -02303818 178.48756409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d8 -02303819 178.48756409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d8 -02303820 178.48759460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e8 -02303821 178.48759460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e8 -02303822 178.48760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f8 -02303823 178.48762512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f8 -02303824 178.48765564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41608 -02303825 178.48765564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41608 -02303826 178.48768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41618 -02303827 178.48768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41618 -02303828 178.48770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41628 -02303829 178.48770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41628 -02303830 178.48773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41638 -02303831 178.48773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41638 -02303832 178.48776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41648 -02303833 178.48776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41648 -02303834 178.48779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41658 -02303835 178.48779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41658 -02303836 178.48782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41668 -02303837 178.48782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41668 -02303838 178.48785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41678 -02303839 178.48785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41678 -02303840 178.48786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41688 -02303841 178.48786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41688 -02303842 178.48789978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41698 -02303843 178.48789978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41698 -02303844 178.48793030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a8 -02303845 178.48793030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a8 -02303846 178.48796082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b8 -02303847 178.48796082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b8 -02303848 178.48799133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c8 -02303849 178.48799133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c8 -02303850 178.48800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d8 -02303851 178.48800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d8 -02303852 178.48803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e8 -02303853 178.48803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e8 -02307892 178.54598999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49528 -02307893 178.54598999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49528 -02307894 178.54602051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49538 -02307895 178.54602051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49538 -02307896 178.54605103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49548 -02307897 178.54605103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49548 -02307898 178.54606628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49558 -02307899 178.54606628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49558 -02307900 178.54609680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49568 -02307901 178.54609680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49568 -02307902 178.54612732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -02307903 178.54612732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -02307904 178.54615784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -02307905 178.54615784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -02307906 178.54617310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -02307907 178.54617310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -02307908 178.54620361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a8 -02307909 178.54620361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a8 -02307910 178.54623413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b8 -02307911 178.54623413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b8 -02307912 178.54624939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c8 -02307913 178.54626465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c8 -02307914 178.54627991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d8 -02307915 178.54629517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d8 -02307916 178.54631042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e8 -02307917 178.54631042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e8 -02307918 178.54634094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f8 -02307919 178.54634094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f8 -02307920 178.54637146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49608 -02307921 178.54637146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49608 -02307922 178.54638672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49618 -02307923 178.54638672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49618 -02307924 178.54641724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49628 -02307925 178.54641724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49628 -02307926 178.54644775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49638 -02307927 178.54644775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49638 -02307928 178.54646301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49648 -02307929 178.54646301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49648 -02307930 178.54649353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49658 -02307931 178.54649353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49658 -02307932 178.54652405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49668 -02307933 178.54653931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49668 -02307934 178.54655457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49678 -02307935 178.54655457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49678 -02312758 178.72840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02312759 178.92527771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02312760 178.94738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02312761 178.94740295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02312762 179.77413940 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312763 179.77420044 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312764 179.77421570 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02312765 179.77423096 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02312766 179.77436829 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312767 179.77436829 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02312768 179.77442932 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312769 179.77444458 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02312770 180.94851685 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02312771 180.96630859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02312772 180.96632385 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02312773 182.28085327 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312774 182.28089905 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312775 182.28091431 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02312776 182.28092957 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02312777 182.28106689 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312778 182.28106689 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02312779 182.28112793 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02312780 182.28115845 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02312781 182.67315674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02312782 182.67315674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02312783 182.67317200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02312784 182.67318726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02312785 182.67321777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02312786 182.67321777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02312787 182.67324829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02312788 182.67324829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02312789 182.67326355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02312790 182.67326355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02312791 182.67329407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02312792 182.67329407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02312793 182.67332458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02312794 182.67332458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02312795 182.67335510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02312796 182.67335510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02312797 182.67338562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02312798 182.67338562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02312799 182.67340088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02312800 182.67340088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02312801 182.67343140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02312802 182.67343140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02312803 182.67346191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02312804 182.67347717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02312805 182.67349243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02312806 182.67349243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02312807 182.67352295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02312808 182.67352295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02312809 182.67355347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02312810 182.67355347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02312811 182.67356873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02312812 182.67356873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02312813 182.67359924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02312814 182.67359924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02312815 182.67362976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02312816 182.67364502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02312817 182.67366028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02312818 182.67366028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02312819 182.67369080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02312820 182.67369080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02312821 182.67372131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02312822 182.67372131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02312823 182.67373657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02312824 182.67375183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02312825 182.67378235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02312826 182.67378235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02312827 182.67379761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02312828 182.67379761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02312829 182.67382813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02312830 182.67382813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02312831 182.67385864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02312832 182.67385864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02312833 182.67388916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02312834 182.67388916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02312835 182.67391968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02312836 182.67391968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02312837 182.67395020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02312838 182.67395020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02312839 182.67396545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02312840 182.67396545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02312841 182.67399597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02312842 182.67399597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02312843 182.67402649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02312844 182.67404175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02312845 182.67405701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02312846 182.67405701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02312847 182.67408752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02312848 182.67408752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02312849 182.67411804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02312850 182.67411804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02312851 182.67413330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02312852 182.67413330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02312853 182.67416382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02312854 182.67416382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02312855 182.67419434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02312856 182.67419434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02312857 182.67422485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02312858 182.67422485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02312859 182.67425537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02312860 182.67425537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02312861 182.67428589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02312862 182.67428589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02312863 182.67430115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02312864 182.67430115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02312865 182.67433167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02312866 182.67434692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02312867 182.67436218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02312868 182.67436218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02312869 182.67439270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02312870 182.67439270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02312871 182.67442322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02312872 182.67442322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02312873 182.67443848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02312874 182.67443848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02312875 182.67448425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02312876 182.67448425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02312877 182.67451477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02312878 182.67451477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02312879 182.67456055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02312880 182.67456055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02312881 182.67459106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02312882 182.67459106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02312883 182.67460632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02312884 182.67460632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02312885 182.67463684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02312886 182.67463684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02312887 182.67466736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02312888 182.67468262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02312889 182.67469788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02312890 182.67469788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02312891 182.67472839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02312892 182.67472839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02312893 182.67475891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02312894 182.67475891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02312895 182.67477417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02312896 182.67477417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02312897 182.67480469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02312898 182.67481995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02312899 182.67483521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02312900 182.67483521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02312901 182.67486572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02312902 182.67486572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02312903 182.67489624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02312904 182.67489624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02312905 182.67494202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02312906 182.67494202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02312907 182.67497253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02312908 182.67497253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02312909 182.67498779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02312910 182.67498779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02312911 182.67501831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02312912 182.67501831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02312913 182.67504883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02312914 182.67506409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02312915 182.67507935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02312916 182.67507935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02312917 182.67510986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02312918 182.67510986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02312919 182.67514038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02312920 182.67514038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02312921 182.67515564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02312922 182.67515564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02312923 182.67518616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02312924 182.67520142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02312925 182.67523193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02312926 182.67523193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02312927 182.67524719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02312928 182.67524719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02312929 182.67527771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02312930 182.67527771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02312931 182.67530823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02312932 182.67530823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02312933 182.67532349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02312934 182.67533875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02312935 182.67536926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02312936 182.67536926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02312937 182.67538452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02312938 182.67538452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02312939 182.67541504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02312940 182.67541504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02312941 182.67544556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02312942 182.67544556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02312943 182.67547607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02312944 182.67547607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02312945 182.67549133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02312946 182.67550659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02312947 182.67553711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02312948 182.67553711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02312949 182.67555237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02312950 182.67555237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02312951 182.67558289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02312952 182.67558289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02312953 182.67561340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02312954 182.67561340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02312955 182.67562866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02312956 182.67564392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02312957 182.67567444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02312958 182.67567444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02312959 182.67570496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02312960 182.67570496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02312961 182.67572021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02312962 182.67572021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02312963 182.67575073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02312964 182.67576599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02312965 182.67578125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02312966 182.67578125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02312967 182.67581177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02312968 182.67581177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02312969 182.67584229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02312970 182.67584229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02312971 182.67587280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02312972 182.67587280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02312973 182.67588806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02312974 182.67588806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02312975 182.67591858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02312976 182.67593384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02312977 182.67594910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02312978 182.67594910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02312979 182.67597961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02312980 182.67597961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02312981 182.67601013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02312982 182.67601013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02312983 182.67602539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02312984 182.67602539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02312985 182.67605591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02312986 182.67607117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02312987 182.67610168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02312988 182.67610168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02312989 182.67611694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02312990 182.67611694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02312991 182.67614746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02312992 182.67614746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02312993 182.67617798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02312994 182.67617798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02312995 182.67619324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02312996 182.67620850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02312997 182.67623901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02312998 182.67623901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02312999 182.67626953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02313000 182.67626953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02313001 182.67628479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02313002 182.67628479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02313003 182.67631531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02313004 182.67631531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02313005 182.67634583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02313006 182.67634583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02313007 182.67637634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02313008 182.67637634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02313009 182.67640686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02313010 182.67640686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02313011 182.67642212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02313012 182.67642212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02313013 182.67645264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02313014 182.67645264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02313015 182.67649841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02313016 182.67649841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02313017 182.67652893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02313018 182.67652893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02313019 182.67655945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02313020 182.67655945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02313021 182.67658997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02313022 182.67658997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02313023 182.67662048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02313024 182.67662048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02313025 182.67665100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02313026 182.67665100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02313027 182.67666626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02313028 182.67666626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02313029 182.67669678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02313030 182.67669678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02313031 182.67672729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02313032 182.67674255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02313033 182.67675781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02313034 182.67675781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02313035 182.67678833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02313036 182.67678833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02313037 182.67681885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02313038 182.67681885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02313039 182.67683411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02313040 182.67683411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02313041 182.67686462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02313042 182.67687988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02313043 182.67689514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02313044 182.67689514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02313045 182.67692566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02313046 182.67692566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02313047 182.67695618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02313048 182.67695618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02313049 182.67698669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02313050 182.67698669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02313051 182.67700195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02313052 182.67701721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02313053 182.67704773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02313054 182.67704773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02313055 182.67706299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02313056 182.67706299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02313057 182.67709351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02313058 182.67709351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02313059 182.67712402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02313060 182.67712402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02313061 182.67713928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02313062 182.67715454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02313063 182.67718506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02313064 182.67718506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02313065 182.67721558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02313066 182.67721558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02313067 182.67723083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02313068 182.67723083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02313069 182.67726135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02313070 182.67726135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02313071 182.67729187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02313072 182.67729187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02313073 182.67730713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02313074 182.67732239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02313075 182.67735291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02313076 182.67735291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02313077 182.67738342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02313078 182.67738342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02313079 182.67739868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02313080 182.67739868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02313081 182.67742920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02313082 182.67742920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02313083 182.67745972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02313084 182.67745972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02313085 182.67749023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02313086 182.67749023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02313087 182.67752075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02313088 182.67752075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02313089 182.67753601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02313090 182.67753601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02313091 182.67756653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02313092 182.67756653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02313093 182.67759705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02313094 182.67761230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02313095 182.67762756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02313096 182.67762756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02313097 182.67765808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02313098 182.67765808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02313099 182.67768860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02313100 182.67768860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02313101 182.67770386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02313102 182.67770386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02313103 182.67773438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02313104 182.67773438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02313105 182.67776489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02313106 182.67778015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02313107 182.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02313108 182.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02313109 182.67782593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02313110 182.67782593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02313111 182.67785645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02313112 182.67785645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02313113 182.67787170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02313114 182.67787170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02313115 182.67790222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02313116 182.67791748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02313117 182.67793274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02313118 182.67793274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02313119 182.67796326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02313120 182.67796326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02313121 182.67799377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02313122 182.67799377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02313123 182.67800903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02313124 182.67800903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02313125 182.67803955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02313126 182.67805481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02313127 182.67808533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02313128 182.67808533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02313129 182.67810059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02313130 182.67810059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02313131 182.67813110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02313132 182.67813110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02313133 182.67816162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02313134 182.67816162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02313135 182.67817688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02313136 182.67819214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02313137 182.67822266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02313138 182.67822266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02313139 182.67825317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02313140 182.67825317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02313141 182.67826843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02313142 182.67826843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02313143 182.67829895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02313144 182.67829895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02313145 182.67832947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02313146 182.67832947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02313147 182.67834473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02313148 182.67835999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02313149 182.67839050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02313150 182.67839050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02313151 182.67840576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02313152 182.67840576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02313153 182.67843628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02313154 182.67843628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02313155 182.67846680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02313156 182.67846680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02313157 182.67849731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02313158 182.67851257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02313159 182.67854309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02313160 182.67854309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02313161 182.67857361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02313162 182.67857361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02313163 182.67858887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02313164 182.67860413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02313165 182.67863464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02313166 182.67863464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02313167 182.67864990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02313168 182.67864990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02313169 182.67868042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02313170 182.67868042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02313171 182.67871094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02313172 182.67872620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02313173 182.67874146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02313174 182.67874146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02313175 182.67877197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02313176 182.67877197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02313177 182.67880249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02313178 182.67880249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02313179 182.67881775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02313180 182.67881775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02313181 182.67884827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02313182 182.67886353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02313183 182.67887878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02313184 182.67887878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02313185 182.67890930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02313186 182.67890930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02313187 182.67893982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02313188 182.67893982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02313189 182.67897034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02313190 182.67897034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02313191 182.67898560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02313192 182.67900085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02313193 182.67903137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02313194 182.67903137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02313195 182.67904663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02313196 182.67904663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02313197 182.67907715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02313198 182.67907715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02313199 182.67910767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02313200 182.67910767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02313201 182.67912292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02313202 182.67912292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02313203 182.67915344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02313204 182.67916870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02313205 182.67919922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02313206 182.67919922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02313207 182.67921448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02313208 182.67921448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02313209 182.67924500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02313210 182.67924500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02313211 182.67927551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02313212 182.67927551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02313213 182.67929077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02313214 182.67930603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02313215 182.67933655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02313216 182.67933655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02313217 182.67936707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02313218 182.67936707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02313219 182.67938232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02313220 182.67938232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02313221 182.67941284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02313222 182.67941284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02313223 182.67944336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02313224 182.67944336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02313225 182.67947388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02313226 182.67947388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02313227 182.67950439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02313228 182.67950439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02313229 182.67951965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02313230 182.67951965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02313231 182.67955017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02313232 182.67955017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02313233 182.67958069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02313234 182.67959595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02313235 182.67961121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02313236 182.67961121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02313237 182.67964172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02313238 182.67964172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02313239 182.67967224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02313240 182.67967224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02313241 182.67968750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02313242 182.67968750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02313243 182.67971802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02313244 182.67973328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02313245 182.67976379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02313246 182.67976379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02313247 182.67977905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02313248 182.67977905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02313249 182.67980957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02313250 182.67980957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02313251 182.67984009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02313252 182.67984009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02313253 182.67985535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02313254 182.67985535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02313255 182.67988586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02313256 182.67990112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02313257 182.67991638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02313258 182.67991638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02313259 182.67994690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02313260 182.67994690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02313261 182.67997742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02313262 182.67997742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02313263 182.67999268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02313264 182.68000793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02313265 182.68003845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02313266 182.68003845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02313267 182.68006897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02313268 182.68006897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02313269 182.68008423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02313270 182.68008423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02313271 182.68011475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02313272 182.68011475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02313273 182.68014526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02313274 182.68016052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02313275 182.68017578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02313276 182.68017578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02313277 182.68020630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02313278 182.68020630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02313279 182.68023682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02313280 182.68023682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02313281 182.68025208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02313282 182.68025208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02313283 182.68028259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02313284 182.68029785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02313285 182.68031311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02313286 182.68031311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02313287 182.68034363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02313288 182.68034363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02313289 182.68037415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02313290 182.68037415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02313291 182.68038940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02313292 182.68038940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02313293 182.68041992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02313294 182.68041992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02313295 182.68045044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02313296 182.68046570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02313297 182.68048096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02313298 182.68048096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02313299 182.68052673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02313300 182.68054199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02313301 182.68055725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02313302 182.68055725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02313303 182.68058777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02313304 182.68058777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02313305 182.68061829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02313306 182.68061829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02313307 182.68063354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02313308 182.68063354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02313309 182.68066406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02313310 182.68067932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02313311 182.68070984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02313312 182.68070984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02313313 182.68072510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02313314 182.68072510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02313315 182.68075562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02313316 182.68075562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02313317 182.68078613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02313318 182.68078613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02313319 182.68080139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02313320 182.68081665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02313321 182.68084717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02313322 182.68084717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02313323 182.68087769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02313324 182.68087769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02313325 182.68089294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02313326 182.68089294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02313327 182.68092346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02313328 182.68092346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02313329 182.68095398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02313330 182.68095398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02313331 182.68098450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02313332 182.68098450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02313333 182.68101501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02313334 182.68101501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02313335 182.68103027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02313336 182.68103027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02313337 182.68106079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02313338 182.68106079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02313339 182.68109131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02313340 182.68110657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02313341 182.68112183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02313342 182.68112183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02313343 182.68115234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02313344 182.68115234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02313345 182.68118286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02313346 182.68118286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02313347 182.68119812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02313348 182.68119812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02313349 182.68122864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02313350 182.68124390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02313351 182.68127441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02313352 182.68127441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02313353 182.68128967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02313354 182.68128967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02313355 182.68132019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02313356 182.68132019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02313357 182.68135071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02313358 182.68135071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02313359 182.68136597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02313360 182.68138123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02313361 182.68141174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02313362 182.68141174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02313363 182.68142700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02313364 182.68142700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02313365 182.68145752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02313366 182.68145752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02313367 182.68148804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02313368 182.68148804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02313369 182.68150330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02313370 182.68150330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02313371 182.68153381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02313372 182.68154907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02313373 182.68157959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02313374 182.68157959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02313375 182.68159485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02313376 182.68159485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02313377 182.68162537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02313378 182.68162537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02313379 182.68165588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02313380 182.68165588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02313381 182.68167114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02313382 182.68168640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02313383 182.68171692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02313384 182.68171692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02313385 182.68174744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02313386 182.68174744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02313387 182.68176270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02313388 182.68176270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02313389 182.68179321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02313390 182.68179321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02313391 182.68182373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02313392 182.68182373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02313393 182.68185425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02313394 182.68185425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02313395 182.68188477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02313396 182.68188477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02313397 182.68190002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02313398 182.68190002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02313399 182.68193054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02313400 182.68193054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02313401 182.68196106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02313402 182.68197632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02313403 182.68199158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02313404 182.68199158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02313405 182.68202209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02313406 182.68202209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02313407 182.68205261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02313408 182.68205261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02313409 182.68206787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02313410 182.68206787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02313411 182.68209839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02313412 182.68209839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02313413 182.68212891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02313414 182.68214417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02313415 182.68215942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02313416 182.68215942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02313417 182.68218994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02313418 182.68218994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02313419 182.68222046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02313420 182.68222046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02313421 182.68223572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02313422 182.68223572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02313423 182.68228149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02313424 182.68228149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02313425 182.68229675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02313426 182.68231201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02313427 182.68234253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02313428 182.68234253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02313429 182.68237305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02313430 182.68237305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02313431 182.68238831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02313432 182.68238831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02313433 182.68241882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02313434 182.68241882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02313435 182.68244934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02313436 182.68246460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02313437 182.68247986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02313438 182.68247986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02313439 182.68251038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02313440 182.68252563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02313441 182.68254089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02313442 182.68255615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02313443 182.68258667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02313444 182.68258667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02313445 182.68261719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02313446 182.68261719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02313447 182.68263245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02313448 182.68264771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02313449 182.68267822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02313450 182.68267822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02313451 182.68269348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02313452 182.68269348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02313453 182.68272400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02313454 182.68272400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02313455 182.68275452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02313456 182.68275452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02313457 182.68278503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02313458 182.68278503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02313459 182.68281555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02313460 182.68281555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02313461 182.68284607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02313462 182.68284607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02313463 182.68286133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02313464 182.68286133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02313465 182.68289185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02313466 182.68289185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02313467 182.68292236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02313468 182.68292236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02313469 182.68293762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02313470 182.68295288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02313471 182.68298340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02313472 182.68298340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02313473 182.68301392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02313474 182.68301392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02313475 182.68302917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02313476 182.68302917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02313477 182.68305969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02313478 182.68305969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02313479 182.68309021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02313480 182.68309021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02313481 182.68312073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02313482 182.68312073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02313483 182.68315125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02313484 182.68315125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02313485 182.68318176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02313486 182.68318176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02313487 182.68319702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02313488 182.68319702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02313489 182.68322754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02313490 182.68324280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02313491 182.68325806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02313492 182.68325806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02313493 182.68328857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02313494 182.68328857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02313495 182.68331909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02313496 182.68331909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02313497 182.68333435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02313498 182.68333435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02313499 182.68336487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02313500 182.68338013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02313501 182.68341064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02313502 182.68341064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02313503 182.68342590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02313504 182.68342590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02313505 182.68345642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02313506 182.68345642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02313507 182.68348694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02313508 182.68348694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02313509 182.68350220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02313510 182.68350220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02313511 182.68353271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02313512 182.68354797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02313513 182.68357849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02313514 182.68357849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02313515 182.68359375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02313516 182.68359375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02313517 182.68362427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02313518 182.68362427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02313519 182.68365479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02313520 182.68365479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02313521 182.68367004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02313522 182.68368530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02313523 182.68371582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02313524 182.68371582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02313525 182.68373108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02313526 182.68373108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02313527 182.68376160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02313528 182.68376160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02313529 182.68379211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02313530 182.68379211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02313531 182.68380737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02313532 182.68382263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02313533 182.68385315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02313534 182.68385315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02313535 182.68388367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02313536 182.68388367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02313537 182.68389893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02313538 182.68391418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02313539 182.68394470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02313540 182.68394470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02313541 182.68397522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02313542 182.68397522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02313543 182.68399048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02313544 182.68399048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02313545 182.68402100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02313546 182.68402100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02313547 182.68405151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02313548 182.68405151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02313549 182.68406677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02313550 182.68408203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02313551 182.68411255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02313552 182.68411255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02313553 182.68412781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02313554 182.68412781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02313555 182.68415833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02313556 182.68415833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02313557 182.68418884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02313558 182.68418884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02313559 182.68420410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02313560 182.68421936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02313561 182.68424988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02313562 182.68424988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02313563 182.68428040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02313564 182.68428040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02313565 182.68429565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02313566 182.68429565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02313567 182.68432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02313568 182.68432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02313569 182.68435669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02313570 182.68437195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02313571 182.68438721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02313572 182.68438721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02313573 182.68441772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02313574 182.68441772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02313575 182.68444824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02313576 182.68444824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02313577 182.68446350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02313578 182.68447876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02313579 182.68450928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02313580 182.68452454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02313581 182.68455505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02313582 182.68455505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02313583 182.68458557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02313584 182.68458557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02313585 182.68460083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02313586 182.68460083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02313587 182.68463135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02313588 182.68464661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02313589 182.68467712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02313590 182.68467712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02313591 182.68469238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02313592 182.68469238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02313593 182.68472290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02313594 182.68472290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02313595 182.68475342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02313596 182.68475342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02313597 182.68476868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02313598 182.68478394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02313599 182.68481445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02313600 182.68481445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02313601 182.68484497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02313602 182.68484497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02313603 182.68486023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02313604 182.68486023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02313605 182.68489075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02313606 182.68489075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02313607 182.68492126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02313608 182.68492126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02313609 182.68495178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02313610 182.68495178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02313611 182.68498230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02313612 182.68498230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02313613 182.68499756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02313614 182.68499756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02313615 182.68502808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02313616 182.68502808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02313617 182.68505859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02313618 182.68507385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02313619 182.68508911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02313620 182.68508911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02313621 182.68511963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02313622 182.68511963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02313623 182.68515015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02313624 182.68515015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02313625 182.68516541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02313626 182.68516541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02313627 182.68521118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02313628 182.68521118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02313629 182.68524170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02313630 182.68524170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02313631 182.68525696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02313632 182.68527222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02313633 182.68530273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02313634 182.68530273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02313635 182.68531799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02313636 182.68531799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02313637 182.68534851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02313638 182.68534851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02313639 182.68537903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02313640 182.68537903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02313641 182.68539429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02313642 182.68540955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02313643 182.68544006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02313644 182.68544006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02313645 182.68547058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02313646 182.68547058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02313647 182.68548584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02313648 182.68548584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02313649 182.68551636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02313650 182.68553162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02313651 182.68556213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02313652 182.68556213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02313653 182.68557739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02313654 182.68557739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02313655 182.68560791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02313656 182.68560791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02313657 182.68563843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02313658 182.68563843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02313659 182.68565369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02313660 182.68566895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02313661 182.68569946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02313662 182.68569946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02313663 182.68571472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02313664 182.68571472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02313665 182.68574524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02313666 182.68574524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02313667 182.68577576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02313668 182.68577576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02313669 182.68579102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02313670 182.68579102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02313671 182.68582153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02313672 182.68582153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02313673 182.68585205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02313674 182.68585205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02313675 182.68588257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02313676 182.68588257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02313677 182.68589783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02313678 182.68591309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02313679 182.68592834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02313680 182.68594360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02313681 182.68595886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02313682 182.68595886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02313683 182.68598938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02313684 182.68598938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02313685 182.68601990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02313686 182.68601990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02313687 182.68603516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02313688 182.68603516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02313689 182.68606567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02313690 182.68606567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02313691 182.68609619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02313692 182.68609619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02313693 182.68611145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02313694 182.68611145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02313695 182.68615723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02313696 182.68615723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02313697 182.68618774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02313698 182.68618774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02313699 182.68620300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02313700 182.68620300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02313701 182.68623352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02313702 182.68623352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02313703 182.68626404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02313704 182.68627930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02313705 182.68629456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02313706 182.68629456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02313707 182.68632507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02313708 182.68632507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02313709 182.68635559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02313710 182.68635559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02313711 182.68637085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02313712 182.68637085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02313713 182.68640137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02313714 182.68640137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02313715 182.68643188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02313716 182.68643188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02313717 182.68644714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02313718 182.68644714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02313719 182.68649292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02313720 182.68649292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02313721 182.68652344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02313722 182.68653870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02313723 182.68656921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02313724 182.68656921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02313725 182.68658447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02313726 182.68658447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02313727 182.68661499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02313728 182.68661499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02313729 182.68664551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02313730 182.68664551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02313731 182.68667603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02313732 182.68667603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02313733 182.68670654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02313734 182.68670654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02313735 182.68673706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02313736 182.68673706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02313737 182.68675232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02313738 182.68675232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02313739 182.68678284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02313740 182.68678284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02313741 182.68681335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02313742 182.68682861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02313743 182.68684387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02313744 182.68684387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02313745 182.68687439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02313746 182.68687439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02313747 182.68690491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02313748 182.68690491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02313749 182.68692017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02313750 182.68692017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02313751 182.68695068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02313752 182.68695068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02313753 182.68698120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02313754 182.68698120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02313755 182.68701172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02313756 182.68701172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02313757 182.68704224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02313758 182.68704224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02313759 182.68707275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02313760 182.68707275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02313761 182.68708801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02313762 182.68708801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02313763 182.68711853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02313764 182.68711853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02313765 182.68714905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02313766 182.68714905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02313767 182.68716431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02313768 182.68717957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02313769 182.68719482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02313770 182.68721008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02313771 182.68722534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02313772 182.68722534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02313773 182.68725586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02313774 182.68725586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02313775 182.68728638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02313776 182.68728638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02313777 182.68730164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02313778 182.68730164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02313779 182.68733215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02313780 182.68733215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02313781 182.68736267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02313782 182.68736267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02313783 182.68739319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02313784 182.68739319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02313785 182.68740845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02313786 182.68740845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02313787 182.68743896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02313788 182.68743896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02313789 182.68746948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02313790 182.68746948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02313791 182.68748474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02313792 182.68750000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02313793 182.68753052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02313794 182.68753052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02313795 182.68754578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02313796 182.68754578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02313797 182.68757629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02313798 182.68757629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02313799 182.68760681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02313800 182.68760681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02313801 182.68762207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02313802 182.68763733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02313803 182.68766785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02313804 182.68766785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02313805 182.68769836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02313806 182.68769836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02313807 182.68771362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02313808 182.68771362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02313809 182.68774414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02313810 182.68774414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02313811 182.68777466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02313812 182.68778992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02313813 182.68778992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02313814 182.68780518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02313815 182.68783569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02313816 182.68783569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02313817 182.68786621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02313818 182.68786621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02313819 182.68788147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02313820 182.68788147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02313821 182.68791199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02313822 182.68791199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02313823 182.68794250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02313824 182.68794250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02313825 182.68795776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02313826 182.68795776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02313827 182.68798828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02313828 182.68798828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02313829 182.68801880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02313830 182.68801880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02313831 182.68804932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02313832 182.68804932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02313833 182.68807983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02313834 182.68807983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02313835 182.68809509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02313836 182.68809509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02313837 182.68812561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02313838 182.68812561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02313839 182.68815613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02313840 182.68817139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02313841 182.68818665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02313842 182.68818665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02313843 182.68821716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02313844 182.68821716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02313845 182.68824768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02313846 182.68824768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02313847 182.68826294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02313848 182.68827820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02313849 182.68829346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02313850 182.68830872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02313851 182.68833923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02313852 182.68833923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02313853 182.68835449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02313854 182.68835449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02313855 182.68838501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02313856 182.68838501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02313857 182.68841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02313858 182.68841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02313859 182.68843079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02313860 182.68843079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02313861 182.68846130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02313862 182.68846130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02313863 182.68849182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02313864 182.68849182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02313865 182.68853760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02313866 182.68853760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02313867 182.68856812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02313868 182.68858337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02313869 182.68859863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02313870 182.68859863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02313871 182.68862915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02313872 182.68862915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02313873 182.68865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02313874 182.68865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02313875 182.68867493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02313876 182.68867493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02313877 182.68870544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02313878 182.68872070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02313879 182.68873596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02313880 182.68873596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02313881 182.68876648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02313882 182.68876648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02313883 182.68879700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02313884 182.68879700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02313885 182.68881226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02313886 182.68881226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02313887 182.68884277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02313888 182.68885803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02313889 182.68888855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02313890 182.68888855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02313891 182.68890381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02313892 182.68890381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02313893 182.68893433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02313894 182.68893433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02313895 182.68896484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02313896 182.68896484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02313897 182.68898010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02313898 182.68898010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02313899 182.68901062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02313900 182.68901062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02313901 182.68904114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02313902 182.68905640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02313903 182.68905640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02313904 182.68907166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02313905 182.68910217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02313906 182.68910217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02313907 182.68913269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02313908 182.68913269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02313909 182.68914795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02313910 182.68914795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02313911 182.68917847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02313912 182.68917847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02313913 182.68920898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02313914 182.68920898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02313915 182.68922424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02313916 182.68922424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02313917 182.68925476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02313918 182.68925476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02313919 182.68928528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02313920 182.68928528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02313921 182.68931580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02313922 182.68931580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02313923 182.68934631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02313924 182.68934631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02313925 182.68937683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02313926 182.68937683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02313927 182.68939209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02313928 182.68939209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02313929 182.68942261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02313930 182.68943787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02313931 182.68945313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02313932 182.68945313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02313933 182.68948364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02313934 182.68948364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02313935 182.68951416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02313936 182.68951416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02313937 182.68954468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02313938 182.68954468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02313939 182.68957520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02313940 182.68957520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02313941 182.68960571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02313942 182.68960571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02313943 182.68963623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02313944 182.68963623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02313945 182.68966675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02313946 182.68966675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02313947 182.68968201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02313948 182.68968201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02313949 182.68971252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02313950 182.68972778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02313951 182.68974304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02313952 182.68975830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02313953 182.68977356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02313954 182.68977356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02313955 182.68980408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02313956 182.68980408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02313957 182.68983459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02313958 182.68983459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02313959 182.68984985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02313960 182.68984985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02313961 182.68988037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02313962 182.68988037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02313963 182.68991089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02313964 182.68992615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02313965 182.68994141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02313966 182.68994141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02313967 182.68997192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02313968 182.68997192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02313969 182.69000244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02313970 182.69000244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02313971 182.69001770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02313972 182.69001770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02313973 182.69006348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02313974 182.69006348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02313975 182.69009399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02313976 182.69009399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02313977 182.69010925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02313978 182.69010925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02313979 182.69013977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02313980 182.69013977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02313981 182.69017029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02313982 182.69017029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02313983 182.69018555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02313984 182.69018555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02313985 182.69021606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02313986 182.69021606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02313987 182.69024658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02313988 182.69024658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02313989 182.69026184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02313990 182.69026184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02313991 182.69029236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02313992 182.69030762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02313993 182.69032288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02313994 182.69032288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02313995 182.69035339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02313996 182.69035339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02313997 182.69038391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02313998 182.69038391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02313999 182.69039917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02314000 182.69039917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02314001 182.69042969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02314002 182.69042969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02314003 182.69046021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02314004 182.69047546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02314005 182.69049072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02314006 182.69049072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02314007 182.69053650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02314008 182.69055176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02314009 182.69056702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02314010 182.69056702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02314011 182.69059753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02314012 182.69059753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02314013 182.69062805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02314014 182.69062805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02314015 182.69064331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02314016 182.69064331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02314017 182.69067383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02314018 182.69067383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02314019 182.69070435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02314020 182.69071960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02314021 182.69071960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02314022 182.69073486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02314023 182.69076538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02314024 182.69076538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02314025 182.69079590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02314026 182.69079590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02314027 182.69081116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02314028 182.69081116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02314029 182.69084167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02314030 182.69084167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02314031 182.69087219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02314032 182.69087219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02314033 182.69088745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02314034 182.69088745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02314035 182.69091797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02314036 182.69091797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02314037 182.69094849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02314038 182.69094849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02314039 182.69096375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02314040 182.69096375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02314041 182.69099426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02314042 182.69100952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02314043 182.69102478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02314044 182.69104004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02314045 182.69105530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02314046 182.69105530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02314047 182.69108582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02314048 182.69108582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02314049 182.69111633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02314050 182.69111633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02314051 182.69113159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02314052 182.69113159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02314053 182.69116211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02314054 182.69116211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02314055 182.69119263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02314056 182.69119263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02314057 182.69122314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02314058 182.69122314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02314059 182.69125366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02314060 182.69125366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02314061 182.69128418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02314062 182.69128418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02314063 182.69129944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02314064 182.69129944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02314065 182.69134521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02314066 182.69134521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02314067 182.69136047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02314068 182.69136047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02314069 182.69139099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02314070 182.69139099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02314071 182.69142151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02314072 182.69142151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02314073 182.69143677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02314074 182.69143677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02314075 182.69146729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02314076 182.69146729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02314077 182.69149780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02314078 182.69149780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02314079 182.69151306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02314080 182.69151306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02314081 182.69154358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02314082 182.69154358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02314083 182.69157410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02314084 182.69158936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02314085 182.69158936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02314086 182.69160461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02314087 182.69163513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02314088 182.69163513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02314089 182.69166565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02314090 182.69166565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02314091 182.69168091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02314092 182.69168091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02314093 182.69171143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02314094 182.69171143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02314095 182.69174194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02314096 182.69174194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02314097 182.69175720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02314098 182.69175720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02314099 182.69178772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02314100 182.69180298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02314101 182.69183350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02314102 182.69183350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02314103 182.69184875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02314104 182.69184875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02314105 182.69187927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02314106 182.69187927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02314107 182.69190979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02314108 182.69190979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02314109 182.69192505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02314110 182.69194031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02314111 182.69197083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02314112 182.69197083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02314113 182.69198608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02314114 182.69198608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02314115 182.69201660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02314116 182.69201660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02314117 182.69204712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02314118 182.69204712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02314119 182.69207764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02314120 182.69207764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02314121 182.69210815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02314122 182.69210815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02314123 182.69213867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02314124 182.69213867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02314125 182.69215393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02314126 182.69215393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02314127 182.69218445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02314128 182.69218445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02314129 182.69221497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02314130 182.69223022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02314131 182.69224548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02314132 182.69224548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02314133 182.69227600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02314134 182.69227600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02314135 182.69230652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02314136 182.69230652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02314137 182.69232178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02314138 182.69232178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02314139 182.69235229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02314140 182.69236755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02314141 182.69238281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02314142 182.69238281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02314143 182.69241333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02314144 182.69241333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02314145 182.69244385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02314146 182.69244385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02314147 182.69247437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02314148 182.69247437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02314149 182.69252014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02314150 182.69252014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02314151 182.69255066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02314152 182.69255066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02314153 182.69258118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02314154 182.69258118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02314155 182.69261169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02314156 182.69261169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02314157 182.69262695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02314158 182.69262695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02314159 182.69265747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02314160 182.69265747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02314161 182.69270325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02314162 182.69270325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02314163 182.69271851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02314164 182.69271851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02314165 182.69274902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02314166 182.69274902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02314167 182.69277954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02314168 182.69277954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02314169 182.69279480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02314170 182.69279480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02314171 182.69282532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02314172 182.69282532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02314173 182.69285583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02314174 182.69285583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02314175 182.69287109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02314176 182.69287109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02314177 182.69290161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02314178 182.69290161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02314179 182.69293213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02314180 182.69294739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02314181 182.69294739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02314182 182.69296265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02314183 182.69299316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02314184 182.69299316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02314185 182.69302368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02314186 182.69302368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02314187 182.69303894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02314188 182.69303894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02316986 182.73242188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -02316987 182.73245239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -02316988 182.73245239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -02316989 182.73249817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -02316990 182.73249817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -02316991 182.73255920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -02316992 182.73255920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -02316993 182.73258972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -02316994 182.73258972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -02316995 182.73262024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -02316996 182.73262024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -02316997 182.73265076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -02316998 182.73265076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -02316999 182.73266602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -02317000 182.73266602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -02317001 182.73269653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -02317002 182.73269653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -02317003 182.73272705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -02317004 182.73272705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -02317005 182.73274231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -02317006 182.73275757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -02317007 182.73278809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -02317008 182.73278809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -02317009 182.73281860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -02317010 182.73281860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -02317011 182.73283386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -02317012 182.73283386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -02317013 182.73286438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -02317014 182.73286438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -02317015 182.73289490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -02317016 182.73289490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -02317017 182.73292542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -02317018 182.73292542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -02317019 182.73295593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -02317020 182.73295593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -02317021 182.73298645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -02317022 182.73298645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -02317023 182.73300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -02317024 182.73300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -02317025 182.73303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -02317026 182.73304749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -02317027 182.73306274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -02317028 182.73306274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -02317029 182.73309326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -02349326 182.97772217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a828 -02349327 182.97772217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee60 -02349328 182.97772217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a828 -02349329 182.97772217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee60 -02349330 182.97773743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a838 -02349331 182.97773743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a838 -02349332 182.97775269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee70 -02349333 182.97775269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee70 -02349334 182.97776794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a848 -02349335 182.97778320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a848 -02349336 182.97778320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee80 -02349337 182.97778320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee80 -02349338 182.97779846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -02349339 182.97779846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -02349340 182.97779846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee90 -02349341 182.97779846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee90 -02349342 182.97782898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -02349343 182.97782898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -02349344 182.97782898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eea0 -02349345 182.97784424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eea0 -02349346 182.97785950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a878 -02349347 182.97785950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a878 -02349348 182.97787476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eeb0 -02349349 182.97787476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eeb0 -02349350 182.97787476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a888 -02349351 182.97787476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a888 -02349352 182.97789001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eec0 -02349353 182.97789001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eec0 -02349354 182.97790527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a898 -02349355 182.97790527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a898 -02349356 182.97792053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eed0 -02349357 182.97792053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eed0 -02349358 182.97793579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a8 -02349359 182.97793579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a8 -02349360 182.97795105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eee0 -02349361 182.97795105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eee0 -02349362 182.97795105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b8 -02349363 182.97796631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b8 -02349364 182.97798157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eef0 -02349365 182.97798157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eef0 -02349366 182.97799683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c8 -02349367 182.97799683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c8 -02349368 182.97801208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef00 -02349369 182.97801208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef00 -02357860 183.04051208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33158 -02357861 183.04051208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fd0 -02357862 183.04051208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33158 -02357863 183.04051208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fd0 -02357864 183.04054260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33168 -02357865 183.04055786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fe0 -02357866 183.04055786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33168 -02357867 183.04055786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fe0 -02357868 183.04057312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33178 -02357869 183.04057312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ff0 -02357870 183.04057312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33178 -02357871 183.04057312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ff0 -02357872 183.04060364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33188 -02357873 183.04060364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27000 -02357874 183.04060364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33188 -02357875 183.04060364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27000 -02357876 183.04063416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -02357877 183.04063416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -02357878 183.04063416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -02357879 183.04063416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -02357880 183.04066467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -02357881 183.04066467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -02357882 183.04066467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -02357883 183.04066467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -02357884 183.04069519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -02357885 183.04069519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -02357886 183.04069519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -02357887 183.04069519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -02357888 183.04071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -02357889 183.04071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -02357890 183.04071045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -02357891 183.04072571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -02357892 183.04074097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -02357893 183.04074097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -02357894 183.04075623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -02357895 183.04075623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -02357896 183.04078674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -02357897 183.04078674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -02357898 183.04078674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -02357899 183.04078674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -02357900 183.04080200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -02357901 183.04080200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -02357902 183.04080200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -02357903 183.04080200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -02368076 183.11576843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -02368077 183.11576843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d588 -02368078 183.11576843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -02368079 183.11576843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d588 -02368080 183.11581421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -02368081 183.11581421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d598 -02368082 183.11581421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -02368083 183.11581421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d598 -02368084 183.11584473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -02368085 183.11584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5a8 -02368086 183.11584473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -02368087 183.11584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5a8 -02368088 183.11585999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -02368089 183.11585999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5b8 -02368090 183.11585999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -02368091 183.11587524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5b8 -02368092 183.11590576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -02368093 183.11590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5c8 -02368094 183.11590576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -02368095 183.11590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5c8 -02368096 183.11593628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -02368097 183.11593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5d8 -02368098 183.11593628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -02368099 183.11593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5d8 -02368100 183.11595154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -02368101 183.11595154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5e8 -02368102 183.11595154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -02368103 183.11595154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5e8 -02368104 183.11598206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -02368105 183.11599731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5f8 -02368106 183.11599731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -02368107 183.11599731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5f8 -02368108 183.11601257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -02368109 183.11601257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d608 -02368110 183.11601257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -02368111 183.11601257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d608 -02368112 183.11604309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -02368113 183.11604309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d618 -02368114 183.11604309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -02368115 183.11604309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d618 -02368116 183.11607361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -02368117 183.11607361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d628 -02368118 183.11608887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -02368119 183.11608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d628 -02378742 183.19493103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a8 -02378743 183.19493103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -02378744 183.19493103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a8 -02378745 183.19493103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -02378746 183.19496155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b8 -02378747 183.19496155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b8 -02378748 183.19496155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -02378749 183.19497681 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -02378750 183.19497681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c8 -02378751 183.19497681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c8 -02378752 183.19499207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -02378753 183.19499207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -02378754 183.19500732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482d8 -02378755 183.19502258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482d8 -02378756 183.19502258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -02378757 183.19503784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -02378758 183.19505310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482e8 -02378759 183.19505310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482e8 -02378760 183.19505310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -02378761 183.19505310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -02378762 183.19506836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482f8 -02378763 183.19506836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x482f8 -02378764 183.19508362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -02378765 183.19508362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -02378766 183.19509888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48308 -02378767 183.19509888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48308 -02378768 183.19512939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -02378769 183.19512939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -02378770 183.19512939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48318 -02378771 183.19512939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48318 -02378772 183.19514465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -02378773 183.19514465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48328 -02378774 183.19514465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -02378775 183.19514465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48328 -02378776 183.19517517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48338 -02378777 183.19517517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48338 -02378778 183.19519043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -02378779 183.19519043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -02378780 183.19520569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48348 -02378781 183.19520569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48348 -02378782 183.19520569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -02378783 183.19520569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -02378784 183.19523621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48358 -02378785 183.19523621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48358 -02390047 183.28515625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c0 -02390048 183.28518677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d0 -02390049 183.28518677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d0 -02390050 183.28520203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e0 -02390051 183.28521729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e0 -02390052 183.28524780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f0 -02390053 183.28524780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f0 -02390054 183.28527832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46200 -02390055 183.28527832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46200 -02390056 183.28529358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46210 -02390057 183.28529358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46210 -02390058 183.28532410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46220 -02390059 183.28532410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46220 -02390060 183.28535461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46230 -02390061 183.28535461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46230 -02390062 183.28536987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46240 -02390063 183.28538513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46240 -02390064 183.28540039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46250 -02390065 183.28541565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46250 -02390066 183.28544617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46260 -02390067 183.28544617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46260 -02390068 183.28546143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46270 -02390069 183.28546143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46270 -02390070 183.28549194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46280 -02390071 183.28549194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46280 -02390072 183.28552246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46290 -02390073 183.28552246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46290 -02390074 183.28555298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a0 -02390075 183.28555298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a0 -02390076 183.28559875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b0 -02390077 183.28559875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b0 -02390078 183.28562927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c0 -02390079 183.28562927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c0 -02390080 183.28567505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d0 -02390081 183.28567505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d0 -02390082 183.28570557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e0 -02390083 183.28570557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e0 -02390084 183.28573608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f0 -02390085 183.28573608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f0 -02390086 183.28576660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46300 -02390087 183.28576660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46300 -02390088 183.28578186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46310 -02390089 183.28579712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46310 -02390090 183.28582764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46320 -02396564 184.78726196 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396565 184.78730774 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396566 184.78733826 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396567 184.78735352 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02396568 184.78747559 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396569 184.78747559 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396570 184.78755188 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396571 184.78756714 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396572 184.98974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02396573 185.01132202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396574 185.01133728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396575 187.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02396576 187.03370667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396577 187.03372192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396578 187.29360962 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396579 187.29365540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396580 187.29367065 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396581 187.29368591 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02396582 187.29380798 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396583 187.29382324 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396584 187.29386902 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396585 187.29389954 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396586 188.27325439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02396587 188.27326965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02396588 188.27330017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02396589 188.27330017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02396590 188.27331543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02396591 188.27331543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02396592 188.27334595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02396593 188.27334595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02396594 188.27337646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02396595 188.27337646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02396596 188.27339172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02396597 188.27340698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02396598 188.27343750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02396599 188.27343750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02396600 188.27345276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02396601 188.27345276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02396602 188.27348328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02396603 188.27348328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02396604 188.27351379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02396605 188.27351379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02396606 188.27352905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02396607 188.27354431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02396608 188.27357483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02396609 188.27357483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02396610 188.27360535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02396611 188.27360535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02396612 188.27362061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02396613 188.27362061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02396614 188.27365112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02396615 188.27366638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02396616 188.27369690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02396617 188.27369690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02396618 188.27371216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02396619 188.27371216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02396620 188.27374268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02396621 188.27374268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02396622 188.27377319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02396623 188.27377319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02396624 188.27380371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02396625 188.27380371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02396626 188.27383423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02396627 188.27383423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02396628 188.27384949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02396629 188.27384949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02396630 188.27388000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02396631 188.27388000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02396632 188.27391052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02396633 188.27391052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02396634 188.27392578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02396635 188.27392578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02396636 188.27395630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02396637 188.27395630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02396638 188.27398682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02396639 188.27400208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02396640 188.27400208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02396641 188.27401733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02396642 188.27404785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02396643 188.27404785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02396644 188.27407837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02396645 188.27407837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02396646 188.27409363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02396647 188.27409363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02396648 188.27412415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02396649 188.27412415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02396650 188.27415466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02396651 188.27415466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02396652 188.27416992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02396653 188.27416992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02396654 188.27420044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02396655 188.27420044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02396656 188.27423096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02396657 188.27423096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02396658 188.27424622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02396659 188.27424622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02396660 188.27427673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02396661 188.27429199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02396662 188.27432251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02396663 188.27432251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02396664 188.27433777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02396665 188.27433777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02396666 188.27436829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02396667 188.27436829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02396668 188.27439880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02396669 188.27439880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02396670 188.27442932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02396671 188.27442932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02396672 188.27445984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02396673 188.27445984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02396674 188.27449036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02396675 188.27449036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02396676 188.27452087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02396677 188.27452087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02396678 188.27455139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02396679 188.27455139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02396680 188.27456665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02396681 188.27456665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02396682 188.27459717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02396683 188.27461243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02396684 188.27462769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02396685 188.27464294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02396686 188.27465820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02396687 188.27465820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02396688 188.27468872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02396689 188.27468872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02396690 188.27471924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02396691 188.27471924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02396692 188.27473450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02396693 188.27473450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02396694 188.27476501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02396695 188.27476501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02396696 188.27479553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02396697 188.27479553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02396698 188.27481079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02396699 188.27481079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02396700 188.27484131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02396701 188.27484131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02396702 188.27487183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02396703 188.27487183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02396704 188.27488708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02396705 188.27490234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02396706 188.27493286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02396707 188.27493286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02396708 188.27496338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02396709 188.27496338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02396710 188.27499390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02396711 188.27499390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02396712 188.27502441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02396713 188.27503967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02396714 188.27503967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02396715 188.27505493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02396716 188.27508545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02396717 188.27508545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02396718 188.27511597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02396719 188.27511597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02396720 188.27513123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02396721 188.27513123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02396722 188.27516174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02396723 188.27516174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02396724 188.27519226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02396725 188.27519226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02396726 188.27520752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02396727 188.27520752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02396728 188.27523804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02396729 188.27525330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02396730 188.27528381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02396731 188.27528381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02396732 188.27529907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02396733 188.27529907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02396734 188.27532959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02396735 188.27532959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02396736 188.27536011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02396737 188.27536011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02396738 188.27537537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02396739 188.27539063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02396740 188.27542114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02396741 188.27542114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02396742 188.27543640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02396743 188.27543640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02396744 188.27546692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02396745 188.27546692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02396746 188.27549744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02396747 188.27551270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02396748 188.27552795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02396749 188.27552795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02396750 188.27555847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02396751 188.27555847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02396752 188.27558899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02396753 188.27560425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02396754 188.27563477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02396755 188.27563477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02396756 188.27566528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02396757 188.27566528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02396758 188.27568054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02396759 188.27569580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02396760 188.27571106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02396761 188.27572632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02396762 188.27575684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02396763 188.27575684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02396764 188.27577209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02396765 188.27577209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02396766 188.27580261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02396767 188.27581787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02396768 188.27583313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02396769 188.27583313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02396770 188.27586365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02396771 188.27586365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02396772 188.27589417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02396773 188.27589417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02396774 188.27590942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02396775 188.27590942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02396776 188.27593994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02396777 188.27593994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02396778 188.27597046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02396779 188.27597046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02396780 188.27600098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02396781 188.27600098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02396782 188.27601624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02396783 188.27603149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02396784 188.27604675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02396785 188.27606201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02396786 188.27607727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02396787 188.27607727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02396788 188.27610779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02396789 188.27610779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02396790 188.27613831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02396791 188.27613831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02396792 188.27615356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02396793 188.27615356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02396794 188.27618408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02396795 188.27619934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02396796 188.27622986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02396797 188.27622986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02396798 188.27624512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02396799 188.27624512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02396800 188.27627563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02396801 188.27627563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02396802 188.27630615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02396803 188.27630615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02396804 188.27632141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02396805 188.27633667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02396806 188.27636719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02396807 188.27636719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02396808 188.27639771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02396809 188.27639771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02396810 188.27641296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02396811 188.27642822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02396812 188.27645874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02396813 188.27645874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02396814 188.27647400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02396815 188.27647400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02396816 188.27650452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02396817 188.27650452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02396818 188.27653503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02396819 188.27653503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02396820 188.27656555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02396821 188.27656555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02396822 188.27659607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02396823 188.27659607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02396824 188.27662659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02396825 188.27662659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02396826 188.27664185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02396827 188.27664185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02396828 188.27667236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02396829 188.27667236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02396830 188.27670288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02396831 188.27670288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02396832 188.27671814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02396833 188.27671814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02396834 188.27674866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02396835 188.27674866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02396836 188.27677917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02396837 188.27679443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02396838 188.27680969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02396839 188.27680969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02396840 188.27684021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02396841 188.27684021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02396842 188.27687073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02396843 188.27687073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02396844 188.27688599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02396845 188.27690125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02396846 188.27693176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02396847 188.27693176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02396848 188.27694702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02396849 188.27694702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02396850 188.27697754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02396851 188.27697754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02396852 188.27700806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02396853 188.27700806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02396854 188.27702332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02396855 188.27702332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02396856 188.27705383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02396857 188.27706909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02396858 188.27708435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02396859 188.27709961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02396860 188.27711487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02396861 188.27711487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02396862 188.27714539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02396863 188.27714539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02396864 188.27717590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02396865 188.27717590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02396866 188.27719116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02396867 188.27719116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02396868 188.27722168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02396869 188.27722168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02396870 188.27725220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02396871 188.27725220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02396872 188.27726746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02396873 188.27726746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02396874 188.27729797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02396875 188.27729797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02396876 188.27732849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02396877 188.27732849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02396878 188.27735901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02396879 188.27735901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02396880 188.27738953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02396881 188.27738953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02396882 188.27742004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02396883 188.27742004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02396884 188.27743530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02396885 188.27743530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02396886 188.27746582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02396887 188.27748108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02396888 188.27751160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02396889 188.27751160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02396890 188.27752686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02396891 188.27752686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02396892 188.27755737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02396893 188.27755737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02396894 188.27758789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02396895 188.27758789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02396896 188.27761841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02396897 188.27761841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02396898 188.27764893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02396899 188.27764893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02396900 188.27766418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02396901 188.27766418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02396902 188.27769470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02396903 188.27770996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02396904 188.27774048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02396905 188.27774048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02396906 188.27775574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02396907 188.27775574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02396908 188.27778625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02396909 188.27778625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02396910 188.27781677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02396911 188.27781677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02396912 188.27783203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02396913 188.27783203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02396914 188.27786255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02396915 188.27786255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02396916 188.27789307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02396917 188.27789307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02396918 188.27790833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02396919 188.27792358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02396920 188.27793884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02396921 188.27795410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02396922 188.27798462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02396923 188.27798462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02396924 188.27799988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02396925 188.27799988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02396926 188.27803040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02396927 188.27803040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02396928 188.27806091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02396929 188.27806091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02396930 188.27807617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02396931 188.27807617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02396932 188.27810669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02396933 188.27812195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02396934 188.27813721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02396935 188.27813721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02396936 188.27816772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02396937 188.27816772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02396938 188.27819824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02396939 188.27819824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02396940 188.27821350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02396941 188.27821350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02396942 188.27824402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02396943 188.27825928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02396944 188.27828979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02396945 188.27828979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02396946 188.27830505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02396947 188.27830505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02396948 188.27833557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02396949 188.27833557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02396950 188.27836609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02396951 188.27836609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02396952 188.27838135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02396953 188.27839661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02396954 188.27842712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02396955 188.27842712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02396956 188.27845764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02396957 188.27845764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02396958 188.27847290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02396959 188.27847290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02396960 188.27850342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02396961 188.27850342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02396962 188.27853394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02396963 188.27853394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02396964 188.27856445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02396965 188.27856445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02396966 188.27859497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02396967 188.27859497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02396968 188.27861023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02396969 188.27861023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02396970 188.27864075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02396971 188.27865601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02396972 188.27868652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02396973 188.27868652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02396974 188.27870178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02396975 188.27870178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02396976 188.27873230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02396977 188.27873230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02396978 188.27876282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02396979 188.27876282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02396980 188.27877808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02396981 188.27879333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02396982 188.27882385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02396983 188.27882385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02396984 188.27885437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02396985 188.27885437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02396986 188.27886963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02396987 188.27886963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02396988 188.27890015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02396989 188.27890015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02396990 188.27893066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02396991 188.27893066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02396992 188.27896118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02396993 188.27896118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02396994 188.27899170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02396995 188.27899170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02396996 188.27900696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02396997 188.27900696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02396998 188.27903748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02396999 188.27903748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02397000 188.27906799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02397001 188.27908325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02397002 188.27909851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02397003 188.27909851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02397004 188.27912903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02397005 188.27912903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02397006 188.27915955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02397007 188.27915955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02397008 188.27917480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02397009 188.27917480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02397010 188.27920532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02397011 188.27920532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02397012 188.27923584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02397013 188.27925110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02397014 188.27926636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02397015 188.27926636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02397016 188.27929688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02397017 188.27929688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02397018 188.27932739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02397019 188.27932739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02397020 188.27934265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02397021 188.27934265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02397022 188.27937317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02397023 188.27938843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02397024 188.27940369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02397025 188.27940369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02397026 188.27943420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02397027 188.27943420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02397028 188.27946472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02397029 188.27946472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02397030 188.27949524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02397031 188.27949524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02397032 188.27951050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02397033 188.27952576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02397034 188.27955627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02397035 188.27955627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02397036 188.27957153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02397037 188.27957153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02397038 188.27960205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02397039 188.27960205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02397040 188.27963257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02397041 188.27963257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02397042 188.27964783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02397043 188.27966309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02397044 188.27969360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02397045 188.27969360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02397046 188.27972412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02397047 188.27972412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02397048 188.27973938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02397049 188.27973938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02397050 188.27978516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02397051 188.27978516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02397052 188.27980042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02397053 188.27980042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02397054 188.27983093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02397055 188.27984619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02397056 188.27987671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02397057 188.27987671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02397058 188.27989197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02397059 188.27989197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02397060 188.27992249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02397061 188.27993774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02397062 188.27996826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02397063 188.27996826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02397064 188.27998352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02397065 188.27998352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02397066 188.28001404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02397067 188.28001404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02397068 188.28004456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02397069 188.28004456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02397070 188.28005981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02397071 188.28007507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02397072 188.28010559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02397073 188.28010559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02397074 188.28012085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02397075 188.28012085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02397076 188.28015137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02397077 188.28015137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02397078 188.28018188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02397079 188.28018188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02397080 188.28021240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02397081 188.28021240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02397082 188.28022766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02397083 188.28022766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02397084 188.28025818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02397085 188.28025818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02397086 188.28028870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02397087 188.28028870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02397088 188.28031921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02397089 188.28031921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02397090 188.28034973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02397091 188.28034973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02397092 188.28036499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02397093 188.28036499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02397094 188.28039551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02397095 188.28041077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02397096 188.28044128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02397097 188.28044128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02397098 188.28045654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02397099 188.28045654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02397100 188.28048706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02397101 188.28048706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02397102 188.28051758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02397103 188.28051758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02397104 188.28053284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02397105 188.28053284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02397106 188.28056335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02397107 188.28057861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02397108 188.28060913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02397109 188.28060913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02397110 188.28062439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02397111 188.28062439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02397112 188.28065491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02397113 188.28065491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02397114 188.28068542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02397115 188.28068542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02397116 188.28071594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02397117 188.28071594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02397118 188.28074646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02397119 188.28074646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02397120 188.28076172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02397121 188.28076172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02397122 188.28079224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02397123 188.28079224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02397124 188.28082275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02397125 188.28082275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02397126 188.28083801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02397127 188.28083801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02397128 188.28086853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02397129 188.28086853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02397130 188.28089905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02397131 188.28089905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02397132 188.28091431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02397133 188.28092957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02397134 188.28094482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02397135 188.28096008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02397136 188.28099060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02397137 188.28099060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02397138 188.28100586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02397139 188.28100586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02397140 188.28103638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02397141 188.28103638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02397142 188.28106689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02397143 188.28106689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02397144 188.28108215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02397145 188.28108215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02397146 188.28111267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02397147 188.28112793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02397148 188.28115845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02397149 188.28115845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02397150 188.28117371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02397151 188.28117371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02397152 188.28120422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02397153 188.28120422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02397154 188.28123474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02397155 188.28123474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02397156 188.28125000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02397157 188.28126526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02397158 188.28129578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02397159 188.28129578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02397160 188.28131104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02397161 188.28131104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02397162 188.28134155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02397163 188.28134155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02397164 188.28137207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02397165 188.28137207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02397166 188.28140259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02397167 188.28140259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02397168 188.28141785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02397169 188.28143311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02397170 188.28144836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02397171 188.28146362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02397172 188.28147888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02397173 188.28147888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02397174 188.28150940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02397175 188.28150940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02397176 188.28153992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02397177 188.28153992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02397178 188.28155518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02397179 188.28155518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02397180 188.28158569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02397181 188.28160095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02397182 188.28163147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02397183 188.28163147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02397184 188.28164673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02397185 188.28164673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02397186 188.28167725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02397187 188.28167725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02397188 188.28170776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02397189 188.28170776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02397190 188.28172302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02397191 188.28172302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02397192 188.28175354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02397193 188.28176880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02397194 188.28179932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02397195 188.28179932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02397196 188.28181458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02397197 188.28181458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02397198 188.28184509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02397199 188.28184509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02397200 188.28187561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02397201 188.28187561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02397202 188.28190613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02397203 188.28190613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02397204 188.28193665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02397205 188.28193665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02397206 188.28195190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02397207 188.28195190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02397208 188.28198242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02397209 188.28198242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02397210 188.28201294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02397211 188.28201294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02397212 188.28202820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02397213 188.28202820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02397214 188.28205872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02397215 188.28207397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02397216 188.28208923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02397217 188.28210449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02397218 188.28211975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02397219 188.28211975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02397220 188.28215027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02397221 188.28215027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02397222 188.28218079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02397223 188.28218079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02397224 188.28219604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02397225 188.28219604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02397226 188.28222656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02397227 188.28222656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02397228 188.28225708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02397229 188.28225708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02397230 188.28227234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02397231 188.28227234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02397232 188.28230286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02397233 188.28230286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02397234 188.28233337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02397235 188.28233337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02397236 188.28234863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02397237 188.28236389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02397238 188.28237915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02397239 188.28239441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02397240 188.28242493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02397241 188.28242493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02397242 188.28244019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02397243 188.28244019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02397244 188.28247070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02397245 188.28247070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02397246 188.28250122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02397247 188.28250122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02397248 188.28253174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02397249 188.28253174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02397250 188.28256226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02397251 188.28256226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02397252 188.28259277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02397253 188.28259277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02397254 188.28260803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02397255 188.28260803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02397256 188.28263855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02397257 188.28265381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02397258 188.28266907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02397259 188.28266907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02397260 188.28269958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02397261 188.28269958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02397262 188.28273010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02397263 188.28273010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02397264 188.28274536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02397265 188.28274536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02397266 188.28277588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02397267 188.28277588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02397268 188.28280640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02397269 188.28282166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02397270 188.28282166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02397271 188.28283691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02397272 188.28286743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02397273 188.28286743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02397274 188.28289795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02397275 188.28289795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02397276 188.28291321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02397277 188.28291321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02397278 188.28294373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02397279 188.28294373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02397280 188.28297424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02397281 188.28297424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02397282 188.28298950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02397283 188.28298950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02397284 188.28302002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02397285 188.28302002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02397286 188.28305054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02397287 188.28305054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02397288 188.28306580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02397289 188.28308105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02397290 188.28309631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02397291 188.28311157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02397292 188.28314209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02397293 188.28314209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02397294 188.28315735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02397295 188.28315735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02397296 188.28318787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02397297 188.28318787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02397298 188.28321838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02397299 188.28321838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02397300 188.28323364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02397301 188.28323364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02397302 188.28326416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02397303 188.28326416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02397304 188.28329468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02397305 188.28329468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02397306 188.28330994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02397307 188.28330994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02397308 188.28334045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02397309 188.28334045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02397310 188.28337097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02397311 188.28338623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02397312 188.28340149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02397313 188.28340149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02397314 188.28343201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02397315 188.28343201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02397316 188.28346252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02397317 188.28346252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02397318 188.28347778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02397319 188.28347778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02397320 188.28350830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02397321 188.28350830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02397322 188.28353882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02397323 188.28353882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02397324 188.28356934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02397325 188.28356934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02397326 188.28359985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02397327 188.28359985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02397328 188.28361511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02397329 188.28361511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02397330 188.28364563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02397331 188.28364563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02397332 188.28367615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02397333 188.28369141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02397334 188.28370667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02397335 188.28370667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02397336 188.28373718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02397337 188.28373718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02397338 188.28376770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02397339 188.28376770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02397340 188.28378296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02397341 188.28378296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02397342 188.28381348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02397343 188.28382874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02397344 188.28385925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02397345 188.28385925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02397346 188.28387451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02397347 188.28387451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02397348 188.28390503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02397349 188.28390503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02397350 188.28393555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02397351 188.28393555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02397352 188.28395081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02397353 188.28396606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02397354 188.28399658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02397355 188.28399658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02397356 188.28401184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02397357 188.28401184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02397358 188.28404236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02397359 188.28404236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02397360 188.28407288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02397361 188.28407288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02397362 188.28410339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02397363 188.28410339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02397364 188.28411865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02397365 188.28413391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02397366 188.28416443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02397367 188.28416443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02397368 188.28417969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02397369 188.28417969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02397370 188.28421021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02397371 188.28421021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02397372 188.28424072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02397373 188.28424072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02397374 188.28425598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02397375 188.28427124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02397376 188.28430176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02397377 188.28430176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02397378 188.28433228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02397379 188.28433228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02397380 188.28434753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02397381 188.28434753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02397382 188.28437805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02397383 188.28439331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02397384 188.28440857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02397385 188.28440857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02397386 188.28443909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02397387 188.28443909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02397388 188.28446960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02397389 188.28446960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02397390 188.28450012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02397391 188.28450012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02397392 188.28453064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02397393 188.28453064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02397394 188.28456116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02397395 188.28456116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02397396 188.28457642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02397397 188.28457642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02397398 188.28460693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02397399 188.28462219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02397400 188.28465271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02397401 188.28465271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02397402 188.28466797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02397403 188.28466797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02397404 188.28469849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02397405 188.28469849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02397406 188.28472900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02397407 188.28472900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02397408 188.28474426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02397409 188.28474426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02397410 188.28477478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02397411 188.28477478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02397412 188.28480530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02397413 188.28480530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02397414 188.28482056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02397415 188.28483582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02397416 188.28486633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02397417 188.28486633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02397418 188.28489685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02397419 188.28489685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02397420 188.28492737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02397421 188.28492737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02397422 188.28495789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02397423 188.28495789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02397424 188.28497314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02397425 188.28497314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02397426 188.28500366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02397427 188.28500366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02397428 188.28503418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02397429 188.28503418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02397430 188.28504944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02397431 188.28504944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02397432 188.28507996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02397433 188.28507996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02397434 188.28511047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02397435 188.28511047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02397436 188.28512573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02397437 188.28514099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02397438 188.28515625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02397439 188.28517151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02397440 188.28520203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02397441 188.28520203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02397442 188.28521729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02397443 188.28521729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02397444 188.28524780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02397445 188.28524780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02397446 188.28527832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02397447 188.28527832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02397448 188.28529358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02397449 188.28529358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02397450 188.28532410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02397451 188.28532410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02397452 188.28535461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02397453 188.28535461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02397454 188.28536987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02397455 188.28536987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02397456 188.28540039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02397457 188.28540039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02397458 188.28543091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02397459 188.28544617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02397460 188.28544617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02397461 188.28546143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02397462 188.28549194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02397463 188.28549194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02397464 188.28552246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02397465 188.28552246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02397466 188.28553772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02397467 188.28553772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02397468 188.28558350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02397469 188.28558350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02397470 188.28561401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02397471 188.28561401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02397472 188.28562927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02397473 188.28562927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02397474 188.28565979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02397475 188.28565979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02397476 188.28569031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02397477 188.28569031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02397478 188.28570557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02397479 188.28572083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02397480 188.28575134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02397481 188.28575134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02397482 188.28576660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02397483 188.28576660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02397484 188.28579712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02397485 188.28581238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02397486 188.28584290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02397487 188.28584290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02397488 188.28585815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02397489 188.28585815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02397490 188.28588867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02397491 188.28588867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02397492 188.28591919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02397493 188.28591919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02397494 188.28593445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02397495 188.28594971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02397496 188.28598022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02397497 188.28598022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02397498 188.28601074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02397499 188.28601074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02397500 188.28602600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02397501 188.28602600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02397502 188.28605652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02397503 188.28605652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02397504 188.28608704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02397505 188.28608704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02397506 188.28611755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02397507 188.28611755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02397508 188.28614807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02397509 188.28614807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02397510 188.28616333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02397511 188.28617859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02397512 188.28620911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02397513 188.28620911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02397514 188.28623962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02397515 188.28623962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02397516 188.28625488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02397517 188.28625488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02397518 188.28628540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02397519 188.28628540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02397520 188.28631592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02397521 188.28631592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02397522 188.28634644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02397523 188.28634644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02397524 188.28637695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02397525 188.28637695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02397526 188.28640747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02397527 188.28640747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02397528 188.28642273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02397529 188.28642273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02397530 188.28645325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02397531 188.28645325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02397532 188.28648376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02397533 188.28648376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02397534 188.28651428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02397535 188.28651428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02397536 188.28654480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02397537 188.28654480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02397538 188.28656006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02397539 188.28656006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02397540 188.28659058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02397541 188.28659058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02397542 188.28662109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02397543 188.28663635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02397544 188.28665161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02397545 188.28665161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02397546 188.28668213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02397547 188.28668213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02397548 188.28671265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02397549 188.28671265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02397550 188.28672791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02397551 188.28672791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02397552 188.28675842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02397553 188.28677368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02397554 188.28680420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02397555 188.28680420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02397556 188.28681946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02397557 188.28681946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02397558 188.28684998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02397559 188.28684998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02397560 188.28688049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02397561 188.28688049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02397562 188.28691101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02397563 188.28691101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02397564 188.28694153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02397565 188.28694153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02397566 188.28695679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02397567 188.28695679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02397568 188.28698730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02397569 188.28698730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02397570 188.28701782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02397571 188.28701782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02397572 188.28703308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02397573 188.28704834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02397574 188.28707886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02397575 188.28707886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02397576 188.28710938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02397577 188.28710938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02397578 188.28712463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02397579 188.28712463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02397580 188.28715515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02397581 188.28715515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02397582 188.28718567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02397583 188.28720093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02397584 188.28721619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02397585 188.28721619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02397586 188.28724670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02397587 188.28724670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02397588 188.28727722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02397589 188.28727722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02397590 188.28729248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02397591 188.28729248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02397592 188.28732300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02397593 188.28733826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02397594 188.28735352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02397595 188.28735352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02397596 188.28738403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02397597 188.28738403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02397598 188.28741455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02397599 188.28741455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02397600 188.28742981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02397601 188.28742981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02397602 188.28746033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02397603 188.28747559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02397604 188.28750610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02397605 188.28750610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02397606 188.28752136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02397607 188.28752136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02397608 188.28755188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02397609 188.28755188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02397610 188.28758240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02397611 188.28758240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02397612 188.28759766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02397613 188.28761292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02397614 188.28762817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02397615 188.28764343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02397616 188.28767395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02397617 188.28767395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02397618 188.28768921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02397619 188.28768921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02397620 188.28771973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02397621 188.28771973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02397622 188.28775024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02397623 188.28775024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02397624 188.28776550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02397625 188.28776550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02397626 188.28779602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02397627 188.28779602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02397628 188.28782654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02397629 188.28782654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02397630 188.28784180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02397631 188.28784180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02397632 188.28787231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02397633 188.28787231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02397634 188.28790283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02397635 188.28790283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02397636 188.28791809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02397637 188.28793335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02397638 188.28796387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02397639 188.28796387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02397640 188.28799438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02397641 188.28799438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02397642 188.28800964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02397643 188.28800964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02397644 188.28804016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02397645 188.28804016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02397646 188.28807068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02397647 188.28807068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02397648 188.28808594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02397649 188.28810120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02397650 188.28813171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02397651 188.28813171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02397652 188.28814697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02397653 188.28814697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02397654 188.28817749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02397655 188.28817749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02397656 188.28820801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02397657 188.28822327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02397658 188.28822327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02397659 188.28823853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02397660 188.28826904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02397661 188.28826904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02397662 188.28829956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02397663 188.28829956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02397664 188.28831482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02397665 188.28831482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02397666 188.28834534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02397667 188.28834534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02397668 188.28837585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02397669 188.28837585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02397670 188.28839111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02397671 188.28839111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02397672 188.28842163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02397673 188.28843689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02397674 188.28846741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02397675 188.28846741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02397676 188.28848267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02397677 188.28848267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02397678 188.28851318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02397679 188.28851318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02397680 188.28854370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02397681 188.28854370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02397682 188.28857422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02397683 188.28857422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02397684 188.28860474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02397685 188.28860474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02397686 188.28862000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02397687 188.28862000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02397688 188.28865051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02397689 188.28865051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02397690 188.28868103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02397691 188.28869629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02397692 188.28871155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02397693 188.28871155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02397694 188.28874207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02397695 188.28874207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02397696 188.28877258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02397697 188.28877258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02397698 188.28878784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02397699 188.28878784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02397700 188.28881836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02397701 188.28883362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02397702 188.28886414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02397703 188.28886414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02397704 188.28887939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02397705 188.28887939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02397706 188.28890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02397707 188.28890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02397708 188.28894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02397709 188.28894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02397710 188.28895569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02397711 188.28895569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02397712 188.28898621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02397713 188.28898621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02397714 188.28901672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02397715 188.28901672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02397716 188.28903198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02397717 188.28903198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02397718 188.28906250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02397719 188.28907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02397720 188.28909302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02397721 188.28910828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02397722 188.28912354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02397723 188.28912354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02397724 188.28915405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02397725 188.28915405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02397726 188.28918457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02397727 188.28918457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02397728 188.28919983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02397729 188.28919983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02397730 188.28923035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02397731 188.28923035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02397732 188.28926086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02397733 188.28926086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02397734 188.28927612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02397735 188.28927612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02397736 188.28932190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02397737 188.28932190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02397738 188.28933716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02397739 188.28933716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02397740 188.28936768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02397741 188.28936768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02397742 188.28939819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02397743 188.28939819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02397744 188.28941345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02397745 188.28942871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02397746 188.28945923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02397747 188.28945923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02397748 188.28948975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02397749 188.28948975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02397750 188.28950500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02397751 188.28950500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02397752 188.28953552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02397753 188.28953552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02397754 188.28956604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02397755 188.28956604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02397756 188.28958130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02397757 188.28959656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02397758 188.28962708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02397759 188.28962708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02397760 188.28965759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02397761 188.28965759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02397762 188.28967285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02397763 188.28967285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02397764 188.28970337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02397765 188.28970337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02397766 188.28973389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02397767 188.28973389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02397768 188.28974915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02397769 188.28976440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02397770 188.28979492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02397771 188.28979492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02397772 188.28981018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02397773 188.28981018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02397774 188.28984070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02397775 188.28984070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02397776 188.28987122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02397777 188.28987122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02397778 188.28990173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02397779 188.28990173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02397780 188.28991699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02397781 188.28993225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02397782 188.28996277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02397783 188.28996277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02397784 188.28997803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02397785 188.28997803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02397786 188.29000854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02397787 188.29000854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02397788 188.29005432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02397789 188.29005432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02397790 188.29006958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02397791 188.29006958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02397792 188.29010010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02397793 188.29010010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02397794 188.29013062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02397795 188.29013062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02397796 188.29014587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02397797 188.29014587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02397798 188.29017639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02397799 188.29019165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02397800 188.29020691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02397801 188.29020691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02397802 188.29023743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02397803 188.29023743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02397804 188.29026794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02397805 188.29026794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02397806 188.29029846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02397807 188.29029846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02397808 188.29031372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02397809 188.29031372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02397810 188.29034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02397811 188.29035950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02397812 188.29037476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02397813 188.29037476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02397814 188.29040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02397815 188.29040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02397816 188.29043579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02397817 188.29043579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02397818 188.29045105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02397819 188.29045105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02397820 188.29048157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02397821 188.29049683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02397822 188.29052734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02397823 188.29052734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02397824 188.29054260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02397825 188.29054260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02397826 188.29057312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02397827 188.29058838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02397828 188.29060364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02397829 188.29060364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02397830 188.29063416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02397831 188.29063416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02397832 188.29066467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02397833 188.29066467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02397834 188.29069519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02397835 188.29069519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02397836 188.29072571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02397837 188.29072571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02397838 188.29075623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02397839 188.29075623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02397840 188.29077148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02397841 188.29077148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02397842 188.29080200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02397843 188.29080200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02397844 188.29083252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02397845 188.29083252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02397846 188.29084778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02397847 188.29084778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02397848 188.29087830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02397849 188.29087830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02397850 188.29090881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02397851 188.29090881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02397852 188.29092407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02397853 188.29092407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02397854 188.29095459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02397855 188.29096985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02397856 188.29098511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02397857 188.29100037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02397858 188.29101563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02397859 188.29101563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02397860 188.29104614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02397861 188.29104614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02397862 188.29107666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02397863 188.29107666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02397864 188.29109192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02397865 188.29109192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02397866 188.29112244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02397867 188.29112244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02397868 188.29115295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02397869 188.29115295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02397870 188.29118347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02397871 188.29118347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02397872 188.29121399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02397873 188.29121399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02397874 188.29124451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02397875 188.29124451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02397876 188.29125977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02397877 188.29125977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02397878 188.29129028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02397879 188.29129028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02397880 188.29132080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02397881 188.29132080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02397882 188.29133606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02397883 188.29135132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02397884 188.29138184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02397885 188.29138184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02397886 188.29141235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02397887 188.29141235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02397888 188.29142761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02397889 188.29142761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02397890 188.29145813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02397891 188.29145813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02397892 188.29148865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02397893 188.29148865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02397894 188.29150391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02397895 188.29150391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02397896 188.29153442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02397897 188.29153442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02397898 188.29156494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02397899 188.29156494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02397900 188.29158020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02397901 188.29158020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02397902 188.29161072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02397903 188.29161072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02397904 188.29164124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02397905 188.29164124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02397906 188.29165649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02397907 188.29167175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02397908 188.29170227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02397909 188.29170227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02397910 188.29171753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02397911 188.29171753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02397912 188.29174805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02397913 188.29174805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02397914 188.29177856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02397915 188.29177856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02397916 188.29180908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02397917 188.29180908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02397918 188.29183960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02397919 188.29183960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02397920 188.29187012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02397921 188.29187012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02397922 188.29188538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02397923 188.29188538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02397924 188.29191589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02397925 188.29191589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02397926 188.29194641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02397927 188.29194641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02397928 188.29196167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02397929 188.29197693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02397930 188.29200745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02397931 188.29200745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02397932 188.29203796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02397933 188.29203796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02397934 188.29205322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02397935 188.29205322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02397936 188.29208374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02397937 188.29208374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02397938 188.29211426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02397939 188.29211426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02397940 188.29214478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02397941 188.29214478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02397942 188.29217529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02397943 188.29217529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02397944 188.29220581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02397945 188.29220581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02397946 188.29222107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02397947 188.29222107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02397948 188.29225159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02397949 188.29226685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02397950 188.29228210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02397951 188.29228210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02397952 188.29231262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02397953 188.29231262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02397954 188.29234314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02397955 188.29234314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02397956 188.29235840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02397957 188.29237366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02397958 188.29238892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02397959 188.29240417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02397960 188.29243469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02397961 188.29243469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02397962 188.29244995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02397963 188.29244995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02397964 188.29248047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02397965 188.29248047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02397966 188.29251099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02397967 188.29251099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02397968 188.29254150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02397969 188.29254150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02397970 188.29257202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02397971 188.29257202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02397972 188.29260254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02397973 188.29260254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02397974 188.29261780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02397975 188.29261780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02397976 188.29264832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02397977 188.29264832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02397978 188.29267883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02397979 188.29267883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02397980 188.29269409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02397981 188.29270935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02397982 188.29273987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02397983 188.29273987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02397984 188.29275513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02397985 188.29275513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02397986 188.29278564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02397987 188.29278564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02397988 188.29281616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02397989 188.29283142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02397990 188.29284668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02397991 188.29284668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02397992 188.29287720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02397993 188.29287720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02397994 188.29290771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02397995 188.29290771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02397996 188.29292297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02397997 188.29293823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02397998 188.29296875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02397999 188.29296875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02398000 188.29299927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02398001 188.29299927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02398002 188.29302979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02398003 188.29302979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02398004 188.29306030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02398005 188.29306030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02398006 188.29307556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02398007 188.29307556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02398008 188.29310608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02398009 188.29310608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02398010 188.29313660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02398011 188.29315186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02398012 188.29316711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02398013 188.29316711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02398014 188.29319763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02398015 188.29319763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02398016 188.29322815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02398017 188.29322815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02398018 188.29324341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02398019 188.29325867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02398020 188.29327393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02398021 188.29328918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02398022 188.29330444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02398023 188.29330444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02398024 188.29333496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02398025 188.29333496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02398026 188.29336548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02398027 188.29336548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02398028 188.29339600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02398029 188.29339600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02398030 188.29341125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02398031 188.29341125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02398032 188.29344177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02398033 188.29344177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02398034 188.29347229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02398035 188.29347229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02398036 188.29350281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02398037 188.29350281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02398038 188.29353333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02398039 188.29353333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02398040 188.29354858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02398041 188.29354858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02398042 188.29357910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02398043 188.29357910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02398044 188.29360962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02398045 188.29362488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02398046 188.29362488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02398047 188.29364014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02398048 188.29367065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02398049 188.29367065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02398050 188.29370117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02398051 188.29370117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02398052 188.29371643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02398053 188.29371643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02398054 188.29374695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02398055 188.29374695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02398056 188.29377747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02398057 188.29379272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02398058 188.29379272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02398059 188.29380798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02398060 188.29383850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02398061 188.29383850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02398062 188.29386902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02398063 188.29386902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02398064 188.29388428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02398065 188.29388428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02398066 188.29391479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02398067 188.29391479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02398068 188.29394531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02398069 188.29394531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02398070 188.29396057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02398071 188.29396057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02398072 188.29399109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02398073 188.29400635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02398074 188.29402161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02398075 188.29402161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02398076 188.29405212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02398077 188.29405212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02398078 188.29408264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02398079 188.29408264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02398080 188.29411316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02398081 188.29411316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02398082 188.29412842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02398083 188.29412842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02398084 188.29415894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02398085 188.29415894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02398086 188.29418945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02398087 188.29418945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02398088 188.29420471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02398089 188.29420471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02398090 188.29423523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02398091 188.29423523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02398092 188.29426575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02398093 188.29426575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02398094 188.29428101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02398095 188.29429626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02398096 188.29432678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02398097 188.29432678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02398098 188.29434204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02398099 188.29434204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02398100 188.29437256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02398101 188.29437256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02398102 188.29440308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02398103 188.29441833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02398104 188.29443359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02398105 188.29443359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02398106 188.29446411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02398107 188.29446411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02398108 188.29449463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02398109 188.29449463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02398110 188.29450989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02398111 188.29452515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02398112 188.29454041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02398113 188.29455566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02398114 188.29458618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02398115 188.29458618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02398116 188.29460144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02398117 188.29460144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02398118 188.29463196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02398119 188.29463196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02398120 188.29466248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02398121 188.29466248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02398122 188.29467773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02398123 188.29467773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02398124 188.29470825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02398125 188.29470825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02398126 188.29473877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02398127 188.29473877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02398128 188.29475403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02398129 188.29475403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02398130 188.29478455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02398131 188.29479980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02398132 188.29481506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02398133 188.29481506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02398134 188.29484558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02398135 188.29484558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02398136 188.29487610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02398137 188.29487610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02398138 188.29490662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02398139 188.29490662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02398140 188.29492188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02398141 188.29492188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02398142 188.29495239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02398143 188.29495239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02398144 188.29498291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02398145 188.29498291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02398146 188.29499817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02398147 188.29499817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02398148 188.29502869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02398149 188.29502869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02398150 188.29505920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02398151 188.29505920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02398152 188.29507446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02398153 188.29508972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02398154 188.29512024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02398155 188.29512024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02398156 188.29513550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02398157 188.29513550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02398158 188.29516602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02398159 188.29516602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02398160 188.29519653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02398161 188.29519653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02398162 188.29521179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02398163 188.29521179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02398164 188.29524231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02398165 188.29524231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02398166 188.29527283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02398167 188.29527283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02398168 188.29530334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02398169 188.29530334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02398170 188.29531860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02398171 188.29531860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02398172 188.29534912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02398173 188.29536438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02398174 188.29537964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02398175 188.29537964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02398176 188.29541016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02398177 188.29541016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02398178 188.29544067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02398179 188.29544067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02398180 188.29545593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02398181 188.29545593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02398182 188.29548645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02398183 188.29548645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02398184 188.29551697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02398185 188.29551697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02398186 188.29553223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02398187 188.29553223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02398188 188.29557800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02398189 188.29557800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02398190 188.29560852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02398191 188.29560852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02398192 188.29562378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02398193 188.29562378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02398194 188.29565430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02398195 188.29565430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02398196 188.29568481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02398197 188.29568481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02398198 188.29570007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02398199 188.29571533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02398200 188.29574585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02398201 188.29574585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02398202 188.29577637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02398203 188.29577637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02398204 188.29579163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02398205 188.29579163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02398206 188.29582214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02398207 188.29582214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02398208 188.29585266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02398209 188.29585266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02398210 188.29586792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02398211 188.29586792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02398212 188.29589844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02398213 188.29591370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02398214 188.29592896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02398215 188.29592896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02398216 188.29595947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02398217 188.29595947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02398218 188.29598999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02398219 188.29598999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02398220 188.29600525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02398221 188.29600525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02398222 188.29603577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02398223 188.29603577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02398224 188.29606628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02398225 188.29606628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02398226 188.29609680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02398227 188.29609680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02398228 188.29611206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02398229 188.29611206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02398230 188.29614258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02398231 188.29614258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02398232 188.29617310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02398233 188.29617310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02398234 188.29620361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02398235 188.29620361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02398236 188.29623413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02398237 188.29623413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02398238 188.29624939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02398239 188.29624939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02398240 188.29627991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02398241 188.29627991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02398242 188.29631042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02398243 188.29631042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02398244 188.29632568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02398245 188.29632568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02398246 188.29635620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02398247 188.29635620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02398248 188.29638672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02398249 188.29638672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02398250 188.29640198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02398251 188.29640198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02398252 188.29643250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02398253 188.29644775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02398254 188.29646301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02398255 188.29647827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02398256 188.29649353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02398257 188.29649353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02398258 188.29652405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02398259 188.29652405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02398260 188.29655457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02398261 188.29655457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02398262 188.29656982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02398263 188.29656982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02398264 188.29660034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02398265 188.29660034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02398266 188.29663086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02398267 188.29663086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02398268 188.29664612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02398269 188.29664612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02398270 188.29667664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02398271 188.29667664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02398272 188.29670715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02398273 188.29672241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02398274 188.29672241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02398275 188.29673767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02398276 188.29676819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02398277 188.29676819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02398278 188.29679871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02398279 188.29679871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02398280 188.29681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02398281 188.29681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02398282 188.29684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02398283 188.29684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02398284 188.29687500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02398285 188.29689026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02398286 188.29690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02398287 188.29690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02398288 188.29693604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02398289 188.29693604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02398290 188.29696655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02398291 188.29696655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02398292 188.29698181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02398293 188.29698181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02398294 188.29701233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02398295 188.29701233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02398296 188.29704285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02398297 188.29704285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02398298 188.29705811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02398299 188.29707336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02398300 188.29708862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02398301 188.29710388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02398302 188.29711914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02398303 188.29711914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02398304 188.29714966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02398305 188.29714966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02398306 188.29718018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02398307 188.29718018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02398308 188.29721069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02398309 188.29721069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02398310 188.29722595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02398311 188.29722595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02398312 188.29725647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02398313 188.29725647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02398314 188.29728699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02398315 188.29728699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02398316 188.29730225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02398317 188.29730225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02398318 188.29733276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02398319 188.29734802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02398320 188.29736328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02398321 188.29736328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02398322 188.29739380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02398323 188.29739380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02398324 188.29742432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02398325 188.29742432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02398326 188.29743958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02398327 188.29743958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02398328 188.29747009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02398329 188.29747009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02398330 188.29750061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02398331 188.29751587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02398332 188.29753113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02398333 188.29753113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02398334 188.29756165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02398335 188.29756165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02398336 188.29759216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02398337 188.29759216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02398338 188.29760742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02398339 188.29762268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02398340 188.29765320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02398341 188.29765320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02398342 188.29768372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02398343 188.29768372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02398344 188.29769897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02398345 188.29769897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02398346 188.29772949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02398347 188.29772949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02398348 188.29776001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02398349 188.29776001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02398350 188.29777527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02398351 188.29777527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02398352 188.29780579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02398353 188.29780579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02398354 188.29783630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02398355 188.29783630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02398356 188.29785156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02398357 188.29786682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02398358 188.29789734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02398359 188.29789734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02398360 188.29791260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02398361 188.29791260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02398362 188.29794312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02398363 188.29794312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02398364 188.29797363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02398365 188.29797363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02398366 188.29800415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02398367 188.29800415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02398368 188.29801941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02398369 188.29801941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02398370 188.29804993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02398371 188.29804993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02398372 188.29808044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02398373 188.29808044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02398374 188.29809570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02398375 188.29809570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02398376 188.29812622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02398377 188.29814148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02398378 188.29815674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02398379 188.29815674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02398380 188.29818726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02398381 188.29818726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02398382 188.29821777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02398383 188.29821777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02398384 188.29823303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02398385 188.29823303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02398386 188.29826355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02398387 188.29826355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02398388 188.29829407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02398389 188.29829407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02398390 188.29830933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02398391 188.29830933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02398392 188.29833984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02398393 188.29833984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02398394 188.29837036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02398395 188.29837036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02398396 188.29840088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02398397 188.29840088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02398398 188.29841614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02398399 188.29843140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02398400 188.29846191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02398401 188.29846191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02398402 188.29847717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02398403 188.29847717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02398404 188.29850769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02398405 188.29850769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02398406 188.29853821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02398407 188.29853821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02398408 188.29855347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02398409 188.29855347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02398410 188.29858398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02398411 188.29858398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02398412 188.29861450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02398413 188.29861450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02398414 188.29862976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02398415 188.29862976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02398416 188.29866028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02398417 188.29867554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02398418 188.29870605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02398419 188.29870605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02398420 188.29872131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02398421 188.29872131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02398422 188.29875183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02398423 188.29875183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02398424 188.29878235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02398425 188.29878235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02398426 188.29879761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02398427 188.29881287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02398428 188.29884338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02398429 188.29884338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02398430 188.29887390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02398431 188.29887390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02398432 188.29888916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02398433 188.29888916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02411756 188.48263550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea58 -02411757 188.48263550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea58 -02411758 188.48266602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea68 -02411759 188.48268127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea68 -02411760 188.48269653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea78 -02411761 188.48269653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea78 -02411762 188.48274231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea88 -02411763 188.48274231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea88 -02411764 188.48277283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea98 -02411765 188.48277283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea98 -02411766 188.48280334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa8 -02411767 188.48281860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa8 -02411768 188.48284912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab8 -02411769 188.48284912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab8 -02411770 188.48286438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac8 -02411771 188.48286438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac8 -02411772 188.48289490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead8 -02411773 188.48289490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead8 -02411774 188.48292542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae8 -02411775 188.48292542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae8 -02411776 188.48294067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf8 -02411777 188.48295593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf8 -02411778 188.48298645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb08 -02411779 188.48298645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb08 -02411780 188.48300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb18 -02411781 188.48300171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb18 -02411782 188.48303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb28 -02411783 188.48304749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb28 -02411784 188.48307800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb38 -02411785 188.48307800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb38 -02411786 188.48309326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb48 -02411787 188.48309326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb48 -02411788 188.48312378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb58 -02411789 188.48312378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb58 -02411790 188.48315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb68 -02411791 188.48315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb68 -02411792 188.48316956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb78 -02411793 188.48318481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb78 -02411794 188.48321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb88 -02411795 188.48321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb88 -02411796 188.48324585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb98 -02411797 188.48324585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb98 -02411798 188.48326111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eba8 -02411799 188.48326111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eba8 -02416773 188.55276489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28718 -02416774 188.55279541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28728 -02416775 188.55279541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28728 -02416776 188.55282593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28738 -02416777 188.55282593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28738 -02416778 188.55284119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28748 -02416779 188.55285645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28748 -02416780 188.55288696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28758 -02416781 188.55288696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28758 -02416782 188.55290222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28768 -02416783 188.55290222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28768 -02416784 188.55293274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28778 -02416785 188.55293274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28778 -02416786 188.55296326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28788 -02416787 188.55296326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28788 -02416788 188.55297852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28798 -02416789 188.55297852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28798 -02416790 188.55300903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a8 -02416791 188.55300903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a8 -02416792 188.55305481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b8 -02416793 188.55305481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b8 -02416794 188.55307007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c8 -02416795 188.55307007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c8 -02416796 188.55310059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -02416797 188.55310059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -02416798 188.55313110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -02416799 188.55313110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -02416800 188.55314636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -02416801 188.55316162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -02416802 188.55317688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -02416803 188.55319214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -02416804 188.55322266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -02416805 188.55322266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -02416806 188.55323792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -02416807 188.55323792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -02416808 188.55326843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -02416809 188.55326843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -02416810 188.55329895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -02416811 188.55329895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -02416812 188.55331421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -02416813 188.55331421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -02416814 188.55334473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -02416815 188.55334473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -02416816 188.55337524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -02423302 188.64414978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35328 -02423303 188.64414978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35328 -02423304 188.64418030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35338 -02423305 188.64418030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35338 -02423306 188.64419556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -02423307 188.64419556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -02423308 188.64422607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -02423309 188.64422607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -02423310 188.64425659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -02423311 188.64425659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -02423312 188.64428711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -02423313 188.64428711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -02423314 188.64431763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -02423315 188.64431763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -02423316 188.64433289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -02423317 188.64433289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -02423318 188.64436340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -02423319 188.64437866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -02423320 188.64440918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b8 -02423321 188.64440918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b8 -02423322 188.64442444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -02423323 188.64442444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -02423324 188.64445496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -02423325 188.64445496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -02423326 188.64448547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -02423327 188.64448547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -02423328 188.64450073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f8 -02423329 188.64450073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f8 -02423330 188.64453125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35408 -02423331 188.64453125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35408 -02423332 188.64456177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35418 -02423333 188.64457703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35418 -02423334 188.64457703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35428 -02423335 188.64459229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35428 -02423336 188.64462280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35438 -02423337 188.64462280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35438 -02423338 188.64465332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35448 -02423339 188.64465332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35448 -02423340 188.64466858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35458 -02423341 188.64466858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35458 -02423342 188.64469910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35468 -02423343 188.64469910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35468 -02423344 188.64472961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35478 -02423345 188.64472961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35478 -02429208 188.72619629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -02429209 188.72619629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -02429210 188.72622681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -02429211 188.72622681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -02429212 188.72624207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -02429213 188.72624207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -02429214 188.72627258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -02429215 188.72628784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -02429216 188.72630310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -02429217 188.72630310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -02429218 188.72633362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -02429219 188.72633362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -02429220 188.72636414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -02429221 188.72636414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -02429222 188.72639465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -02429223 188.72639465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -02429224 188.72640991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -02429225 188.72640991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -02429226 188.72644043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -02429227 188.72644043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -02429228 188.72647095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -02429229 188.72647095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -02429230 188.72648621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -02429231 188.72648621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -02429232 188.72651672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -02429233 188.72651672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -02429234 188.72654724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c88 -02429235 188.72654724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c88 -02429236 188.72656250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c98 -02429237 188.72657776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c98 -02429238 188.72660828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca8 -02429239 188.72660828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca8 -02429240 188.72662354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb8 -02429241 188.72662354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb8 -02429242 188.72665405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc8 -02429243 188.72665405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc8 -02429244 188.72668457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd8 -02429245 188.72668457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd8 -02429246 188.72669983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce8 -02429247 188.72669983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce8 -02429248 188.72673035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf8 -02429249 188.72673035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf8 -02429250 188.72676086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d08 -02429251 188.72676086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d08 -02438472 189.03511047 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02438473 189.05635071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438474 189.05636597 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438475 189.80073547 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438476 189.80076599 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438477 189.80078125 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438478 189.80079651 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02438479 189.80091858 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438480 189.80091858 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438481 189.80097961 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438482 189.80101013 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438483 191.05802917 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02438484 191.07952881 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438485 191.07952881 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438486 192.30743408 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438487 192.30746460 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438488 192.30749512 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438489 192.30751038 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02438490 192.30763245 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438491 192.30763245 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438492 192.30769348 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438493 192.30772400 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438494 193.08058167 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02438495 193.10115051 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438496 193.10115051 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438497 193.85566711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02438498 193.85568237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02438499 193.85571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02438500 193.85571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02438501 193.85572815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02438502 193.85572815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02438503 193.85575867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02438504 193.85575867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02438505 193.85578918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02438506 193.85578918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02438507 193.85580444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02438508 193.85581970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02438509 193.85585022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02438510 193.85585022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02438511 193.85586548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02438512 193.85586548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02438513 193.85591125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02438514 193.85591125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02438515 193.85594177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02438516 193.85594177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02438517 193.85595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02438518 193.85595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02438519 193.85598755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02438520 193.85600281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02438521 193.85604858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02438522 193.85604858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02438523 193.85609436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02438524 193.85609436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02438525 193.85610962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02438526 193.85612488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02438527 193.85615540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02438528 193.85615540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02438529 193.85618591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02438530 193.85618591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02438531 193.85620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02438532 193.85620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02438533 193.85623169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02438534 193.85624695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02438535 193.85626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02438536 193.85626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02438537 193.85629272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02438538 193.85629272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02438539 193.85632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02438540 193.85632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02438541 193.85633850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02438542 193.85633850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02438543 193.85636902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02438544 193.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02438545 193.85641479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02438546 193.85641479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02438547 193.85643005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02438548 193.85643005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02438549 193.85646057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02438550 193.85646057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02438551 193.85649109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02438552 193.85649109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02438553 193.85650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02438554 193.85652161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02438555 193.85655212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02438556 193.85655212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02438557 193.85658264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02438558 193.85658264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02438559 193.85659790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02438560 193.85659790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02438561 193.85662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02438562 193.85662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02438563 193.85665894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02438564 193.85665894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02438565 193.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02438566 193.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02438567 193.85671997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02438568 193.85671997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02438569 193.85673523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02438570 193.85673523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02438571 193.85676575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02438572 193.85676575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02438573 193.85679626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02438574 193.85681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02438575 193.85682678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02438576 193.85682678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02438577 193.85685730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02438578 193.85685730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02438579 193.85688782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02438580 193.85688782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02438581 193.85690308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02438582 193.85690308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02438583 193.85693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02438584 193.85694885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02438585 193.85696411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02438586 193.85697937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02438587 193.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02438588 193.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02438589 193.85702515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02438590 193.85702515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02438591 193.85705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02438592 193.85705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02438593 193.85707092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02438594 193.85707092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02438595 193.85710144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02438596 193.85710144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02438597 193.85713196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02438598 193.85713196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02438599 193.85714722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02438600 193.85714722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02438601 193.85717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02438602 193.85717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02438603 193.85722351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02438604 193.85722351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02438605 193.85723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02438606 193.85723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02438607 193.85726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02438608 193.85726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02438609 193.85729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02438610 193.85729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02438611 193.85731506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02438612 193.85733032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02438613 193.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02438614 193.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02438615 193.85737610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02438616 193.85737610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02438617 193.85740662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02438618 193.85740662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02438619 193.85745239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02438620 193.85745239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02438621 193.85748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02438622 193.85749817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02438623 193.85751343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02438624 193.85752869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02438625 193.85754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02438626 193.85754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02438627 193.85757446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02438628 193.85757446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02438629 193.85760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02438630 193.85760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02438631 193.85762024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02438632 193.85762024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02438633 193.85765076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02438634 193.85765076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02438635 193.85768127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02438636 193.85768127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02438637 193.85769653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02438638 193.85769653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02438639 193.85772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02438640 193.85772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02438641 193.85775757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02438642 193.85777283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02438643 193.85777283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02438644 193.85778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02438645 193.85781860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02438646 193.85781860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02438647 193.85784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02438648 193.85784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02438649 193.85786438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02438650 193.85786438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02438651 193.85789490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02438652 193.85789490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02438653 193.85792542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02438654 193.85792542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02438655 193.85794067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02438656 193.85794067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02438657 193.85797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02438658 193.85797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02438659 193.85800171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02438660 193.85800171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02438661 193.85801697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02438662 193.85801697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02438663 193.85804749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02438664 193.85806274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02438665 193.85807800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02438666 193.85809326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02438667 193.85810852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02438668 193.85810852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02438669 193.85813904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02438670 193.85813904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02438671 193.85816956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02438672 193.85816956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02438673 193.85818481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02438674 193.85818481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02438675 193.85821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02438676 193.85821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02438677 193.85824585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02438678 193.85824585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02438679 193.85826111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02438680 193.85826111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02438681 193.85829163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02438682 193.85829163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02438683 193.85832214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02438684 193.85832214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02438685 193.85833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02438686 193.85835266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02438687 193.85838318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02438688 193.85838318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02438689 193.85841370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02438690 193.85841370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02438691 193.85842896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02438692 193.85842896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02438693 193.85845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02438694 193.85845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02438695 193.85848999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02438696 193.85848999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02438697 193.85850525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02438698 193.85850525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02438699 193.85853577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02438700 193.85853577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02438701 193.85856628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02438702 193.85856628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02438703 193.85858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02438704 193.85858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02438705 193.85861206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02438706 193.85862732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02438707 193.85864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02438708 193.85864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02438709 193.85867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02438710 193.85867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02438711 193.85870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02438712 193.85870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02438713 193.85871887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02438714 193.85871887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02438715 193.85876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02438716 193.85876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02438717 193.85879517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02438718 193.85879517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02438719 193.85881042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02438720 193.85881042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02438721 193.85884094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02438722 193.85884094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02438723 193.85887146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02438724 193.85887146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02438725 193.85888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02438726 193.85888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02438727 193.85891724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02438728 193.85891724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02438729 193.85894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02438730 193.85894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02438731 193.85896301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02438732 193.85896301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02438733 193.85899353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02438734 193.85900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02438735 193.85902405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02438736 193.85903931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02438737 193.85905457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02438738 193.85905457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02438739 193.85908508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02438740 193.85908508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02438741 193.85911560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02438742 193.85911560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02438743 193.85913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02438744 193.85913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02438745 193.85916138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02438746 193.85916138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02438747 193.85919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02438748 193.85919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02438749 193.85920715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02438750 193.85920715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02438751 193.85923767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02438752 193.85923767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02438753 193.85926819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02438754 193.85926819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02438755 193.85928345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02438756 193.85929871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02438757 193.85932922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02438758 193.85932922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02438759 193.85935974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02438760 193.85935974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02438761 193.85937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02438762 193.85937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02438763 193.85940552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02438764 193.85942078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02438765 193.85943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02438766 193.85943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02438767 193.85946655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02438768 193.85946655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02438769 193.85949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02438770 193.85949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02438771 193.85952759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02438772 193.85952759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02438773 193.85954285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02438774 193.85955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02438775 193.85957336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02438776 193.85958862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02438777 193.85960388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02438778 193.85960388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02438779 193.85963440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02438780 193.85963440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02438781 193.85966492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02438782 193.85966492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02438783 193.85968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02438784 193.85968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02438785 193.85971069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02438786 193.85971069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02438787 193.85974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02438788 193.85974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02438789 193.85975647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02438790 193.85975647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02438791 193.85978699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02438792 193.85978699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02438793 193.85981750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02438794 193.85981750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02438795 193.85983276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02438796 193.85984802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02438797 193.85986328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02438798 193.85987854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02438799 193.85990906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02438800 193.85990906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02438801 193.85992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02438802 193.85992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02438803 193.85995483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02438804 193.85995483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02438805 193.85998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02438806 193.86000061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02438807 193.86001587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02438808 193.86001587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02438809 193.86004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02438810 193.86004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02438811 193.86007690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02438812 193.86007690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02438813 193.86009216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02438814 193.86009216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02438815 193.86012268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02438816 193.86012268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02438817 193.86015320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02438818 193.86015320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02438819 193.86016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02438820 193.86018372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02438821 193.86021423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02438822 193.86021423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02438823 193.86022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02438824 193.86022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02438825 193.86026001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02438826 193.86026001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02438827 193.86029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02438828 193.86029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02438829 193.86032104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02438830 193.86032104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02438831 193.86033630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02438832 193.86033630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02438833 193.86036682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02438834 193.86036682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02438835 193.86039734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02438836 193.86039734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02438837 193.86041260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02438838 193.86042786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02438839 193.86044312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02438840 193.86045837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02438841 193.86047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02438842 193.86047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02438843 193.86050415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02438844 193.86050415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02438845 193.86053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02438846 193.86053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02438847 193.86054993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02438848 193.86054993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02438849 193.86058044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02438850 193.86058044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02438851 193.86061096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02438852 193.86061096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02438853 193.86062622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02438854 193.86062622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02438855 193.86065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02438856 193.86065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02438857 193.86068726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02438858 193.86068726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02438859 193.86071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02438860 193.86071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02438861 193.86073303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02438862 193.86074829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02438863 193.86077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02438864 193.86077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02438865 193.86079407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02438866 193.86079407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02438867 193.86082458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02438868 193.86082458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02438869 193.86085510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02438870 193.86085510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02438871 193.86087036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02438872 193.86087036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02438873 193.86090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02438874 193.86090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02438875 193.86093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02438876 193.86093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02438877 193.86094666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02438878 193.86094666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02438879 193.86097717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02438880 193.86099243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02438881 193.86100769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02438882 193.86102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02438883 193.86103821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02438884 193.86103821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02438885 193.86106873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02438886 193.86106873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02438887 193.86109924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02438888 193.86109924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02438889 193.86111450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02438890 193.86111450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02438891 193.86114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02438892 193.86114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02438893 193.86117554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02438894 193.86117554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02438895 193.86119080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02438896 193.86119080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02438897 193.86122131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02438898 193.86122131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02438899 193.86125183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02438900 193.86125183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02438901 193.86126709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02438902 193.86128235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02438903 193.86129761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02438904 193.86131287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02438905 193.86134338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02438906 193.86134338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02438907 193.86135864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02438908 193.86135864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02438909 193.86138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02438910 193.86138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02438911 193.86141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02438912 193.86141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02438913 193.86143494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02438914 193.86143494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02438915 193.86146545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02438916 193.86146545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02438917 193.86149597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02438918 193.86149597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02438919 193.86151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02438920 193.86151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02438921 193.86154175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02438922 193.86154175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02438923 193.86157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02438924 193.86158752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02438925 193.86158752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02438926 193.86160278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02438927 193.86163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02438928 193.86163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02438929 193.86166382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02438930 193.86166382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02438931 193.86167908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02438932 193.86167908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02438933 193.86170959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02438934 193.86170959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02438935 193.86174011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02438936 193.86174011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02438937 193.86175537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02438938 193.86175537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02438939 193.86178589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02438940 193.86178589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02438941 193.86181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02438942 193.86181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02438943 193.86184692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02438944 193.86184692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02438945 193.86187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02438946 193.86187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02438947 193.86190796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02438948 193.86190796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02438949 193.86192322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02438950 193.86192322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02438951 193.86195374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02438952 193.86196899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02438953 193.86198425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02438954 193.86198425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02438955 193.86201477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02438956 193.86201477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02438957 193.86204529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02438958 193.86204529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02438959 193.86206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02438960 193.86206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02438961 193.86209106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02438962 193.86209106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02438963 193.86212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02438964 193.86213684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02438965 193.86213684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02438966 193.86215210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02438967 193.86218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02438968 193.86218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02438969 193.86221313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02438970 193.86221313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02438971 193.86222839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02438972 193.86222839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02438973 193.86225891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02438974 193.86225891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02438975 193.86228943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02438976 193.86228943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02438977 193.86233521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02438978 193.86233521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02438979 193.86238098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02438980 193.86238098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02438981 193.86239624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02438982 193.86239624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02438983 193.86242676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02438984 193.86244202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02438985 193.86245728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02438986 193.86245728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02438987 193.86248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02438988 193.86248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02438989 193.86251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02438990 193.86251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02438991 193.86253357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02438992 193.86253357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02438993 193.86256409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02438994 193.86257935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02438995 193.86260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02438996 193.86260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02438997 193.86262512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02438998 193.86262512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02438999 193.86265564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02439000 193.86267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02439001 193.86270142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02439002 193.86270142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02439003 193.86271667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02439004 193.86271667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02439005 193.86274719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02439006 193.86274719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02439007 193.86277771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02439008 193.86277771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02439009 193.86279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02439010 193.86279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02439011 193.86282349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02439012 193.86283875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02439013 193.86285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02439014 193.86285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02439015 193.86288452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02439016 193.86288452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02439017 193.86291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02439018 193.86291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02439019 193.86293030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02439020 193.86293030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02439021 193.86296082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02439022 193.86296082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02439023 193.86299133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02439024 193.86299133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02439025 193.86302185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02439026 193.86302185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02439027 193.86303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02439028 193.86305237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02439029 193.86308289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02439030 193.86308289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02439031 193.86309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02439032 193.86309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02439033 193.86312866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02439034 193.86312866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02439035 193.86317444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02439036 193.86317444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02439037 193.86318970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02439038 193.86318970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02439039 193.86322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02439040 193.86322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02439041 193.86325073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02439042 193.86325073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02439043 193.86326599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02439044 193.86326599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02439045 193.86329651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02439046 193.86329651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02439047 193.86332703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02439048 193.86332703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02439049 193.86334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02439050 193.86334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02439051 193.86337280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02439052 193.86337280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02439053 193.86340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02439054 193.86341858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02439055 193.86341858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02439056 193.86343384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02439057 193.86346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02439058 193.86346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02439059 193.86349487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02439060 193.86349487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02439061 193.86351013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02439062 193.86351013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02439063 193.86354065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02439064 193.86354065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02439065 193.86357117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02439066 193.86357117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02439067 193.86358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02439068 193.86358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02439069 193.86361694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02439070 193.86361694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02439071 193.86364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02439072 193.86364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02439073 193.86366272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02439074 193.86367798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02439075 193.86370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02439076 193.86370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02439077 193.86372375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02439078 193.86372375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02439079 193.86375427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02439080 193.86375427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02439081 193.86380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02439082 193.86380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02439083 193.86381531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02439084 193.86381531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02439085 193.86384583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02439086 193.86384583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02439087 193.86387634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02439088 193.86387634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02439089 193.86389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02439090 193.86389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02439091 193.86392212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02439092 193.86392212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02439093 193.86395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02439094 193.86395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02439095 193.86398315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02439096 193.86398315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02439097 193.86401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02439098 193.86401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02439099 193.86404419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02439100 193.86404419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02439101 193.86405945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02439102 193.86407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02439103 193.86408997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02439104 193.86410522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02439105 193.86412048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02439106 193.86412048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02439107 193.86415100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02439108 193.86416626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02439109 193.86418152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02439110 193.86419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02439111 193.86421204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02439112 193.86421204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02439113 193.86424255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02439114 193.86424255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02439115 193.86427307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02439116 193.86427307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02439117 193.86428833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02439118 193.86430359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02439119 193.86433411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02439120 193.86433411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02439121 193.86436462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02439122 193.86436462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02439123 193.86437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02439124 193.86437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02439125 193.86441040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02439126 193.86441040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02439127 193.86444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02439128 193.86444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02439129 193.86447144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02439130 193.86447144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02439131 193.86451721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02439132 193.86451721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02439133 193.86454773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02439134 193.86454773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02439135 193.86457825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02439136 193.86457825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02439137 193.86460876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02439138 193.86460876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02439139 193.86462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02439140 193.86462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02439141 193.86465454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02439142 193.86465454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02439143 193.86468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02439144 193.86468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02439145 193.86470032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02439146 193.86471558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02439147 193.86474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02439148 193.86474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02439149 193.86476135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02439150 193.86476135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02439151 193.86479187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02439152 193.86479187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02439153 193.86482239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02439154 193.86482239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02439155 193.86483765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02439156 193.86483765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02439157 193.86486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02439158 193.86486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02439159 193.86489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02439160 193.86489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02439161 193.86492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02439162 193.86492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02439163 193.86494446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02439164 193.86495972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02439165 193.86497498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02439166 193.86499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02439167 193.86500549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02439168 193.86500549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02439169 193.86503601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02439170 193.86503601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02439171 193.86506653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02439172 193.86506653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02439173 193.86508179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02439174 193.86508179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02439175 193.86511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02439176 193.86511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02439177 193.86514282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02439178 193.86514282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02439179 193.86515808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02439180 193.86515808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02439181 193.86518860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02439182 193.86518860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02439183 193.86521912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02439184 193.86521912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02439185 193.86523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02439186 193.86524963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02439187 193.86526489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02439188 193.86528015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02439189 193.86531067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02439190 193.86531067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02439191 193.86532593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02439192 193.86532593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02439193 193.86535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02439194 193.86535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02439195 193.86538696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02439196 193.86538696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02439197 193.86540222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02439198 193.86540222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02439199 193.86543274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02439200 193.86543274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02439201 193.86546326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02439202 193.86546326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02439203 193.86547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02439204 193.86547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02439205 193.86550903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02439206 193.86550903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02439207 193.86553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02439208 193.86555481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02439209 193.86557007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02439210 193.86557007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02439211 193.86560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02439212 193.86560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02439213 193.86563110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02439214 193.86563110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02439215 193.86566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02439216 193.86566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02439217 193.86569214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02439218 193.86569214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02439219 193.86572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02439220 193.86572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02439221 193.86573792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02439222 193.86573792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02439223 193.86576843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02439224 193.86576843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02439225 193.86579895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02439226 193.86579895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02439227 193.86581421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02439228 193.86581421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02439229 193.86584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02439230 193.86584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02439231 193.86587524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02439232 193.86587524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02439233 193.86589050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02439234 193.86590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02439235 193.86593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02439236 193.86593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02439237 193.86595154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02439238 193.86595154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02439239 193.86598206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02439240 193.86598206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02439241 193.86601257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02439242 193.86601257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02439243 193.86602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02439244 193.86602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02439245 193.86605835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02439246 193.86605835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02439247 193.86608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02439248 193.86608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02439249 193.86611938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02439250 193.86611938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02439251 193.86613464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02439252 193.86613464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02439253 193.86616516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02439254 193.86618042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02439255 193.86619568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02439256 193.86619568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02439257 193.86622620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02439258 193.86622620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02439259 193.86625671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02439260 193.86625671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02439261 193.86627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02439262 193.86628723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02439263 193.86631775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02439264 193.86631775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02439265 193.86634827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02439266 193.86634827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02439267 193.86636353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02439268 193.86636353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02439269 193.86639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02439270 193.86639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02439271 193.86642456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02439272 193.86642456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02439273 193.86643982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02439274 193.86643982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02439275 193.86647034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02439276 193.86648560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02439277 193.86650085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02439278 193.86651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02439279 193.86653137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02439280 193.86653137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02439281 193.86656189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02439282 193.86656189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02439283 193.86659241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02439284 193.86659241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02439285 193.86660767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02439286 193.86660767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02439287 193.86663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02439288 193.86663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02439289 193.86666870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02439290 193.86666870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02439291 193.86668396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02439292 193.86668396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02439293 193.86671448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02439294 193.86671448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02439295 193.86674500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02439296 193.86674500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02439297 193.86676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02439298 193.86677551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02439299 193.86680603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02439300 193.86680603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02439301 193.86682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02439302 193.86682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02439303 193.86685181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02439304 193.86685181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02439305 193.86688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02439306 193.86688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02439307 193.86691284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02439308 193.86691284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02439309 193.86692810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02439310 193.86692810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02439311 193.86695862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02439312 193.86695862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02439313 193.86698914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02439314 193.86698914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02439315 193.86700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02439316 193.86700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02439317 193.86703491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02439318 193.86705017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02439319 193.86706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02439320 193.86706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02439321 193.86709595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02439322 193.86709595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02439323 193.86712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02439324 193.86712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02439325 193.86714172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02439326 193.86714172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02439327 193.86717224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02439328 193.86717224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02439329 193.86720276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02439330 193.86720276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02439331 193.86721802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02439332 193.86721802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02439333 193.86724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02439334 193.86724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02439335 193.86727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02439336 193.86727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02439337 193.86730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02439338 193.86730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02439339 193.86732483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02439340 193.86734009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02439341 193.86735535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02439342 193.86737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02439343 193.86738586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02439344 193.86738586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02439345 193.86741638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02439346 193.86741638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02439347 193.86744690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02439348 193.86744690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02439349 193.86746216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02439350 193.86746216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02439351 193.86749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02439352 193.86750793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02439353 193.86753845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02439354 193.86753845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02439355 193.86755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02439356 193.86755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02439357 193.86758423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02439358 193.86758423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02439359 193.86761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02439360 193.86761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02439361 193.86764526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02439362 193.86764526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02439363 193.86767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02439364 193.86767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02439365 193.86770630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02439366 193.86770630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02439367 193.86772156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02439368 193.86772156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02439369 193.86775208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02439370 193.86775208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02439371 193.86778259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02439372 193.86778259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02439373 193.86779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02439374 193.86779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02439375 193.86782837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02439376 193.86782837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02439377 193.86785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02439378 193.86785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02439379 193.86787415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02439380 193.86788940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02439381 193.86791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02439382 193.86791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02439383 193.86793518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02439384 193.86793518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02439385 193.86796570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02439386 193.86796570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02439387 193.86799622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02439388 193.86799622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02439389 193.86802673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02439390 193.86802673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02439391 193.86804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02439392 193.86804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02439393 193.86807251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02439394 193.86808777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02439395 193.86810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02439396 193.86810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02439397 193.86813354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02439398 193.86814880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02439399 193.86817932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02439400 193.86817932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02439401 193.86820984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02439402 193.86820984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02439403 193.86824036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02439404 193.86824036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02439405 193.86825562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02439406 193.86827087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02439407 193.86828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02439408 193.86830139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02439409 193.86833191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02439410 193.86833191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02439411 193.86834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02439412 193.86834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02439413 193.86837769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02439414 193.86837769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02439415 193.86840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02439416 193.86840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02439417 193.86842346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02439418 193.86842346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02439419 193.86845398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02439420 193.86845398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02439421 193.86848450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02439422 193.86848450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02439423 193.86849976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02439424 193.86849976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02439425 193.86853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02439426 193.86853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02439427 193.86856079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02439428 193.86857605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02439429 193.86857605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02439430 193.86859131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02439431 193.86862183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02439432 193.86862183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02439433 193.86865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02439434 193.86865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02439435 193.86866760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02439436 193.86866760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02439437 193.86869812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02439438 193.86869812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02439439 193.86872864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02439440 193.86872864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02439441 193.86875916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02439442 193.86875916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02439443 193.86878967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02439444 193.86878967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02439445 193.86882019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02439446 193.86882019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02439447 193.86883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02439448 193.86883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02439449 193.86886597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02439450 193.86886597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02439451 193.86889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02439452 193.86889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02439453 193.86891174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02439454 193.86891174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02439455 193.86894226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02439456 193.86894226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02439457 193.86897278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02439458 193.86897278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02439459 193.86898804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02439460 193.86900330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02439461 193.86903381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02439462 193.86903381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02439463 193.86904907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02439464 193.86904907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02439465 193.86907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02439466 193.86907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02439467 193.86911011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02439468 193.86911011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02439469 193.86912537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02439470 193.86912537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02439471 193.86915588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02439472 193.86917114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02439473 193.86920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02439474 193.86920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02439475 193.86921692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02439476 193.86921692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02439477 193.86924744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02439478 193.86924744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02439479 193.86927795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02439480 193.86927795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02439481 193.86929321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02439482 193.86929321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02439483 193.86932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02439484 193.86933899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02439485 193.86936951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02439486 193.86936951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02439487 193.86938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02439488 193.86938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02439489 193.86941528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02439490 193.86941528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02439491 193.86944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02439492 193.86944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02439493 193.86946106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02439494 193.86947632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02439495 193.86950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02439496 193.86950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02439497 193.86952209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02439498 193.86952209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02439499 193.86955261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02439500 193.86955261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02439501 193.86958313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02439502 193.86958313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02439503 193.86961365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02439504 193.86961365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02439505 193.86964417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02439506 193.86964417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02439507 193.86967468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02439508 193.86967468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02439509 193.86968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02439510 193.86968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02439511 193.86972046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02439512 193.86973572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02439513 193.86976624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02439514 193.86976624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02439515 193.86979675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02439516 193.86979675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02439517 193.86982727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02439518 193.86984253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02439519 193.86985779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02439520 193.86985779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02439521 193.86988831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02439522 193.86988831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02439523 193.86991882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02439524 193.86991882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02439525 193.86994934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02439526 193.86994934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02439527 193.86997986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02439528 193.86997986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02439529 193.87001038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02439530 193.87002563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02439531 193.87005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02439532 193.87005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02439533 193.87008667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02439534 193.87008667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02439535 193.87010193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02439536 193.87011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02439537 193.87013245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02439538 193.87014771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02439539 193.87016296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02439540 193.87016296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02439541 193.87019348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02439542 193.87019348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02439543 193.87022400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02439544 193.87022400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02439545 193.87023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02439546 193.87023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02439547 193.87026978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02439548 193.87026978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02439549 193.87030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02439550 193.87030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02439551 193.87033081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02439552 193.87033081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02439553 193.87034607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02439554 193.87034607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02439555 193.87037659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02439556 193.87039185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02439557 193.87040710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02439558 193.87040710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02439559 193.87043762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02439560 193.87043762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02439561 193.87046814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02439562 193.87046814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02439563 193.87048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02439564 193.87048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02439565 193.87051392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02439566 193.87051392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02439567 193.87054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02439568 193.87055969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02439569 193.87057495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02439570 193.87057495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02439571 193.87060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02439572 193.87060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02439573 193.87063599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02439574 193.87063599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02439575 193.87066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02439576 193.87066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02439577 193.87069702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02439578 193.87069702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02439579 193.87072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02439580 193.87072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02439581 193.87074280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02439582 193.87074280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02439583 193.87077332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02439584 193.87078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02439585 193.87080383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02439586 193.87080383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02439587 193.87083435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02439588 193.87083435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02439589 193.87086487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02439590 193.87086487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02439591 193.87088013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02439592 193.87088013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02439593 193.87091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02439594 193.87091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02439595 193.87094116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02439596 193.87095642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02439597 193.87095642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02439598 193.87097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02439599 193.87100220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02439600 193.87100220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02439601 193.87103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02439602 193.87103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02439603 193.87104797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02439604 193.87104797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02439605 193.87107849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02439606 193.87107849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02439607 193.87110901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02439608 193.87110901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02439609 193.87112427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02439610 193.87112427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02439611 193.87115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02439612 193.87115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02439613 193.87118530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02439614 193.87120056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02439615 193.87120056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02439616 193.87121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02439617 193.87124634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02439618 193.87124634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02439619 193.87127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02439620 193.87127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02439621 193.87129211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02439622 193.87129211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02439623 193.87132263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02439624 193.87132263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02439625 193.87135315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02439626 193.87135315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02439627 193.87136841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02439628 193.87136841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02439629 193.87139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02439630 193.87139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02439631 193.87142944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02439632 193.87142944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02439633 193.87144470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02439634 193.87144470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02439635 193.87147522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02439636 193.87149048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02439637 193.87150574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02439638 193.87152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02439639 193.87153625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02439640 193.87153625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02439641 193.87156677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02439642 193.87156677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02439643 193.87159729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02439644 193.87159729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02439645 193.87161255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02439646 193.87161255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02439647 193.87164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02439648 193.87164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02439649 193.87167358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02439650 193.87167358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02439651 193.87168884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02439652 193.87168884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02439653 193.87171936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02439654 193.87171936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02439655 193.87174988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02439656 193.87174988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02439657 193.87176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02439658 193.87178040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02439659 193.87181091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02439660 193.87181091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02439661 193.87182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02439662 193.87182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02439663 193.87185669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02439664 193.87185669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02439665 193.87188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02439666 193.87190247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02439667 193.87191772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02439668 193.87191772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02439669 193.87194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02439670 193.87194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02439671 193.87197876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02439672 193.87197876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02439673 193.87199402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02439674 193.87200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02439675 193.87203979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02439676 193.87203979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02439677 193.87207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02439678 193.87207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02439679 193.87208557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02439680 193.87208557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02439681 193.87211609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02439682 193.87211609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02439683 193.87214661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02439684 193.87214661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02439685 193.87216187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02439686 193.87216187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02439687 193.87219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02439688 193.87219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02439689 193.87222290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02439690 193.87222290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02439691 193.87225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02439692 193.87225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02439693 193.87228394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02439694 193.87228394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02439695 193.87231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02439696 193.87231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02439697 193.87232971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02439698 193.87234497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02439699 193.87237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02439700 193.87237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02439701 193.87239075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02439702 193.87239075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02439703 193.87242126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02439704 193.87242126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02439705 193.87245178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02439706 193.87245178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02439707 193.87246704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02439708 193.87248230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02439709 193.87251282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02439710 193.87251282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02439711 193.87254333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02439712 193.87254333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02439713 193.87255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02439714 193.87255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02439715 193.87258911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02439716 193.87258911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02439717 193.87261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02439718 193.87261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02439719 193.87263489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02439720 193.87263489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02439721 193.87266541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02439722 193.87266541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02439723 193.87269592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02439724 193.87271118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02439725 193.87271118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02439726 193.87272644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02439727 193.87275696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02439728 193.87275696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02439729 193.87278748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02439730 193.87278748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02439731 193.87280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02439732 193.87280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02439733 193.87283325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02439734 193.87283325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02439735 193.87286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02439736 193.87286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02439737 193.87287903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02439738 193.87287903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02439739 193.87290955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02439740 193.87290955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02439741 193.87294006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02439742 193.87294006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02439743 193.87295532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02439744 193.87297058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02439745 193.87298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02439746 193.87300110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02439747 193.87303162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02439748 193.87303162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02439749 193.87304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02439750 193.87304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02439751 193.87307739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02439752 193.87307739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02439753 193.87310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02439754 193.87310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02439755 193.87313843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02439756 193.87313843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02439757 193.87316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02439758 193.87316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02439759 193.87318420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02439760 193.87318420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02439761 193.87321472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02439762 193.87321472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02439763 193.87324524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02439764 193.87324524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02439765 193.87326050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02439766 193.87326050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02439767 193.87329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02439768 193.87329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02439769 193.87332153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02439770 193.87332153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02439771 193.87333679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02439772 193.87335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02439773 193.87336731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02439774 193.87338257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02439775 193.87341309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02439776 193.87341309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02439777 193.87342834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02439778 193.87342834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02439779 193.87345886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02439780 193.87345886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02439781 193.87348938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02439782 193.87348938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02439783 193.87350464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02439784 193.87350464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02439785 193.87353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02439786 193.87353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02439787 193.87356567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02439788 193.87356567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02439789 193.87358093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02439790 193.87358093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02439791 193.87361145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02439792 193.87362671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02439793 193.87364197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02439794 193.87365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02439795 193.87367249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02439796 193.87367249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02439797 193.87370300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02439798 193.87370300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02439799 193.87373352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02439800 193.87373352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02439801 193.87374878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02439802 193.87376404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02439803 193.87379456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02439804 193.87379456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02439805 193.87382507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02439806 193.87382507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02439807 193.87384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02439808 193.87384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02439809 193.87387085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02439810 193.87387085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02439811 193.87390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02439812 193.87390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02439813 193.87391663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02439814 193.87393188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02439815 193.87396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02439816 193.87396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02439817 193.87397766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02439818 193.87397766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02439819 193.87400818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02439820 193.87400818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02439821 193.87403870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02439822 193.87403870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02439823 193.87405396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02439824 193.87405396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02439825 193.87408447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02439826 193.87408447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02439827 193.87411499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02439828 193.87411499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02439829 193.87413025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02439830 193.87413025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02439831 193.87416077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02439832 193.87417603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02439833 193.87419128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02439834 193.87420654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02439835 193.87422180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02439836 193.87422180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02439837 193.87425232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02439838 193.87425232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02439839 193.87428284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02439840 193.87428284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02439841 193.87429810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02439842 193.87429810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02439843 193.87432861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02439844 193.87432861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02439845 193.87435913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02439846 193.87437439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02439847 193.87438965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02439848 193.87438965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02439849 193.87442017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02439850 193.87442017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02439851 193.87445068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02439852 193.87445068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02439853 193.87446594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02439854 193.87448120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02439855 193.87449646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02439856 193.87451172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02439857 193.87452698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02439858 193.87452698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02439859 193.87455750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02439860 193.87455750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02439861 193.87458801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02439862 193.87458801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02439863 193.87461853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02439864 193.87461853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02439865 193.87463379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02439866 193.87463379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02439867 193.87466431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02439868 193.87466431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02439869 193.87469482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02439870 193.87469482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02439871 193.87471008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02439872 193.87471008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02439873 193.87474060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02439874 193.87474060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02439875 193.87477112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02439876 193.87477112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02439877 193.87478638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02439878 193.87480164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02439879 193.87483215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02439880 193.87483215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02439881 193.87484741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02439882 193.87484741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02439883 193.87487793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02439884 193.87487793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02439885 193.87490845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02439886 193.87490845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02439887 193.87492371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02439888 193.87492371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02439889 193.87495422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02439890 193.87495422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02439891 193.87498474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02439892 193.87498474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02439893 193.87501526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02439894 193.87501526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02439895 193.87503052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02439896 193.87504578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02439897 193.87506104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02439898 193.87507629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02439899 193.87509155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02439900 193.87509155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02439901 193.87512207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02439902 193.87512207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02439903 193.87515259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02439904 193.87515259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02439905 193.87516785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02439906 193.87516785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02439907 193.87519836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02439908 193.87519836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02439909 193.87522888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02439910 193.87522888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02439911 193.87524414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02439912 193.87524414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02439913 193.87527466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02439914 193.87527466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02439915 193.87530518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02439916 193.87530518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02439917 193.87532043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02439918 193.87533569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02439919 193.87535095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02439920 193.87536621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02439921 193.87539673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02439922 193.87539673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02439923 193.87541199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02439924 193.87541199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02439925 193.87544250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02439926 193.87544250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02439927 193.87547302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02439928 193.87547302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02439929 193.87548828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02439930 193.87548828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02439931 193.87551880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02439932 193.87551880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02439933 193.87554932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02439934 193.87554932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02439935 193.87557983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02439936 193.87557983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02439937 193.87561035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02439938 193.87561035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02439939 193.87564087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02439940 193.87564087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02439941 193.87565613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02439942 193.87567139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02439943 193.87571716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02439944 193.87571716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02439945 193.87573242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02439946 193.87573242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02439947 193.87576294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02439948 193.87576294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02439949 193.87579346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02439950 193.87580872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02439951 193.87580872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02439952 193.87582397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02439953 193.87585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02439954 193.87585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02439955 193.87588501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02439956 193.87588501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02439957 193.87590027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02439958 193.87590027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02439959 193.87593079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02439960 193.87593079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02439961 193.87596130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02439962 193.87596130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02439963 193.87597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02439964 193.87597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02439965 193.87600708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02439966 193.87600708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02439967 193.87603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02439968 193.87603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02439969 193.87605286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02439970 193.87605286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02439971 193.87608337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02439972 193.87609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02439973 193.87611389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02439974 193.87612915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02439975 193.87614441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02439976 193.87614441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02439977 193.87617493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02439978 193.87617493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02439979 193.87620544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02439980 193.87620544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02439981 193.87622070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02439982 193.87623596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02439983 193.87626648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02439984 193.87626648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02439985 193.87628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02439986 193.87628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02439987 193.87631226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02439988 193.87631226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02439989 193.87634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02439990 193.87634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02439991 193.87635803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02439992 193.87637329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02439993 193.87640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02439994 193.87640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02439995 193.87643433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02439996 193.87643433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02439997 193.87644958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02439998 193.87644958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02439999 193.87648010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02440000 193.87648010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02440001 193.87651062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02440002 193.87651062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02440003 193.87652588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02440004 193.87654114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02440005 193.87655640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02440006 193.87657166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02440007 193.87660217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02440008 193.87660217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02440009 193.87661743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02440010 193.87661743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02440011 193.87664795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02440012 193.87664795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02440013 193.87667847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02440014 193.87667847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02440015 193.87669373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02440016 193.87669373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02440017 193.87672424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02440018 193.87672424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02440019 193.87675476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02440020 193.87675476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02440021 193.87677002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02440022 193.87677002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02440023 193.87680054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02440024 193.87681580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02440025 193.87683105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02440026 193.87683105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02440027 193.87686157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02440028 193.87686157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02440029 193.87689209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02440030 193.87690735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02440031 193.87692261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02440032 193.87692261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02440033 193.87695313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02440034 193.87695313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02440035 193.87698364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02440036 193.87698364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02440037 193.87701416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02440038 193.87701416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02440039 193.87704468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02440040 193.87704468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02440041 193.87707520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02440042 193.87707520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02440043 193.87709045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02440044 193.87709045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02440045 193.87712097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02440046 193.87712097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02440047 193.87715149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02440048 193.87715149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02440049 193.87716675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02440050 193.87716675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02440051 193.87719727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02440052 193.87719727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02440053 193.87722778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02440054 193.87722778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02440055 193.87724304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02440056 193.87725830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02440057 193.87728882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02440058 193.87728882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02440059 193.87731934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02440060 193.87731934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02440061 193.87733459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02440062 193.87733459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02440063 193.87736511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02440064 193.87736511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02440065 193.87739563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02440066 193.87739563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02440067 193.87741089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02440068 193.87741089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02440069 193.87744141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02440070 193.87745667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02440071 193.87747192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02440072 193.87747192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02440073 193.87750244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02440074 193.87750244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02440075 193.87753296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02440076 193.87753296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02440077 193.87754822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02440078 193.87754822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02440079 193.87757874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02440080 193.87759399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02440081 193.87762451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02440082 193.87762451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02440083 193.87763977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02440084 193.87763977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02440085 193.87767029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02440086 193.87767029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02440087 193.87770081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02440088 193.87770081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02440089 193.87771606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02440090 193.87771606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02440091 193.87774658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02440092 193.87774658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02440093 193.87777710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02440094 193.87777710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02440095 193.87779236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02440096 193.87780762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02440097 193.87782288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02440098 193.87783813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02440099 193.87786865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02440100 193.87786865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02440101 193.87788391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02440102 193.87788391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02440103 193.87791443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02440104 193.87791443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02440105 193.87794495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02440106 193.87794495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02440107 193.87796021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02440108 193.87796021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02440109 193.87800598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02440110 193.87800598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02440111 193.87802124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02440112 193.87802124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02440113 193.87805176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02440114 193.87805176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02440115 193.87808228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02440116 193.87808228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02440117 193.87811279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02440118 193.87811279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02440119 193.87812805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02440120 193.87812805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02440121 193.87815857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02440122 193.87815857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02440123 193.87818909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02440124 193.87818909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02440125 193.87820435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02440126 193.87821960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02440127 193.87825012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02440128 193.87825012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02440129 193.87826538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02440130 193.87826538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02440131 193.87829590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02440132 193.87829590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02440133 193.87832642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02440134 193.87832642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02440135 193.87834167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02440136 193.87834167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02440137 193.87837219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02440138 193.87837219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02440139 193.87840271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02440140 193.87840271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02440141 193.87843323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02440142 193.87843323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02440143 193.87844849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02440144 193.87844849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02440145 193.87847900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02440146 193.87849426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02440147 193.87850952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02440148 193.87850952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02440149 193.87854004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02440150 193.87854004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02440151 193.87857056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02440152 193.87857056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02440153 193.87858582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02440154 193.87858582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02440155 193.87861633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02440156 193.87861633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02440157 193.87864685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02440158 193.87864685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02440159 193.87866211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02440160 193.87866211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02440161 193.87870789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02440162 193.87870789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02440163 193.87873840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02440164 193.87873840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02440165 193.87875366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02440166 193.87875366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02440167 193.87878418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02440168 193.87878418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02440169 193.87881470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02440170 193.87881470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02440171 193.87882996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02440172 193.87884521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02440173 193.87886047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02440174 193.87887573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02440175 193.87890625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02440176 193.87890625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02440177 193.87892151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02440178 193.87892151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02440179 193.87895203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02440180 193.87895203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02440181 193.87898254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02440182 193.87898254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02440183 193.87899780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02440184 193.87899780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02440185 193.87902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02440186 193.87902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02440187 193.87905884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02440188 193.87905884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02440189 193.87907410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02440190 193.87907410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02440191 193.87910461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02440192 193.87910461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02440193 193.87913513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02440194 193.87913513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02440195 193.87915039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02440196 193.87916565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02440197 193.87919617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02440198 193.87919617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02440199 193.87922668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02440200 193.87922668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02440201 193.87924194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02440202 193.87924194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02440203 193.87927246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02440204 193.87927246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02440205 193.87930298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02440206 193.87930298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02440207 193.87931824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02440208 193.87933350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02440209 193.87936401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02440210 193.87936401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02440211 193.87937927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02440212 193.87937927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02440213 193.87940979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02440214 193.87940979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02440215 193.87944031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02440216 193.87944031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02440217 193.87945557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02440218 193.87947083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02440219 193.87950134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02440220 193.87950134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02440221 193.87953186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02440222 193.87953186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02440223 193.87954712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02440224 193.87954712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02440225 193.87957764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02440226 193.87957764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02440227 193.87960815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02440228 193.87960815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02440229 193.87962341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02440230 193.87962341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02440231 193.87965393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02440232 193.87965393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02440233 193.87968445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02440234 193.87969971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02440235 193.87969971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02440236 193.87971497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02440237 193.87974548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02440238 193.87974548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02440239 193.87977600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02440240 193.87977600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02440241 193.87979126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02440242 193.87979126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02440243 193.87982178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02440244 193.87982178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02440245 193.87985229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02440246 193.87985229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02440247 193.87986755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02440248 193.87986755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02440249 193.87989807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02440250 193.87989807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02440251 193.87992859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02440252 193.87992859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02440253 193.87995911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02440254 193.87995911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02440255 193.87998962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02440256 193.87998962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02440257 193.88002014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02440258 193.88002014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02440259 193.88003540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02440260 193.88005066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02440261 193.88008118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02440262 193.88008118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02440263 193.88009644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02440264 193.88009644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02440265 193.88012695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02440266 193.88012695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02440267 193.88015747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02440268 193.88015747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02440269 193.88017273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02440270 193.88017273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02440271 193.88020325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02440272 193.88020325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02440273 193.88023376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02440274 193.88023376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02440275 193.88026428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02440276 193.88026428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02440277 193.88029480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02440278 193.88029480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02440279 193.88032532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02440280 193.88032532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02440281 193.88034058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02440282 193.88034058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02440283 193.88037109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02440284 193.88038635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02440285 193.88041687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02440286 193.88041687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02440287 193.88043213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02440288 193.88043213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02440289 193.88046265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02440290 193.88046265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02440291 193.88049316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02440292 193.88049316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02440293 193.88050842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02440294 193.88052368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02440295 193.88055420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02440296 193.88055420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02440297 193.88056946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02440298 193.88056946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02440299 193.88059998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02440300 193.88059998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02440301 193.88063049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02440302 193.88064575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02440303 193.88066101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02440304 193.88066101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02440305 193.88069153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02440306 193.88069153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02440307 193.88072205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02440308 193.88072205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02440309 193.88073730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02440310 193.88073730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02440311 193.88076782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02440312 193.88076782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02440313 193.88079834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02440314 193.88079834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02440315 193.88081360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02440316 193.88082886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02440317 193.88084412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02440318 193.88085938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02440319 193.88088989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02440320 193.88088989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02440321 193.88090515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02440322 193.88090515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02440323 193.88093567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02440324 193.88093567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02440325 193.88096619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02440326 193.88096619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02440327 193.88098145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02440328 193.88098145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02440329 193.88101196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02440330 193.88101196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02440331 193.88104248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02440332 193.88104248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02440333 193.88105774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02440334 193.88105774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02440335 193.88108826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02440336 193.88108826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02440337 193.88111877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02440338 193.88111877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02440339 193.88113403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02440340 193.88114929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02440341 193.88117981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02440342 193.88117981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02440343 193.88121033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02440344 193.88121033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02440345 193.88122559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02440346 193.88124084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02440347 193.88127136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02440348 193.88127136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02440349 193.88128662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02440350 193.88128662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02440351 193.88131714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02440352 193.88131714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02440353 193.88134766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02440354 193.88134766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02440355 193.88136292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02440356 193.88136292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02440357 193.88139343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02440358 193.88139343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02440359 193.88142395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02440360 193.88142395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02440361 193.88143921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02440362 193.88143921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02440363 193.88146973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02440364 193.88146973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02440365 193.88150024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02440366 193.88151550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02440367 193.88153076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02440368 193.88153076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02440369 193.88156128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02440370 193.88156128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02440371 193.88159180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02440372 193.88159180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02440373 193.88160706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02440374 193.88160706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02440375 193.88163757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02440376 193.88163757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02440377 193.88166809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02440378 193.88166809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02440379 193.88168335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02440380 193.88168335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02440381 193.88171387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02440382 193.88171387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02440383 193.88174438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02440384 193.88174438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02440385 193.88175964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02440386 193.88175964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02440387 193.88179016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02440388 193.88180542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02440389 193.88183594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02440390 193.88183594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02440391 193.88185120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02440392 193.88185120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02440393 193.88188171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02440394 193.88189697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02440395 193.88192749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02440396 193.88192749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02440397 193.88194275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02440398 193.88194275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02440399 193.88197327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02440400 193.88197327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02440401 193.88200378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02440402 193.88200378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02440403 193.88201904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02440404 193.88201904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02440405 193.88204956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02440406 193.88204956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02440407 193.88208008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02440408 193.88208008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02440409 193.88209534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02440410 193.88209534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02440411 193.88212585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02440412 193.88212585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02440413 193.88215637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02440414 193.88215637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02440415 193.88217163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02440416 193.88218689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02440417 193.88221741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02440418 193.88221741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02440419 193.88223267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02440420 193.88223267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02440421 193.88226318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02440422 193.88226318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02440423 193.88229370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02440424 193.88229370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02440425 193.88232422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02440426 193.88232422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02440427 193.88233948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02440428 193.88233948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02440429 193.88237000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02440430 193.88237000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02440431 193.88240051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02440432 193.88240051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02440433 193.88241577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02440434 193.88243103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02440435 193.88244629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02440436 193.88246155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02440437 193.88247681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02440438 193.88247681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02440439 193.88250732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02440440 193.88250732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02440441 193.88253784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02440442 193.88253784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02440443 193.88255310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02440444 193.88255310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02440445 193.88258362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02440446 193.88258362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02440447 193.88261414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02440448 193.88261414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02440449 193.88262939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02440450 193.88262939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02440451 193.88265991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02440452 193.88265991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02440453 193.88269043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02440454 193.88269043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02440455 193.88272095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02440456 193.88272095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02440457 193.88273621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02440458 193.88275146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02440459 193.88278198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02440460 193.88278198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02440461 193.88279724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02440462 193.88279724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02440463 193.88282776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02440464 193.88282776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02440465 193.88285828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02440466 193.88285828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02440467 193.88287354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02440468 193.88287354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02440469 193.88290405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02440470 193.88290405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02440471 193.88293457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02440472 193.88293457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02440473 193.88294983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02440474 193.88294983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02440475 193.88298035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02440476 193.88298035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02440477 193.88301086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02440478 193.88302612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02440479 193.88302612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02440480 193.88304138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02440481 193.88307190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02440482 193.88307190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02440483 193.88310242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02440484 193.88310242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02440485 193.88311768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02440486 193.88311768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02440487 193.88314819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02440488 193.88316345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02440489 193.88319397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02440490 193.88319397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02440491 193.88320923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02440492 193.88320923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02440493 193.88323975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02440494 193.88323975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02440495 193.88327026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02440496 193.88327026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02440497 193.88328552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02440498 193.88330078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02440499 193.88333130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02440500 193.88333130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02440501 193.88334656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02440502 193.88334656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02440503 193.88337708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02440504 193.88337708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02440505 193.88340759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02440506 193.88340759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02440507 193.88342285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02440508 193.88342285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02440509 193.88345337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02440510 193.88346863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02440511 193.88349915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02440512 193.88349915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02440513 193.88351440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02440514 193.88351440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02440515 193.88354492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02440516 193.88354492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02440517 193.88357544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02440518 193.88357544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02440519 193.88359070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02440520 193.88360596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02440521 193.88363647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02440522 193.88363647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02440523 193.88366699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02440524 193.88366699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02440525 193.88368225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02440526 193.88369751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02440527 193.88372803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02440528 193.88372803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02440529 193.88374329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02440530 193.88374329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02440531 193.88377380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02440532 193.88377380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02440533 193.88380432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02440534 193.88380432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02440535 193.88383484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02440536 193.88383484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02440537 193.88386536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02440538 193.88386536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02440539 193.88389587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02440540 193.88389587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02440541 193.88391113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02440542 193.88392639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02440543 193.88395691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02440544 193.88395691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02440545 193.88398743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02440546 193.88398743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02440547 193.88400269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02440548 193.88400269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02440549 193.88403320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02440550 193.88403320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02440551 193.88406372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02440552 193.88406372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02440553 193.88407898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02440554 193.88409424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02440555 193.88412476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02440556 193.88412476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02440557 193.88414001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02440558 193.88414001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02440559 193.88417053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02440560 193.88417053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02440561 193.88420105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02440562 193.88420105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02440563 193.88423157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02440564 193.88423157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02447265 193.97636414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12248 -02447266 193.97636414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12248 -02447267 193.97639465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12258 -02447268 193.97639465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12258 -02447269 193.97642517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12268 -02447270 193.97644043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12268 -02447271 193.97645569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12278 -02447272 193.97645569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12278 -02447273 193.97650146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12288 -02447274 193.97650146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12288 -02447275 193.97653198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12298 -02447276 193.97653198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12298 -02447277 193.97656250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a8 -02447278 193.97656250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a8 -02447279 193.97659302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b8 -02447280 193.97659302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b8 -02447281 193.97660828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122c8 -02447282 193.97660828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122c8 -02447283 193.97663879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122d8 -02447284 193.97665405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122d8 -02447285 193.97668457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122e8 -02447286 193.97668457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122e8 -02447287 193.97669983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122f8 -02447288 193.97669983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x122f8 -02447289 193.97673035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12308 -02447290 193.97673035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12308 -02447291 193.97676086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12318 -02447292 193.97676086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12318 -02447293 193.97677612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12328 -02447294 193.97679138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12328 -02447295 193.97682190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12338 -02447296 193.97682190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12338 -02447297 193.97685242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12348 -02447298 193.97685242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12348 -02447299 193.97686768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12358 -02447300 193.97686768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12358 -02447301 193.97689819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12368 -02447302 193.97689819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12368 -02447303 193.97692871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12378 -02447304 193.97692871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12378 -02447305 193.97694397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12388 -02447306 193.97695923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12388 -02447307 193.97698975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12398 -02447308 193.97698975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12398 -02452415 194.04823303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c338 -02452416 194.04823303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c338 -02452417 194.04826355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c348 -02452418 194.04826355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c348 -02452419 194.04827881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c358 -02452420 194.04829407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c358 -02452421 194.04830933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c368 -02452422 194.04832458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c368 -02452423 194.04833984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c378 -02452424 194.04833984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c378 -02452425 194.04837036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c388 -02452426 194.04837036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c388 -02452427 194.04840088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c398 -02452428 194.04840088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c398 -02452429 194.04841614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a8 -02452430 194.04841614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a8 -02452431 194.04844666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b8 -02452432 194.04844666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b8 -02452433 194.04847717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c8 -02452434 194.04847717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c8 -02452435 194.04849243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -02452436 194.04849243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -02452437 194.04852295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -02452438 194.04852295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -02452439 194.04855347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -02452440 194.04856873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -02452441 194.04856873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -02452442 194.04858398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -02452443 194.04861450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -02452444 194.04861450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -02452445 194.04864502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -02452446 194.04864502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -02452447 194.04866028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -02452448 194.04866028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -02452449 194.04869080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c448 -02452450 194.04870605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c448 -02452451 194.04873657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c458 -02452452 194.04873657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c458 -02452453 194.04875183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c468 -02452454 194.04875183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c468 -02452455 194.04878235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c478 -02452456 194.04878235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c478 -02452457 194.04881287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c488 -02452458 194.04881287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c488 -02458565 194.13383484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28368 -02458566 194.13383484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28368 -02458567 194.13386536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28378 -02458568 194.13386536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28378 -02458569 194.13388062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28388 -02458570 194.13388062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28388 -02458571 194.13391113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28398 -02458572 194.13391113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28398 -02458573 194.13394165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a8 -02458574 194.13395691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a8 -02458575 194.13397217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b8 -02458576 194.13397217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b8 -02458577 194.13400269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c8 -02458578 194.13400269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c8 -02458579 194.13403320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d8 -02458580 194.13403320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d8 -02458581 194.13404846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e8 -02458582 194.13404846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e8 -02458583 194.13407898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f8 -02458584 194.13409424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f8 -02458585 194.13412476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28408 -02458586 194.13412476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28408 -02458587 194.13414001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28418 -02458588 194.13414001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28418 -02458589 194.13417053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28428 -02458590 194.13417053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28428 -02458591 194.13420105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28438 -02458592 194.13420105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28438 -02458593 194.13421631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28448 -02458594 194.13421631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28448 -02458595 194.13426208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28458 -02458596 194.13426208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28458 -02458597 194.13427734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28468 -02458598 194.13427734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28468 -02458599 194.13430786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28478 -02458600 194.13430786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28478 -02458601 194.13433838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28488 -02458602 194.13433838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28488 -02458603 194.13436890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28498 -02458604 194.13436890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28498 -02458605 194.13438416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a8 -02458606 194.13439941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a8 -02458607 194.13442993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b8 -02458608 194.13442993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b8 -02464737 194.21997070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34448 -02464738 194.21997070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34448 -02464739 194.22000122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34458 -02464740 194.22000122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34458 -02464741 194.22001648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34468 -02464742 194.22001648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34468 -02464743 194.22004700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34478 -02464744 194.22004700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34478 -02464745 194.22007751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34488 -02464746 194.22007751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34488 -02464747 194.22009277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34498 -02464748 194.22009277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34498 -02464749 194.22012329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344a8 -02464750 194.22012329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344a8 -02464751 194.22015381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344b8 -02464752 194.22015381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344b8 -02464753 194.22016907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344c8 -02464754 194.22018433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344c8 -02464755 194.22021484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344d8 -02464756 194.22021484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344d8 -02464757 194.22023010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344e8 -02464758 194.22023010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344e8 -02464759 194.22026062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344f8 -02464760 194.22026062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x344f8 -02464761 194.22029114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34508 -02464762 194.22029114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34508 -02464763 194.22030640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34518 -02464764 194.22030640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34518 -02464765 194.22033691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34528 -02464766 194.22033691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34528 -02464767 194.22036743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34538 -02464768 194.22036743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34538 -02464769 194.22039795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34548 -02464770 194.22039795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34548 -02464771 194.22042847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34558 -02464772 194.22042847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34558 -02464773 194.22045898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34568 -02464774 194.22045898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34568 -02464775 194.22047424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34578 -02464776 194.22047424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34578 -02464777 194.22050476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34588 -02464778 194.22050476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34588 -02464779 194.22053528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34598 -02464780 194.22055054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34598 -02480383 194.81440735 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480384 194.81446838 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480385 194.81448364 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480386 194.81451416 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02480387 194.81468201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480388 194.81468201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480389 194.81477356 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480390 194.81480408 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480391 195.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02480392 195.12161255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480393 195.12162781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480394 197.12284851 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02480395 197.14624023 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480396 197.14625549 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480397 197.32165527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480398 197.32170105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480399 197.32171631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480400 197.32173157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02480401 197.32185364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480402 197.32185364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480403 197.32191467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480404 197.32194519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480405 199.14755249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02480406 199.16877747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480407 199.16879272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480408 199.43656921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02480409 199.43658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02480410 199.43661499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02480411 199.43661499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02480412 199.43663025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02480413 199.43663025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02480414 199.43666077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02480415 199.43666077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02480416 199.43669128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02480417 199.43669128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02480418 199.43670654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02480419 199.43670654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02480420 199.43673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02480421 199.43673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02480422 199.43676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02480423 199.43676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02480424 199.43678284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02480425 199.43679810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02480426 199.43682861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02480427 199.43682861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02480428 199.43684387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02480429 199.43684387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02480430 199.43687439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02480431 199.43687439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02480432 199.43690491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02480433 199.43690491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02480434 199.43693542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02480435 199.43693542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02480436 199.43695068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02480437 199.43695068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02480438 199.43698120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02480439 199.43698120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02480440 199.43701172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02480441 199.43701172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02480442 199.43702698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02480443 199.43704224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02480444 199.43705750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02480445 199.43707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02480446 199.43708801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02480447 199.43708801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02480448 199.43711853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02480449 199.43711853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02480450 199.43714905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02480451 199.43714905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02480452 199.43716431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02480453 199.43716431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02480454 199.43719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02480455 199.43719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02480456 199.43722534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02480457 199.43722534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02480458 199.43724060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02480459 199.43724060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02480460 199.43727112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02480461 199.43728638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02480462 199.43730164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02480463 199.43731689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02480464 199.43733215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02480465 199.43733215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02480466 199.43736267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02480467 199.43736267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02480468 199.43739319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02480469 199.43739319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02480470 199.43740845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02480471 199.43760681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02480472 199.43763733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02480473 199.43763733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02480474 199.43766785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02480475 199.43768311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02480476 199.43772888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02480477 199.43772888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02480478 199.43775940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02480479 199.43775940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02480480 199.43778992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02480481 199.43778992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02480482 199.43780518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02480483 199.43780518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02480484 199.43783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02480485 199.43783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02480486 199.43786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02480487 199.43788147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02480488 199.43789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02480489 199.43789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02480490 199.43792725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02480491 199.43792725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02480492 199.43795776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02480493 199.43795776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02480494 199.43797302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02480495 199.43797302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02480496 199.43800354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02480497 199.43800354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02480498 199.43803406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02480499 199.43803406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02480500 199.43804932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02480501 199.43806458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02480502 199.43809509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02480503 199.43809509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02480504 199.43812561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02480505 199.43812561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02480506 199.43814087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02480507 199.43814087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02480508 199.43817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02480509 199.43817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02480510 199.43820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02480511 199.43820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02480512 199.43821716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02480513 199.43821716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02480514 199.43824768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02480515 199.43824768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02480516 199.43827820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02480517 199.43827820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02480518 199.43830872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02480519 199.43830872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02480520 199.43833923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02480521 199.43833923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02480522 199.43835449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02480523 199.43835449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02480524 199.43846130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02480525 199.43846130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02480526 199.43849182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02480527 199.43849182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02480528 199.43852234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02480529 199.43852234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02480530 199.43853760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02480531 199.43855286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02480532 199.43859863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02480533 199.43859863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02480534 199.43861389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02480535 199.43861389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02480536 199.43864441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02480537 199.43865967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02480538 199.43867493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02480539 199.43867493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02480540 199.43870544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02480541 199.43870544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02480542 199.43873596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02480543 199.43873596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02480544 199.43875122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02480545 199.43875122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02480546 199.43878174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02480547 199.43879700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02480548 199.43882751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02480549 199.43882751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02480550 199.43884277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02480551 199.43884277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02480552 199.43887329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02480553 199.43887329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02480554 199.43890381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02480555 199.43890381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02480556 199.43891907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02480557 199.43893433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02480558 199.43896484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02480559 199.43896484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02480560 199.43899536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02480561 199.43899536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02480562 199.43901062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02480563 199.43901062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02480564 199.43904114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02480565 199.43904114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02480566 199.43907166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02480567 199.43907166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02480568 199.43910217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02480569 199.43910217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02480570 199.43913269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02480571 199.43913269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02480572 199.43914795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02480573 199.43914795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02480574 199.43917847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02480575 199.43917847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02480576 199.43920898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02480577 199.43920898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02480578 199.43923950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02480579 199.43923950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02480580 199.43925476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02480581 199.43925476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02480582 199.43928528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02480583 199.43928528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02480584 199.43931580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02480585 199.43931580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02480586 199.43933105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02480587 199.43934631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02480588 199.43936157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02480589 199.43937683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02480590 199.43939209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02480591 199.43939209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02480592 199.43942261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02480593 199.43942261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02480594 199.43945313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02480595 199.43945313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02480596 199.43946838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02480597 199.43946838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02480598 199.43949890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02480599 199.43949890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02480600 199.43952942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02480601 199.43954468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02480602 199.43955994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02480603 199.43955994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02480604 199.43959045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02480605 199.43959045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02480606 199.43962097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02480607 199.43962097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02480608 199.43963623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02480609 199.43963623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02480610 199.43966675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02480611 199.43968201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02480612 199.43971252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02480613 199.43971252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02480614 199.43972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02480615 199.43972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02480616 199.43975830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02480617 199.43975830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02480618 199.43978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02480619 199.43978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02480620 199.43980408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02480621 199.43981934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02480622 199.43984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02480623 199.43984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02480624 199.43986511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02480625 199.43986511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02480626 199.43989563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02480627 199.43989563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02480628 199.43992615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02480629 199.43992615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02480630 199.43994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02480631 199.43994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02480632 199.43997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02480633 199.43997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02480634 199.44000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02480635 199.44000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02480636 199.44003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02480637 199.44003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02480638 199.44004822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02480639 199.44006348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02480640 199.44009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02480641 199.44009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02480642 199.44010925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02480643 199.44010925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02480644 199.44013977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02480645 199.44013977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02480646 199.44017029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02480647 199.44017029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02480648 199.44018555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02480649 199.44020081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02480650 199.44023132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02480651 199.44023132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02480652 199.44026184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02480653 199.44026184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02480654 199.44027710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02480655 199.44027710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02480656 199.44030762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02480657 199.44030762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02480658 199.44033813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02480659 199.44033813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02480660 199.44035339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02480661 199.44035339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02480662 199.44038391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02480663 199.44039917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02480664 199.44041443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02480665 199.44042969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02480666 199.44044495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02480667 199.44044495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02480668 199.44047546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02480669 199.44047546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02480670 199.44056702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02480671 199.44056702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02480672 199.44058228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02480673 199.44058228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02480674 199.44061279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02480675 199.44061279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02480676 199.44064331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02480677 199.44064331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02480678 199.44065857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02480679 199.44067383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02480680 199.44068909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02480681 199.44070435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02480682 199.44073486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02480683 199.44073486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02480684 199.44075012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02480685 199.44075012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02480686 199.44078064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02480687 199.44078064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02480688 199.44081116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02480689 199.44081116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02480690 199.44082642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02480691 199.44084167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02480692 199.44087219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02480693 199.44087219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02480694 199.44090271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02480695 199.44090271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02480696 199.44091797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02480697 199.44091797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02480698 199.44094849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02480699 199.44096375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02480700 199.44097900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02480701 199.44097900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02480702 199.44100952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02480703 199.44100952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02480704 199.44104004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02480705 199.44104004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02480706 199.44105530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02480707 199.44105530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02480708 199.44108582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02480709 199.44108582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02480710 199.44111633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02480711 199.44111633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02480712 199.44113159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02480713 199.44113159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02480714 199.44116211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02480715 199.44116211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02480716 199.44119263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02480717 199.44119263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02480718 199.44122314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02480719 199.44122314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02480720 199.44123840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02480721 199.44125366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02480722 199.44128418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02480723 199.44128418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02480724 199.44129944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02480725 199.44129944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02480726 199.44132996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02480727 199.44132996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02480728 199.44136047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02480729 199.44136047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02480730 199.44137573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02480731 199.44137573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02480732 199.44140625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02480733 199.44140625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02480734 199.44143677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02480735 199.44143677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02480736 199.44154358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02480737 199.44154358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02480738 199.44155884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02480739 199.44155884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02480740 199.44158936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02480741 199.44158936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02480742 199.44161987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02480743 199.44161987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02480744 199.44163513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02480745 199.44163513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02480746 199.44166565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02480747 199.44166565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02480748 199.44169617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02480749 199.44169617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02480750 199.44171143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02480751 199.44171143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02480752 199.44174194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02480753 199.44175720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02480754 199.44177246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02480755 199.44177246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02480756 199.44180298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02480757 199.44180298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02480758 199.44183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02480759 199.44183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02480760 199.44184875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02480761 199.44184875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02480762 199.44187927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02480763 199.44187927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02480764 199.44190979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02480765 199.44190979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02480766 199.44194031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02480767 199.44194031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02480768 199.44195557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02480769 199.44195557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02480770 199.44198608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02480771 199.44200134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02480772 199.44201660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02480773 199.44201660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02480774 199.44204712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02480775 199.44204712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02480776 199.44207764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02480777 199.44207764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02480778 199.44209290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02480779 199.44210815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02480780 199.44213867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02480781 199.44213867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02480782 199.44216919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02480783 199.44216919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02480784 199.44218445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02480785 199.44218445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02480786 199.44221497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02480787 199.44221497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02480788 199.44224548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02480789 199.44224548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02480790 199.44226074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02480791 199.44227600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02480792 199.44230652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02480793 199.44230652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02480794 199.44233704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02480795 199.44233704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02480796 199.44235229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02480797 199.44235229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02480798 199.44238281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02480799 199.44238281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02480800 199.44248962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02480801 199.44248962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02480802 199.44250488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02480803 199.44250488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02480804 199.44253540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02480805 199.44253540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02480806 199.44256592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02480807 199.44256592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02480808 199.44258118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02480809 199.44258118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02480810 199.44261169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02480811 199.44262695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02480812 199.44264221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02480813 199.44264221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02480814 199.44267273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02480815 199.44267273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02480816 199.44270325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02480817 199.44271851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02480818 199.44273376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02480819 199.44273376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02480820 199.44276428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02480821 199.44276428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02480822 199.44279480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02480823 199.44279480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02480824 199.44281006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02480825 199.44281006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02480826 199.44284058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02480827 199.44284058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02480828 199.44287109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02480829 199.44287109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02480830 199.44288635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02480831 199.44288635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02480832 199.44291687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02480833 199.44291687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02480834 199.44294739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02480835 199.44296265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02480836 199.44296265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02480837 199.44297791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02480838 199.44300842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02480839 199.44300842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02480840 199.44303894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02480841 199.44303894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02480842 199.44305420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02480843 199.44305420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02480844 199.44308472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02480845 199.44308472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02480846 199.44311523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02480847 199.44311523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02480848 199.44313049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02480849 199.44313049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02480850 199.44316101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02480851 199.44316101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02480852 199.44319153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02480853 199.44319153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02480854 199.44320679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02480855 199.44322205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02480856 199.44325256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02480857 199.44325256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02480858 199.44328308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02480859 199.44328308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02480860 199.44329834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02480861 199.44329834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02480862 199.44332886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02480863 199.44332886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02480864 199.44335938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02480865 199.44335938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02480866 199.44343567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02480867 199.44345093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02480868 199.44348145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02480869 199.44348145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02480870 199.44351196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02480871 199.44351196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02480872 199.44352722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02480873 199.44352722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02480874 199.44355774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02480875 199.44355774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02480876 199.44358826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02480877 199.44358826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02480878 199.44360352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02480879 199.44360352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02480880 199.44363403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02480881 199.44363403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02480882 199.44366455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02480883 199.44366455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02480884 199.44367981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02480885 199.44369507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02480886 199.44371033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02480887 199.44372559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02480888 199.44375610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02480889 199.44375610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02480890 199.44377136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02480891 199.44377136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02480892 199.44380188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02480893 199.44380188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02480894 199.44383240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02480895 199.44383240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02480896 199.44384766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02480897 199.44384766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02480898 199.44387817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02480899 199.44387817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02480900 199.44392395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02480901 199.44392395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02480902 199.44393921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02480903 199.44393921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02480904 199.44396973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02480905 199.44396973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02480906 199.44400024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02480907 199.44400024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02480908 199.44401550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02480909 199.44403076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02480910 199.44406128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02480911 199.44406128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02480912 199.44407654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02480913 199.44407654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02480914 199.44410706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02480915 199.44410706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02480916 199.44413757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02480917 199.44413757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02480918 199.44415283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02480919 199.44415283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02480920 199.44418335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02480921 199.44418335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02480922 199.44421387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02480923 199.44422913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02480924 199.44424438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02480925 199.44424438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02480926 199.44427490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02480927 199.44427490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02480928 199.44430542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02480929 199.44430542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02480930 199.44442749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02480931 199.44442749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02480932 199.44445801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02480933 199.44445801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02480934 199.44447327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02480935 199.44447327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02480936 199.44450378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02480937 199.44450378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02480938 199.44453430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02480939 199.44454956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02480940 199.44456482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02480941 199.44456482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02480942 199.44459534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02480943 199.44459534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02480944 199.44462585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02480945 199.44462585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02480946 199.44464111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02480947 199.44464111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02480948 199.44467163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02480949 199.44467163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02480950 199.44470215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02480951 199.44470215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02480952 199.44471741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02480953 199.44471741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02480954 199.44474792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02480955 199.44474792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02480956 199.44477844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02480957 199.44477844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02480958 199.44479370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02480959 199.44480896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02480960 199.44482422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02480961 199.44483948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02480962 199.44487000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02480963 199.44487000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02480964 199.44488525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02480965 199.44488525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02480966 199.44491577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02480967 199.44491577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02480968 199.44494629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02480969 199.44494629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02480970 199.44496155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02480971 199.44496155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02480972 199.44499207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02480973 199.44499207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02480974 199.44502258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02480975 199.44502258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02480976 199.44503784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02480977 199.44503784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02480978 199.44506836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02480979 199.44508362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02480980 199.44509888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02480981 199.44511414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02480982 199.44512939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02480983 199.44512939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02480984 199.44515991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02480985 199.44515991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02480986 199.44519043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02480987 199.44519043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02480988 199.44520569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02480989 199.44520569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02480990 199.44523621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02480991 199.44523621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02480992 199.44526672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02480993 199.44526672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02480994 199.44528198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02480995 199.44528198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02480996 199.44531250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02480997 199.44532776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02480998 199.44534302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02480999 199.44534302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02481000 199.44537354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02481001 199.44537354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02481002 199.44540405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02481003 199.44540405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02481004 199.44543457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02481005 199.44543457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02481006 199.44544983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02481007 199.44544983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02481008 199.44548035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02481009 199.44548035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02481010 199.44551086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02481011 199.44551086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02481012 199.44552612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02481013 199.44552612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02481014 199.44555664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02481015 199.44555664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02481016 199.44558716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02481017 199.44558716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02481018 199.44561768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02481019 199.44561768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02481020 199.44564819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02481021 199.44564819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02481022 199.44566345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02481023 199.44566345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02481024 199.44569397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02481025 199.44570923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02481026 199.44573975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02481027 199.44573975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02481028 199.44575500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02481029 199.44575500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02481030 199.44578552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02481031 199.44578552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02481032 199.44581604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02481033 199.44581604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02481034 199.44583130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02481035 199.44584656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02481036 199.44587708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02481037 199.44587708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02481038 199.44590759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02481039 199.44590759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02481040 199.44592285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02481041 199.44592285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02481042 199.44595337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02481043 199.44595337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02481044 199.44598389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02481045 199.44598389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02481046 199.44601440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02481047 199.44601440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02481048 199.44604492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02481049 199.44604492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02481050 199.44606018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02481051 199.44606018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02481052 199.44609070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02481053 199.44609070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02481054 199.44612122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02481055 199.44612122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02481056 199.44613647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02481057 199.44615173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02481058 199.44616699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02481059 199.44618225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02481060 199.44621277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02481061 199.44621277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02481062 199.44622803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02481063 199.44622803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02481064 199.44625854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02481065 199.44625854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02481066 199.44628906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02481067 199.44628906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02481068 199.44630432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02481069 199.44630432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02481070 199.44633484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02481071 199.44635010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02481072 199.44638062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02481073 199.44638062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02481074 199.44639587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02481075 199.44639587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02481076 199.44642639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02481077 199.44642639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02481078 199.44645691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02481079 199.44645691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02481080 199.44647217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02481081 199.44647217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02481082 199.44650269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02481083 199.44651794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02481084 199.44653320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02481085 199.44653320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02481086 199.44656372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02481087 199.44656372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02481088 199.44659424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02481089 199.44659424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02481090 199.44662476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02481091 199.44662476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02481092 199.44664001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02481093 199.44664001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02481094 199.44667053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02481095 199.44668579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02481096 199.44670105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02481097 199.44670105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02481098 199.44673157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02481099 199.44673157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02481100 199.44676208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02481101 199.44676208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02481102 199.44677734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02481103 199.44677734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02481104 199.44680786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02481105 199.44680786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02481106 199.44683838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02481107 199.44683838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02481108 199.44685364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02481109 199.44686890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02481110 199.44688416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02481111 199.44689941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02481112 199.44692993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02481113 199.44692993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02481114 199.44694519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02481115 199.44694519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02481116 199.44697571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02481117 199.44697571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02481118 199.44700623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02481119 199.44700623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02481120 199.44702148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02481121 199.44702148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02481122 199.44705200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02481123 199.44705200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02481124 199.44708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02481125 199.44708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02481126 199.44709778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02481127 199.44711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02481128 199.44712830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02481129 199.44714355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02481130 199.44717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02481131 199.44717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02481132 199.44718933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02481133 199.44718933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02481134 199.44721985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02481135 199.44721985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02481136 199.44725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02481137 199.44725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02481138 199.44726563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02481139 199.44726563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02481140 199.44729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02481141 199.44729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02481142 199.44732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02481143 199.44732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02481144 199.44734192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02481145 199.44734192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02481146 199.44737244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02481147 199.44737244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02481148 199.44740295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02481149 199.44741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02481150 199.44741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02481151 199.44743347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02481152 199.44746399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02481153 199.44746399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02481154 199.44749451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02481155 199.44749451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02481156 199.44750977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02481157 199.44750977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02481158 199.44754028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02481159 199.44754028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02481160 199.44757080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02481161 199.44757080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02481162 199.44758606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02481163 199.44758606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02481164 199.44763184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02481165 199.44763184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02481166 199.44764709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02481167 199.44764709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02481168 199.44767761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02481169 199.44767761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02481170 199.44770813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02481171 199.44770813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02481172 199.44773865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02481173 199.44773865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02481174 199.44775391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02481175 199.44776917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02481176 199.44779968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02481177 199.44779968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02481178 199.44781494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02481179 199.44781494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02481180 199.44784546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02481181 199.44784546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02481182 199.44787598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02481183 199.44787598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02481184 199.44789124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02481185 199.44789124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02481186 199.44792175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02481187 199.44792175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02481188 199.44795227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02481189 199.44795227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02481190 199.44796753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02481191 199.44796753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02481192 199.44799805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02481193 199.44799805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02481194 199.44802856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02481195 199.44804382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02481196 199.44804382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02481197 199.44805908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02481198 199.44808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02481199 199.44808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02481200 199.44812012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02481201 199.44812012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02481202 199.44813538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02481203 199.44813538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02481204 199.44816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02481205 199.44816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02481206 199.44819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02481207 199.44819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02481208 199.44821167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02481209 199.44821167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02481210 199.44824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02481211 199.44824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02481212 199.44828796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02481213 199.44828796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02481214 199.44830322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02481215 199.44830322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02481216 199.44833374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02481217 199.44833374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02481218 199.44836426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02481219 199.44836426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02481220 199.44839478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02481221 199.44839478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02481222 199.44842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02481223 199.44842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02481224 199.44844055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02481225 199.44844055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02481226 199.44847107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02481227 199.44847107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02481228 199.44850159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02481229 199.44850159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02481230 199.44853210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02481231 199.44853210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02481232 199.44854736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02481233 199.44854736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02481234 199.44857788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02481235 199.44857788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02481236 199.44860840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02481237 199.44860840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02481238 199.44862366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02481239 199.44863892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02481240 199.44866943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02481241 199.44866943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02481242 199.44868469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02481243 199.44868469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02481244 199.44871521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02481245 199.44871521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02481246 199.44874573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02481247 199.44874573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02481248 199.44876099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02481249 199.44876099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02481250 199.44879150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02481251 199.44879150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02481252 199.44882202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02481253 199.44882202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02481254 199.44883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02481255 199.44883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02481256 199.44888306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02481257 199.44888306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02481258 199.44891357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02481259 199.44891357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02481260 199.44892883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02481261 199.44892883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02481262 199.44895935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02481263 199.44897461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02481264 199.44900513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02481265 199.44900513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02481266 199.44902039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02481267 199.44902039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02481268 199.44905090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02481269 199.44905090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02481270 199.44908142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02481271 199.44908142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02481272 199.44909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02481273 199.44909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02481274 199.44912720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02481275 199.44912720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02481276 199.44915771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02481277 199.44915771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02481278 199.44917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02481279 199.44917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02481280 199.44920349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02481281 199.44920349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02481282 199.44923401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02481283 199.44923401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02481284 199.44924927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02481285 199.44926453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02481286 199.44929504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02481287 199.44929504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02481288 199.44932556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02481289 199.44932556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02481290 199.44934082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02481291 199.44934082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02481292 199.44937134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02481293 199.44937134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02481294 199.44940186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02481295 199.44940186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02481296 199.44941711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02481297 199.44941711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02481298 199.44944763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02481299 199.44944763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02481300 199.44947815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02481301 199.44947815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02481302 199.44950867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02481303 199.44950867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02481304 199.44953918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02481305 199.44953918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02481306 199.44955444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02481307 199.44955444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02481308 199.44958496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02481309 199.44958496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02481310 199.44961548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02481311 199.44963074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02481312 199.44964600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02481313 199.44964600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02481314 199.44967651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02481315 199.44967651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02481316 199.44970703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02481317 199.44970703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02481318 199.44972229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02481319 199.44972229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02481320 199.44975281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02481321 199.44976807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02481322 199.44979858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02481323 199.44979858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02481324 199.44981384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02481325 199.44981384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02481326 199.44984436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02481327 199.44984436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02481328 199.44987488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02481329 199.44987488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02481330 199.44989014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02481331 199.44990540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02481332 199.44993591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02481333 199.44993591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02481334 199.44995117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02481335 199.44995117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02481336 199.44998169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02481337 199.44998169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02481338 199.45001221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02481339 199.45002747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02481340 199.45004272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02481341 199.45004272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02481342 199.45007324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02481343 199.45007324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02481344 199.45010376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02481345 199.45010376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02481346 199.45011902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02481347 199.45011902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02481348 199.45014954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02481349 199.45016479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02481350 199.45019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02481351 199.45019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02481352 199.45021057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02481353 199.45021057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02481354 199.45024109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02481355 199.45025635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02481356 199.45027161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02481357 199.45027161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02481358 199.45030212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02481359 199.45030212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02481360 199.45033264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02481361 199.45033264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02481362 199.45034790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02481363 199.45034790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02481364 199.45037842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02481365 199.45037842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02481366 199.45040894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02481367 199.45040894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02481368 199.45043945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02481369 199.45043945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02481370 199.45045471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02481371 199.45046997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02481372 199.45050049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02481373 199.45050049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02481374 199.45051575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02481375 199.45051575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02481376 199.45054626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02481377 199.45054626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02481378 199.45057678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02481379 199.45057678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02481380 199.45059204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02481381 199.45059204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02481382 199.45062256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02481383 199.45062256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02481384 199.45065308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02481385 199.45065308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02481386 199.45066833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02481387 199.45066833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02481388 199.45069885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02481389 199.45069885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02481390 199.45072937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02481391 199.45074463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02481392 199.45075989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02481393 199.45075989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02481394 199.45079041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02481395 199.45079041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02481396 199.45082092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02481397 199.45083618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02481398 199.45083618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02481399 199.45085144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02481400 199.45088196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02481401 199.45088196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02481402 199.45091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02481403 199.45091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02481404 199.45092773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02481405 199.45092773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02481406 199.45095825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02481407 199.45095825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02481408 199.45098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02481409 199.45098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02481410 199.45100403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02481411 199.45100403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02481412 199.45103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02481413 199.45103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02481414 199.45106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02481415 199.45106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02481416 199.45108032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02481417 199.45108032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02481418 199.45111084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02481419 199.45112610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02481420 199.45114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02481421 199.45114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02481422 199.45117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02481423 199.45117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02481424 199.45120239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02481425 199.45120239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02481426 199.45123291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02481427 199.45123291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02481428 199.45124817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02481429 199.45124817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02481430 199.45127869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02481431 199.45127869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02481432 199.45130920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02481433 199.45130920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02481434 199.45132446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02481435 199.45132446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02481436 199.45135498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02481437 199.45137024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02481438 199.45138550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02481439 199.45138550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02481440 199.45141602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02481441 199.45141602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02481442 199.45144653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02481443 199.45144653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02481444 199.45146179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02481445 199.45146179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02481446 199.45149231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02481447 199.45149231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02481448 199.45152283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02481449 199.45152283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02481450 199.45153809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02481451 199.45153809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02481452 199.45156860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02481453 199.45156860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02481454 199.45159912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02481455 199.45159912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02481456 199.45162964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02481457 199.45162964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02481458 199.45164490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02481459 199.45166016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02481460 199.45169067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02481461 199.45169067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02481462 199.45170593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02481463 199.45170593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02481464 199.45173645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02481465 199.45173645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02481466 199.45176697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02481467 199.45176697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02481468 199.45178223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02481469 199.45178223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02481470 199.45181274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02481471 199.45181274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02481472 199.45184326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02481473 199.45184326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02481474 199.45185852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02481475 199.45185852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02481476 199.45188904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02481477 199.45190430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02481478 199.45191956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02481479 199.45193481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02481480 199.45195007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02481481 199.45195007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02481482 199.45198059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02481483 199.45198059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02481484 199.45201111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02481485 199.45201111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02481486 199.45202637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02481487 199.45202637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02481488 199.45207214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02481489 199.45207214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02481490 199.45210266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02481491 199.45210266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02481492 199.45211792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02481493 199.45211792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02481494 199.45214844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02481495 199.45214844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02481496 199.45217896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02481497 199.45217896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02481498 199.45219421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02481499 199.45219421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02481500 199.45222473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02481501 199.45222473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02481502 199.45225525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02481503 199.45225525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02481504 199.45227051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02481505 199.45228577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02481506 199.45230103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02481507 199.45231628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02481508 199.45234680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02481509 199.45234680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02481510 199.45236206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02481511 199.45236206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02481512 199.45239258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02481513 199.45239258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02481514 199.45242310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02481515 199.45242310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02481516 199.45243835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02481517 199.45243835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02481518 199.45246887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02481519 199.45246887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02481520 199.45249939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02481521 199.45249939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02481522 199.45251465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02481523 199.45251465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02481524 199.45254517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02481525 199.45256042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02481526 199.45257568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02481527 199.45257568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02481528 199.45260620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02481529 199.45260620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02481530 199.45263672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02481531 199.45263672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02481532 199.45265198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02481533 199.45265198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02481534 199.45271301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02481535 199.45271301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02481536 199.45274353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02481537 199.45274353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02481538 199.45275879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02481539 199.45277405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02481540 199.45280457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02481541 199.45281982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02481542 199.45286560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02481543 199.45286560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02481544 199.45289612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02481545 199.45289612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02481546 199.45291138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02481547 199.45291138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02481548 199.45294189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02481549 199.45294189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02481550 199.45297241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02481551 199.45297241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02481552 199.45300293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02481553 199.45300293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02481554 199.45303345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02481555 199.45303345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02481556 199.45304871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02481557 199.45304871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02481558 199.45307922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02481559 199.45307922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02481560 199.45310974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02481561 199.45312500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02481562 199.45314026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02481563 199.45314026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02481564 199.45317078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02481565 199.45317078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02481566 199.45320129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02481567 199.45320129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02481568 199.45321655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02481569 199.45321655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02481570 199.45324707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02481571 199.45326233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02481572 199.45329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02481573 199.45329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02481574 199.45330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02481575 199.45330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02481576 199.45333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02481577 199.45333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02481578 199.45336914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02481579 199.45336914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02481580 199.45338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02481581 199.45339966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02481582 199.45343018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02481583 199.45343018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02481584 199.45344543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02481585 199.45344543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02481586 199.45347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02481587 199.45347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02481588 199.45350647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02481589 199.45350647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02481590 199.45353699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02481591 199.45353699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02481592 199.45355225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02481593 199.45355225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02481594 199.45358276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02481595 199.45358276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02481596 199.45361328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02481597 199.45361328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02481598 199.45364380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02481599 199.45364380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02481600 199.45367432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02481601 199.45367432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02481602 199.45368958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02481603 199.45368958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02481604 199.45372009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02481605 199.45373535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02481606 199.45376587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02481607 199.45376587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02481608 199.45378113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02481609 199.45378113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02481610 199.45381165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02481611 199.45381165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02481612 199.45384216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02481613 199.45384216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02481614 199.45387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02481615 199.45387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02481616 199.45390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02481617 199.45390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02481618 199.45393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02481619 199.45393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02481620 199.45394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02481621 199.45394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02481622 199.45399475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02481623 199.45399475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02481624 199.45401001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02481625 199.45401001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02481626 199.45404053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02481627 199.45404053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02481628 199.45407104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02481629 199.45407104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02481630 199.45408630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02481631 199.45408630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02481632 199.45411682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02481633 199.45411682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02481634 199.45414734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02481635 199.45414734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02481636 199.45416260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02481637 199.45417786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02481638 199.45419312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02481639 199.45420837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02481640 199.45423889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02481641 199.45423889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02481642 199.45425415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02481643 199.45425415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02481644 199.45428467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02481645 199.45428467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02481646 199.45431519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02481647 199.45431519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02481648 199.45433044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02481649 199.45433044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02481650 199.45436096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02481651 199.45436096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02481652 199.45439148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02481653 199.45439148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02481654 199.45440674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02481655 199.45440674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02481656 199.45443726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02481657 199.45445251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02481658 199.45446777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02481659 199.45448303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02481660 199.45449829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02481661 199.45449829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02481662 199.45452881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02481663 199.45452881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02481664 199.45455933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02481665 199.45455933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02481666 199.45457458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02481667 199.45457458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02481668 199.45460510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02481669 199.45460510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02481670 199.45463562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02481671 199.45463562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02481672 199.45465088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02481673 199.45465088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02481674 199.45468140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02481675 199.45468140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02481676 199.45471191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02481677 199.45472717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02481678 199.45472717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02481679 199.45474243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02481680 199.45477295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02481681 199.45477295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02481682 199.45480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02481683 199.45480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02481684 199.45481873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02481685 199.45481873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02481686 199.45484924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02481687 199.45484924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02481688 199.45487976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02481689 199.45487976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02481690 199.45489502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02481691 199.45489502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02481692 199.45492554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02481693 199.45492554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02481694 199.45495605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02481695 199.45495605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02481696 199.45497131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02481697 199.45498657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02481698 199.45500183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02481699 199.45501709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02481700 199.45504761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02481701 199.45504761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02481702 199.45506287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02481703 199.45506287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02481704 199.45509338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02481705 199.45509338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02481706 199.45512390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02481707 199.45512390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02481708 199.45513916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02481709 199.45513916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02481710 199.45516968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02481711 199.45516968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02481712 199.45520020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02481713 199.45520020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02481714 199.45521545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02481715 199.45521545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02481716 199.45524597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02481717 199.45526123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02481718 199.45527649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02481719 199.45527649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02481720 199.45530701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02481721 199.45530701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02481722 199.45533752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02481723 199.45533752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02481724 199.45535278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02481725 199.45535278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02481726 199.45538330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02481727 199.45538330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02481728 199.45541382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02481729 199.45541382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02481730 199.45544434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02481731 199.45544434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02481732 199.45545959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02481733 199.45545959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02481734 199.45549011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02481735 199.45549011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02481736 199.45552063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02481737 199.45552063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02481738 199.45553589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02481739 199.45555115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02481740 199.45558167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02481741 199.45558167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02481742 199.45559692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02481743 199.45559692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02481744 199.45562744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02481745 199.45562744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02481746 199.45565796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02481747 199.45565796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02481748 199.45567322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02481749 199.45567322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02481750 199.45570374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02481751 199.45570374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02481752 199.45573425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02481753 199.45574951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02481754 199.45576477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02481755 199.45576477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02481756 199.45579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02481757 199.45579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02481758 199.45582581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02481759 199.45582581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02481760 199.45584106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02481761 199.45584106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02481762 199.45587158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02481763 199.45588684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02481764 199.45591736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02481765 199.45591736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02481766 199.45596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02481767 199.45596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02481768 199.45599365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02481769 199.45599365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02481770 199.45600891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02481771 199.45600891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02481772 199.45603943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02481773 199.45603943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02481774 199.45606995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02481775 199.45606995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02481776 199.45608521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02481777 199.45610046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02481778 199.45611572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02481779 199.45613098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02481780 199.45614624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02481781 199.45614624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02481782 199.45617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02481783 199.45617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02481784 199.45620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02481785 199.45620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02481786 199.45623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02481787 199.45623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02481788 199.45625305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02481789 199.45625305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02481790 199.45628357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02481791 199.45628357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02481792 199.45631409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02481793 199.45631409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02481794 199.45632935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02481795 199.45632935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02481796 199.45637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02481797 199.45637512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02481798 199.45639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02481799 199.45639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02481800 199.45642090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02481801 199.45642090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02481802 199.45645142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02481803 199.45646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02481804 199.45646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02481805 199.45648193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02481806 199.45651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02481807 199.45651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02481808 199.45654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02481809 199.45654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02481810 199.45655823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02481811 199.45655823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02481812 199.45658875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02481813 199.45658875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02481814 199.45661926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02481815 199.45661926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02481816 199.45663452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02481817 199.45663452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02481818 199.45666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02481819 199.45666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02481820 199.45669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02481821 199.45669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02481822 199.45671082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02481823 199.45671082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02481824 199.45674133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02481825 199.45675659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02481826 199.45677185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02481827 199.45678711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02481828 199.45680237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02481829 199.45680237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02481830 199.45683289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02481831 199.45683289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02481832 199.45686340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02481833 199.45686340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02481834 199.45687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02481835 199.45687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02481836 199.45690918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02481837 199.45690918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02481838 199.45693970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02481839 199.45693970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02481840 199.45695496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02481841 199.45695496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02481842 199.45698547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02481843 199.45698547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02481844 199.45701599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02481845 199.45703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02481846 199.45703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02481847 199.45704651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02481848 199.45707703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02481849 199.45707703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02481850 199.45710754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02481851 199.45710754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02481852 199.45712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02481853 199.45712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02481854 199.45715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02481855 199.45715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02481856 199.45718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02481857 199.45718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02481858 199.45719910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02481859 199.45719910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02481860 199.45722961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02481861 199.45722961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02481862 199.45726013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02481863 199.45726013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02481864 199.45727539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02481865 199.45727539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02481866 199.45730591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02481867 199.45732117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02481868 199.45733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02481869 199.45733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02481870 199.45736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02481871 199.45736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02481872 199.45739746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02481873 199.45739746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02481874 199.45742798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02481875 199.45742798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02481876 199.45744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02481877 199.45744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02481878 199.45747375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02481879 199.45747375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02481880 199.45750427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02481881 199.45750427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02481882 199.45751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02481883 199.45751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02481884 199.45755005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02481885 199.45755005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02481886 199.45758057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02481887 199.45758057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02481888 199.45759583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02481889 199.45761108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02481890 199.45764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02481891 199.45764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02481892 199.45765686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02481893 199.45765686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02481894 199.45768738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02481895 199.45768738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02481896 199.45773315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02481897 199.45773315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02481898 199.45774841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02481899 199.45774841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02481900 199.45777893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02481901 199.45777893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02481902 199.45780945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02481903 199.45780945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02481904 199.45782471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02481905 199.45782471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02481906 199.45785522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02481907 199.45785522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02481908 199.45788574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02481909 199.45788574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02481910 199.45790100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02481911 199.45791626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02481912 199.45793152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02481913 199.45794678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02481914 199.45797729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02481915 199.45797729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02481916 199.45799255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02481917 199.45799255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02481918 199.45802307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02481919 199.45802307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02481920 199.45805359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02481921 199.45805359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02481922 199.45806885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02481923 199.45806885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02481924 199.45809937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02481925 199.45809937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02481926 199.45812988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02481927 199.45812988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02481928 199.45814514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02481929 199.45814514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02481930 199.45817566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02481931 199.45817566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02481932 199.45820618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02481933 199.45822144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02481934 199.45823669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02481935 199.45823669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02481936 199.45826721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02481937 199.45826721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02481938 199.45829773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02481939 199.45829773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02481940 199.45831299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02481941 199.45831299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02481942 199.45834351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02481943 199.45834351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02481944 199.45837402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02481945 199.45837402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02481946 199.45838928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02481947 199.45838928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02481948 199.45841980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02481949 199.45841980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02481950 199.45845032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02481951 199.45845032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02481952 199.45846558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02481953 199.45848083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02481954 199.45849609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02481955 199.45851135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02481956 199.45854187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02481957 199.45854187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02481958 199.45855713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02481959 199.45855713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02481960 199.45858765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02481961 199.45858765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02481962 199.45861816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02481963 199.45861816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02481964 199.45863342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02481965 199.45863342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02481966 199.45866394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02481967 199.45866394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02481968 199.45869446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02481969 199.45869446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02481970 199.45870972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02481971 199.45870972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02481972 199.45874023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02481973 199.45874023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02481974 199.45877075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02481975 199.45877075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02481976 199.45880127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02481977 199.45880127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02481978 199.45883179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02481979 199.45883179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02481980 199.45884705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02481981 199.45884705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02481982 199.45887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02481983 199.45887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02481984 199.45890808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02481985 199.45892334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02481986 199.45893860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02481987 199.45893860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02481988 199.45896912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02481989 199.45896912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02481990 199.45899963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02481991 199.45899963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02481992 199.45901489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02481993 199.45901489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02481994 199.45904541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02481995 199.45904541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02481996 199.45907593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02481997 199.45907593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02481998 199.45909119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02481999 199.45909119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02482000 199.45912170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02482001 199.45913696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02482002 199.45915222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02482003 199.45916748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02482004 199.45918274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02482005 199.45918274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02482006 199.45921326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02482007 199.45921326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02482008 199.45924377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02482009 199.45924377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02482010 199.45925903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02482011 199.45925903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02482012 199.45928955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02482013 199.45928955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02482014 199.45932007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02482015 199.45932007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02482016 199.45933533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02482017 199.45933533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02482018 199.45936584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02482019 199.45936584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02482020 199.45939636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02482021 199.45939636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02482022 199.45941162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02482023 199.45942688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02482024 199.45944214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02482025 199.45945740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02482026 199.45948792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02482027 199.45948792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02482028 199.45950317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02482029 199.45950317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02482030 199.45953369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02482031 199.45953369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02482032 199.45956421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02482033 199.45956421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02482034 199.45959473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02482035 199.45959473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02482036 199.45962524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02482037 199.45962524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02482038 199.45964050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02482039 199.45964050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02482040 199.45967102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02482041 199.45967102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02482042 199.45970154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02482043 199.45970154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02482044 199.45973206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02482045 199.45973206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02482046 199.45976257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02482047 199.45976257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02482048 199.45979309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02482049 199.45979309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02482050 199.45980835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02482051 199.45980835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02482052 199.45983887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02482053 199.45983887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02482054 199.45986938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02482055 199.45988464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02482056 199.45989990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02482057 199.45989990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02482058 199.45993042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02482059 199.45993042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02482060 199.45996094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02482061 199.45996094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02482062 199.45997620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02482063 199.45997620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02482064 199.46000671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02482065 199.46002197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02482066 199.46003723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02482067 199.46003723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02482068 199.46006775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02482069 199.46006775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02482070 199.46009827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02482071 199.46009827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02482072 199.46012878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02482073 199.46012878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02482074 199.46014404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02482075 199.46015930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02482076 199.46018982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02482077 199.46018982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02482078 199.46020508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02482079 199.46020508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02482080 199.46023560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02482081 199.46023560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02482082 199.46026611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02482083 199.46026611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02482084 199.46028137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02482085 199.46029663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02482086 199.46032715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02482087 199.46032715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02482088 199.46035767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02482089 199.46035767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02482090 199.46037292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02482091 199.46037292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02482092 199.46040344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02482093 199.46040344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02482094 199.46043396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02482095 199.46043396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02482096 199.46044922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02482097 199.46046448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02482098 199.46049500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02482099 199.46049500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02482100 199.46052551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02482101 199.46052551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02482102 199.46054077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02482103 199.46054077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02482104 199.46057129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02482105 199.46057129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02482106 199.46060181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02482107 199.46060181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02482108 199.46063232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02482109 199.46063232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02482110 199.46066284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02482111 199.46066284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02482112 199.46067810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02482113 199.46067810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02482114 199.46070862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02482115 199.46072388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02482116 199.46075439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02482117 199.46075439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02482118 199.46076965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02482119 199.46076965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02482120 199.46080017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02482121 199.46080017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02482122 199.46083069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02482123 199.46083069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02482124 199.46084595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02482125 199.46086121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02482126 199.46087646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02482127 199.46089172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02482128 199.46092224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02482129 199.46092224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02482130 199.46093750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02482131 199.46093750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02482132 199.46096802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02482133 199.46096802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02482134 199.46099854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02482135 199.46099854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02482136 199.46101379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02482137 199.46101379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02482138 199.46107483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02482139 199.46107483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02482140 199.46109009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02482141 199.46109009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02482142 199.46112061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02482143 199.46112061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02482144 199.46115112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02482145 199.46115112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02482146 199.46118164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02482147 199.46118164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02482148 199.46121216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02482149 199.46121216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02482150 199.46124268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02482151 199.46124268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02482152 199.46125793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02482153 199.46125793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02482154 199.46128845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02482155 199.46130371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02482156 199.46131897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02482157 199.46131897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02482158 199.46134949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02482159 199.46134949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02482160 199.46138000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02482161 199.46138000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02482162 199.46139526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02482163 199.46139526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02482164 199.46144104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02482165 199.46144104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02482166 199.46147156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02482167 199.46147156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02482168 199.46148682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02482169 199.46148682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02482170 199.46151733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02482171 199.46153259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02482172 199.46154785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02482173 199.46154785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02482174 199.46157837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02482175 199.46157837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02482176 199.46160889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02482177 199.46162415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02482178 199.46163940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02482179 199.46163940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02482180 199.46166992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02482181 199.46166992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02482182 199.46170044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02482183 199.46170044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02482184 199.46171570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02482185 199.46171570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02482186 199.46174622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02482187 199.46174622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02482188 199.46177673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02482189 199.46177673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02482190 199.46179199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02482191 199.46179199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02482192 199.46182251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02482193 199.46182251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02482194 199.46185303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02482195 199.46185303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02482196 199.46186829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02482197 199.46188354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02482198 199.46189880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02482199 199.46191406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02482200 199.46194458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02482201 199.46194458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02482202 199.46195984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02482203 199.46195984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02482204 199.46199036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02482205 199.46199036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02482206 199.46203613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02482207 199.46203613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02482208 199.46206665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02482209 199.46206665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02482210 199.46209717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02482211 199.46211243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02482212 199.46212769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02482213 199.46212769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02482214 199.46215820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02482215 199.46215820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02482216 199.46218872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02482217 199.46218872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02482218 199.46220398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02482219 199.46220398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02482220 199.46223450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02482221 199.46223450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02482222 199.46226501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02482223 199.46226501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02482224 199.46228027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02482225 199.46229553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02482226 199.46231079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02482227 199.46232605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02482228 199.46234131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02482229 199.46234131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02482230 199.46237183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02482231 199.46237183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02482232 199.46240234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02482233 199.46240234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02482234 199.46243286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02482235 199.46243286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02482236 199.46244812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02482237 199.46244812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02482238 199.46247864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02482239 199.46247864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02482240 199.46250916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02482241 199.46250916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02482242 199.46252441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02482243 199.46252441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02482244 199.46255493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02482245 199.46255493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02482246 199.46258545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02482247 199.46258545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02482248 199.46261597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02482249 199.46261597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02482250 199.46264648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02482251 199.46264648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02482252 199.46266174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02482253 199.46267700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02482254 199.46269226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02482255 199.46270752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02482256 199.46273804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02482257 199.46273804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02482258 199.46275330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02482259 199.46275330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02482260 199.46278381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02482261 199.46278381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02482262 199.46281433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02482263 199.46281433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02482264 199.46282959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02482265 199.46282959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02482266 199.46286011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02482267 199.46286011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02482268 199.46289063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02482269 199.46289063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02482270 199.46290588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02482271 199.46290588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02482272 199.46293640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02482273 199.46293640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02482274 199.46296692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02482275 199.46298218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02482276 199.46298218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02482277 199.46299744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02482278 199.46302795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02482279 199.46302795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02482280 199.46305847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02482281 199.46305847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02482282 199.46307373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02482283 199.46307373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02482284 199.46311951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02482285 199.46311951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02482286 199.46315002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02482287 199.46315002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02482288 199.46316528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02482289 199.46316528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02482290 199.46319580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02482291 199.46319580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02482292 199.46322632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02482293 199.46322632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02482294 199.46325684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02482295 199.46325684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02482296 199.46328735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02482297 199.46328735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02482298 199.46330261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02482299 199.46330261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02482300 199.46333313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02482301 199.46334839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02482302 199.46336365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02482303 199.46337891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02482304 199.46339417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02482305 199.46339417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02482306 199.46342468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02482307 199.46342468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02482308 199.46345520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02482309 199.46345520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02482310 199.46347046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02482311 199.46347046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02482312 199.46350098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02482313 199.46350098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02482314 199.46353149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02482315 199.46353149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02482316 199.46354675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02482317 199.46354675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02482318 199.46357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02482319 199.46357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02482320 199.46360779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02482321 199.46360779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02482322 199.46362305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02482323 199.46363831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02482324 199.46365356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02482325 199.46366882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02482326 199.46369934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02482327 199.46369934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02482328 199.46371460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02482329 199.46371460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02482330 199.46374512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02482331 199.46374512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02482332 199.46377563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02482333 199.46377563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02482334 199.46382141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02482335 199.46382141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02482336 199.46385193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02482337 199.46385193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02482338 199.46386719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02482339 199.46386719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02482340 199.46389771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02482341 199.46391296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02482342 199.46394348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02482343 199.46394348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02482344 199.46395874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02482345 199.46395874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02482346 199.46398926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02482347 199.46398926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02482348 199.46401978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02482349 199.46401978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02482350 199.46403503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02482351 199.46405029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02482352 199.46406555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02482353 199.46408081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02482354 199.46409607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02482355 199.46409607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02482356 199.46412659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02482357 199.46412659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02482358 199.46415710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02482359 199.46415710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02482360 199.46417236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02482361 199.46417236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02482362 199.46420288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02482363 199.46420288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02482364 199.46423340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02482365 199.46423340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02482366 199.46424866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02482367 199.46424866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02482368 199.46427917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02482369 199.46427917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02482370 199.46430969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02482371 199.46430969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02482372 199.46434021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02482373 199.46434021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02482374 199.46437073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02482375 199.46437073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02482376 199.46440125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02482377 199.46440125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02482378 199.46441650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02482379 199.46441650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02482380 199.46444702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02482381 199.46444702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02482382 199.46447754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02482383 199.46447754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02482384 199.46449280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02482385 199.46449280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02482386 199.46452332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02482387 199.46452332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02482388 199.46455383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02482389 199.46455383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02482390 199.46456909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02482391 199.46458435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02482392 199.46459961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02482393 199.46461487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02482394 199.46464539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02482395 199.46464539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02482396 199.46466064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02482397 199.46466064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02482398 199.46469116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02482399 199.46469116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02482400 199.46472168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02482401 199.46472168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02482402 199.46473694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02482403 199.46473694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02482404 199.46476746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02482405 199.46476746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02482406 199.46479797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02482407 199.46479797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02482408 199.46481323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02482409 199.46481323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02482410 199.46484375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02482411 199.46484375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02482412 199.46487427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02482413 199.46488953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02482414 199.46490479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02482415 199.46490479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02482416 199.46493530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02482417 199.46493530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02482418 199.46496582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02482419 199.46496582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02482420 199.46498108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02482421 199.46498108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02482422 199.46501160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02482423 199.46501160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02482424 199.46504211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02482425 199.46504211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02482426 199.46505737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02482427 199.46505737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02482428 199.46508789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02482429 199.46508789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02482430 199.46511841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02482431 199.46513367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02482432 199.46514893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02482433 199.46514893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02482434 199.46517944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02482435 199.46517944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02482436 199.46520996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02482437 199.46520996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02482438 199.46522522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02482439 199.46522522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02482440 199.46525574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02482441 199.46525574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02482442 199.46528625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02482443 199.46528625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02482444 199.46530151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02482445 199.46530151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02482446 199.46533203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02482447 199.46533203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02482448 199.46536255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02482449 199.46536255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02482450 199.46537781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02482451 199.46539307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02482452 199.46540833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02482453 199.46542358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02482454 199.46543884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02482455 199.46543884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02482456 199.46546936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02482457 199.46546936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02482458 199.46549988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02482459 199.46549988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02482460 199.46553040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02482461 199.46553040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02482462 199.46554565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02482463 199.46554565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02482464 199.46557617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02482465 199.46557617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02482466 199.46560669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02482467 199.46560669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02482468 199.46562195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02482469 199.46562195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02482470 199.46565247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02482471 199.46565247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02482472 199.46568298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02482473 199.46568298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02482474 199.46569824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02482475 199.46571350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02482476 199.46574402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02482477 199.46574402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02482478 199.46575928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02482479 199.46575928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02482480 199.46578979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02482481 199.46580505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02482482 199.46583557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02482483 199.46583557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02482484 199.46585083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02482485 199.46585083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02482486 199.46588135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02482487 199.46588135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02482488 199.46591187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02482489 199.46591187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02482490 199.46592712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02482491 199.46592712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02482492 199.46595764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02482493 199.46595764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02482494 199.46598816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02482495 199.46598816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02482496 199.46600342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02482497 199.46601868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02482498 199.46603394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02482499 199.46604919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02482500 199.46607971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02482501 199.46607971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02482502 199.46609497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02482503 199.46609497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02482504 199.46612549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02482505 199.46612549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02482506 199.46615601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02482507 199.46615601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02482508 199.46617126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02482509 199.46617126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02482510 199.46620178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02482511 199.46620178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02482512 199.46623230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02482513 199.46623230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02482514 199.46624756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02482515 199.46624756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02482516 199.46627808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02482517 199.46629333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02482518 199.46630859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02482519 199.46632385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02482520 199.46633911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02482521 199.46633911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02482522 199.46636963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02482523 199.46636963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02482524 199.46640015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02482525 199.46640015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02482526 199.46641541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02482527 199.46641541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02482528 199.46644592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02482529 199.46644592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02482530 199.46649170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02482531 199.46649170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02482532 199.46652222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02482533 199.46652222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02482534 199.46656799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02482535 199.46656799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02482536 199.46659851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02482537 199.46659851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02482538 199.46662903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02482539 199.46662903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02482540 199.46664429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02482541 199.46664429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02482542 199.46667480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02482543 199.46669006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02482544 199.46672058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02482545 199.46672058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02482546 199.46673584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02482547 199.46673584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02482548 199.46676636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02482549 199.46676636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02482550 199.46679688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02482551 199.46679688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02482552 199.46681213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02482553 199.46681213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02482554 199.46684265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02482555 199.46685791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02482556 199.46687317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02482557 199.46687317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02482558 199.46690369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02482559 199.46690369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02482560 199.46693420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02482561 199.46693420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02482562 199.46694946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02482563 199.46694946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02482564 199.46697998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02482565 199.46697998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02482566 199.46701050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02482567 199.46701050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02482568 199.46704102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02482569 199.46704102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02482570 199.46705627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02482571 199.46705627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02482572 199.46708679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02482573 199.46708679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02482574 199.46711731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02482575 199.46711731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02482576 199.46713257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02482577 199.46714783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02482578 199.46717834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02482579 199.46717834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02482580 199.46719360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02482581 199.46719360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02482582 199.46722412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02482583 199.46722412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02482584 199.46725464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02482585 199.46725464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02482586 199.46726990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02482587 199.46726990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02482588 199.46730042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02482589 199.46730042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02482590 199.46733093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02482591 199.46733093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02482592 199.46734619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02482593 199.46734619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02482594 199.46737671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02482595 199.46737671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02482596 199.46740723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02482597 199.46742249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02482598 199.46743774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02482599 199.46743774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02482600 199.46746826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02482601 199.46746826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02482602 199.46749878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02482603 199.46749878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02482604 199.46751404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02482605 199.46751404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02482606 199.46754456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02482607 199.46754456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02482608 199.46757507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02482609 199.46757507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02482610 199.46759033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02482611 199.46759033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02482612 199.46763611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02482613 199.46763611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02482614 199.46766663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02482615 199.46766663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02482616 199.46768188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02482617 199.46768188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02482618 199.46771240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02482619 199.46772766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02482620 199.46774292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02482621 199.46774292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02482622 199.46777344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02482623 199.46777344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02482624 199.46780396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02482625 199.46780396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02482626 199.46783447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02482627 199.46783447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02482628 199.46784973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02482629 199.46784973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02482630 199.46788025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02482631 199.46788025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02482632 199.46791077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02482633 199.46791077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02482634 199.46792603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02482635 199.46792603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02482636 199.46795654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02482637 199.46795654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02482638 199.46798706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02482639 199.46798706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02482640 199.46800232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02482641 199.46801758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02482642 199.46803284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02482643 199.46804810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02482644 199.46806335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02482645 199.46806335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02482646 199.46809387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02482647 199.46809387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02482648 199.46812439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02482649 199.46812439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02482650 199.46813965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02482651 199.46813965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02482652 199.46817017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02482653 199.46817017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02482654 199.46820068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02482655 199.46820068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02482656 199.46823120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02482657 199.46823120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02482658 199.46826172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02482659 199.46826172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02482660 199.46829224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02482661 199.46829224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02482662 199.46830750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02482663 199.46832275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02482664 199.46835327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02482665 199.46835327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02482666 199.46838379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02482667 199.46838379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02482668 199.46839905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02482669 199.46839905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02482670 199.46842957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02482671 199.46844482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02482672 199.46846008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02482673 199.46846008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02482674 199.46849060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02482675 199.46849060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02482676 199.46852112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02482677 199.46852112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02482678 199.46853638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02482679 199.46853638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02482680 199.46856689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02482681 199.46856689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02482682 199.46859741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02482683 199.46859741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02482684 199.46862793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02482685 199.46862793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02482686 199.46864319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02482687 199.46864319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02482688 199.46867371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02482689 199.46867371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02482690 199.46870422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02482691 199.46870422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02482692 199.46871948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02482693 199.46873474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02482694 199.46876526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02482695 199.46876526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02482696 199.46878052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02482697 199.46878052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02482698 199.46881104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02482699 199.46882629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02482700 199.46885681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02482701 199.46887207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02482702 199.46890259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02482703 199.46890259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02482704 199.46893311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02482705 199.46893311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02482706 199.46894836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02482707 199.46894836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02482708 199.46897888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02482709 199.46897888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02482710 199.46900940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02482711 199.46902466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02482712 199.46902466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02482713 199.46903992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02482714 199.46907043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02482715 199.46907043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02482716 199.46910095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02482717 199.46910095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02482718 199.46911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02482719 199.46911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02482720 199.46914673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02482721 199.46914673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02482722 199.46917725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02482723 199.46917725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02482724 199.46919250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02482725 199.46919250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02482726 199.46922302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02482727 199.46922302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02482728 199.46925354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02482729 199.46925354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02482730 199.46928406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02482731 199.46928406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02482732 199.46931458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02482733 199.46931458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02482734 199.46936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02482735 199.46936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02482736 199.46940613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02482737 199.46940613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02482738 199.46942139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02482739 199.46943665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02482740 199.46946716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02482741 199.46946716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02482742 199.46949768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02482743 199.46949768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02482744 199.46951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02482745 199.46951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02482746 199.46954346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02482747 199.46955872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02482748 199.46957397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02482749 199.46957397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02482750 199.46960449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02482751 199.46960449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02482752 199.46963501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02482753 199.46963501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02482754 199.46965027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02482755 199.46965027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02482756 199.46968079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02482757 199.46969604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02482758 199.46972656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02482759 199.46972656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02482760 199.46974182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02482761 199.46974182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02482762 199.46977234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02482763 199.46977234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02482764 199.46980286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02482765 199.46980286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02482766 199.46981812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02482767 199.46981812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02482768 199.46984863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02482769 199.46984863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02482770 199.46987915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02482771 199.46989441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02482772 199.46989441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02482773 199.46990967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02482774 199.46994019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02482775 199.46994019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02482776 199.46997070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02482777 199.46997070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02482778 199.46998596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02482779 199.47000122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02482780 199.47003174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02482781 199.47003174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02482782 199.47004700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02482783 199.47004700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02482784 199.47007751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02482785 199.47007751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02482786 199.47010803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02482787 199.47012329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02482788 199.47013855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02482789 199.47013855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02482790 199.47016907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02482791 199.47016907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02482792 199.47019958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02482793 199.47019958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02482794 199.47021484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02482795 199.47021484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02482796 199.47024536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02482797 199.47026062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02482798 199.47029114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02482799 199.47029114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02482800 199.47030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02482801 199.47030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02482802 199.47033691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02482803 199.47033691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02482804 199.47036743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02482805 199.47036743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02482806 199.47038269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02482807 199.47039795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02482808 199.47042847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02482809 199.47042847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02482810 199.47044373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02482811 199.47044373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02482812 199.47047424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02482813 199.47047424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02482814 199.47050476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02482815 199.47050476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02482816 199.47053528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02482817 199.47053528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02482818 199.47055054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02482819 199.47055054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02482820 199.47058105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02482821 199.47059631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02482822 199.47061157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02482823 199.47061157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02482824 199.47064209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02482825 199.47064209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02482826 199.47067261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02482827 199.47067261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02482828 199.47068787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02482829 199.47068787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02482830 199.47071838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02482831 199.47071838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02482832 199.47074890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02482833 199.47074890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02482834 199.47076416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02482835 199.47077942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02482836 199.47080994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02482837 199.47080994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02482838 199.47084045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02482839 199.47084045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02482840 199.47085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02482841 199.47085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02482842 199.47088623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02482843 199.47088623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02482844 199.47091675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02482845 199.47091675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02482846 199.47093201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02482847 199.47093201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02482848 199.47096252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02482849 199.47097778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02482850 199.47099304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02482851 199.47100830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02482852 199.47102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02482853 199.47102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02482854 199.47105408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02482855 199.47105408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02482856 199.47108459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02482857 199.47108459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02482858 199.47109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02482859 199.47109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02482860 199.47113037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02482861 199.47113037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02482862 199.47116089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02482863 199.47116089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02482864 199.47117615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02482865 199.47117615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02482866 199.47120667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02482867 199.47120667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02482868 199.47123718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02482869 199.47123718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02482870 199.47125244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02482871 199.47126770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02482872 199.47128296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02482873 199.47129822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02482874 199.47132874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02482875 199.47132874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02482876 199.47134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02482877 199.47134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02482878 199.47137451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02482879 199.47137451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02482880 199.47140503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02482881 199.47140503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02482882 199.47142029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02482883 199.47143555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02482884 199.47146606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02482885 199.47146606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02482886 199.47148132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02482887 199.47148132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02482888 199.47151184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02482889 199.47151184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02482890 199.47154236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02482891 199.47154236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02482892 199.47155762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02482893 199.47155762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02482894 199.47158813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02482895 199.47160339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02482896 199.47161865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02482897 199.47163391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02482898 199.47164917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02482899 199.47164917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02482900 199.47167969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02482901 199.47167969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02482902 199.47171021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02482903 199.47171021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02482904 199.47172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02482905 199.47172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02482906 199.47175598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02482907 199.47177124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02482908 199.47180176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02482909 199.47180176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02482910 199.47181702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02482911 199.47181702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02482912 199.47184753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02482913 199.47184753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02482914 199.47187805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02482915 199.47187805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02482916 199.47189331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02482917 199.47189331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02482918 199.47192383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02482919 199.47193909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02482920 199.47195435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02482921 199.47195435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02482922 199.47198486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02482923 199.47198486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02482924 199.47201538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02482925 199.47201538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02482926 199.47204590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02482927 199.47204590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02482928 199.47207642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02482929 199.47207642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02482930 199.47210693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02482931 199.47210693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02482932 199.47212219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02482933 199.47212219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02482934 199.47215271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02482935 199.47215271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02482936 199.47218323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02482937 199.47218323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02482938 199.47219849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02482939 199.47219849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02482940 199.47222900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02482941 199.47222900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02482942 199.47225952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02482943 199.47225952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02482944 199.47227478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02482945 199.47229004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02482946 199.47230530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02482947 199.47232056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02482948 199.47235107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02482949 199.47235107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02482950 199.47236633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02482951 199.47236633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02482952 199.47239685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02482953 199.47239685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02482954 199.47242737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02482955 199.47242737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02482956 199.47244263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02482957 199.47244263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02482958 199.47247314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02482959 199.47247314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02482960 199.47250366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02482961 199.47250366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02482962 199.47251892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02482963 199.47251892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02482964 199.47254944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02482965 199.47254944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02482966 199.47257996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02482967 199.47259521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02482968 199.47261047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02482969 199.47261047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02482970 199.47264099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02482971 199.47264099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02482972 199.47267151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02482973 199.47267151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02482974 199.47268677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02482975 199.47270203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02482976 199.47273254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02482977 199.47273254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02482978 199.47274780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02482979 199.47274780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02482980 199.47277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02482981 199.47277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02482982 199.47280884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02482983 199.47280884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02482984 199.47283936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02482985 199.47283936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02482986 199.47285461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02482987 199.47285461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02482988 199.47288513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02482989 199.47288513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02482990 199.47291565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02482991 199.47291565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02482992 199.47293091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02482993 199.47293091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02482994 199.47296143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02482995 199.47297668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02482996 199.47299194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02482997 199.47299194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02482998 199.47302246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02482999 199.47302246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02483000 199.47305298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02483001 199.47305298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02483002 199.47306824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02483003 199.47306824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02483004 199.47309875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02483005 199.47309875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02483006 199.47312927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02483007 199.47312927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02483008 199.47314453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02483009 199.47314453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02483010 199.47317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02483011 199.47317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02483012 199.47320557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02483013 199.47320557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02483014 199.47323608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02483015 199.47323608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02483016 199.47325134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02483017 199.47326660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02483018 199.47329712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02483019 199.47329712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02483020 199.47331238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02483021 199.47331238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02483022 199.47334290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02483023 199.47334290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02483024 199.47337341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02483025 199.47337341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02483026 199.47338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02483027 199.47338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02483028 199.47341919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02483029 199.47343445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02483030 199.47346497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02483031 199.47346497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02483032 199.47348022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02483033 199.47348022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02483034 199.47351074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02483035 199.47351074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02483036 199.47354126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02483037 199.47354126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02483038 199.47355652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02483039 199.47357178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02483040 199.47360229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02483041 199.47360229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02483042 199.47363281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02483043 199.47363281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02483044 199.47364807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02483045 199.47364807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02483046 199.47367859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02483047 199.47367859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02483048 199.47370911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02483049 199.47370911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02483050 199.47372437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02483051 199.47373962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02483052 199.47377014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02483053 199.47377014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02483054 199.47378540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02483055 199.47378540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02483056 199.47381592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02483057 199.47381592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02483058 199.47384644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02483059 199.47384644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02483060 199.47386169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02483061 199.47386169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02483062 199.47389221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02483063 199.47390747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02483064 199.47393799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02483065 199.47393799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02483066 199.47395325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02483067 199.47395325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02483068 199.47398376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02483069 199.47398376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02483070 199.47401428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02483071 199.47402954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02483072 199.47404480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02483073 199.47404480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02483074 199.47407532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02483075 199.47407532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02483076 199.47410583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02483077 199.47410583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02483078 199.47412109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02483079 199.47412109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02483080 199.47416687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02483081 199.47416687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02483082 199.47418213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02483083 199.47418213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02483084 199.47421265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02483085 199.47421265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02483086 199.47424316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02483087 199.47425842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02483088 199.47427368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02483089 199.47427368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02483090 199.47430420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02483091 199.47430420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02483092 199.47433472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02483093 199.47433472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02483094 199.47434998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02483095 199.47436523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02483096 199.47439575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02483097 199.47439575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02483098 199.47442627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02483099 199.47442627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02483100 199.47444153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02483101 199.47444153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02483102 199.47447205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02483103 199.47447205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02483104 199.47450256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02483105 199.47450256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02483106 199.47451782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02483107 199.47451782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02483108 199.47454834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02483109 199.47456360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02483110 199.47457886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02483111 199.47457886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02483112 199.47460938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02483113 199.47460938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02483114 199.47463989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02483115 199.47463989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02483116 199.47465515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02483117 199.47465515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02483118 199.47468567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02483119 199.47468567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02483120 199.47471619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02483121 199.47471619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02483122 199.47474670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02483123 199.47474670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02483124 199.47476196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02483125 199.47476196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02483126 199.47479248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02483127 199.47479248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02483128 199.47482300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02483129 199.47482300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02483130 199.47483826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02483131 199.47485352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02483132 199.47486877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02483133 199.47488403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02483134 199.47489929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02483135 199.47489929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02483136 199.47492981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02483137 199.47492981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02483138 199.47496033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02483139 199.47496033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02483140 199.47497559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02483141 199.47497559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02483142 199.47500610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02483143 199.47500610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02483144 199.47503662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02483145 199.47503662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02483146 199.47505188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02483147 199.47505188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02483148 199.47508240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02483149 199.47508240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02483150 199.47512817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02483151 199.47512817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02483152 199.47514343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02483153 199.47514343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02483154 199.47517395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02483155 199.47517395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02483156 199.47520447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02483157 199.47521973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02483158 199.47521973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02483159 199.47523499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02483160 199.47526550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02483161 199.47526550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02483162 199.47529602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -02483163 199.47529602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -02483164 199.47531128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -02483165 199.47531128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -02483166 199.47534180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -02483167 199.47534180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -02483168 199.47537231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -02483169 199.47537231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -02483170 199.47538757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -02483171 199.47538757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -02483172 199.47541809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -02483173 199.47541809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -02483174 199.47544861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -02483175 199.47544861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -02483176 199.47546387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -02483177 199.47546387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -02483178 199.47549438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -02483179 199.47550964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -02483180 199.47552490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -02483181 199.47554016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -02483182 199.47555542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -02483183 199.47555542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -02483184 199.47558594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -02483185 199.47558594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -02483186 199.47561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -02483187 199.47561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -02483188 199.47563171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -02483189 199.47563171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -02483190 199.47566223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -02483191 199.47566223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -02483192 199.47569275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -02483193 199.47569275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -02483194 199.47570801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -02483195 199.47570801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -02483196 199.47575378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -02483197 199.47575378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -02483198 199.47576904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -02483199 199.47576904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -02483200 199.47579956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -02483201 199.47579956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -02483202 199.47583008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -02483203 199.47583008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -02483204 199.47584534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -02483205 199.47586060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -02483206 199.47587585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -02483207 199.47589111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -02483208 199.47592163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -02483209 199.47592163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -02483210 199.47593689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -02483211 199.47593689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -02483212 199.47596741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -02483213 199.47596741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -02483214 199.47599792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -02483215 199.47599792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -02483216 199.47601318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -02483217 199.47601318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -02483218 199.47604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -02483219 199.47604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -02483220 199.47607422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -02483221 199.47607422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -02483222 199.47608948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -02483223 199.47608948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -02483224 199.47612000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -02483225 199.47612000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -02483226 199.47615051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -02483227 199.47616577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -02483228 199.47616577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -02483229 199.47618103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -02483230 199.47621155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -02483231 199.47621155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -02483232 199.47624207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -02483233 199.47624207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -02483234 199.47625732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -02483235 199.47625732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -02483236 199.47628784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -02483237 199.47628784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -02483238 199.47631836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -02483239 199.47631836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -02483240 199.47633362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -02483241 199.47633362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -02483242 199.47636414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -02483243 199.47637939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -02483244 199.47640991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -02483245 199.47640991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -02483246 199.47642517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -02483247 199.47642517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -02483248 199.47645569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -02483249 199.47645569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -02483250 199.47648621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -02483251 199.47648621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -02483252 199.47650146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -02483253 199.47650146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -02483254 199.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -02483255 199.47654724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -02483256 199.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -02483257 199.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -02483258 199.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -02483259 199.47660828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -02483260 199.47663879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -02483261 199.47663879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -02483262 199.47666931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -02483263 199.47666931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -02483264 199.47669983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -02483265 199.47669983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -02483266 199.47673035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -02483267 199.47673035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -02483268 199.47674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -02483269 199.47674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -02483270 199.47677612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -02483271 199.47677612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -02483272 199.47680664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -02483273 199.47680664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -02483274 199.47682190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -02483275 199.47682190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -02483276 199.47685242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -02483277 199.47685242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -02483278 199.47688293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -02483279 199.47688293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -02483280 199.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -02483281 199.47691345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -02483282 199.47694397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -02483283 199.47694397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -02483284 199.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -02483285 199.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -02483286 199.47698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -02483287 199.47698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -02483288 199.47702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -02483289 199.47702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -02483290 199.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -02483291 199.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -02483292 199.47706604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -02483293 199.47706604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -02483294 199.47709656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -02483295 199.47709656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -02483296 199.47712708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -02483297 199.47712708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -02483298 199.47714233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -02483299 199.47715759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -02483300 199.47717285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -02483301 199.47718811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -02483302 199.47720337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -02483303 199.47720337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -02483304 199.47723389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -02483305 199.47723389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -02483306 199.47726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -02483307 199.47726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -02483308 199.47727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -02483309 199.47727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -02483310 199.47731018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -02483311 199.47731018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -02483312 199.47734070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -02483313 199.47734070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -02483314 199.47735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -02483315 199.47735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -02483316 199.47738647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -02483317 199.47738647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -02483318 199.47741699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -02483319 199.47741699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -02483320 199.47744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -02483321 199.47744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -02483322 199.47746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -02483323 199.47747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -02483324 199.47750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -02483325 199.47750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -02483326 199.47752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -02483327 199.47752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -02483328 199.47755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -02483329 199.47755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -02483330 199.47758484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -02483331 199.47758484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -02483332 199.47760010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -02483333 199.47760010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -02483334 199.47763062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -02483335 199.47764587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -02483336 199.47767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -02483337 199.47767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -02483338 199.47769165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -02483339 199.47769165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -02483340 199.47772217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -02483341 199.47772217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -02483342 199.47775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -02483343 199.47775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -02483344 199.47776794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -02483345 199.47778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -02483346 199.47781372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -02483347 199.47781372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -02483348 199.47784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -02483349 199.47784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -02483350 199.47785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -02483351 199.47785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -02483352 199.47789001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -02483353 199.47789001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -02483354 199.47792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -02483355 199.47792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -02483356 199.47793579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -02483357 199.47795105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -02483358 199.47798157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -02483359 199.47798157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -02483360 199.47799683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -02483361 199.47799683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -02483362 199.47802734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -02483363 199.47802734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -02483364 199.47805786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -02483365 199.47805786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -02483366 199.47807312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -02483367 199.47807312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -02483368 199.47810364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -02483369 199.47810364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -02483370 199.47813416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -02483371 199.47813416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -02483372 199.47814941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -02483373 199.47814941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -02483374 199.47817993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -02483375 199.47817993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -02483376 199.47821045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -02483377 199.47822571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -02483378 199.47824097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -02483379 199.47824097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -02483380 199.47827148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -02483381 199.47827148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -02483382 199.47830200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -02483383 199.47831726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -02483384 199.47831726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -02483385 199.47833252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -02483386 199.47836304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -02483387 199.47836304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -02483388 199.47839355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -02483389 199.47839355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -02483390 199.47840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -02483391 199.47840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -02483392 199.47845459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -02483393 199.47845459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -02483394 199.47846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -02483395 199.47846985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -02483396 199.47850037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02483397 199.47850037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02483398 199.47853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02483399 199.47853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02483400 199.47854614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02483401 199.47854614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02483402 199.47857666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02483403 199.47857666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02483404 199.47860718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02483405 199.47860718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02483406 199.47863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02483407 199.47863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02483408 199.47865295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02483409 199.47866821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02483410 199.47868347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02483411 199.47869873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02483412 199.47871399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02483413 199.47871399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02483414 199.47874451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02483415 199.47874451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02483416 199.47877502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02483417 199.47877502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02483418 199.47879028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -02483419 199.47879028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -02483420 199.47882080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -02483421 199.47882080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -02483422 199.47885132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -02483423 199.47885132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -02483424 199.47886658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -02483425 199.47886658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -02483426 199.47889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -02483427 199.47889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -02483428 199.47892761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -02483429 199.47892761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -02483430 199.47894287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -02483431 199.47895813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -02483432 199.47897339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -02483433 199.47898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -02483434 199.47901917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -02483435 199.47901917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -02483436 199.47903442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -02483437 199.47903442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -02483438 199.47906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -02483439 199.47906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -02483440 199.47909546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -02483441 199.47909546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -02483442 199.47911072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -02483443 199.47911072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -02483444 199.47914124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -02483445 199.47915649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -02483446 199.47918701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -02483447 199.47918701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -02483448 199.47920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -02483449 199.47920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -02483450 199.47923279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -02483451 199.47923279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -02483452 199.47926331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -02483453 199.47926331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -02483454 199.47927856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -02483455 199.47929382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -02483456 199.47932434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -02483457 199.47932434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -02483458 199.47933960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -02483459 199.47933960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -02483460 199.47937012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -02483461 199.47937012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -02483462 199.47940063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -02483463 199.47940063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -02483464 199.47943115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -02483465 199.47943115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -02483466 199.47946167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -02483467 199.47946167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -02483468 199.47949219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -02483469 199.47949219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -02483470 199.47950745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -02483471 199.47952271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -02483472 199.47955322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -02483473 199.47955322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -02483474 199.47958374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -02483475 199.47958374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -02483476 199.47959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -02483477 199.47959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -02483478 199.47962952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -02483479 199.47962952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -02483480 199.47966003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -02483481 199.47966003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -02483482 199.47969055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -02483483 199.47969055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -02483484 199.47972107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -02483485 199.47972107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -02483486 199.47975159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -02483487 199.47975159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -02483488 199.47976685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -02483489 199.47976685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -02483490 199.47979736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -02483491 199.47979736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -02483492 199.47982788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -02483493 199.47982788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -02483494 199.47984314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -02483495 199.47985840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -02483496 199.47987366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -02483497 199.47988892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -02483498 199.47990417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -02483499 199.47990417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -02483500 199.47993469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -02483501 199.47993469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -02483502 199.47996521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -02483503 199.47996521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -02483504 199.47998047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -02483505 199.47998047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -02483506 199.48001099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -02483507 199.48001099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -02483508 199.48004150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -02483509 199.48004150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -02483510 199.48007202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -02483511 199.48008728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -02483512 199.48011780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -02483513 199.48011780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -02483514 199.48014832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -02483515 199.48014832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -02483516 199.48016357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -02483517 199.48016357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -02483518 199.48019409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -02483519 199.48019409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -02483520 199.48022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -02483521 199.48022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -02483522 199.48023987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -02483523 199.48023987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -02483524 199.48027039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -02483525 199.48027039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -02483526 199.48030090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -02483527 199.48030090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -02483528 199.48031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -02483529 199.48033142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -02483530 199.48034668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -02483531 199.48036194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -02483532 199.48037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -02483533 199.48037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -02483534 199.48040771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -02483535 199.48040771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -02483536 199.48043823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -02483537 199.48043823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -02483538 199.48045349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -02483539 199.48046875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -02483540 199.48049927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -02483541 199.48049927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -02483542 199.48052979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -02483543 199.48052979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -02483544 199.48054504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -02483545 199.48054504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -02483546 199.48057556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -02483547 199.48057556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -02483548 199.48062134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -02483549 199.48062134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -02483550 199.48063660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -02483551 199.48063660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -02483552 199.48066711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -02483553 199.48066711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -02483554 199.48069763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -02483555 199.48069763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -02483556 199.48071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -02483557 199.48071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -02483558 199.48075867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -02483559 199.48075867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -02483560 199.48077393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -02483561 199.48077393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -02483562 199.48080444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -02483563 199.48080444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -02483564 199.48083496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -02483565 199.48083496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -02483566 199.48086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -02483567 199.48086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -02483568 199.48089600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -02483569 199.48089600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -02483570 199.48092651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -02483571 199.48092651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -02483572 199.48094177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -02483573 199.48095703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -02483574 199.48098755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -02483575 199.48098755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -02483576 199.48101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -02483577 199.48101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -02483578 199.48103333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -02483579 199.48103333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -02483580 199.48106384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -02483581 199.48106384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -02483582 199.48109436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -02483583 199.48109436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -02483584 199.48110962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -02483585 199.48110962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -02483586 199.48114014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -02483587 199.48114014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -02483588 199.48117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -02483589 199.48117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -02483590 199.48118591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -02483591 199.48118591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -02483592 199.48121643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -02483593 199.48123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -02483594 199.48124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -02483595 199.48124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -02483596 199.48127747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -02483597 199.48127747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -02483598 199.48130798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -02483599 199.48130798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -02483600 199.48133850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -02483601 199.48133850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -02483602 199.48135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -02483603 199.48135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -02483604 199.48138428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -02483605 199.48139954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -02483606 199.48144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -02483607 199.48144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -02483608 199.48147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -02483609 199.48147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -02483610 199.48149109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -02483611 199.48149109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -02483612 199.48152161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -02483613 199.48152161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -02483614 199.48155212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -02483615 199.48155212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -02483616 199.48156738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -02483617 199.48158264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -02483618 199.48161316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -02483619 199.48161316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -02483620 199.48164368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -02483621 199.48164368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -02483622 199.48165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -02483623 199.48165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -02483624 199.48168945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -02483625 199.48168945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -02483626 199.48171997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -02483627 199.48173523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -02483628 199.48175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -02483629 199.48175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -02483630 199.48178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -02483631 199.48178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -02483632 199.48181152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -02483633 199.48181152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -02483634 199.48182678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -02483635 199.48184204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -02483636 199.48185730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -02483637 199.48187256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -02483638 199.48188782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -02483639 199.48188782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -02483640 199.48191833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -02483641 199.48191833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -02483642 199.48194885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -02483643 199.48194885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -02483644 199.48196411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -02483645 199.48196411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -02483646 199.48199463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -02483647 199.48200989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -02483648 199.48204041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -02483649 199.48204041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -02483650 199.48205566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -02483651 199.48205566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -02483652 199.48208618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -02483653 199.48208618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -02483654 199.48211670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -02483655 199.48211670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -02483656 199.48213196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -02483657 199.48213196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -02483658 199.48216248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -02483659 199.48217773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -02483660 199.48219299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -02483661 199.48220825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -02483662 199.48222351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -02483663 199.48222351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -02483664 199.48225403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -02483665 199.48225403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -02483666 199.48228455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -02483667 199.48228455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -02483668 199.48229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -02483669 199.48229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -02483670 199.48233032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -02483671 199.48233032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -02483672 199.48236084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -02483673 199.48236084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -02483674 199.48237610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -02483675 199.48237610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -02483676 199.48240662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -02483677 199.48240662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -02483678 199.48243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -02483679 199.48243713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -02483680 199.48245239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -02483681 199.48246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -02483682 199.48248291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -02483683 199.48249817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -02483684 199.48252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -02483685 199.48252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -02483686 199.48254395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -02483687 199.48254395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -02483688 199.48257446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -02483689 199.48257446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -02483690 199.48260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -02483691 199.48260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -02483692 199.48262024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -02483693 199.48262024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -02483694 199.48266602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -02483695 199.48266602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -02483696 199.48268127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -02483697 199.48268127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -02483698 199.48271179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -02483699 199.48271179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -02483700 199.48274231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -02483701 199.48274231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -02483702 199.48275757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -02483703 199.48275757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -02483704 199.48278809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -02483705 199.48278809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -02483706 199.48281860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -02483707 199.48281860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -02483708 199.48284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -02483709 199.48284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -02483710 199.48286438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -02483711 199.48287964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -02483712 199.48291016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -02483713 199.48291016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -02483714 199.48292542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -02483715 199.48292542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -02483716 199.48295593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -02483717 199.48295593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -02483718 199.48298645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -02483719 199.48298645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -02483720 199.48300171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -02483721 199.48300171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -02483722 199.48303223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -02483723 199.48303223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -02483724 199.48306274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -02483725 199.48306274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -02483726 199.48307800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -02483727 199.48307800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -02483728 199.48310852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -02483729 199.48310852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -02483730 199.48313904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -02483731 199.48315430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -02483732 199.48315430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -02483733 199.48316956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -02483734 199.48320007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -02483735 199.48320007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -02483736 199.48323059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -02483737 199.48323059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -02483738 199.48324585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -02483739 199.48324585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -02483740 199.48329163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -02483741 199.48329163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -02483742 199.48332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -02483743 199.48332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -02483744 199.48333740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -02483745 199.48333740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -02483746 199.48336792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -02483747 199.48336792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -02483748 199.48339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -02483749 199.48339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -02483750 199.48341370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -02483751 199.48341370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -02483752 199.48344421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -02483753 199.48344421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -02483754 199.48347473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -02483755 199.48347473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -02483756 199.48348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -02483757 199.48348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -02483758 199.48352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -02483759 199.48353577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -02483760 199.48355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -02483761 199.48355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -02483762 199.48358154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -02483763 199.48358154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -02483764 199.48361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -02483765 199.48361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -02483766 199.48364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -02483767 199.48364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -02483768 199.48365784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -02483769 199.48365784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -02483770 199.48368835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -02483771 199.48368835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -02483772 199.48371887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -02483773 199.48371887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -02483774 199.48373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -02483775 199.48373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -02483776 199.48376465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -02483777 199.48376465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -02483778 199.48379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -02483779 199.48379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -02483780 199.48381042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -02483781 199.48382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -02483782 199.48384094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -02483783 199.48385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -02483784 199.48387146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -02483785 199.48387146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -02483786 199.48390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -02483787 199.48390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -02483788 199.48393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -02483789 199.48393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -02483790 199.48394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -02483791 199.48396301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -02483792 199.48399353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -02483793 199.48399353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -02483794 199.48402405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -02483795 199.48402405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -02483796 199.48403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -02483797 199.48403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -02483798 199.48406982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -02483799 199.48406982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -02483800 199.48410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -02483801 199.48410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -02483802 199.48411560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -02483803 199.48413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -02483804 199.48414612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -02483805 199.48416138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -02483806 199.48419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -02483807 199.48419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -02483808 199.48420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -02483809 199.48420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -02483810 199.48423767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -02483811 199.48423767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -02483812 199.48426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -02483813 199.48426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -02483814 199.48428345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -02483815 199.48428345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -02483816 199.48431396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -02483817 199.48431396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -02483818 199.48434448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -02483819 199.48434448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -02483820 199.48435974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -02483821 199.48435974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -02483822 199.48439026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -02483823 199.48439026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -02483824 199.48442078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -02483825 199.48443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -02483826 199.48443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -02483827 199.48445129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -02483828 199.48448181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -02483829 199.48448181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -02483830 199.48451233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -02483831 199.48451233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -02483832 199.48452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -02483833 199.48452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -02483834 199.48455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -02483835 199.48457336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -02483836 199.48458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -02483837 199.48458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -02483838 199.48461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -02483839 199.48461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -02483840 199.48464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -02483841 199.48464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -02483842 199.48466492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -02483843 199.48468018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -02483844 199.48469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -02483845 199.48471069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -02483846 199.48474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -02483847 199.48474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -02483848 199.48475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -02483849 199.48475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -02483850 199.48478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -02483851 199.48478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -02483852 199.48481750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -02483853 199.48481750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -02483854 199.48483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -02483855 199.48483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -02483856 199.48486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -02483857 199.48486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -02483858 199.48489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -02483859 199.48489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -02483860 199.48490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -02483861 199.48490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -02483862 199.48493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -02483863 199.48493958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -02483864 199.48497009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -02483865 199.48498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -02483866 199.48498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -02483867 199.48500061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -02483868 199.48503113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -02483869 199.48503113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -02483870 199.48506165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -02483871 199.48506165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -02483872 199.48507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -02483873 199.48507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -02483874 199.48510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -02483875 199.48510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -02483876 199.48513794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -02483877 199.48513794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -02483878 199.48516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -02483879 199.48516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -02483880 199.48519897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -02483881 199.48519897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -02483882 199.48522949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -02483883 199.48522949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -02483884 199.48524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -02483885 199.48524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -02483886 199.48527527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -02483887 199.48527527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -02483888 199.48530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -02483889 199.48530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -02483890 199.48532104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -02483891 199.48532104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -02483892 199.48535156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -02483893 199.48536682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -02483894 199.48538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -02483895 199.48538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -02483896 199.48541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -02483897 199.48541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -02483898 199.48544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -02483899 199.48544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -02483900 199.48545837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -02483901 199.48545837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -02483902 199.48548889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -02483903 199.48548889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -02483904 199.48551941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -02483905 199.48551941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -02483906 199.48554993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -02483907 199.48554993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -02483908 199.48556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -02483909 199.48556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -02483910 199.48559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -02483911 199.48559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -02483912 199.48562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -02483913 199.48562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -02483914 199.48564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -02483915 199.48564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -02483916 199.48567200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -02483917 199.48568726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -02483918 199.48570251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -02483919 199.48570251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -02483920 199.48573303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -02483921 199.48573303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -02483922 199.48576355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -02483923 199.48576355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -02483924 199.48577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -02483925 199.48577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -02483926 199.48580933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -02483927 199.48582458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -02483928 199.48585510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -02483929 199.48585510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -02483930 199.48587036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -02483931 199.48587036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -02483932 199.48590088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -02483933 199.48590088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -02483934 199.48593140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -02483935 199.48593140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -02483936 199.48594666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -02483937 199.48594666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -02483938 199.48597717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -02483939 199.48597717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -02483940 199.48600769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -02483941 199.48602295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -02483942 199.48602295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -02483943 199.48603821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -02483944 199.48606873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -02483945 199.48606873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -02483946 199.48609924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -02483947 199.48609924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -02483948 199.48611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -02483949 199.48611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -02483950 199.48614502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -02483951 199.48614502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -02483952 199.48617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -02483953 199.48617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -02483954 199.48619080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -02483955 199.48619080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -02483956 199.48622131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -02483957 199.48622131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -02483958 199.48625183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -02483959 199.48625183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -02483960 199.48626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -02483961 199.48626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -02483962 199.48629761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -02483963 199.48631287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -02483964 199.48632813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -02483965 199.48634338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -02483966 199.48635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -02483967 199.48635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -02483968 199.48638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -02483969 199.48638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -02483970 199.48641968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -02483971 199.48641968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -02483979 199.48660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -02483980 199.48664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -02483981 199.48664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -02483982 199.48666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -02483983 199.48666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -02483984 199.48669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -02483985 199.48669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -02483986 199.48672485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -02483987 199.48674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -02483988 199.48675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -02483989 199.48675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -02483990 199.48678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -02483991 199.48678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -02483992 199.48681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -02483993 199.48681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -02483994 199.48683167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -02483995 199.48683167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -02483996 199.48686218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -02483997 199.48686218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -02483998 199.48689270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -02483999 199.48689270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -02484000 199.48692322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -02484001 199.48692322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -02484002 199.48695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -02484003 199.48695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -02484004 199.48696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -02484005 199.48696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -02484006 199.48699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -02484007 199.48701477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -02484008 199.48703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -02484009 199.48704529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -02484010 199.48706055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -02484011 199.48706055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -02484012 199.48709106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -02484013 199.48709106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -02484014 199.48712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -02484015 199.48712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -02484016 199.48713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -02484017 199.48713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -02484018 199.48716736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -02484019 199.48716736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -02484020 199.48719788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -02484021 199.48719788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -02484022 199.48721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -02484154 199.48919678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -02484155 199.48919678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -02484156 199.48924255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -02484157 199.48924255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -02484158 199.48927307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -02484159 199.48927307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -02484160 199.48928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -02484161 199.48928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -02484162 199.48931885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -02484163 199.48931885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -02484164 199.48934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -02484165 199.48934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -02484166 199.48936462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -02484167 199.48936462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -02484168 199.48939514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -02484169 199.48939514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -02484170 199.48942566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -02484171 199.48942566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -02484172 199.48944092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -02484173 199.48945618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -02484174 199.48948669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -02484175 199.48948669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -02484176 199.48951721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -02484177 199.48951721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -02484178 199.48953247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -02484179 199.48953247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -02484180 199.48956299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -02484181 199.48957825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -02484182 199.48959351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -02484183 199.48959351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -02484184 199.48962402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -02484185 199.48962402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -02484186 199.48965454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -02484187 199.48965454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -02484188 199.48966980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -02484189 199.48966980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -02484190 199.48970032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -02484191 199.48970032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -02484192 199.48973083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -02484193 199.48974609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -02484194 199.48976135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -02484195 199.48976135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -02484196 199.48979187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -02484197 199.48979187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -02484804 199.49844360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -02484805 199.49844360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -02484806 199.49847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -02484807 199.49847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -02484808 199.49848938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -02484809 199.49848938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -02484810 199.49851990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -02484811 199.49851990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -02484812 199.49855042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -02484813 199.49856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -02484814 199.49858093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -02484815 199.49858093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -02484816 199.49861145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -02484817 199.49861145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -02484818 199.49864197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -02484819 199.49864197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -02484820 199.49865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -02484821 199.49865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -02484822 199.49868774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -02484823 199.49868774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -02484824 199.49871826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -02484825 199.49873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -02484826 199.49873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -02484827 199.49874878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -02484828 199.49877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -02484829 199.49877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -02484830 199.49880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -02484831 199.49880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -02484832 199.49882507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -02484833 199.49882507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -02484834 199.49885559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -02484835 199.49885559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -02484836 199.49893188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -02484837 199.49894714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -02484838 199.49896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -02484839 199.49896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -02484840 199.49899292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -02484841 199.49899292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -02484842 199.49902344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -02484843 199.49902344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -02484844 199.49905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -02484845 199.49905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -02484846 199.49906921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -02484847 199.49906921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -02485070 199.50225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -02485071 199.50225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -02485072 199.50228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -02485073 199.50228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -02485074 199.50230408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -02485075 199.50230408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -02485076 199.50233459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -02485077 199.50234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -02485078 199.50238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -02485079 199.50238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -02485080 199.50239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -02485081 199.50239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -02485082 199.50242615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -02485083 199.50242615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -02485084 199.50245667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -02485085 199.50245667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -02485086 199.50248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -02485087 199.50248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -02485088 199.50251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -02485089 199.50253296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -02485090 199.50254822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -02485091 199.50254822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -02485092 199.50257874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -02485093 199.50257874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -02485094 199.50260925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -02485095 199.50260925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -02485096 199.50262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -02485097 199.50262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -02485098 199.50265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -02485099 199.50265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -02485100 199.50268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -02485101 199.50268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -02485102 199.50270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -02485103 199.50270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -02485104 199.50273132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -02485105 199.50273132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -02485106 199.50276184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -02485107 199.50276184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -02485108 199.50277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -02485109 199.50277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -02485110 199.50280762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -02485111 199.50282288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -02485112 199.50283813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -02485113 199.50285339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -02485332 199.50595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -02485333 199.50595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -02485334 199.50598145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -02485335 199.50598145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -02485336 199.50601196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -02485337 199.50601196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -02485338 199.50604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -02485339 199.50604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -02485340 199.50605774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -02485341 199.50607300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -02485342 199.50610352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -02485343 199.50610352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -02485344 199.50611877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -02485345 199.50611877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -02485346 199.50614929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -02485347 199.50614929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -02485348 199.50617981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -02485349 199.50617981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -02485350 199.50619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -02485351 199.50621033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -02485352 199.50624084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -02485353 199.50624084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -02485354 199.50627136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -02485355 199.50627136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -02485356 199.50628662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -02485357 199.50628662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -02485358 199.50631714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -02485359 199.50633240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -02485360 199.50639343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -02485361 199.50639343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -02485362 199.50642395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -02485363 199.50642395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -02485364 199.50643921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -02485365 199.50645447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -02485366 199.50646973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -02485367 199.50648499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -02485368 199.50651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -02485369 199.50651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -02485370 199.50653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -02485371 199.50653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -02485372 199.50656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -02485373 199.50656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -02485374 199.50659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -02485375 199.50659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -02485588 199.50961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -02485589 199.50961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -02485590 199.50964355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -02485591 199.50964355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -02485592 199.50967407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -02485593 199.50967407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -02485594 199.50968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -02485595 199.50968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -02485596 199.50971985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -02485597 199.50971985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -02485598 199.50975037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -02485599 199.50975037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -02485600 199.50976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -02485601 199.50976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -02485602 199.50979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -02485603 199.50979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -02485604 199.50982666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -02485605 199.50982666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -02485606 199.50985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -02485607 199.50985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -02485608 199.50987244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -02485609 199.50988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -02485610 199.50991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -02485611 199.50991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -02485612 199.50993347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -02485613 199.50993347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -02485614 199.50996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -02485615 199.50996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -02485616 199.50999451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -02485617 199.51000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -02485618 199.51002502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -02485619 199.51002502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -02485620 199.51005554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -02485621 199.51005554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -02485622 199.51008606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -02485623 199.51008606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -02485624 199.51010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -02485625 199.51010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -02485626 199.51013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -02485627 199.51013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -02485628 199.51016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -02485629 199.51016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -02485630 199.51017761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -02485631 199.51019287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -02486896 199.52799988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -02486897 199.52801514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -02486898 199.52804565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -02486899 199.52804565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -02486900 199.52806091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -02486901 199.52806091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -02486902 199.52809143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -02486903 199.52809143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -02486904 199.52812195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -02486905 199.52812195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -02486906 199.52813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -02486907 199.52815247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -02486908 199.52818298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -02486909 199.52818298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -02486910 199.52819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -02486911 199.52819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -02486912 199.52822876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -02486913 199.52822876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -02486914 199.52825928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -02486915 199.52825928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -02486916 199.52827454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -02486917 199.52827454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -02486918 199.52830505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -02486919 199.52830505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -02486920 199.52833557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -02486921 199.52835083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -02486922 199.52835083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -02486923 199.52836609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -02486924 199.52839661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -02486925 199.52839661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -02486926 199.52842712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -02486927 199.52842712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -02486928 199.52844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -02486929 199.52844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -02486930 199.52847290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -02486931 199.52847290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -02486932 199.52850342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -02486933 199.52851868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -02486934 199.52853394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -02486935 199.52853394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -02486936 199.52856445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -02486937 199.52856445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -02486938 199.52859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -02486939 199.52859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -02487756 199.54037476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e8 -02487757 199.54039001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e8 -02487758 199.54042053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -02487759 199.54042053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -02487760 199.54043579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -02487761 199.54043579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -02487762 199.54046631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -02487763 199.54046631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -02487764 199.54049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -02487765 199.54049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -02487766 199.54051208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -02487767 199.54052734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -02487768 199.54055786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -02487769 199.54055786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -02487770 199.54058838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -02487771 199.54058838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -02487772 199.54060364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -02487773 199.54060364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -02487774 199.54063416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -02487775 199.54063416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -02487776 199.54066467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -02487777 199.54066467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -02487778 199.54067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -02487779 199.54069519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -02487780 199.54072571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -02487781 199.54072571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -02487782 199.54075623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -02487783 199.54075623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -02487784 199.54077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -02487785 199.54077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -02487786 199.54080200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -02487787 199.54080200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -02487788 199.54083252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -02487789 199.54083252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -02487790 199.54086304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -02487791 199.54086304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -02487792 199.54089355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -02487793 199.54089355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -02487794 199.54090881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -02487795 199.54090881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -02487796 199.54093933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf728 -02487797 199.54093933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf728 -02487798 199.54096985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf738 -02487799 199.54098511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf738 -02488028 199.54426575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe68 -02488029 199.54426575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe68 -02488030 199.54429626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe78 -02488031 199.54429626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe78 -02488032 199.54432678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe88 -02488033 199.54432678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe88 -02488034 199.54435730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe98 -02488035 199.54435730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe98 -02488036 199.54438782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea8 -02488037 199.54438782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea8 -02488038 199.54440308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb8 -02488039 199.54440308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb8 -02488040 199.54443359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec8 -02488041 199.54443359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec8 -02488042 199.54446411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed8 -02488043 199.54446411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed8 -02488044 199.54447937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfee8 -02488045 199.54449463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfee8 -02488046 199.54452515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfef8 -02488047 199.54452515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfef8 -02488048 199.54455566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff08 -02488049 199.54455566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff08 -02488050 199.54457092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff18 -02488051 199.54457092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff18 -02488052 199.54460144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff28 -02488053 199.54460144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff28 -02488054 199.54463196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff38 -02488055 199.54464722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff38 -02488056 199.54466248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff48 -02488057 199.54466248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff48 -02488058 199.54469299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff58 -02488059 199.54469299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff58 -02488060 199.54472351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff68 -02488061 199.54472351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff68 -02488062 199.54473877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff78 -02488063 199.54473877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff78 -02488064 199.54476929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff88 -02488065 199.54478455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff88 -02488066 199.54479980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff98 -02488067 199.54479980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xff98 -02488068 199.54483032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa8 -02488069 199.54483032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa8 -02488070 199.54486084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb8 -02488071 199.54486084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb8 -02488880 199.55639648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11908 -02488881 199.55639648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11908 -02488882 199.55641174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11918 -02488883 199.55641174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11918 -02488884 199.55644226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11928 -02488885 199.55644226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11928 -02488886 199.55647278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11938 -02488887 199.55647278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11938 -02488888 199.55650330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11948 -02488889 199.55650330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11948 -02488890 199.55653381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11958 -02488891 199.55653381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11958 -02488892 199.55656433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11968 -02488893 199.55656433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11968 -02488894 199.55657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11978 -02488895 199.55657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11978 -02488896 199.55661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11988 -02488897 199.55661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11988 -02488898 199.55664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11998 -02488899 199.55664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11998 -02488900 199.55667114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119a8 -02488901 199.55667114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119a8 -02488902 199.55670166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119b8 -02488903 199.55670166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119b8 -02488904 199.55671692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119c8 -02488905 199.55671692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119c8 -02488906 199.55674744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119d8 -02488907 199.55674744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119d8 -02488908 199.55677795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e8 -02488909 199.55679321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e8 -02488910 199.55680847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f8 -02488911 199.55680847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f8 -02488912 199.55683899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a08 -02488913 199.55683899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a08 -02488914 199.55686951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a18 -02488915 199.55686951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a18 -02488916 199.55688477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a28 -02488917 199.55688477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a28 -02488918 199.55691528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a38 -02488919 199.55693054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a38 -02488920 199.55696106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a48 -02488921 199.55696106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a48 -02488922 199.55697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a58 -02488923 199.55697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a58 -02489786 199.56935120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13558 -02489787 199.56936646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13558 -02489788 199.56939697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13568 -02489789 199.56939697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13568 -02489790 199.56942749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13578 -02489791 199.56942749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13578 -02489792 199.56944275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13588 -02489793 199.56944275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13588 -02489794 199.56947327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13598 -02489795 199.56947327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13598 -02489796 199.56950378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a8 -02489797 199.56950378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a8 -02489798 199.56953430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b8 -02489799 199.56953430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b8 -02489800 199.56956482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c8 -02489801 199.56956482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c8 -02489802 199.56958008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d8 -02489803 199.56958008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d8 -02489804 199.56961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e8 -02489805 199.56961060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e8 -02489806 199.56964111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f8 -02489807 199.56965637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f8 -02489808 199.56967163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13608 -02489809 199.56967163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13608 -02489810 199.56970215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13618 -02489811 199.56970215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13618 -02489812 199.56973267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13628 -02489813 199.56973267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13628 -02489814 199.56974792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13638 -02489815 199.56974792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13638 -02489816 199.56977844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13648 -02489817 199.56979370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13648 -02489818 199.56982422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13658 -02489819 199.56982422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13658 -02489820 199.56983948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13668 -02489821 199.56983948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13668 -02489822 199.56987000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13678 -02489823 199.56987000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13678 -02489824 199.56990051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13688 -02489825 199.56990051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13688 -02489826 199.56991577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13698 -02489827 199.56993103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13698 -02489828 199.56996155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x136a8 -02489829 199.56996155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x136a8 -02491292 199.59059143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16468 -02491293 199.59060669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16468 -02491294 199.59062195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16478 -02491295 199.59063721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16478 -02491296 199.59065247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16488 -02491297 199.59065247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16488 -02491298 199.59068298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16498 -02491299 199.59068298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16498 -02491300 199.59071350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a8 -02491301 199.59071350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a8 -02491302 199.59072876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b8 -02491303 199.59072876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b8 -02491304 199.59075928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c8 -02491305 199.59075928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c8 -02491306 199.59078979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d8 -02491307 199.59078979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d8 -02491308 199.59080505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e8 -02491309 199.59080505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e8 -02491310 199.59083557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f8 -02491311 199.59083557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f8 -02491312 199.59086609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16508 -02491313 199.59086609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16508 -02491314 199.59088135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16518 -02491315 199.59089661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16518 -02491316 199.59092712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16528 -02491317 199.59092712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16528 -02491318 199.59095764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16538 -02491319 199.59095764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16538 -02491320 199.59097290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16548 -02491321 199.59097290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16548 -02491322 199.59100342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16558 -02491323 199.59100342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16558 -02491324 199.59103394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16568 -02491325 199.59103394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16568 -02491326 199.59104919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16578 -02491327 199.59104919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16578 -02491328 199.59107971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16588 -02491329 199.59107971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16588 -02491330 199.59111023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16598 -02491331 199.59111023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16598 -02491332 199.59112549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a8 -02491333 199.59112549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a8 -02491334 199.59115601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b8 -02491335 199.59117126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b8 -02491928 199.59957886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17848 -02491929 199.59957886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17848 -02491930 199.59960938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17858 -02491931 199.59960938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17858 -02491932 199.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17868 -02491933 199.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17868 -02491934 199.59967041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17878 -02491935 199.59967041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17878 -02491936 199.59968567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17888 -02491937 199.59968567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17888 -02491938 199.59971619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17898 -02491939 199.59971619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17898 -02491940 199.59974670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a8 -02491941 199.59976196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a8 -02491942 199.59977722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b8 -02491943 199.59977722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b8 -02491944 199.59980774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c8 -02491945 199.59980774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c8 -02491946 199.59983826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d8 -02491947 199.59983826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d8 -02491948 199.59985352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e8 -02491949 199.59985352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e8 -02491950 199.59988403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f8 -02491951 199.59989929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f8 -02491952 199.59992981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17908 -02491953 199.59992981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17908 -02491954 199.59994507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17918 -02491955 199.59994507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17918 -02491956 199.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17928 -02491957 199.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17928 -02491958 199.60000610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17938 -02491959 199.60000610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17938 -02491960 199.60002136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17948 -02491961 199.60003662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17948 -02491962 199.60005188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17958 -02491963 199.60006714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17958 -02491964 199.60008240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17968 -02491965 199.60008240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17968 -02491966 199.60011292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17978 -02491967 199.60011292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17978 -02491968 199.60014343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17988 -02491969 199.60014343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17988 -02491970 199.60017395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17998 -02491971 199.60017395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17998 -02496812 199.66912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e8 -02496813 199.66912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e8 -02496814 199.66915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f8 -02496815 199.66915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f8 -02496816 199.66918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21108 -02496817 199.66918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21108 -02496818 199.66920471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -02496819 199.66920471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -02496820 199.66923523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -02496821 199.66925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -02496822 199.66928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -02496823 199.66928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -02496824 199.66929626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -02496825 199.66929626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -02496826 199.66932678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -02496827 199.66932678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -02496828 199.66935730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -02496829 199.66935730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -02496830 199.66937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -02496831 199.66938782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -02496832 199.66941833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -02496833 199.66941833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -02496834 199.66943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -02496835 199.66943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -02496836 199.66946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -02496837 199.66946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -02496838 199.66949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -02496839 199.66949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -02496840 199.66950989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -02496841 199.66952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -02496842 199.66955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -02496843 199.66955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -02496844 199.66958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e8 -02496845 199.66958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e8 -02496846 199.66960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f8 -02496847 199.66960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f8 -02496848 199.66963196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21208 -02496849 199.66963196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21208 -02496850 199.66966248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21218 -02496851 199.66967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21218 -02496852 199.66969299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21228 -02496853 199.66969299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21228 -02496854 199.66972351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21238 -02496855 199.66972351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21238 -02502724 199.75476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a8 -02502725 199.75476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a8 -02502726 199.75479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b8 -02502727 199.75479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b8 -02502728 199.75482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c8 -02502729 199.75482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c8 -02502730 199.75483704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d8 -02502731 199.75485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d8 -02502732 199.75488281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e8 -02502733 199.75488281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e8 -02502734 199.75489807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f8 -02502735 199.75489807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f8 -02502736 199.75492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca08 -02502737 199.75492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca08 -02502738 199.75495911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca18 -02502739 199.75495911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca18 -02502740 199.75498962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca28 -02502741 199.75498962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca28 -02502742 199.75500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca38 -02502743 199.75502014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca38 -02502744 199.75505066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca48 -02502745 199.75505066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca48 -02502746 199.75506592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca58 -02502747 199.75506592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca58 -02502748 199.75509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca68 -02502749 199.75509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca68 -02502750 199.75512695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca78 -02502751 199.75512695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca78 -02502752 199.75514221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca88 -02502753 199.75514221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca88 -02502754 199.75517273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca98 -02502755 199.75518799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca98 -02502756 199.75521851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa8 -02502757 199.75521851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa8 -02502758 199.75523376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab8 -02502759 199.75523376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab8 -02502760 199.75526428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac8 -02502761 199.75526428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac8 -02502762 199.75529480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad8 -02502763 199.75529480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad8 -02502764 199.75531006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae8 -02502765 199.75532532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae8 -02502766 199.75535583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf8 -02502767 199.75535583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf8 -02519010 199.98344421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c658 -02519011 199.98344421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c658 -02519012 199.98347473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c668 -02519013 199.98347473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c668 -02519014 199.98350525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c678 -02519015 199.98350525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c678 -02519016 199.98352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c688 -02519017 199.98353577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c688 -02519018 199.98356628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c698 -02519019 199.98356628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c698 -02519020 199.98359680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6a8 -02519021 199.98359680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6a8 -02519022 199.98361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6b8 -02519023 199.98361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6b8 -02519024 199.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6c8 -02519025 199.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6c8 -02519026 199.98367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6d8 -02519027 199.98367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6d8 -02519028 199.98370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6e8 -02519029 199.98370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6e8 -02519030 199.98373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6f8 -02519031 199.98373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6f8 -02519032 199.98374939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c708 -02519033 199.98374939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c708 -02519034 199.98377991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c718 -02519035 199.98377991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c718 -02519036 199.98381042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c728 -02519037 199.98381042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c728 -02519038 199.98384094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c738 -02519039 199.98384094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c738 -02519040 199.98387146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c748 -02519041 199.98387146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c748 -02519042 199.98390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c758 -02519043 199.98390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c758 -02519044 199.98391724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c768 -02519045 199.98391724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c768 -02519046 199.98394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c778 -02519047 199.98394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c778 -02519048 199.98399353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c788 -02519049 199.98399353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c788 -02519050 199.98400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c798 -02519051 199.98400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c798 -02519052 199.98403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a8 -02519053 199.98403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a8 -02522302 200.38322449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02522303 200.38322449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02522304 200.38325500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02522305 200.38325500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02522306 200.38328552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02522307 200.38328552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02522308 200.38331604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02522309 200.38333130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02522310 200.38336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02522311 200.38336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02522312 200.38339233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02522313 200.38339233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02522314 200.38342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02522315 200.38342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02522316 200.38345337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02522317 200.38345337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02522318 200.38348389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02522319 200.38348389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02522320 200.38354492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02522321 200.38354492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02522322 200.38356018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02522323 200.38356018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02522324 200.38360596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02522325 200.38360596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02522326 200.38362122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02522327 200.38362122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02522328 200.38365173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02522329 200.38365173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02522330 200.38368225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02522331 200.38369751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02522332 200.38371277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02522333 200.38371277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02522334 200.38374329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02522335 200.38374329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02522336 200.38377380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02522337 200.38377380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02522338 200.38378906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02522339 200.38380432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02522340 200.38383484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02522341 200.38383484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02522342 200.38386536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02522343 200.38386536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02522344 200.38388062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02522345 200.38388062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02522346 200.38392639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02522347 200.38392639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02522348 200.38394165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02522349 200.38394165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02522350 200.38398743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02522351 200.38398743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02522352 200.38401794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02522353 200.38401794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02522354 200.38403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02522355 200.38404846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02522356 200.38407898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02522357 200.38407898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02522358 200.38410950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02522359 200.38410950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02522360 200.38412476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02522361 200.38412476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02522362 200.38417053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02522363 200.38417053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02522364 200.38418579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02522365 200.38418579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02522366 200.38421631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02522367 200.38421631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02522368 200.38424683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02522369 200.38426208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02522370 200.38427734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02522371 200.38427734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02522372 200.38430786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02522373 200.38430786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02522374 200.38433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02522375 200.38433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02522376 200.38436890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02522377 200.38436890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02522378 200.38439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02522379 200.38439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02522380 200.38442993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02522381 200.38442993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02522382 200.38444519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02522383 200.38446045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02522384 200.38449097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02522385 200.38449097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02522386 200.38450623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02522387 200.38450623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02522388 200.38453674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02522389 200.38453674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02522390 200.38456726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02522391 200.38456726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02522392 200.38458252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02522393 200.38459778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02522394 200.38462830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02522395 200.38462830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02522396 200.38465881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02522397 200.38465881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02522398 200.38468933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02522399 200.38468933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02522400 200.38471985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02522401 200.38471985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02522402 200.38473511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02522403 200.38475037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02522404 200.38478088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02522405 200.38478088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02522406 200.38481140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02522407 200.38481140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02522408 200.38482666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02522409 200.38484192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02522410 200.38487244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02522411 200.38487244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02522412 200.38490295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02522413 200.38490295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02522414 200.38491821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02522415 200.38493347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02522416 200.38496399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02522417 200.38496399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02522418 200.38497925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02522419 200.38497925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02522420 200.38502502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02522421 200.38502502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02522422 200.38505554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02522423 200.38505554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02522424 200.38507080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02522425 200.38508606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02522426 200.38513184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02522427 200.38513184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02522428 200.38516235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02522429 200.38516235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02522430 200.38519287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02522431 200.38519287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02522432 200.38522339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02522433 200.38522339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02528904 200.47666931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde90 -02528905 200.47668457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xde90 -02528906 200.47671509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea0 -02528907 200.47671509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea0 -02528908 200.47673035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb0 -02528909 200.47673035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb0 -02528910 200.47676086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec0 -02528911 200.47676086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec0 -02528912 200.47679138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xded0 -02528913 200.47679138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xded0 -02528914 200.47680664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee0 -02528915 200.47680664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee0 -02528916 200.47683716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef0 -02528917 200.47683716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef0 -02528918 200.47686768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf00 -02528919 200.47686768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf00 -02528920 200.47688293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf10 -02528921 200.47689819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf10 -02528922 200.47692871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf20 -02528923 200.47692871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf20 -02528924 200.47695923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf30 -02528925 200.47695923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf30 -02528926 200.47697449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf40 -02528927 200.47697449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf40 -02528928 200.47700500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf50 -02528929 200.47700500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf50 -02528930 200.47703552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf60 -02528931 200.47703552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf60 -02528932 200.47705078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf70 -02528933 200.47705078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf70 -02528934 200.47708130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf80 -02528935 200.47708130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf80 -02528936 200.47711182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf90 -02528937 200.47712708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf90 -02528938 200.47714233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa0 -02528939 200.47714233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa0 -02528940 200.47717285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb0 -02528941 200.47717285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb0 -02528942 200.47720337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc0 -02528943 200.47720337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc0 -02528944 200.47721863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd0 -02528945 200.47721863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd0 -02528946 200.47724915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe0 -02528947 200.47724915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe0 -02533008 200.53416443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed0 -02533009 200.53416443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed0 -02533010 200.53417969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee0 -02533011 200.53417969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee0 -02533012 200.53421021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -02533013 200.53421021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -02533014 200.53424072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -02533015 200.53424072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -02533016 200.53427124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -02533017 200.53427124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -02533018 200.53430176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -02533019 200.53430176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -02533020 200.53431702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -02533021 200.53431702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -02533022 200.53436279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -02533023 200.53436279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -02533024 200.53439331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -02533025 200.53439331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -02533026 200.53440857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -02533027 200.53440857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -02533028 200.53443909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -02533029 200.53445435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -02533030 200.53446960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -02533031 200.53446960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -02533032 200.53450012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -02533033 200.53450012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -02533034 200.53453064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -02533035 200.53453064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -02533036 200.53456116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -02533037 200.53456116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -02533038 200.53457642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -02533039 200.53459167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -02533040 200.53462219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -02533041 200.53462219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -02533042 200.53463745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -02533043 200.53463745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -02533044 200.53466797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -02533045 200.53466797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -02533046 200.53469849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -02533047 200.53471375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -02533048 200.53472900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -02533049 200.53472900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -02533050 200.53475952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -02533051 200.53475952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -02540108 200.63516235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb0 -02540109 200.63516235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb0 -02540110 200.63519287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc0 -02540111 200.63519287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc0 -02540112 200.63520813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd0 -02540113 200.63522339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd0 -02540114 200.63525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce0 -02540115 200.63525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce0 -02540116 200.63528442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf0 -02540117 200.63528442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf0 -02540118 200.63529968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d00 -02540119 200.63529968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d00 -02540120 200.63534546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d10 -02540121 200.63534546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d10 -02540122 200.63536072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d20 -02540123 200.63536072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d20 -02540124 200.63539124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d30 -02540125 200.63539124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d30 -02540126 200.63543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d40 -02540127 200.63543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d40 -02540128 200.63545227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d50 -02540129 200.63545227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d50 -02540130 200.63548279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d60 -02540131 200.63549805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d60 -02540132 200.63551331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d70 -02540133 200.63551331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d70 -02540134 200.63554382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d80 -02540135 200.63554382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d80 -02540136 200.63558960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d90 -02540137 200.63558960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d90 -02540138 200.63560486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da0 -02540139 200.63560486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da0 -02540140 200.63563538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db0 -02540141 200.63565063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db0 -02540142 200.63568115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc0 -02540143 200.63568115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc0 -02540144 200.63569641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd0 -02540145 200.63569641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd0 -02540146 200.63574219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de0 -02540147 200.63574219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de0 -02540148 200.63575745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -02540149 200.63575745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -02540150 200.63580322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -02540151 200.63580322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -02545224 200.70957947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc90 -02545225 200.70959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc90 -02545226 200.70962524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca0 -02545227 200.70962524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca0 -02545228 200.70964050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb0 -02545229 200.70964050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb0 -02545230 200.70967102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc0 -02545231 200.70967102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc0 -02545232 200.70970154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd0 -02545233 200.70970154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd0 -02545234 200.70973206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dce0 -02545235 200.70973206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dce0 -02545236 200.70976257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf0 -02545237 200.70976257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf0 -02545238 200.70979309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd00 -02545239 200.70979309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd00 -02545240 200.70980835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd10 -02545241 200.70982361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd10 -02545242 200.70983887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd20 -02545243 200.70985413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd20 -02545244 200.70986938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd30 -02545245 200.70986938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd30 -02545246 200.70989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd40 -02545247 200.70989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd40 -02545248 200.70993042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd50 -02545249 200.70993042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd50 -02545250 200.70994568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd60 -02545251 200.70996094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd60 -02545252 200.70999146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd70 -02545253 200.70999146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd70 -02545254 200.71002197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd80 -02545255 200.71002197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd80 -02545256 200.71003723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd90 -02545257 200.71003723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd90 -02545258 200.71006775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda0 -02545259 200.71008301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda0 -02545260 200.71009827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb0 -02545261 200.71009827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb0 -02545262 200.71012878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc0 -02545263 200.71012878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc0 -02545264 200.71018982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd0 -02545265 200.71018982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd0 -02545266 200.71020508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde0 -02545267 200.71022034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde0 -02550826 200.78881836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -02550827 200.78881836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -02550828 200.78884888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb0 -02550829 200.78884888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb0 -02550830 200.78887939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc0 -02550831 200.78887939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc0 -02550832 200.78890991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd0 -02550833 200.78890991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd0 -02550834 200.78892517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be0 -02550835 200.78892517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be0 -02550836 200.78895569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf0 -02550837 200.78897095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf0 -02550838 200.78898621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c00 -02550839 200.78898621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c00 -02550840 200.78901672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c10 -02550841 200.78901672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c10 -02550842 200.78904724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c20 -02550843 200.78904724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c20 -02550844 200.78906250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c30 -02550845 200.78906250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c30 -02550846 200.78909302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c40 -02550847 200.78909302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c40 -02550848 200.78912354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c50 -02550849 200.78912354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c50 -02550850 200.78913879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c60 -02550851 200.78913879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c60 -02550852 200.78916931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c70 -02550853 200.78918457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c70 -02550854 200.78919983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c80 -02550855 200.78921509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c80 -02550856 200.78923035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c90 -02550857 200.78923035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c90 -02550858 200.78926086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca0 -02550859 200.78926086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca0 -02550860 200.78929138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb0 -02550861 200.78929138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb0 -02550862 200.78930664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc0 -02550863 200.78930664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc0 -02550864 200.78933716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd0 -02550865 200.78933716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd0 -02550866 200.78936768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce0 -02550867 200.78936768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce0 -02550868 200.78938293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf0 -02550869 200.78938293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf0 -02564196 201.16972351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02564197 201.18885803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564198 201.18887329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564199 201.85154724 [vmhook-eac [core number = 23]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7AD1BE0 -02564200 201.85273743 [vmhook-eac [core number = 23]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7AD1BE0 -02564201 202.33512878 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564202 202.33517456 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564203 202.33518982 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564204 202.33520508 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02564205 202.33532715 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564206 202.33534241 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564207 202.33540344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564208 202.33541870 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564209 203.19004822 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02564210 203.20788574 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564211 203.20790100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564212 204.84205627 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564213 204.84210205 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564214 204.84211731 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564215 204.84213257 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02564216 204.84225464 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564217 204.84226990 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564218 204.84231567 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564219 204.84234619 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564220 205.03067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02564221 205.03068542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02564222 205.03070068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02564223 205.03070068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02564224 205.03073120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02564225 205.03073120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02564226 205.03076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02564227 205.03076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02564228 205.03077698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02564229 205.03079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02564230 205.03082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02564231 205.03082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02564232 205.03085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02564233 205.03085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02564234 205.03086853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02564235 205.03086853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02564236 205.03089905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02564237 205.03089905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02564238 205.03092957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02564239 205.03094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02564240 205.03096008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02564241 205.03096008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02564242 205.03099060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02564243 205.03099060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02564244 205.03102112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02564245 205.03102112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02564246 205.03103638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02564247 205.03103638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02564248 205.03106689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02564249 205.03106689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02564250 205.03109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02564251 205.03109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02564252 205.03112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02564253 205.03112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02564254 205.03115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02564255 205.03115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02564256 205.03117371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02564257 205.03117371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02564258 205.03120422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02564259 205.03120422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02564260 205.03123474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02564261 205.03125000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02564262 205.03126526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02564263 205.03126526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02564264 205.03129578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02564265 205.03129578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02564266 205.03132629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02564267 205.03132629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02564268 205.03134155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02564269 205.03135681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02564270 205.03138733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02564271 205.03138733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02564272 205.03141785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02564273 205.03141785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02564274 205.03143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02564275 205.03143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02564276 205.03146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02564277 205.03146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02564278 205.03149414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02564279 205.03149414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02564280 205.03152466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02564281 205.03152466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02564282 205.03155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02564283 205.03155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02564284 205.03157043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02564285 205.03157043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02564286 205.03160095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02564287 205.03160095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02564288 205.03163147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02564289 205.03163147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02564290 205.03166199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02564291 205.03166199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02564292 205.03169250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02564293 205.03169250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02564294 205.03172302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02564295 205.03172302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02564296 205.03173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02564297 205.03173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02564298 205.03176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02564299 205.03176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02564300 205.03179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02564301 205.03181458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02564302 205.03182983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02564303 205.03182983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02564304 205.03186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02564305 205.03186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02564306 205.03189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02564307 205.03189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02564308 205.03190613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02564309 205.03190613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02564310 205.03193665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02564311 205.03195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02564312 205.03196716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02564313 205.03196716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02564314 205.03199768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02564315 205.03199768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02564316 205.03202820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02564317 205.03202820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02564318 205.03205872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02564319 205.03205872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02564320 205.03207397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02564321 205.03208923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02564322 205.03211975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02564323 205.03211975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02564324 205.03213501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02564325 205.03213501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02564326 205.03216553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02564327 205.03216553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02564328 205.03219604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02564329 205.03219604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02564330 205.03221130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02564331 205.03222656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02564332 205.03225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02564333 205.03225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02564334 205.03228760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02564335 205.03228760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02564336 205.03230286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02564337 205.03230286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02564338 205.03233337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02564339 205.03233337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02564340 205.03236389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02564341 205.03236389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02564342 205.03239441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02564343 205.03239441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02564344 205.03244019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02564345 205.03244019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02564346 205.03245544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02564347 205.03247070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02564348 205.03250122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02564349 205.03250122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02564350 205.03253174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02564351 205.03253174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02564352 205.03254700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02564353 205.03254700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02564354 205.03257751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02564355 205.03257751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02564356 205.03260803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02564357 205.03260803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02564358 205.03263855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02564359 205.03263855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02564360 205.03266907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02564361 205.03266907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02564362 205.03268433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02564363 205.03268433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02564364 205.03271484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02564365 205.03271484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02564366 205.03274536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02564367 205.03276062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02564368 205.03277588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02564369 205.03277588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02564370 205.03280640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02564371 205.03280640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02564372 205.03283691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02564373 205.03283691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02564374 205.03285217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02564375 205.03285217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02564376 205.03288269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02564377 205.03288269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02564378 205.03291321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02564379 205.03292847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02564380 205.03294373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02564381 205.03294373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02564382 205.03297424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02564383 205.03297424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02564384 205.03300476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02564385 205.03300476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02564386 205.03302002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02564387 205.03302002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02564388 205.03305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02564389 205.03306580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02564390 205.03308105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02564391 205.03311157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02564392 205.03314209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02564393 205.03314209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02564394 205.03315735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02564395 205.03315735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02564396 205.03318787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02564397 205.03320313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02564398 205.03323364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02564399 205.03323364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02564400 205.03324890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02564401 205.03324890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02564402 205.03327942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02564403 205.03327942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02564404 205.03330994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02564405 205.03330994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02564406 205.03332520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02564407 205.03334045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02564408 205.03337097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02564409 205.03337097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02564410 205.03340149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02564411 205.03340149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02564412 205.03341675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02564413 205.03341675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02564414 205.03344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02564415 205.03344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02564416 205.03347778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02564417 205.03347778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02564418 205.03349304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02564419 205.03350830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02564420 205.03353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02564421 205.03353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02564422 205.03355408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02564423 205.03355408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02564424 205.03358459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02564425 205.03358459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02564426 205.03361511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02564427 205.03361511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02564428 205.03364563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02564429 205.03364563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02564430 205.03367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02564431 205.03367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02564432 205.03370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02564433 205.03370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02564434 205.03372192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02564435 205.03372192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02564436 205.03375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02564437 205.03375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02564438 205.03378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02564439 205.03379822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02564440 205.03381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02564441 205.03381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02564442 205.03384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02564443 205.03384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02564444 205.03387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02564445 205.03387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02564446 205.03388977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02564447 205.03388977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02564448 205.03392029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02564449 205.03393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02564450 205.03395081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02564451 205.03395081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02564452 205.03398132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02564453 205.03398132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02564454 205.03401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02564455 205.03401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02564456 205.03404236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02564457 205.03404236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02564458 205.03405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02564459 205.03405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02564460 205.03408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02564461 205.03410339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02564462 205.03411865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02564463 205.03411865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02564464 205.03414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02564465 205.03414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02564466 205.03417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02564467 205.03417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02564468 205.03419495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02564469 205.03419495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02564470 205.03422546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02564471 205.03424072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02564472 205.03427124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02564473 205.03427124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02564474 205.03428650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02564475 205.03428650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02564476 205.03431702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02564477 205.03431702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02564478 205.03434753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02564479 205.03436279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02564480 205.03437805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02564481 205.03437805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02564482 205.03440857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02564483 205.03440857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02564484 205.03443909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02564485 205.03443909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02564486 205.03445435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02564487 205.03445435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02564488 205.03448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02564489 205.03450012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02564490 205.03451538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02564491 205.03451538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02564492 205.03454590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02564493 205.03454590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02564494 205.03457642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02564495 205.03457642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02564496 205.03459167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02564497 205.03460693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02564498 205.03462219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02564499 205.03463745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02564500 205.03466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02564501 205.03466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02564502 205.03468323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02564503 205.03468323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02564504 205.03471375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02564505 205.03471375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02564506 205.03474426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02564507 205.03474426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02564508 205.03475952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02564509 205.03475952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02564510 205.03479004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02564511 205.03479004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02564512 205.03482056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02564513 205.03482056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02564514 205.03483582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02564515 205.03483582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02564516 205.03486633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02564517 205.03488159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02564518 205.03489685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02564519 205.03491211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02564520 205.03492737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02564521 205.03492737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02564522 205.03495789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02564523 205.03495789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02564524 205.03498840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02564525 205.03498840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02564526 205.03500366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02564527 205.03500366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02564528 205.03503418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02564529 205.03503418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02564530 205.03506470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02564531 205.03506470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02564532 205.03507996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02564533 205.03507996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02564534 205.03511047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02564535 205.03511047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02564536 205.03514099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02564537 205.03514099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02564538 205.03515625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02564539 205.03517151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02564540 205.03520203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02564541 205.03520203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02564542 205.03523254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02564543 205.03523254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02564544 205.03524780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02564545 205.03524780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02564546 205.03527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02564547 205.03527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02564548 205.03530884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02564549 205.03530884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02564550 205.03533936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02564551 205.03533936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02564552 205.03536987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02564553 205.03536987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02564554 205.03538513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02564555 205.03538513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02564556 205.03541565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02564557 205.03543091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02564558 205.03546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02564559 205.03546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02564560 205.03547668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02564561 205.03547668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02564562 205.03550720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02564563 205.03550720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02564564 205.03553772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02564565 205.03553772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02564566 205.03555298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02564567 205.03556824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02564568 205.03559875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02564569 205.03559875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02564570 205.03562927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02564571 205.03562927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02564572 205.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02564573 205.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02564574 205.03567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02564575 205.03567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02564576 205.03570557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02564577 205.03570557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02564578 205.03573608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02564579 205.03573608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02564580 205.03576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02564581 205.03576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02564582 205.03578186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02564583 205.03578186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02564584 205.03581238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02564585 205.03581238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02564586 205.03584290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02564587 205.03585815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02564588 205.03587341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02564589 205.03587341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02564590 205.03590393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02564591 205.03590393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02564592 205.03593445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02564593 205.03594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02564594 205.03596497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02564595 205.03596497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02564596 205.03599548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02564597 205.03599548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02564598 205.03602600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02564599 205.03602600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02564600 205.03604126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02564601 205.03604126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02564602 205.03607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02564603 205.03607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02564604 205.03610229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02564605 205.03610229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02564606 205.03613281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02564607 205.03613281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02564608 205.03616333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02564609 205.03616333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02564610 205.03617859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02564611 205.03617859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02564612 205.03620911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02564613 205.03620911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02564614 205.03623962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02564615 205.03625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02564616 205.03627014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02564617 205.03627014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02564618 205.03630066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02564619 205.03630066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02564620 205.03633118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02564621 205.03633118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02564622 205.03634644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02564623 205.03634644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02564624 205.03637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02564625 205.03639221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02564626 205.03642273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02564627 205.03642273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02564628 205.03643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02564629 205.03643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02564630 205.03646851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02564631 205.03646851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02564632 205.03649902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02564633 205.03649902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02564634 205.03651428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02564635 205.03652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02564636 205.03656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02564637 205.03656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02564638 205.03657532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02564639 205.03657532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02564640 205.03660583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02564641 205.03660583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02564642 205.03663635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02564643 205.03663635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02564644 205.03665161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02564645 205.03666687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02564646 205.03669739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02564647 205.03669739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02564648 205.03672791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02564649 205.03672791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02564650 205.03674316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02564651 205.03674316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02564652 205.03677368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02564653 205.03677368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02564654 205.03680420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02564655 205.03680420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02564656 205.03681946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02564657 205.03683472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02564658 205.03686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02564659 205.03686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02564660 205.03689575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02564661 205.03689575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02564662 205.03691101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02564663 205.03691101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02564664 205.03694153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02564665 205.03694153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02564666 205.03697205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02564667 205.03697205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02564668 205.03700256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02564669 205.03700256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02564670 205.03703308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02564671 205.03703308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02564672 205.03706360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02564673 205.03706360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02564674 205.03709412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02564675 205.03709412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02564676 205.03712463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02564677 205.03712463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02564678 205.03713989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02564679 205.03715515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02564680 205.03718567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02564681 205.03718567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02564682 205.03721619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02564683 205.03721619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02564684 205.03723145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02564685 205.03723145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02564686 205.03726196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02564687 205.03726196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02564688 205.03729248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02564689 205.03729248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02564690 205.03730774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02564691 205.03732300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02564692 205.03735352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02564693 205.03735352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02564694 205.03736877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02564695 205.03736877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02564696 205.03739929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02564697 205.03739929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02564698 205.03742981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02564699 205.03742981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02564700 205.03746033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02564701 205.03746033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02564702 205.03749084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02564703 205.03749084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02564704 205.03752136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02564705 205.03752136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02564706 205.03753662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02564707 205.03753662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02564708 205.03756714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02564709 205.03756714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02564710 205.03759766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02564711 205.03761292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02564712 205.03762817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02564713 205.03762817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02564714 205.03765869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02564715 205.03765869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02564716 205.03768921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02564717 205.03768921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02564718 205.03770447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02564719 205.03770447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02564720 205.03773499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02564721 205.03775024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02564722 205.03776550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02564723 205.03776550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02564724 205.03779602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02564725 205.03779602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02564726 205.03782654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02564727 205.03782654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02564728 205.03785706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02564729 205.03785706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02564730 205.03787231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02564731 205.03787231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02564732 205.03790283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02564733 205.03791809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02564734 205.03793335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02564735 205.03793335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02564736 205.03796387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02564737 205.03796387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02564738 205.03799438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02564739 205.03799438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02564740 205.03800964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02564741 205.03800964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02564742 205.03804016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02564743 205.03805542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02564744 205.03808594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02564745 205.03808594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02564746 205.03810120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02564747 205.03810120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02564748 205.03813171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02564749 205.03813171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02564750 205.03816223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02564751 205.03816223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02564752 205.03817749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02564753 205.03819275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02564754 205.03822327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02564755 205.03822327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02564756 205.03825378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02564757 205.03825378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02564758 205.03826904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02564759 205.03826904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02564760 205.03829956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02564761 205.03829956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02564762 205.03833008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02564763 205.03833008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02564764 205.03834534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02564765 205.03834534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02564766 205.03837585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02564767 205.03839111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02564768 205.03840637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02564769 205.03840637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02564770 205.03843689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02564771 205.03843689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02564772 205.03846741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02564773 205.03846741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02564774 205.03848267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02564775 205.03848267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02564776 205.03851318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02564777 205.03851318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02564778 205.03854370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02564779 205.03854370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02564780 205.03855896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02564781 205.03855896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02564782 205.03858948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02564783 205.03858948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02564784 205.03862000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02564785 205.03862000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02564786 205.03865051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02564787 205.03865051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02564788 205.03866577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02564789 205.03868103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02564790 205.03871155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02564791 205.03871155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02564792 205.03872681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02564793 205.03872681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02564794 205.03875732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02564795 205.03875732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02564796 205.03878784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02564797 205.03880310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02564798 205.03881836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02564799 205.03881836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02564800 205.03884888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02564801 205.03884888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02564802 205.03887939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02564803 205.03887939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02564804 205.03889465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02564805 205.03889465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02564806 205.03892517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02564807 205.03892517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02564808 205.03895569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02564809 205.03895569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02564810 205.03897095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02564811 205.03898621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02564812 205.03901672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02564813 205.03901672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02564814 205.03904724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02564815 205.03904724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02564816 205.03906250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02564817 205.03906250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02564818 205.03909302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02564819 205.03909302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02564820 205.03912354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02564821 205.03912354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02564822 205.03913879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02564823 205.03913879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02564824 205.03916931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02564825 205.03916931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02564826 205.03919983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02564827 205.03919983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02564828 205.03923035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02564829 205.03923035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02564830 205.03926086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02564831 205.03926086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02564832 205.03927612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02564833 205.03927612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02564834 205.03930664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02564835 205.03930664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02564836 205.03933716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02564837 205.03935242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02564838 205.03936768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02564839 205.03936768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02564840 205.03939819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02564841 205.03939819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02564842 205.03942871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02564843 205.03942871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02564844 205.03945923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02564845 205.03945923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02564846 205.03948975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02564847 205.03948975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02564848 205.03952026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02564849 205.03952026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02564850 205.03953552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02564851 205.03953552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02564852 205.03956604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02564853 205.03956604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02564854 205.03959656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02564855 205.03959656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02564856 205.03962708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02564857 205.03962708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02564858 205.03965759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02564859 205.03965759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02564860 205.03967285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02564861 205.03967285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02564862 205.03970337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02564863 205.03970337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02564864 205.03973389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02564865 205.03973389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02564866 205.03976440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02564867 205.03976440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02564868 205.03977966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02564869 205.03979492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02564870 205.03981018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02564871 205.03982544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02564872 205.03984070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02564873 205.03984070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02564874 205.03987122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02564875 205.03987122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02564876 205.03990173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02564877 205.03990173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02564878 205.03991699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02564879 205.03991699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02564880 205.03994751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02564881 205.03994751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02564882 205.03997803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02564883 205.03999329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02564884 205.04000854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02564885 205.04000854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02564886 205.04003906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02564887 205.04003906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02564888 205.04006958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02564889 205.04006958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02564890 205.04008484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02564891 205.04010010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02564892 205.04011536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02564893 205.04013062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02564894 205.04016113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02564895 205.04016113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02564896 205.04017639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02564897 205.04017639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02564898 205.04020691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02564899 205.04020691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02564900 205.04023743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02564901 205.04023743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02564902 205.04025269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02564903 205.04025269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02564904 205.04028320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02564905 205.04028320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02564906 205.04031372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02564907 205.04031372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02564908 205.04032898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02564909 205.04032898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02564910 205.04035950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02564911 205.04035950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02564912 205.04039001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02564913 205.04039001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02564914 205.04040527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02564915 205.04042053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02564916 205.04045105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02564917 205.04045105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02564918 205.04046631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02564919 205.04046631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02564920 205.04049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02564921 205.04049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02564922 205.04052734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02564923 205.04052734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02564924 205.04055786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02564925 205.04055786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02564926 205.04057312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02564927 205.04057312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02564928 205.04060364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02564929 205.04060364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02564930 205.04063416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02564931 205.04063416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02564932 205.04064941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02564933 205.04066467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02564934 205.04067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02564935 205.04069519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02564936 205.04071045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02564937 205.04071045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02564938 205.04074097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02564939 205.04074097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02564940 205.04077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02564941 205.04077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02564942 205.04078674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02564943 205.04078674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02564944 205.04081726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02564945 205.04081726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02564946 205.04084778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02564947 205.04084778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02564948 205.04089355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02564949 205.04089355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02564950 205.04092407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02564951 205.04092407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02564952 205.04095459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02564953 205.04095459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02564954 205.04096985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02564955 205.04096985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02564956 205.04100037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02564957 205.04100037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02564958 205.04103088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02564959 205.04103088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02564960 205.04106140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02564961 205.04106140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02564962 205.04109192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02564963 205.04109192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02564964 205.04110718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02564965 205.04110718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02564966 205.04113770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02564967 205.04115295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02564968 205.04118347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02564969 205.04118347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02564970 205.04119873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02564971 205.04119873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02564972 205.04122925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02564973 205.04124451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02564974 205.04125977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02564975 205.04125977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02564976 205.04129028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02564977 205.04129028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02564978 205.04132080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02564979 205.04132080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02564980 205.04135132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02564981 205.04135132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02564982 205.04136658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02564983 205.04138184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02564984 205.04141235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02564985 205.04141235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02564986 205.04142761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02564987 205.04142761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02564988 205.04145813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02564989 205.04145813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02564990 205.04148865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02564991 205.04148865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02564992 205.04150391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02564993 205.04150391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02564994 205.04153442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02564995 205.04153442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02564996 205.04156494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02564997 205.04156494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02564998 205.04158020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02564999 205.04158020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02565000 205.04161072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02565001 205.04162598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02565002 205.04164124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02565003 205.04165649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02565004 205.04167175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02565005 205.04167175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02565006 205.04170227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02565007 205.04170227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02565008 205.04173279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02565009 205.04173279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02565010 205.04174805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02565011 205.04174805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02565012 205.04177856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02565013 205.04177856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02565014 205.04180908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02565015 205.04180908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02565016 205.04183960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02565017 205.04183960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02565018 205.04187012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02565019 205.04187012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02565020 205.04190063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02565021 205.04190063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02565022 205.04191589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02565023 205.04191589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02565024 205.04194641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02565025 205.04196167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02565026 205.04197693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02565027 205.04197693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02565028 205.04200745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02565029 205.04200745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02565030 205.04203796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02565031 205.04203796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02565032 205.04205322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02565033 205.04205322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02565034 205.04208374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02565035 205.04208374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02565036 205.04211426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02565037 205.04211426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02565038 205.04214478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02565039 205.04214478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02565040 205.04216003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02565041 205.04216003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02565042 205.04219055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02565043 205.04219055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02565044 205.04222107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02565045 205.04222107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02565046 205.04223633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02565047 205.04225159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02565048 205.04226685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02565049 205.04228210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02565050 205.04229736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02565051 205.04229736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02565052 205.04232788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02565053 205.04232788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02565054 205.04235840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02565055 205.04235840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02565056 205.04237366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02565057 205.04237366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02565058 205.04240417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02565059 205.04240417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02565060 205.04243469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02565061 205.04243469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02565062 205.04246521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02565063 205.04246521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02565064 205.04248047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02565065 205.04248047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02565066 205.04251099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02565067 205.04252625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02565068 205.04254150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02565069 205.04254150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02565070 205.04257202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02565071 205.04257202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02565072 205.04260254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02565073 205.04260254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02565074 205.04261780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02565075 205.04261780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02565076 205.04264832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02565077 205.04264832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02565078 205.04267883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02565079 205.04267883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02565080 205.04269409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02565081 205.04270935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02565082 205.04273987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02565083 205.04273987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02565084 205.04277039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02565085 205.04277039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02565086 205.04278564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02565087 205.04278564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02565088 205.04281616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02565089 205.04281616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02565090 205.04284668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02565091 205.04286194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02565092 205.04287720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02565093 205.04287720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02565094 205.04290771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02565095 205.04290771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02565096 205.04293823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02565097 205.04293823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02565098 205.04295349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02565099 205.04296875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02565100 205.04299927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02565101 205.04299927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02565102 205.04301453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02565103 205.04301453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02565104 205.04304504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02565105 205.04304504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02565106 205.04307556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02565107 205.04307556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02565108 205.04309082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02565109 205.04310608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02565110 205.04313660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02565111 205.04313660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02565112 205.04316711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02565113 205.04316711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02565114 205.04318237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02565115 205.04318237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02565116 205.04321289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02565117 205.04321289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02565118 205.04324341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02565119 205.04325867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02565120 205.04327393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02565121 205.04327393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02565122 205.04330444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02565123 205.04330444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02565124 205.04333496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02565125 205.04333496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02565126 205.04335022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02565127 205.04336548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02565128 205.04339600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02565129 205.04339600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02565130 205.04341125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02565131 205.04341125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02565132 205.04344177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02565133 205.04344177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02565134 205.04347229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02565135 205.04348755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02565136 205.04348755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02565137 205.04350281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02565138 205.04353333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02565139 205.04353333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02565140 205.04356384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02565141 205.04356384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02565142 205.04357910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02565143 205.04357910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02565144 205.04360962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02565145 205.04360962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02565146 205.04364014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02565147 205.04364014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02565148 205.04365540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02565149 205.04365540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02565150 205.04368591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02565151 205.04368591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02565152 205.04373169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02565153 205.04373169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02565154 205.04374695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02565155 205.04374695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02565156 205.04377747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02565157 205.04377747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02565158 205.04380798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02565159 205.04380798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02565160 205.04382324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02565161 205.04383850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02565162 205.04385376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02565163 205.04386902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02565164 205.04388428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02565165 205.04388428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02565166 205.04391479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02565167 205.04391479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02565168 205.04394531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02565169 205.04394531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02565170 205.04396057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02565171 205.04396057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02565172 205.04399109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02565173 205.04399109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02565174 205.04402161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02565175 205.04402161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02565176 205.04405212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02565177 205.04405212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02565178 205.04406738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02565179 205.04406738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02565180 205.04409790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02565181 205.04409790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02565182 205.04412842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02565183 205.04412842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02565184 205.04415894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02565185 205.04415894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02565186 205.04418945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02565187 205.04418945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02565188 205.04420471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02565189 205.04420471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02565190 205.04423523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02565191 205.04423523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02565192 205.04426575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02565193 205.04426575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02565194 205.04428101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02565195 205.04429626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02565196 205.04432678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02565197 205.04432678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02565198 205.04435730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02565199 205.04435730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02565200 205.04437256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02565201 205.04437256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02565202 205.04440308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02565203 205.04440308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02565204 205.04443359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02565205 205.04444885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02565206 205.04446411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02565207 205.04446411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02565208 205.04449463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02565209 205.04449463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02565210 205.04452515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02565211 205.04452515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02565212 205.04454041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02565213 205.04454041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02565214 205.04457092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02565215 205.04457092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02565216 205.04460144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02565217 205.04460144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02565218 205.04461670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02565219 205.04463196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02565220 205.04466248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02565221 205.04466248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02565222 205.04467773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02565223 205.04467773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02565224 205.04470825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02565225 205.04470825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02565226 205.04473877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02565227 205.04473877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02565228 205.04475403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02565229 205.04475403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02565230 205.04478455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02565231 205.04478455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02565232 205.04481506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02565233 205.04481506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02565234 205.04484558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02565235 205.04484558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02565236 205.04486084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02565237 205.04486084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02565238 205.04489136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02565239 205.04490662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02565240 205.04492188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02565241 205.04492188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02565242 205.04495239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02565243 205.04495239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02565244 205.04498291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02565245 205.04498291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02565246 205.04499817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02565247 205.04499817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02565248 205.04502869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02565249 205.04502869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02565250 205.04505920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02565251 205.04505920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02565252 205.04507446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02565253 205.04507446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02565254 205.04510498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02565255 205.04512024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02565256 205.04513550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02565257 205.04515076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02565258 205.04516602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02565259 205.04516602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02565260 205.04519653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02565261 205.04519653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02565262 205.04522705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02565263 205.04522705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02565264 205.04524231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02565265 205.04524231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02565266 205.04527283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02565267 205.04528809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02565268 205.04531860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02565269 205.04531860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02565270 205.04533386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02565271 205.04533386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02565272 205.04536438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02565273 205.04536438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02565274 205.04539490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02565275 205.04539490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02565276 205.04541016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02565277 205.04542542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02565278 205.04545593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02565279 205.04545593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02565280 205.04547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02565281 205.04547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02565282 205.04550171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02565283 205.04550171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02565284 205.04553223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02565285 205.04553223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02565286 205.04556274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02565287 205.04556274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02565288 205.04557800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02565289 205.04559326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02565290 205.04562378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02565291 205.04562378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02565292 205.04563904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02565293 205.04563904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02565294 205.04566956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02565295 205.04566956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02565296 205.04570007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02565297 205.04570007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02565298 205.04571533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02565299 205.04573059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02565300 205.04574585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02565301 205.04576111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02565302 205.04579163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02565303 205.04579163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02565304 205.04580688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02565305 205.04580688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02565306 205.04583740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02565307 205.04583740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02565308 205.04586792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02565309 205.04586792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02565310 205.04588318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02565311 205.04589844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02565312 205.04592896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02565313 205.04592896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02565314 205.04595947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02565315 205.04595947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02565316 205.04597473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02565317 205.04597473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02565318 205.04600525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02565319 205.04600525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02565320 205.04603577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02565321 205.04603577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02565322 205.04605103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02565323 205.04606628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02565324 205.04609680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02565325 205.04609680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02565326 205.04611206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02565327 205.04611206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02565328 205.04614258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02565329 205.04614258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02565330 205.04617310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02565331 205.04617310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02565332 205.04618835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02565333 205.04620361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02565334 205.04623413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02565335 205.04623413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02565336 205.04626465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02565337 205.04626465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02565338 205.04627991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02565339 205.04627991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02565340 205.04631042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02565341 205.04631042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02565342 205.04634094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02565343 205.04635620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02565344 205.04637146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02565345 205.04637146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02565346 205.04640198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02565347 205.04640198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02565348 205.04643250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02565349 205.04643250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02565350 205.04644775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02565351 205.04644775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02565352 205.04647827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02565353 205.04647827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02565354 205.04650879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02565355 205.04650879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02565356 205.04652405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02565357 205.04652405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02565358 205.04655457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02565359 205.04655457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02565360 205.04658508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02565361 205.04658508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02565362 205.04660034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02565363 205.04661560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02565364 205.04663086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02565365 205.04664612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02565366 205.04666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02565367 205.04666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02565368 205.04669189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02565369 205.04669189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02565370 205.04672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02565371 205.04672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02565372 205.04675293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02565373 205.04675293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02565374 205.04676819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02565375 205.04676819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02565376 205.04679871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02565377 205.04679871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02565378 205.04682922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02565379 205.04682922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02565380 205.04685974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02565381 205.04685974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02565382 205.04689026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02565383 205.04689026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02565384 205.04690552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02565385 205.04690552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02565386 205.04693604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02565387 205.04693604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02565388 205.04696655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02565389 205.04698181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02565390 205.04698181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02565391 205.04699707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02565392 205.04702759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02565393 205.04702759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02565394 205.04705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02565395 205.04705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02565396 205.04707336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02565397 205.04707336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02565398 205.04710388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02565399 205.04710388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02565400 205.04713440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02565401 205.04713440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02565402 205.04714966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02565403 205.04714966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02565404 205.04718018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02565405 205.04718018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02565406 205.04721069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02565407 205.04722595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02565408 205.04724121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02565409 205.04724121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02565410 205.04727173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02565411 205.04727173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02565412 205.04730225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02565413 205.04730225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02565414 205.04731750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02565415 205.04731750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02565416 205.04736328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02565417 205.04736328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02565418 205.04737854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02565419 205.04737854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02565420 205.04740906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02565421 205.04740906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02565422 205.04743958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02565423 205.04743958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02565424 205.04745483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02565425 205.04747009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02565426 205.04750061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02565427 205.04750061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02565428 205.04753113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02565429 205.04753113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02565430 205.04754639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02565431 205.04754639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02565432 205.04757690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02565433 205.04757690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02565434 205.04760742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02565435 205.04762268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02565436 205.04765320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02565437 205.04766846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02565438 205.04769897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02565439 205.04769897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02565440 205.04771423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02565441 205.04771423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02565442 205.04774475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02565443 205.04774475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02565444 205.04777527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02565445 205.04777527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02565446 205.04779053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02565447 205.04779053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02565448 205.04782104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02565449 205.04782104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02565450 205.04785156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02565451 205.04785156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02565452 205.04786682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02565453 205.04786682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02565454 205.04789734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02565455 205.04791260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02565456 205.04792786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02565457 205.04794312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02565458 205.04795837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02565459 205.04795837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02565460 205.04798889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02565461 205.04798889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02565462 205.04801941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02565463 205.04801941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02565464 205.04803467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02565465 205.04803467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02565466 205.04808044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02565467 205.04808044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02565468 205.04809570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02565469 205.04809570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02565470 205.04812622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02565471 205.04812622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02565472 205.04815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02565473 205.04815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02565474 205.04817200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02565475 205.04818726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02565476 205.04820251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02565477 205.04821777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02565478 205.04824829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02565479 205.04824829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02565480 205.04826355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02565481 205.04826355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02565482 205.04829407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02565483 205.04829407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02565484 205.04832458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02565485 205.04832458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02565486 205.04833984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02565487 205.04833984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02565488 205.04837036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02565489 205.04837036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02565490 205.04840088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02565491 205.04840088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02565492 205.04841614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02565493 205.04841614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02565494 205.04844666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02565495 205.04844666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02565496 205.04847717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02565497 205.04849243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02565498 205.04850769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02565499 205.04850769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02565500 205.04853821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02565501 205.04853821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02565502 205.04856873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02565503 205.04856873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02565504 205.04858398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02565505 205.04859924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02565506 205.04862976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02565507 205.04862976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02565508 205.04866028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02565509 205.04866028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02565510 205.04867554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02565511 205.04867554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02565512 205.04870605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02565513 205.04872131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02565514 205.04873657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02565515 205.04873657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02565516 205.04876709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02565517 205.04876709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02565518 205.04879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02565519 205.04879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02565520 205.04881287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02565521 205.04881287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02565522 205.04884338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02565523 205.04885864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02565524 205.04888916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02565525 205.04888916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02565526 205.04890442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02565527 205.04890442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02565528 205.04893494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02565529 205.04893494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02565530 205.04896545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02565531 205.04896545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02565532 205.04898071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02565533 205.04899597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02565534 205.04902649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02565535 205.04902649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02565536 205.04905701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02565537 205.04905701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02565538 205.04907227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02565539 205.04907227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02565540 205.04910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02565541 205.04910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02565542 205.04913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02565543 205.04913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02565544 205.04916382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02565545 205.04916382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02565546 205.04919434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02565547 205.04919434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02565548 205.04920959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02565549 205.04920959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02565550 205.04924011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02565551 205.04924011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02565552 205.04927063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02565553 205.04927063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02565554 205.04928589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02565555 205.04930115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02565556 205.04933167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02565557 205.04933167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02565558 205.04936218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02565559 205.04936218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02565560 205.04937744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02565561 205.04937744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02565562 205.04940796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02565563 205.04940796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02565564 205.04943848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02565565 205.04945374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02565566 205.04946899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02565567 205.04946899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02565568 205.04949951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02565569 205.04949951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02565570 205.04953003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02565571 205.04953003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02565572 205.04954529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02565573 205.04956055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02565574 205.04957581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02565575 205.04959106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02565576 205.04962158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02565577 205.04963684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02565578 205.04966736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02565579 205.04966736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02565580 205.04968262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02565581 205.04968262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02565582 205.04971313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02565583 205.04971313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02565584 205.04974365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02565585 205.04974365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02565586 205.04975891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02565587 205.04977417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02565588 205.04980469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02565589 205.04980469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02565590 205.04983521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02565591 205.04983521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02565592 205.04985046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02565593 205.04985046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02565594 205.04988098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02565595 205.04989624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02565596 205.04992676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02565597 205.04992676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02565598 205.04994202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02565599 205.04994202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02565600 205.04997253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02565601 205.04997253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02565602 205.05000305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02565603 205.05000305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02565604 205.05001831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02565605 205.05003357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02565606 205.05006409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02565607 205.05006409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02565608 205.05007935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02565609 205.05007935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02565610 205.05010986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02565611 205.05010986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02565612 205.05014038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02565613 205.05014038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02565614 205.05015564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02565615 205.05015564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02565616 205.05018616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02565617 205.05020142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02565618 205.05023193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02565619 205.05023193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02565620 205.05024719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02565621 205.05024719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02565622 205.05027771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02565623 205.05027771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02565624 205.05030823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02565625 205.05030823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02565626 205.05032349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02565627 205.05033875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02565628 205.05036926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02565629 205.05036926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02565630 205.05039978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02565631 205.05039978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02565632 205.05041504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02565633 205.05041504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02565634 205.05044556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02565635 205.05044556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02565636 205.05047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02565637 205.05047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02565638 205.05050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02565639 205.05050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02565640 205.05053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02565641 205.05053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02565642 205.05056763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02565643 205.05056763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02565644 205.05058289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02565645 205.05058289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02565646 205.05061340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02565647 205.05062866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02565648 205.05064392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02565649 205.05064392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02565650 205.05067444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02565651 205.05067444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02565652 205.05070496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02565653 205.05070496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02565654 205.05072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02565655 205.05072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02565656 205.05075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02565657 205.05076599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02565658 205.05079651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02565659 205.05079651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02565660 205.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02565661 205.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02565662 205.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02565663 205.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02565664 205.05087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02565665 205.05087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02565666 205.05088806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02565667 205.05090332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02565668 205.05093384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02565669 205.05093384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02565670 205.05096436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02565671 205.05097961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02565672 205.05101013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02565673 205.05101013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02565674 205.05104065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02565675 205.05104065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02565676 205.05105591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02565677 205.05105591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02565678 205.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02565679 205.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02565680 205.05111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02565681 205.05111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02565682 205.05113220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02565683 205.05114746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02565684 205.05117798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02565685 205.05117798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02565686 205.05119324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02565687 205.05119324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02565688 205.05122375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02565689 205.05123901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02565690 205.05126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02565691 205.05126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02565692 205.05128479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02565693 205.05128479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02565694 205.05131531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02565695 205.05131531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02565696 205.05134583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02565697 205.05134583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02565698 205.05136108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02565699 205.05137634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02565700 205.05140686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02565701 205.05140686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02565702 205.05143738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02565703 205.05143738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02565704 205.05145264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02565705 205.05145264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02565706 205.05148315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02565707 205.05148315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02565708 205.05151367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02565709 205.05151367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02565710 205.05152893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02565711 205.05154419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02565712 205.05157471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02565713 205.05157471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02565714 205.05158997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02565715 205.05158997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02565716 205.05162048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02565717 205.05162048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02565718 205.05165100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02565719 205.05165100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02565720 205.05166626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02565721 205.05168152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02565722 205.05171204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02565723 205.05171204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02565724 205.05174255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02565725 205.05174255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02565726 205.05175781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02565727 205.05175781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02565728 205.05178833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02565729 205.05178833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02565730 205.05181885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02565731 205.05183411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02565732 205.05184937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02565733 205.05184937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02565734 205.05187988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02565735 205.05187988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02565736 205.05191040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02565737 205.05191040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02565738 205.05192566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02565739 205.05192566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02565740 205.05195618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02565741 205.05197144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02565742 205.05198669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02565743 205.05198669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02565744 205.05201721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02565745 205.05201721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02565746 205.05204773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02565747 205.05204773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02565748 205.05206299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02565749 205.05206299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02565750 205.05209351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02565751 205.05210876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02565752 205.05213928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02565753 205.05213928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02565754 205.05215454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02565755 205.05215454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02565756 205.05218506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02565757 205.05218506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02565758 205.05221558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02565759 205.05221558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02565760 205.05223083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02565761 205.05223083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02565762 205.05226135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02565763 205.05227661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02565764 205.05230713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02565765 205.05230713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02565766 205.05232239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02565767 205.05232239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02565768 205.05235291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02565769 205.05235291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02565770 205.05238342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02565771 205.05238342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02565772 205.05239868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02565773 205.05241394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02565774 205.05244446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02565775 205.05244446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02565776 205.05245972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02565777 205.05245972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02565778 205.05249023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02565779 205.05249023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02565780 205.05252075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02565781 205.05252075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02565782 205.05255127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02565783 205.05255127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02565784 205.05258179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02565785 205.05258179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02565786 205.05261230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02565787 205.05261230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02565788 205.05262756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02565789 205.05262756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02565790 205.05265808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02565791 205.05265808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02565792 205.05268860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02565793 205.05270386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02565794 205.05271912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02565795 205.05271912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02565796 205.05274963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02565797 205.05274963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02565798 205.05278015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02565799 205.05278015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02565800 205.05279541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02565801 205.05279541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02565802 205.05282593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02565803 205.05282593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02565804 205.05285645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02565805 205.05285645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02565806 205.05288696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02565807 205.05288696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02565808 205.05291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02565809 205.05291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02565810 205.05294800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02565811 205.05294800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02565812 205.05296326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02565813 205.05296326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02565814 205.05299377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02565815 205.05300903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02565816 205.05302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02565817 205.05302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02565818 205.05305481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02565819 205.05305481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02565820 205.05308533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02565821 205.05308533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02565822 205.05310059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02565823 205.05310059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02565824 205.05313110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02565825 205.05314636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02565826 205.05317688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02565827 205.05317688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02565828 205.05319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02565829 205.05319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02565830 205.05322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02565831 205.05322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02565832 205.05325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02565833 205.05325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02565834 205.05326843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02565835 205.05328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02565836 205.05331421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02565837 205.05331421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02565838 205.05334473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02565839 205.05334473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02565840 205.05335999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02565841 205.05335999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02565842 205.05339050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02565843 205.05339050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02565844 205.05342102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02565845 205.05342102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02565846 205.05345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02565847 205.05345154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02565848 205.05348206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02565849 205.05348206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02565850 205.05349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02565851 205.05349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02565852 205.05352783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02565853 205.05352783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02565854 205.05355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02565855 205.05357361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02565856 205.05358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02565857 205.05358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02565858 205.05361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02565859 205.05361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02565860 205.05364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02565861 205.05364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02565862 205.05366516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02565863 205.05366516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02565864 205.05369568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02565865 205.05371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02565866 205.05374146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02565867 205.05374146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02565868 205.05375671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02565869 205.05375671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02565870 205.05378723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02565871 205.05378723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02565872 205.05381775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02565873 205.05381775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02565874 205.05383301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02565875 205.05384827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02565876 205.05387878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02565877 205.05387878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02565878 205.05389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02565879 205.05389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02565880 205.05392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02565881 205.05392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02565882 205.05395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02565883 205.05395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02565884 205.05397034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02565885 205.05397034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02565886 205.05400085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02565887 205.05401611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02565888 205.05404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02565889 205.05404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02565890 205.05409241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02565891 205.05409241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02565892 205.05412292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02565893 205.05412292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02565894 205.05413818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02565895 205.05413818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02565896 205.05416870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02565897 205.05418396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02565898 205.05421448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02565899 205.05421448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02565900 205.05422974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02565901 205.05422974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02565902 205.05426025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02565903 205.05426025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02565904 205.05429077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02565905 205.05429077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02565906 205.05430603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02565907 205.05432129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02565908 205.05435181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02565909 205.05435181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02565910 205.05436707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02565911 205.05436707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02565912 205.05439758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02565913 205.05439758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02565914 205.05442810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02565915 205.05442810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02565916 205.05445862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02565917 205.05445862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02565918 205.05448914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02565919 205.05448914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02565920 205.05451965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02565921 205.05451965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02565922 205.05453491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02565923 205.05453491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02565924 205.05456543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02565925 205.05456543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02565926 205.05459595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02565927 205.05459595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02565928 205.05461121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02565929 205.05462646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02565930 205.05465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02565931 205.05465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02565932 205.05468750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02565933 205.05468750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02565934 205.05470276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02565935 205.05470276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02565936 205.05473328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02565937 205.05473328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02565938 205.05476379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02565939 205.05476379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02565940 205.05479431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02565941 205.05479431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02565942 205.05482483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02565943 205.05482483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02565944 205.05485535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02565945 205.05485535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02565946 205.05487061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02565947 205.05487061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02565948 205.05490112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02565949 205.05491638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02565950 205.05493164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02565951 205.05493164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02565952 205.05496216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02565953 205.05496216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02565954 205.05499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02565955 205.05499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02565956 205.05500793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02565957 205.05500793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02565958 205.05503845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02565959 205.05505371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02565960 205.05508423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02565961 205.05508423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02565962 205.05509949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02565963 205.05509949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02565964 205.05513000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02565965 205.05513000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02565966 205.05516052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02565967 205.05516052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02565968 205.05517578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02565969 205.05519104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02565970 205.05522156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02565971 205.05522156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02565972 205.05525208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02565973 205.05525208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02565974 205.05526733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02565975 205.05526733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02565976 205.05529785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02565977 205.05529785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02565978 205.05532837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02565979 205.05532837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02565980 205.05534363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02565981 205.05535889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02565982 205.05538940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02565983 205.05538940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02565984 205.05540466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02565985 205.05540466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02565986 205.05543518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02565987 205.05543518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02565988 205.05546570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02565989 205.05546570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02565990 205.05548096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02565991 205.05549622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02565992 205.05552673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02565993 205.05552673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02565994 205.05555725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02565995 205.05555725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02565996 205.05557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02565997 205.05557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02565998 205.05560303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02565999 205.05560303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02566000 205.05563354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02566001 205.05564880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02566002 205.05566406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02566003 205.05566406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02566004 205.05569458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02566005 205.05569458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02566006 205.05572510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02566007 205.05572510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02566008 205.05574036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02566009 205.05574036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02566010 205.05577087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02566011 205.05578613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02566012 205.05580139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02566013 205.05580139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02566014 205.05583191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02566015 205.05583191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02566016 205.05586243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02566017 205.05586243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02566018 205.05587769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02566019 205.05587769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02566020 205.05590820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02566021 205.05590820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02566022 205.05593872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02566023 205.05595398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02566024 205.05596924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02566025 205.05596924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02566026 205.05599976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02566027 205.05599976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02566028 205.05603027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02566029 205.05603027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02566030 205.05604553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02566031 205.05604553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02566032 205.05607605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02566033 205.05609131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02566034 205.05612183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02566035 205.05612183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02566036 205.05613708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02566037 205.05613708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02566038 205.05616760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02566039 205.05616760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02566040 205.05619812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02566041 205.05619812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02566042 205.05621338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02566043 205.05622864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02566044 205.05625916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02566045 205.05625916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02566046 205.05627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02566047 205.05627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02566048 205.05630493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02566049 205.05630493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02566050 205.05633545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02566051 205.05633545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02566052 205.05636597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02566053 205.05636597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02566054 205.05639648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02566055 205.05639648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02566056 205.05642700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02566057 205.05642700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02566058 205.05644226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02566059 205.05644226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02566060 205.05647278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02566061 205.05647278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02566062 205.05650330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02566063 205.05651855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02566064 205.05653381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02566065 205.05653381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02566066 205.05656433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02566067 205.05656433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02566068 205.05659485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02566069 205.05659485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02566070 205.05661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02566071 205.05661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02566072 205.05664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02566073 205.05664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02566074 205.05667114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02566075 205.05667114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02566076 205.05670166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02566077 205.05670166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02566078 205.05673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02566079 205.05673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02566080 205.05676270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02566081 205.05676270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02566082 205.05677795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02566083 205.05677795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02566084 205.05680847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02566085 205.05682373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02566086 205.05683899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02566087 205.05688477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02566088 205.05691528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02566089 205.05691528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02566090 205.05694580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02566091 205.05694580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02566092 205.05697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02566093 205.05697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02566094 205.05699158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02566095 205.05699158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02566096 205.05702209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02566097 205.05702209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02566098 205.05705261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02566099 205.05706787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02566100 205.05708313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02566101 205.05708313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02566102 205.05711365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02566103 205.05711365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02566104 205.05714417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02566105 205.05714417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02566106 205.05715942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02566107 205.05715942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02566108 205.05718994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02566109 205.05718994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02566110 205.05722046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02566111 205.05723572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02566112 205.05725098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02566113 205.05725098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02566114 205.05728149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02566115 205.05728149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02566116 205.05731201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02566117 205.05731201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02566118 205.05732727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02566119 205.05732727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02566120 205.05735779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02566121 205.05737305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02566122 205.05738831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02566123 205.05738831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02566124 205.05741882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02566125 205.05741882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02566126 205.05744934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02566127 205.05744934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02566128 205.05746460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02566129 205.05747986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02566130 205.05751038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02566131 205.05751038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02566132 205.05754089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02566133 205.05754089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02566134 205.05755615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02566135 205.05755615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02566136 205.05758667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02566137 205.05758667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02566138 205.05761719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02566139 205.05761719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02566140 205.05763245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02566141 205.05764771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02566142 205.05767822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02566143 205.05767822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02566144 205.05770874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02566145 205.05770874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02566146 205.05772400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02566147 205.05772400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02566148 205.05775452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02566149 205.05775452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02566150 205.05778503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02566151 205.05778503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02566152 205.05781555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02566153 205.05781555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02566154 205.05784607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02566155 205.05784607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02566156 205.05786133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02566157 205.05786133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02566158 205.05789185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02566159 205.05789185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02566160 205.05792236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02566161 205.05793762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02566162 205.05795288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02566163 205.05795288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02566164 205.05798340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02566165 205.05798340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02566166 205.05801392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02566167 205.05801392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02566168 205.05802917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02566169 205.05802917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02566170 205.05805969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02566171 205.05807495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02566172 205.05810547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02566173 205.05810547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02566174 205.05812073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02566175 205.05812073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02566176 205.05815125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02566177 205.05815125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02566178 205.05818176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02566179 205.05818176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02566180 205.05819702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02566181 205.05819702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02566182 205.05822754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02566183 205.05824280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02566184 205.05825806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02566185 205.05825806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02566186 205.05828857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02566187 205.05828857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02566188 205.05831909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02566189 205.05831909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02566190 205.05834961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02566191 205.05834961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02566192 205.05836487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02566193 205.05838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02566194 205.05841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02566195 205.05841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02566196 205.05842590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02566197 205.05842590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02566198 205.05845642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02566199 205.05845642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02566200 205.05848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02566201 205.05848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02566202 205.05850220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02566203 205.05851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02566204 205.05854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02566205 205.05854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02566206 205.05857849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02566207 205.05857849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02566208 205.05859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02566209 205.05859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02566210 205.05862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02566211 205.05862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02566212 205.05865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02566213 205.05865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02566214 205.05868530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02566215 205.05868530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02566216 205.05871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02566217 205.05871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02566218 205.05874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02566219 205.05874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02566220 205.05876160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02566221 205.05876160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02566222 205.05879211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02566223 205.05879211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02566224 205.05882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02566225 205.05882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02566226 205.05885315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02566227 205.05885315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02566228 205.05888367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02566229 205.05888367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02566230 205.05889893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02566231 205.05889893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02566232 205.05892944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02566233 205.05892944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02566234 205.05895996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02566235 205.05897522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02566236 205.05899048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02566237 205.05899048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02566238 205.05902100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02566239 205.05902100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02566240 205.05905151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02566241 205.05905151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02566242 205.05906677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02566243 205.05906677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02566328 205.06033325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02566329 205.06034851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02566330 205.06037903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02566331 205.06037903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02566332 205.06040955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02566333 205.06040955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02566334 205.06042480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02566335 205.06042480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02566336 205.06045532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02566337 205.06045532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02566338 205.06048584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02566339 205.06048584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02566340 205.06050110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02566341 205.06050110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02566342 205.06056213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02566343 205.06056213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02566344 205.06057739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02566345 205.06057739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02566346 205.06063843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02566347 205.06063843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02566348 205.06065369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02566349 205.06065369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02566350 205.06068420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02566351 205.06068420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02566352 205.06071472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02566353 205.06072998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02566354 205.06072998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02566355 205.06074524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02566356 205.06077576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02566357 205.06077576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02566358 205.06080627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02566359 205.06080627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02566360 205.06082153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02566361 205.06082153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02566362 205.06085205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02566363 205.06085205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02566364 205.06088257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02566365 205.06088257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02566366 205.06089783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02566367 205.06089783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02566368 205.06092834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02566369 205.06092834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02566370 205.06095886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02566371 205.06095886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02573200 205.15676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e8 -02573201 205.15676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e8 -02573202 205.15678406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f8 -02573203 205.15678406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f8 -02573204 205.15681458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -02573205 205.15681458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -02573206 205.15684509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -02573207 205.15684509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -02573208 205.15686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -02573209 205.15687561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -02573210 205.15690613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -02573211 205.15690613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -02573212 205.15692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -02573213 205.15692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -02573214 205.15695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -02573215 205.15695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -02573216 205.15698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -02573217 205.15698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -02573218 205.15699768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12978 -02573219 205.15699768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12978 -02573220 205.15702820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12988 -02573221 205.15704346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12988 -02573222 205.15707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12998 -02573223 205.15707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12998 -02573224 205.15708923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a8 -02573225 205.15708923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a8 -02573226 205.15711975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b8 -02573227 205.15711975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b8 -02573228 205.15715027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c8 -02573229 205.15715027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c8 -02573230 205.15716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d8 -02573231 205.15718079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d8 -02573232 205.15721130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e8 -02573233 205.15721130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e8 -02573234 205.15724182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f8 -02573235 205.15724182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f8 -02573236 205.15725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a08 -02573237 205.15725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a08 -02573238 205.15728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a18 -02573239 205.15728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a18 -02573240 205.15731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a28 -02573241 205.15731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a28 -02573242 205.15734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a38 -02573243 205.15734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a38 -02580843 205.26417542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a8 -02580844 205.26417542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a8 -02580845 205.26420593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b8 -02580846 205.26422119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b8 -02580847 205.26423645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c8 -02580848 205.26423645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c8 -02580849 205.26426697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d8 -02580850 205.26426697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d8 -02580851 205.26429749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e8 -02580852 205.26429749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e8 -02580853 205.26431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f8 -02580854 205.26431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f8 -02580855 205.26434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21808 -02580856 205.26435852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21808 -02580857 205.26438904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21818 -02580858 205.26438904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21818 -02580859 205.26440430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21828 -02580860 205.26440430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21828 -02580861 205.26443481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21838 -02580862 205.26443481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21838 -02580863 205.26446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21848 -02580864 205.26446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21848 -02580865 205.26448059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21858 -02580866 205.26448059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21858 -02580867 205.26451111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21868 -02580868 205.26452637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21868 -02580869 205.26455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21878 -02580870 205.26455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21878 -02580871 205.26457214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21888 -02580872 205.26457214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21888 -02580873 205.26460266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21898 -02580874 205.26460266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21898 -02580875 205.26463318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -02580876 205.26463318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -02580877 205.26464844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -02580878 205.26466370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -02580879 205.26470947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -02580880 205.26470947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -02580881 205.26472473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d8 -02580882 205.26473999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d8 -02580883 205.26477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e8 -02580884 205.26477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e8 -02580885 205.26480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f8 -02580886 205.26480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f8 -02596828 205.48664856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b28 -02596829 205.48667908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -02596830 205.48667908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -02596831 205.48672485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -02596832 205.48672485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -02596833 205.48674011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -02596834 205.48674011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -02596835 205.48677063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -02596836 205.48677063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -02596837 205.48680115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -02596838 205.48680115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -02596839 205.48681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -02596840 205.48683167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -02596841 205.48686218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -02596842 205.48686218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -02596843 205.48689270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -02596844 205.48689270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -02596845 205.48690796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -02596846 205.48690796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -02596847 205.48693848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -02596848 205.48693848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -02596849 205.48696899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -02596850 205.48696899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -02596851 205.48699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -02596852 205.48699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -02596853 205.48703003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -02596854 205.48704529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -02596855 205.48706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -02596856 205.48706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -02596857 205.48709106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -02596858 205.48709106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -02596859 205.48712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -02596860 205.48712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -02596861 205.48713684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -02596862 205.48713684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -02596863 205.48716736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -02596864 205.48716736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -02596865 205.48719788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -02596866 205.48719788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -02596867 205.48721313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -02596868 205.48722839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -02596869 205.48725891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -02596870 205.48725891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -02596871 205.48728943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c88 -02602091 205.56008911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa8 -02602092 205.56010437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa8 -02602093 205.56013489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb8 -02602094 205.56013489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb8 -02602095 205.56015015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc8 -02602096 205.56015015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc8 -02602097 205.56018066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd8 -02602098 205.56018066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd8 -02602099 205.56021118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe8 -02602100 205.56021118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe8 -02602101 205.56024170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff8 -02602102 205.56024170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff8 -02602103 205.56027222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b008 -02602104 205.56027222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b008 -02602105 205.56028748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b018 -02602106 205.56028748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b018 -02602107 205.56031799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b028 -02602108 205.56031799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b028 -02602109 205.56034851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b038 -02602110 205.56034851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b038 -02602111 205.56036377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b048 -02602112 205.56036377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b048 -02602113 205.56039429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b058 -02602114 205.56039429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b058 -02602115 205.56042480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b068 -02602116 205.56042480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b068 -02602117 205.56045532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b078 -02602118 205.56045532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b078 -02602119 205.56047058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b088 -02602120 205.56048584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b088 -02602121 205.56051636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b098 -02602122 205.56051636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b098 -02602123 205.56053162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a8 -02602124 205.56053162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a8 -02602125 205.56056213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b8 -02602126 205.56056213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b8 -02602127 205.56059265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c8 -02602128 205.56059265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c8 -02602129 205.56060791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d8 -02602130 205.56060791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d8 -02602131 205.56063843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e8 -02602132 205.56063843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e8 -02602133 205.56066895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f8 -02602134 205.56066895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f8 -02606109 206.97764587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02606110 206.97808838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02606111 206.97843933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02606112 206.97875977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02606113 207.23181152 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02606114 207.24993896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02606115 207.24995422 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02606116 207.34855652 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606117 207.34860229 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606118 207.34861755 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02606119 207.34863281 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02606120 207.34875488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606121 207.34875488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02606122 207.34883118 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606123 207.34884644 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02606124 208.73118591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02606125 208.73120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02606126 208.73123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02606127 208.73123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02606128 208.73124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02606129 208.73124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02606130 208.73127747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02606131 208.73127747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02606132 208.73130798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02606133 208.73130798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02606134 208.73132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02606135 208.73133850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02606136 208.73136902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02606137 208.73136902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02606138 208.73139954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02606139 208.73139954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02606140 208.73141479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02606141 208.73141479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02606142 208.73144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02606143 208.73144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02606144 208.73147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02606145 208.73147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02606146 208.73150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02606147 208.73150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02606148 208.73153687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02606149 208.73153687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02606150 208.73155212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02606151 208.73155212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02606152 208.73158264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02606153 208.73158264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02606154 208.73161316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02606155 208.73162842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02606156 208.73164368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02606157 208.73164368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02606158 208.73167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02606159 208.73167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02606160 208.73170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02606161 208.73170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02606162 208.73171997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02606163 208.73171997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02606164 208.73175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02606165 208.73176575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02606166 208.73179626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02606167 208.73179626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02606168 208.73181152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02606169 208.73181152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02606170 208.73184204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02606171 208.73184204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02606172 208.73187256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02606173 208.73187256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02606174 208.73188782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02606175 208.73190308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02606176 208.73193359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02606177 208.73193359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02606178 208.73194885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02606179 208.73194885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02606180 208.73197937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02606181 208.73197937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02606182 208.73200989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02606183 208.73200989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02606184 208.73202515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02606185 208.73204041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02606186 208.73207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02606187 208.73207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02606188 208.73210144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02606189 208.73210144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02606190 208.73211670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02606191 208.73211670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02606192 208.73214722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02606193 208.73214722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02606194 208.73217773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02606195 208.73219299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02606196 208.73220825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02606197 208.73220825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02606198 208.73223877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02606199 208.73223877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02606200 208.73226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02606201 208.73226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02606202 208.73228455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02606203 208.73228455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02606204 208.73231506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02606205 208.73233032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02606206 208.73234558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02606207 208.73234558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02606208 208.73237610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02606209 208.73237610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02606210 208.73240662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02606211 208.73240662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02606212 208.73242188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02606213 208.73242188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02606214 208.73245239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02606215 208.73246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02606216 208.73249817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02606217 208.73249817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02606218 208.73251343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02606219 208.73251343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02606220 208.73254395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02606221 208.73254395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02606222 208.73257446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02606223 208.73257446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02606224 208.73258972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02606225 208.73260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02606226 208.73263550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02606227 208.73263550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02606228 208.73266602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02606229 208.73266602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02606230 208.73268127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02606231 208.73268127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02606232 208.73271179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02606233 208.73271179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02606234 208.73274231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02606235 208.73274231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02606236 208.73275757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02606237 208.73277283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02606238 208.73280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02606239 208.73280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02606240 208.73281860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02606241 208.73281860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02606242 208.73284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02606243 208.73284912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02606244 208.73287964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02606245 208.73287964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02606246 208.73289490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02606247 208.73291016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02606248 208.73295593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02606249 208.73295593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02606250 208.73298645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02606251 208.73298645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02606252 208.73300171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02606253 208.73301697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02606254 208.73304749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02606255 208.73304749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02606256 208.73306274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02606257 208.73306274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02606258 208.73309326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02606259 208.73309326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02606260 208.73312378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02606261 208.73312378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02606262 208.73313904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02606263 208.73315430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02606264 208.73318481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02606265 208.73318481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02606266 208.73321533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02606267 208.73321533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02606268 208.73323059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02606269 208.73323059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02606270 208.73326111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02606271 208.73326111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02606272 208.73329163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02606273 208.73329163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02606274 208.73332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02606275 208.73332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02606276 208.73335266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02606277 208.73335266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02606278 208.73338318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02606279 208.73338318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02606280 208.73339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02606281 208.73339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02606282 208.73342896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02606283 208.73344421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02606284 208.73345947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02606285 208.73345947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02606286 208.73348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02606287 208.73348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02606288 208.73352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02606289 208.73352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02606290 208.73353577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02606291 208.73353577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02606292 208.73356628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02606293 208.73358154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02606294 208.73361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02606295 208.73361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02606296 208.73362732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02606297 208.73362732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02606298 208.73365784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02606299 208.73365784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02606300 208.73368835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02606301 208.73368835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02606302 208.73370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02606303 208.73371887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02606304 208.73374939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02606305 208.73374939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02606306 208.73377991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02606307 208.73377991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02606308 208.73379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02606309 208.73379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02606310 208.73382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02606311 208.73382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02606312 208.73385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02606313 208.73385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02606314 208.73387146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02606315 208.73388672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02606316 208.73391724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02606317 208.73391724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02606318 208.73393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02606319 208.73393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02606320 208.73396301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02606321 208.73396301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02606322 208.73399353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02606323 208.73399353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02606324 208.73400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02606325 208.73402405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02606326 208.73405457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02606327 208.73405457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02606328 208.73408508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02606329 208.73408508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02606330 208.73410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02606331 208.73410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02606332 208.73413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02606333 208.73413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02606334 208.73416138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02606335 208.73417664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02606336 208.73419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02606337 208.73419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02606338 208.73422241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02606339 208.73422241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02606340 208.73425293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02606341 208.73425293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02606342 208.73426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02606343 208.73426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02606344 208.73429871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02606345 208.73431396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02606346 208.73432922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02606347 208.73432922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02606348 208.73435974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02606349 208.73435974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02606350 208.73439026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02606351 208.73439026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02606352 208.73440552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02606353 208.73440552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02606354 208.73443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02606355 208.73445129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02606356 208.73448181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02606357 208.73448181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02606358 208.73449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02606359 208.73449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02606360 208.73452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02606361 208.73452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02606362 208.73455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02606363 208.73455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02606364 208.73457336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02606365 208.73458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02606366 208.73461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02606367 208.73461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02606368 208.73464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02606369 208.73464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02606370 208.73466492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02606371 208.73466492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02606372 208.73469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02606373 208.73469543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02606374 208.73472595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02606375 208.73472595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02606376 208.73475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02606377 208.73475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02606378 208.73478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02606379 208.73478699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02606380 208.73480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02606381 208.73480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02606382 208.73483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02606383 208.73483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02606384 208.73486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02606385 208.73487854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02606386 208.73489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02606387 208.73489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02606388 208.73492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02606389 208.73492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02606390 208.73495483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02606391 208.73495483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02606392 208.73497009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02606393 208.73497009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02606394 208.73501587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02606395 208.73501587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02606396 208.73504639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02606397 208.73504639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02606398 208.73506165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02606399 208.73506165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02606400 208.73515320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02606401 208.73516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02606402 208.73519897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02606403 208.73519897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02606404 208.73521423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02606405 208.73521423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02606406 208.73524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02606407 208.73524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02606408 208.73527527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02606409 208.73529053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02606410 208.73530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02606411 208.73530579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02606412 208.73533630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02606413 208.73533630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02606414 208.73536682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02606415 208.73536682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02606416 208.73538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02606417 208.73538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02606418 208.73541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02606419 208.73542786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02606420 208.73544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02606421 208.73544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02606422 208.73547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02606423 208.73547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02606424 208.73550415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02606425 208.73550415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02606426 208.73551941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02606427 208.73551941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02606428 208.73554993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02606429 208.73556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02606430 208.73559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02606431 208.73559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02606432 208.73561096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02606433 208.73561096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02606434 208.73564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02606435 208.73564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02606436 208.73567200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02606437 208.73567200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02606438 208.73568726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02606439 208.73570251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02606440 208.73573303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02606441 208.73573303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02606442 208.73576355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02606443 208.73576355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02606444 208.73577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02606445 208.73577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02606446 208.73580933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02606447 208.73580933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02606448 208.73583984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02606449 208.73583984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02606450 208.73587036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02606451 208.73587036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02606452 208.73590088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02606453 208.73590088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02606454 208.73591614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02606455 208.73591614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02606456 208.73594666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02606457 208.73594666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02606458 208.73597717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02606459 208.73597717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02606460 208.73599243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02606461 208.73600769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02606462 208.73603821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02606463 208.73603821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02606464 208.73606873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02606465 208.73606873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02606466 208.73608398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02606467 208.73608398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02606468 208.73611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02606469 208.73611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02606470 208.73614502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02606471 208.73616028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02606472 208.73617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02606473 208.73617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02606474 208.73620605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02606475 208.73620605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02606476 208.73623657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02606477 208.73623657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02606478 208.73625183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02606479 208.73625183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02606480 208.73628235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02606481 208.73629761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02606482 208.73631287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02606483 208.73631287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02606484 208.73634338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02606485 208.73634338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02606486 208.73637390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02606487 208.73637390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02606488 208.73640442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02606489 208.73640442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02606490 208.73641968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02606491 208.73643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02606492 208.73646545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02606493 208.73646545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02606494 208.73648071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02606495 208.73648071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02606496 208.73651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02606497 208.73651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02606498 208.73654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02606499 208.73654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02606500 208.73655701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02606501 208.73657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02606502 208.73660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02606503 208.73660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02606504 208.73663330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02606505 208.73663330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02606506 208.73664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02606507 208.73664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02606508 208.73667908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02606509 208.73667908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02606510 208.73670959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02606511 208.73670959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02606512 208.73674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02606513 208.73674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02606514 208.73677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02606515 208.73677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02606516 208.73680115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02606517 208.73680115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02606518 208.73681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02606519 208.73681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02606520 208.73684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02606521 208.73684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02606522 208.73687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02606523 208.73687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02606524 208.73690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02606525 208.73690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02606526 208.73693848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02606527 208.73693848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02606528 208.73695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02606529 208.73695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02606530 208.73698425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02606531 208.73698425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02606532 208.73701477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02606533 208.73703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02606534 208.73704529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02606535 208.73704529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02606536 208.73707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02606537 208.73707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02606538 208.73710632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02606539 208.73710632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02606540 208.73712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02606541 208.73712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02606542 208.73715210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02606543 208.73716736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02606544 208.73719788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02606545 208.73719788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02606546 208.73721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02606547 208.73721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02606548 208.73724365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02606549 208.73724365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02606550 208.73727417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02606551 208.73727417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02606552 208.73730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02606553 208.73730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02606554 208.73733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02606555 208.73733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02606556 208.73735046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02606557 208.73735046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02606558 208.73738098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02606559 208.73738098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02606560 208.73741150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02606561 208.73741150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02606562 208.73742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02606563 208.73744202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02606564 208.73747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02606565 208.73747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02606566 208.73750305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02606567 208.73750305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02606568 208.73751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02606569 208.73751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02606570 208.73754883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02606571 208.73754883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02606572 208.73757935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02606573 208.73759460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02606574 208.73760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02606575 208.73760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02606576 208.73764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02606577 208.73764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02606578 208.73767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02606579 208.73767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02606580 208.73768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02606581 208.73768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02606582 208.73771667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02606583 208.73773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02606584 208.73774719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02606585 208.73774719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02606586 208.73777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02606587 208.73777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02606588 208.73780823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02606589 208.73780823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02606590 208.73782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02606591 208.73782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02606592 208.73785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02606593 208.73786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02606594 208.73789978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02606595 208.73789978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02606596 208.73791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02606597 208.73791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02606598 208.73794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02606599 208.73794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02606600 208.73797607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02606601 208.73797607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02606602 208.73799133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02606603 208.73800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02606604 208.73803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02606605 208.73803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02606606 208.73806763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02606607 208.73806763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02606608 208.73808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02606609 208.73808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02606610 208.73811340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02606611 208.73811340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02606612 208.73814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02606613 208.73814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02606614 208.73817444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02606615 208.73817444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02606616 208.73820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02606617 208.73820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02606618 208.73822021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02606619 208.73822021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02606620 208.73825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02606621 208.73825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02606622 208.73828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02606623 208.73828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02606624 208.73829651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02606625 208.73831177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02606626 208.73834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02606627 208.73834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02606628 208.73837280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02606629 208.73837280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02606630 208.73838806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02606631 208.73838806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02606632 208.73841858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02606633 208.73841858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02606634 208.73844910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02606635 208.73846436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02606636 208.73847961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02606637 208.73847961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02606638 208.73851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02606639 208.73851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02606640 208.73854065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02606641 208.73854065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02606642 208.73855591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02606643 208.73855591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02606644 208.73858643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02606645 208.73860168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02606646 208.73861694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02606647 208.73861694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02606648 208.73864746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02606649 208.73864746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02606650 208.73867798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02606651 208.73867798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02606652 208.73869324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02606653 208.73869324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02606654 208.73872375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02606655 208.73873901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02606656 208.73876953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02606657 208.73876953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02606658 208.73878479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02606659 208.73878479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02606660 208.73881531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02606661 208.73881531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02606662 208.73884583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02606663 208.73884583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02606664 208.73886108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02606665 208.73887634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02606666 208.73890686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02606667 208.73890686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02606668 208.73893738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02606669 208.73893738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02606670 208.73895264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02606671 208.73895264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02606672 208.73898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02606673 208.73898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02606674 208.73901367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02606675 208.73901367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02606676 208.73904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02606677 208.73904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02606678 208.73907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02606679 208.73907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02606680 208.73910522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02606681 208.73910522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02606682 208.73912048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02606683 208.73912048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02606684 208.73915100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02606685 208.73916626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02606686 208.73918152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02606687 208.73918152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02606688 208.73921204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02606689 208.73921204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02606690 208.73924255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02606691 208.73924255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02606692 208.73925781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02606693 208.73925781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02606694 208.73928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02606695 208.73928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02606696 208.73931885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02606697 208.73933411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02606698 208.73934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02606699 208.73934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02606700 208.73937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02606701 208.73937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02606702 208.73941040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02606703 208.73941040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02606704 208.73942566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02606705 208.73942566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02606706 208.73945618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02606707 208.73947144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02606708 208.73950195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02606709 208.73950195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02606710 208.73951721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02606711 208.73951721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02606712 208.73954773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02606713 208.73954773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02606714 208.73957825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02606715 208.73957825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02606716 208.73959351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02606717 208.73960876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02606718 208.73963928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02606719 208.73963928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02606720 208.73965454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02606721 208.73965454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02606722 208.73968506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02606723 208.73968506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02606724 208.73971558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02606725 208.73971558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02606726 208.73973083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02606727 208.73974609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02606728 208.73977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02606729 208.73977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02606730 208.73980713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02606731 208.73980713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02606732 208.73982239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02606733 208.73982239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02606734 208.73985291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02606735 208.73985291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02606736 208.73988342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02606737 208.73989868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02606738 208.73991394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02606739 208.73991394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02606740 208.73994446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02606741 208.73994446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02606742 208.73997498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02606743 208.73997498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02606744 208.73999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02606745 208.73999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02606746 208.74002075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02606747 208.74003601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02606748 208.74005127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02606749 208.74005127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02606750 208.74008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02606751 208.74008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02606752 208.74011230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02606753 208.74011230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02606754 208.74012756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02606755 208.74012756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02606756 208.74015808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02606757 208.74017334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02606758 208.74020386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02606759 208.74020386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02606760 208.74021912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02606761 208.74021912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02606762 208.74024963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02606763 208.74024963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02606764 208.74028015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02606765 208.74028015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02606766 208.74029541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02606767 208.74029541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02606768 208.74032593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02606769 208.74034119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02606770 208.74037170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02606771 208.74037170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02606772 208.74038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02606773 208.74038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02606774 208.74041748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02606775 208.74041748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02606776 208.74044800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02606777 208.74044800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02606778 208.74046326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02606779 208.74047852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02606780 208.74050903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02606781 208.74050903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02606782 208.74052429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02606783 208.74052429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02606784 208.74055481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02606785 208.74055481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02606786 208.74058533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02606787 208.74058533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02606788 208.74060059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02606789 208.74061584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02606790 208.74064636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02606791 208.74064636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02606792 208.74067688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02606793 208.74067688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02606794 208.74069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02606795 208.74069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02606796 208.74072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02606797 208.74072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02606798 208.74075317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02606799 208.74076843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02606800 208.74084473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02606801 208.74084473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02606802 208.74087524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02606803 208.74087524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02606804 208.74090576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02606805 208.74092102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02606806 208.74093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02606807 208.74093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02606808 208.74096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02606809 208.74096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02606810 208.74099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02606811 208.74099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02606812 208.74101257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02606813 208.74101257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02606814 208.74104309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02606815 208.74105835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02606816 208.74108887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02606817 208.74108887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02606818 208.74110413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02606819 208.74110413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02606820 208.74113464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02606821 208.74113464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02606822 208.74116516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02606823 208.74116516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02606824 208.74118042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02606825 208.74119568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02606826 208.74122620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02606827 208.74122620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02606828 208.74124146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02606829 208.74124146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02606830 208.74127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02606831 208.74127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02606832 208.74130249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02606833 208.74130249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02606834 208.74131775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02606835 208.74133301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02606836 208.74136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02606837 208.74136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02606838 208.74139404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02606839 208.74139404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02606840 208.74140930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02606841 208.74140930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02606842 208.74143982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02606843 208.74143982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02606844 208.74147034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02606845 208.74148560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02606846 208.74150085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02606847 208.74150085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02606848 208.74153137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02606849 208.74153137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02606850 208.74156189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02606851 208.74156189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02606852 208.74157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02606853 208.74157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02606854 208.74160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02606855 208.74160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02606856 208.74163818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02606857 208.74163818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02606858 208.74166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02606859 208.74166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02606860 208.74169922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02606861 208.74169922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02606862 208.74171448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02606863 208.74171448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02606864 208.74174500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02606865 208.74174500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02606866 208.74185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02606867 208.74185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02606868 208.74188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02606869 208.74188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02606870 208.74189758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02606871 208.74189758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02606872 208.74192810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02606873 208.74192810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02606874 208.74195862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02606875 208.74195862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02606876 208.74198914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02606877 208.74198914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02606878 208.74201965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02606879 208.74201965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02606880 208.74203491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02606881 208.74203491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02606882 208.74206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02606883 208.74208069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02606884 208.74211121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02606885 208.74211121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02606886 208.74212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02606887 208.74212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02606888 208.74215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02606889 208.74215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02606890 208.74218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02606891 208.74218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02606892 208.74220276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02606893 208.74220276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02606894 208.74223328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02606895 208.74224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02606896 208.74227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02606897 208.74227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02606898 208.74229431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02606899 208.74229431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02606900 208.74232483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02606901 208.74232483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02606902 208.74235535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02606903 208.74235535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02606904 208.74237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02606905 208.74238586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02606906 208.74241638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02606907 208.74241638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02606908 208.74243164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02606909 208.74243164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02606910 208.74246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02606911 208.74246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02606912 208.74249268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02606913 208.74249268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02606914 208.74250793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02606915 208.74252319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02606916 208.74255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02606917 208.74255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02606918 208.74258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02606919 208.74258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02606920 208.74259949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02606921 208.74259949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02606922 208.74263000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02606923 208.74263000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02606924 208.74266052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02606925 208.74267578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02606926 208.74269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02606927 208.74269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02606928 208.74279785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02606929 208.74279785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02606930 208.74282837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02606931 208.74282837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02606932 208.74284363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02606933 208.74284363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02606934 208.74287415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02606935 208.74288940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02606936 208.74290466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02606937 208.74290466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02606938 208.74293518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02606939 208.74293518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02606940 208.74296570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02606941 208.74296570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02606942 208.74299622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02606943 208.74299622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02606944 208.74301147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02606945 208.74301147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02606946 208.74304199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02606947 208.74305725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02606948 208.74307251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02606949 208.74307251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02606950 208.74310303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02606951 208.74310303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02606952 208.74313354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02606953 208.74313354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02606954 208.74314880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02606955 208.74316406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02606956 208.74319458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02606957 208.74319458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02606958 208.74322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02606959 208.74322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02606960 208.74324036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02606961 208.74324036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02606962 208.74327087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02606963 208.74328613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02606964 208.74330139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02606965 208.74330139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02606966 208.74333191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02606967 208.74333191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02606968 208.74336243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02606969 208.74336243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02606970 208.74339294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02606971 208.74339294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02606972 208.74340820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02606973 208.74342346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02606974 208.74345398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02606975 208.74345398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02606976 208.74346924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02606977 208.74346924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02606978 208.74349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02606979 208.74349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02606980 208.74353027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02606981 208.74353027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02606982 208.74354553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02606983 208.74354553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02606984 208.74357605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02606985 208.74359131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02606986 208.74362183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02606987 208.74362183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02606988 208.74363708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02606989 208.74363708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02606990 208.74366760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02606991 208.74366760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02606992 208.74369812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02606993 208.74369812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02606994 208.74380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02606995 208.74380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02606996 208.74383545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02606997 208.74383545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02606998 208.74386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02606999 208.74386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02607000 208.74389648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02607001 208.74389648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02607002 208.74392700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02607003 208.74392700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02607004 208.74394226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02607005 208.74394226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02607006 208.74397278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02607007 208.74397278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02607008 208.74400330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02607009 208.74401855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02607010 208.74403381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02607011 208.74403381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02607012 208.74406433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02607013 208.74406433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02607014 208.74409485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02607015 208.74409485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02607016 208.74411011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02607017 208.74411011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02607018 208.74414063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02607019 208.74415588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02607020 208.74418640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02607021 208.74418640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02607022 208.74420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02607023 208.74420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02607024 208.74423218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02607025 208.74423218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02607026 208.74426270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02607027 208.74426270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02607028 208.74427795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02607029 208.74427795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02607030 208.74430847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02607031 208.74432373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02607032 208.74433899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02607033 208.74433899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02607034 208.74436951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02607035 208.74436951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02607036 208.74440002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02607037 208.74440002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02607038 208.74441528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02607039 208.74441528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02607040 208.74444580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02607041 208.74446106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02607042 208.74449158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02607043 208.74449158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02607044 208.74450684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02607045 208.74450684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02607046 208.74453735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02607047 208.74453735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02607048 208.74456787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02607049 208.74456787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02607050 208.74458313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02607051 208.74459839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02607052 208.74462891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02607053 208.74462891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02607054 208.74465942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02607055 208.74465942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02607056 208.74473572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02607057 208.74473572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02607058 208.74478149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02607059 208.74478149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02607060 208.74481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02607061 208.74481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02607062 208.74482727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02607063 208.74482727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02607064 208.74485779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02607065 208.74485779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02607066 208.74488831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02607067 208.74488831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02607068 208.74490356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02607069 208.74491882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02607070 208.74494934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02607071 208.74494934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02607072 208.74497986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02607073 208.74497986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02607074 208.74499512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02607075 208.74499512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02607076 208.74502563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02607077 208.74502563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02607078 208.74505615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02607079 208.74505615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02607080 208.74508667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02607081 208.74508667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02607082 208.74511719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02607083 208.74511719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02607084 208.74513245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02607085 208.74513245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02607086 208.74516296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02607087 208.74516296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02607088 208.74519348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02607089 208.74520874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02607090 208.74522400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02607091 208.74522400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02607092 208.74525452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02607093 208.74525452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02607094 208.74528503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02607095 208.74528503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02607096 208.74530029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02607097 208.74530029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02607098 208.74533081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02607099 208.74534607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02607100 208.74537659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02607101 208.74537659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02607102 208.74539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02607103 208.74539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02607104 208.74542236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02607105 208.74542236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02607106 208.74545288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02607107 208.74545288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02607108 208.74546814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02607109 208.74548340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02607110 208.74551392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02607111 208.74551392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02607112 208.74552917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02607113 208.74552917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02607114 208.74555969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02607115 208.74555969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02607116 208.74559021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02607117 208.74559021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02607118 208.74560547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02607119 208.74562073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02607120 208.74565125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02607121 208.74565125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02607122 208.74574280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02607123 208.74574280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02607124 208.74577332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02607125 208.74577332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02607126 208.74580383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02607127 208.74580383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02607128 208.74583435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02607129 208.74583435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02607130 208.74584961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02607131 208.74584961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02607132 208.74588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02607133 208.74588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02607134 208.74591064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02607135 208.74591064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02607136 208.74594116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02607137 208.74594116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02607138 208.74597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02607139 208.74597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02607140 208.74600220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02607141 208.74600220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02607142 208.74601746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02607143 208.74601746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02607144 208.74604797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02607145 208.74606323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02607146 208.74609375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02607147 208.74609375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02607148 208.74610901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02607149 208.74610901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02607150 208.74613953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02607151 208.74613953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02607152 208.74617004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02607153 208.74617004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02607154 208.74618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02607155 208.74618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02607156 208.74623108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02607157 208.74623108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02607158 208.74624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02607159 208.74624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02607160 208.74627686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02607161 208.74627686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02607162 208.74630737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02607163 208.74630737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02607164 208.74632263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02607165 208.74633789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02607166 208.74636841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02607167 208.74636841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02607168 208.74639893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02607169 208.74639893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02607170 208.74641418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02607171 208.74641418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02607172 208.74644470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02607173 208.74644470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02607174 208.74647522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02607175 208.74647522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02607176 208.74649048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02607177 208.74650574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02607178 208.74653625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02607179 208.74653625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02607180 208.74656677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02607181 208.74656677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02607182 208.74658203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02607183 208.74658203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02607184 208.74661255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02607185 208.74661255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02607186 208.74664307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02607187 208.74664307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02607188 208.74667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02607189 208.74667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02607190 208.74670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02607191 208.74670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02607192 208.74671936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02607193 208.74671936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02607194 208.74674988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02607195 208.74674988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02607196 208.74678040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02607197 208.74679565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02607198 208.74681091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02607199 208.74681091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02607200 208.74684143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02607201 208.74684143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02607202 208.74687195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02607203 208.74687195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02607204 208.74688721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02607205 208.74688721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02607206 208.74691772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02607207 208.74693298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02607208 208.74696350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02607209 208.74696350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02607210 208.74697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02607211 208.74697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02607212 208.74700928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02607213 208.74700928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02607214 208.74703979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02607215 208.74703979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02607216 208.74705505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02607217 208.74705505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02607218 208.74708557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02607219 208.74710083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02607220 208.74711609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02607221 208.74711609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02607222 208.74714661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02607223 208.74714661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02607224 208.74717712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02607225 208.74717712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02607226 208.74719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02607227 208.74719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02607228 208.74722290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02607229 208.74723816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02607230 208.74726868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02607231 208.74726868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02607232 208.74728394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02607233 208.74728394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02607234 208.74731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02607235 208.74731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02607236 208.74734497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02607237 208.74734497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02607238 208.74736023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02607239 208.74737549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02607240 208.74740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02607241 208.74740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02607242 208.74743652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02607243 208.74743652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02607244 208.74745178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02607245 208.74745178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02607246 208.74748230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02607247 208.74748230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02607248 208.74751282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02607249 208.74751282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02607250 208.74752808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02607251 208.74754333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02607252 208.74757385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02607253 208.74757385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02607254 208.74760437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02607255 208.74760437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02607256 208.74761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02607257 208.74761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02607258 208.74765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02607259 208.74765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02607260 208.74768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02607261 208.74768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02607262 208.74771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02607263 208.74771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02607264 208.74774170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02607265 208.74774170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02607266 208.74775696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02607267 208.74775696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02607268 208.74778748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02607269 208.74778748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02607270 208.74781799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02607271 208.74783325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02607272 208.74784851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02607273 208.74784851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02607274 208.74787903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02607275 208.74794006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02607276 208.74797058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02607277 208.74798584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02607278 208.74800110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02607279 208.74800110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02607280 208.74803162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02607281 208.74803162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02607282 208.74806213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02607283 208.74806213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02607284 208.74807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02607285 208.74807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02607286 208.74810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02607287 208.74812317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02607288 208.74815369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02607289 208.74815369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02607290 208.74816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02607291 208.74816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02607292 208.74819946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02607293 208.74819946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02607294 208.74822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02607295 208.74822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02607296 208.74824524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02607297 208.74826050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02607298 208.74829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02607299 208.74829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02607300 208.74830627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02607301 208.74830627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02607302 208.74833679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02607303 208.74833679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02607304 208.74836731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02607305 208.74836731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02607306 208.74839783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02607307 208.74839783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02607308 208.74842834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02607309 208.74842834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02607310 208.74845886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02607311 208.74845886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02607312 208.74847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02607313 208.74847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02607314 208.74850464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02607315 208.74850464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02607316 208.74853516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02607317 208.74855042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02607318 208.74856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02607319 208.74856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02607320 208.74859619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02607321 208.74859619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02607322 208.74862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02607323 208.74862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02607324 208.74864197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02607325 208.74864197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02607326 208.74867249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02607327 208.74868774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02607328 208.74870300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02607329 208.74870300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02607330 208.74873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02607331 208.74873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02607332 208.74876404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02607333 208.74876404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02607334 208.74879456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02607335 208.74879456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02607336 208.74880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02607337 208.74882507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02607338 208.74891663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02607339 208.74891663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02607340 208.74894714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02607341 208.74894714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02607342 208.74896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02607343 208.74896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02607344 208.74899292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02607345 208.74900818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02607346 208.74902344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02607347 208.74902344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02607348 208.74905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02607349 208.74905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02607350 208.74908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02607351 208.74908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02607352 208.74909973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02607353 208.74909973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02607354 208.74913025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02607355 208.74914551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02607356 208.74917603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02607357 208.74917603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02607358 208.74919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02607359 208.74919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02607360 208.74922180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02607361 208.74922180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02607362 208.74925232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02607363 208.74925232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02607364 208.74926758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02607365 208.74928284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02607366 208.74931335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02607367 208.74931335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02607368 208.74934387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02607369 208.74934387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02607370 208.74935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02607371 208.74935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02607372 208.74938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02607373 208.74938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02607374 208.74942017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02607375 208.74942017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02607376 208.74945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02607377 208.74945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02607378 208.74948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02607379 208.74948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02607380 208.74949646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02607381 208.74949646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02607382 208.74952698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02607383 208.74952698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02607384 208.74955750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02607385 208.74957275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02607386 208.74958801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02607387 208.74958801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02607388 208.74961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02607389 208.74961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02607390 208.74964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02607391 208.74964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02607392 208.74966431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02607393 208.74966431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02607394 208.74969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02607395 208.74969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02607396 208.74972534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02607397 208.74974060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02607398 208.74975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02607399 208.74975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02607400 208.74978638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02607401 208.74978638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02607402 208.74981689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02607403 208.74981689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02607404 208.74990845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02607405 208.74990845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02607406 208.74993896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02607407 208.74993896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02607408 208.74996948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02607409 208.74996948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02607410 208.74998474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02607411 208.75000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02607412 208.75003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02607413 208.75003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02607414 208.75006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02607415 208.75006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02607416 208.75007629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02607417 208.75007629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02607418 208.75010681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02607419 208.75010681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02607420 208.75013733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02607421 208.75013733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02607422 208.75016785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02607423 208.75016785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02607424 208.75019836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02607425 208.75019836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02607426 208.75021362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02607427 208.75021362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02607428 208.75024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02607429 208.75024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02607430 208.75027466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02607431 208.75027466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02607432 208.75030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02607433 208.75030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02607434 208.75033569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02607435 208.75033569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02607436 208.75036621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02607437 208.75036621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02607438 208.75038147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02607439 208.75038147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02607440 208.75041199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02607441 208.75042725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02607442 208.75045776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02607443 208.75045776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02607444 208.75047302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02607445 208.75047302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02607446 208.75050354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02607447 208.75050354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02607448 208.75053406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02607449 208.75054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02607450 208.75057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02607451 208.75057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02607452 208.75061035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02607453 208.75061035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02607454 208.75062561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02607455 208.75064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02607456 208.75067139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02607457 208.75067139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02607458 208.75070190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02607459 208.75070190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02607460 208.75071716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02607461 208.75071716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02607462 208.75074768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02607463 208.75074768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02607464 208.75077820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02607465 208.75077820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02607466 208.75080872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02607467 208.75080872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02607468 208.75090027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02607469 208.75090027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02607470 208.75093079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02607471 208.75093079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02607472 208.75094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02607473 208.75096130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02607474 208.75099182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02607475 208.75099182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02607476 208.75100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02607477 208.75100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02607478 208.75103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02607479 208.75103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02607480 208.75106812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02607481 208.75106812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02607482 208.75109863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02607483 208.75109863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02607484 208.75112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02607485 208.75112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02607486 208.75115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02607487 208.75115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02607488 208.75117493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02607489 208.75117493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02607490 208.75120544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02607491 208.75120544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02607492 208.75125122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02607493 208.75125122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02607494 208.75126648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02607495 208.75126648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02607496 208.75129700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02607497 208.75129700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02607498 208.75132751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02607499 208.75132751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02607500 208.75134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02607501 208.75135803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02607502 208.75138855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02607503 208.75138855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02607504 208.75140381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02607505 208.75140381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02607506 208.75143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02607507 208.75143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02607508 208.75146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02607509 208.75146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02607510 208.75149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02607511 208.75149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02607512 208.75152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02607513 208.75152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02607514 208.75155640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02607515 208.75155640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02607516 208.75157166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02607517 208.75157166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02607518 208.75160217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02607519 208.75160217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02607520 208.75163269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02607521 208.75163269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02607522 208.75164795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02607523 208.75164795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02607524 208.75169373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02607525 208.75169373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02607526 208.75172424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02607527 208.75172424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02607528 208.75173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02607529 208.75173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02607530 208.75177002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02607531 208.75178528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02607532 208.75187683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02607533 208.75189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02607534 208.75189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02607535 208.75190735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02607536 208.75193787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02607537 208.75193787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02607538 208.75196838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02607539 208.75196838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02607540 208.75198364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02607541 208.75198364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02607542 208.75201416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02607543 208.75201416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02607544 208.75204468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02607545 208.75204468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02607546 208.75205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02607547 208.75205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02607548 208.75209045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02607549 208.75209045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02607550 208.75212097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02607551 208.75212097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02607552 208.75213623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02607553 208.75215149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02607554 208.75216675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02607555 208.75218201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02607556 208.75219727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02607557 208.75219727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02607558 208.75222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02607559 208.75222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02607560 208.75225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02607561 208.75225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02607562 208.75228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02607563 208.75228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02607564 208.75230408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02607565 208.75231934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02607566 208.75234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02607567 208.75234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02607568 208.75236511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02607569 208.75236511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02607570 208.75239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02607571 208.75239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02607572 208.75242615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02607573 208.75242615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02607574 208.75244141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02607575 208.75245667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02607576 208.75248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02607577 208.75248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02607578 208.75251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02607579 208.75251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02607580 208.75253296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02607581 208.75253296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02607582 208.75256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02607583 208.75256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02607584 208.75259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02607585 208.75259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02607586 208.75260925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02607587 208.75260925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02607588 208.75263977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02607589 208.75263977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02607590 208.75267029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02607591 208.75267029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02607592 208.75268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02607593 208.75270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02607594 208.75271606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02607595 208.75273132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02607596 208.75276184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02607597 208.75276184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02607598 208.75277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02607599 208.75277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02607600 208.75286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02607601 208.75286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02607602 208.75291443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02607603 208.75291443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02607604 208.75292969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02607605 208.75292969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02607606 208.75296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02607607 208.75296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02607608 208.75299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02607609 208.75299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02607610 208.75300598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02607611 208.75300598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02607612 208.75303650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02607613 208.75303650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02607614 208.75306702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02607615 208.75306702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02607616 208.75308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02607617 208.75309753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02607618 208.75311279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02607619 208.75312805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02607620 208.75315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02607621 208.75315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02607622 208.75317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02607623 208.75317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02607624 208.75320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02607625 208.75320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02607626 208.75323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02607627 208.75323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02607628 208.75325012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02607629 208.75325012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02607630 208.75328064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02607631 208.75328064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02607632 208.75331116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02607633 208.75331116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02607634 208.75334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02607635 208.75334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02607636 208.75337219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02607637 208.75337219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02607638 208.75340271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02607639 208.75340271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02607640 208.75341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02607641 208.75343323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02607642 208.75346375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02607643 208.75346375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02607644 208.75347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02607645 208.75347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02607646 208.75350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02607647 208.75350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02607648 208.75354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02607649 208.75354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02607650 208.75355530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02607651 208.75357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02607652 208.75360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02607653 208.75360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02607654 208.75363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02607655 208.75363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02607656 208.75364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02607657 208.75364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02607658 208.75367737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02607659 208.75367737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02607660 208.75370789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02607661 208.75370789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02607662 208.75372314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02607663 208.75373840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02624434 208.98875427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c78 -02624435 208.98876953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c78 -02624436 208.98880005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c88 -02624437 208.98880005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c88 -02624438 208.98883057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c98 -02624439 208.98883057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c98 -02624440 208.98884583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca8 -02624441 208.98884583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca8 -02624442 208.98887634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb8 -02624443 208.98887634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb8 -02624444 208.98890686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc8 -02624445 208.98890686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc8 -02624446 208.98892212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd8 -02624447 208.98892212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd8 -02624448 208.98895264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce8 -02624449 208.98895264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce8 -02624450 208.98898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf8 -02624451 208.98898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf8 -02624452 208.98899841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d08 -02624453 208.98899841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d08 -02624454 208.98902893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d18 -02624455 208.98904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d18 -02624456 208.98905945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d28 -02624457 208.98907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d28 -02624458 208.98908997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d38 -02624459 208.98908997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d38 -02624460 208.98912048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d48 -02624461 208.98912048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d48 -02624462 208.98915100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d58 -02624463 208.98915100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d58 -02624464 208.98916626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d68 -02624465 208.98916626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d68 -02624466 208.98919678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d78 -02624467 208.98921204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d78 -02624468 208.98924255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d88 -02624469 208.98924255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d88 -02624470 208.98925781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d98 -02624471 208.98925781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d98 -02624472 208.98928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24da8 -02624473 208.98928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24da8 -02624474 208.98931885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24db8 -02624475 208.98931885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24db8 -02624476 208.98933411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dc8 -02624477 208.98933411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dc8 -02638635 209.18748474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40838 -02638636 209.18750000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40848 -02638637 209.18750000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40848 -02638638 209.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40858 -02638639 209.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40858 -02638640 209.18756104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40868 -02638641 209.18757629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40868 -02638642 209.18759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40878 -02638643 209.18759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40878 -02638644 209.18762207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40888 -02638645 209.18762207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40888 -02638646 209.18765259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40898 -02638647 209.18765259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40898 -02638648 209.18766785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a8 -02638649 209.18766785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a8 -02638650 209.18769836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b8 -02638651 209.18771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b8 -02638652 209.18774414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c8 -02638653 209.18774414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c8 -02638654 209.18775940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d8 -02638655 209.18775940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d8 -02638656 209.18778992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e8 -02638657 209.18778992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e8 -02638658 209.18782043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f8 -02638659 209.18782043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f8 -02638660 209.18783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40908 -02638661 209.18783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40908 -02638662 209.18786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40918 -02638663 209.18788147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40918 -02638664 209.18789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40928 -02638665 209.18789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40928 -02638666 209.18792725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40938 -02638667 209.18792725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40938 -02638668 209.18795776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40948 -02638669 209.18795776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40948 -02638670 209.18798828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40958 -02638671 209.18798828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40958 -02638672 209.18800354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40968 -02638673 209.18801880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40968 -02638674 209.18804932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40978 -02638675 209.18804932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40978 -02638676 209.18806458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40988 -02638677 209.18806458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40988 -02638678 209.18809509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40998 -02645349 209.28364563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -02645350 209.28364563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -02645351 209.28367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -02645352 209.28367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -02645353 209.28370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -02645354 209.28370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -02645355 209.28372192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -02645356 209.28373718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -02645357 209.28376770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -02645358 209.28376770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -02645359 209.28378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da48 -02645360 209.28378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da48 -02645361 209.28381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da58 -02645362 209.28381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da58 -02645363 209.28384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -02645364 209.28384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -02645365 209.28393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -02645366 209.28393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -02645367 209.28396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -02645368 209.28398132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -02645369 209.28401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -02645370 209.28401184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -02645371 209.28402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa8 -02645372 209.28402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa8 -02645373 209.28405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab8 -02645374 209.28405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab8 -02645375 209.28408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac8 -02645376 209.28408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac8 -02645377 209.28410339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad8 -02645378 209.28411865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad8 -02645379 209.28414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae8 -02645380 209.28414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae8 -02645381 209.28417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf8 -02645382 209.28417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf8 -02645383 209.28419495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db08 -02645384 209.28419495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db08 -02645385 209.28422546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db18 -02645386 209.28422546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db18 -02645387 209.28425598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db28 -02645388 209.28425598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db28 -02645389 209.28427124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db38 -02645390 209.28428650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db38 -02645391 209.28431702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db48 -02645392 209.28431702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db48 -02648014 209.85475159 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648015 209.85479736 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648016 209.85481262 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02648017 209.85482788 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02648018 209.85494995 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648019 209.85494995 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02648020 209.85501099 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648021 209.85502625 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02648022 210.61648560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02648023 210.61648560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02648024 210.61653137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02648025 210.61653137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02648026 210.61654663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02648027 210.61654663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02648028 210.61657715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02648029 210.61657715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02648030 210.61660767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02648031 210.61660767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02648032 210.61662292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02648033 210.61663818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02648034 210.61666870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02648035 210.61666870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02648036 210.61668396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02648037 210.61668396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02648038 210.61671448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02648039 210.61671448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02648040 210.61674500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02648041 210.61674500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02648042 210.61677551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02648043 210.61677551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02648044 210.61680603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02648045 210.61680603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02648046 210.61683655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02648047 210.61683655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02648048 210.61685181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02648049 210.61685181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02648050 210.61688232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02648051 210.61688232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02648052 210.61691284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02648053 210.61692810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02648054 210.61694336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02648055 210.61694336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02648056 210.61697388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02648057 210.61697388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02648058 210.61700439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02648059 210.61700439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02648060 210.61701965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02648061 210.61701965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02648062 210.61706543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02648063 210.61706543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02648064 210.61709595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02648065 210.61709595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02648066 210.61714172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02648067 210.61714172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02648068 210.61717224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02648069 210.61717224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02648070 210.61720276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02648071 210.61721802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02648072 210.61724854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02648073 210.61724854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02648074 210.61727905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02648075 210.61727905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02648076 210.61732483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02648077 210.61732483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02648078 210.61735535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02648079 210.61735535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02648080 210.61740112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02648081 210.61740112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02648082 210.61743164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02648083 210.61743164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02648084 210.61747742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02648085 210.61747742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02648086 210.61750793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02648087 210.61750793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02648088 210.61753845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02648089 210.61755371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02648090 210.61756897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02648091 210.61758423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02648092 210.61761475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02648093 210.61763000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02648094 210.61764526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02648095 210.61766052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02648096 210.61769104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02648097 210.61769104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02648098 210.61772156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02648099 210.61772156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02648100 210.61776733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02648101 210.61776733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02648102 210.61779785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02648103 210.61779785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02648104 210.61784363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02648105 210.61784363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02648106 210.61787415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02648107 210.61787415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02648108 210.61791992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02648109 210.61791992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02648110 210.61796570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02648111 210.61796570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02648112 210.61798096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02648113 210.61799622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02648114 210.61802673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02648115 210.61804199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02648116 210.61805725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02648117 210.61805725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02648118 210.61810303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02648119 210.61810303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02648120 210.61813354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02648121 210.61813354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02648122 210.61817932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02648123 210.61817932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02648124 210.61820984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02648125 210.61820984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02648126 210.61824036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02648127 210.61824036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02648128 210.61827087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02648129 210.61827087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02648130 210.61830139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02648131 210.61830139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02648132 210.61833191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02648133 210.61833191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02648134 210.61836243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02648135 210.61836243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02648136 210.61837769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02648137 210.61837769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02648138 210.61840820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02648139 210.61840820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02648140 210.61843872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02648141 210.61843872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02648142 210.61846924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02648143 210.61846924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02648144 210.61849976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02648145 210.61849976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02648146 210.61854553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02648147 210.61854553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02648148 210.61857605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02648149 210.61857605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02648150 210.61859131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02648151 210.61859131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02648152 210.61862183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02648153 210.61862183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02648154 210.61865234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02648155 210.61865234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02648156 210.61866760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02648157 210.61868286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02648158 210.61871338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02648159 210.61871338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02648160 210.61874390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02648161 210.61874390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02648162 210.61875916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02648163 210.61875916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02648164 210.61878967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02648165 210.61878967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02648166 210.61882019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02648167 210.61883545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02648168 210.61885071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02648169 210.61885071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02648170 210.61888123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02648171 210.61888123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02648172 210.61891174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02648173 210.61891174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02648174 210.61892700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02648175 210.61892700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02648176 210.61897278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02648177 210.61897278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02648178 210.61898804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02648179 210.61898804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02648180 210.61901855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02648181 210.61901855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02648182 210.61904907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02648183 210.61904907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02648184 210.61907959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02648185 210.61907959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02648186 210.61911011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02648187 210.61911011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02648188 210.61914063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02648189 210.61914063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02648190 210.61915588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02648191 210.61915588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02648192 210.61918640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02648193 210.61920166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02648194 210.61923218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02648195 210.61923218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02648196 210.61924744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02648197 210.61924744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02648198 210.61929321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02648199 210.61929321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02648200 210.61933899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02648201 210.61933899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02648202 210.61936951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02648203 210.61938477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02648204 210.61940002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02648205 210.61940002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02648206 210.61943054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02648207 210.61943054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02648208 210.61946106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02648209 210.61946106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02648210 210.61947632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02648211 210.61947632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02648212 210.61950684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02648213 210.61952209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02648214 210.61955261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02648215 210.61955261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02648216 210.61956787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02648217 210.61956787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02648218 210.61959839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02648219 210.61959839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02648220 210.61962891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02648221 210.61962891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02648222 210.61964417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02648223 210.61965942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02648224 210.61968994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02648225 210.61968994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02648226 210.61970520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02648227 210.61970520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02648228 210.61973572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02648229 210.61973572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02648230 210.61976624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02648231 210.61976624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02648232 210.61978149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02648233 210.61979675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02648234 210.61982727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02648235 210.61982727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02648236 210.61985779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02648237 210.61985779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02648238 210.61987305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02648239 210.61987305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02648240 210.61990356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02648241 210.61990356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02648242 210.61993408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02648243 210.61994934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02648244 210.61996460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02648245 210.61996460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02648246 210.61999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02648247 210.61999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02648248 210.62002563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02648249 210.62002563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02648250 210.62004089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02648251 210.62004089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02648252 210.62007141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02648253 210.62008667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02648254 210.62010193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02648255 210.62010193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02648256 210.62013245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02648257 210.62013245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02648258 210.62016296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02648259 210.62017822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02648260 210.62019348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02648261 210.62019348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02648262 210.62022400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02648263 210.62022400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02648264 210.62025452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02648265 210.62025452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02648266 210.62026978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02648267 210.62028503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02648268 210.62031555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02648269 210.62031555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02648270 210.62034607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02648271 210.62034607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02648272 210.62036133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02648273 210.62036133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02648274 210.62039185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02648275 210.62039185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02648276 210.62042236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02648277 210.62042236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02648278 210.62043762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02648279 210.62043762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02648280 210.62046814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02648281 210.62046814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02648282 210.62049866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02648283 210.62049866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02648284 210.62052917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02648285 210.62052917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02648286 210.62055969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02648287 210.62055969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02648288 210.62057495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02648289 210.62057495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02648290 210.62060547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02648291 210.62062073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02648292 210.62063599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02648293 210.62065125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02648294 210.62066650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02648295 210.62066650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02648296 210.62069702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02648297 210.62069702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02648298 210.62072754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02648299 210.62072754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02648300 210.62074280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02648301 210.62074280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02648302 210.62077332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02648303 210.62077332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02648304 210.62080383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02648305 210.62080383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02648306 210.62081909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02648307 210.62081909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02648308 210.62084961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02648309 210.62084961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02648310 210.62088013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02648311 210.62089539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02648312 210.62089539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02648313 210.62091064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02648314 210.62094116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02648315 210.62094116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02648316 210.62097168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02648317 210.62097168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02648318 210.62098694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02648319 210.62098694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02648320 210.62101746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02648321 210.62101746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02648322 210.62104797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02648323 210.62104797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02648324 210.62106323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02648325 210.62106323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02648326 210.62109375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02648327 210.62109375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02648328 210.62113953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02648329 210.62113953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02648330 210.62115479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02648331 210.62115479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02648332 210.62118530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02648333 210.62118530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02648334 210.62121582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02648335 210.62121582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02648336 210.62123108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02648337 210.62124634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02648338 210.62127686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02648339 210.62127686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02648340 210.62129211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02648341 210.62129211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02648342 210.62132263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02648343 210.62132263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02648344 210.62135315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02648345 210.62135315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02648346 210.62136841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02648347 210.62136841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02648348 210.62139893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02648349 210.62139893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02648350 210.62142944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02648351 210.62142944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02648352 210.62145996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02648353 210.62145996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02648354 210.62147522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02648355 210.62147522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02648356 210.62150574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02648357 210.62152100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02648358 210.62153625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02648359 210.62153625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02648360 210.62156677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02648361 210.62156677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02648362 210.62159729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02648363 210.62159729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02648364 210.62161255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02648365 210.62161255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02648366 210.62164307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02648367 210.62164307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02648368 210.62167358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02648369 210.62168884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02648370 210.62170410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02648371 210.62170410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02648372 210.62173462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02648373 210.62173462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02648374 210.62176514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02648375 210.62176514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02648376 210.62178040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02648377 210.62178040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02648378 210.62181091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02648379 210.62182617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02648380 210.62184143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02648381 210.62185669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02648382 210.62187195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02648383 210.62187195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02648384 210.62190247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02648385 210.62190247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02648386 210.62193298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02648387 210.62193298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02648388 210.62194824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02648389 210.62194824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02648390 210.62197876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02648391 210.62197876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02648392 210.62200928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02648393 210.62200928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02648394 210.62202454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02648395 210.62202454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02648396 210.62205505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02648397 210.62205505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02648398 210.62208557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02648399 210.62208557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02648400 210.62210083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02648401 210.62211609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02648402 210.62214661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02648403 210.62214661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02648404 210.62217712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02648405 210.62217712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02648406 210.62219238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02648407 210.62219238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02648408 210.62222290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02648409 210.62222290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02648410 210.62225342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02648411 210.62225342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02648412 210.62229919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02648413 210.62231445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02648414 210.62232971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02648415 210.62232971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02648416 210.62236023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02648417 210.62236023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02649458 210.63710022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02649459 210.63710022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02649460 210.63713074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02649461 210.63714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02649462 210.63717651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02649463 210.63717651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02649464 210.63719177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02649465 210.63719177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02649466 210.63722229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02649467 210.63722229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02649468 210.63725281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02649469 210.63725281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02649470 210.63726807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02649471 210.63728333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02649472 210.63731384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02649473 210.63731384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02649474 210.63734436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02649475 210.63734436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02649476 210.63735962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02649477 210.63735962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02649478 210.63739014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02649479 210.63739014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02649480 210.63742065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02649481 210.63742065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02649482 210.63745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02649483 210.63745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02649484 210.63748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02649485 210.63748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02649486 210.63749695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02649487 210.63749695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02649488 210.63752747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02649489 210.63752747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02649490 210.63755798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02649491 210.63757324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02649492 210.63758850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02649493 210.63758850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02649494 210.63764954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02649495 210.63764954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02649496 210.63766479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02649497 210.63766479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02649498 210.63769531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02649499 210.63771057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02649500 210.63774109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02649501 210.63774109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02653781 210.69882202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -02653782 210.69883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -02653783 210.69883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -02653784 210.69886780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -02653785 210.69888306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -02653786 210.69889832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -02653787 210.69889832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -02653788 210.69892883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -02653789 210.69892883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -02653790 210.69895935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -02653791 210.69895935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -02653792 210.69898987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -02653793 210.69898987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -02653794 210.69900513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -02653795 210.69902039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -02653796 210.69903564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -02653797 210.69905090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -02653798 210.69906616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -02653799 210.69906616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -02653800 210.69909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -02653801 210.69909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -02653802 210.69912720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -02653803 210.69912720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -02653804 210.69914246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -02653805 210.69914246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -02653806 210.69917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -02653807 210.69917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -02653808 210.69920349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -02653809 210.69920349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -02653810 210.69921875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -02653811 210.69921875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -02653812 210.69924927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -02653813 210.69924927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -02653814 210.69927979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -02653815 210.69927979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -02653816 210.69929504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -02653817 210.69931030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -02653818 210.69932556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -02653819 210.69934082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -02653820 210.69937134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -02653821 210.69937134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -02653822 210.69938660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -02653823 210.69938660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -02653824 210.69941711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -02658444 210.76477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x155f8 -02658445 210.76477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x155f8 -02658446 210.76480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15608 -02658447 210.76480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15608 -02658448 210.76483154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15618 -02658449 210.76483154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15618 -02658450 210.76484680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15628 -02658451 210.76484680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15628 -02658452 210.76487732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15638 -02658453 210.76487732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15638 -02658454 210.76490784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15648 -02658455 210.76490784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15648 -02658456 210.76492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15658 -02658457 210.76492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15658 -02658458 210.76495361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15668 -02658459 210.76495361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15668 -02658460 210.76498413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15678 -02658461 210.76498413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15678 -02658462 210.76499939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15688 -02658463 210.76501465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15688 -02658464 210.76504517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15698 -02658465 210.76504517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15698 -02658466 210.76507568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a8 -02658467 210.76507568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a8 -02658468 210.76509094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b8 -02658469 210.76509094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b8 -02658470 210.76512146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c8 -02658471 210.76513672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c8 -02658472 210.76515198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d8 -02658473 210.76515198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d8 -02658474 210.76518250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e8 -02658475 210.76518250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e8 -02658476 210.76521301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f8 -02658477 210.76521301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f8 -02658478 210.76522827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15708 -02658479 210.76522827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15708 -02658480 210.76525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15718 -02658481 210.76525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15718 -02658482 210.76528931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15728 -02658483 210.76530457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15728 -02658484 210.76531982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15738 -02658485 210.76531982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15738 -02658486 210.76535034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15748 -02658487 210.76535034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15748 -02674336 210.98803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -02674337 210.98803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -02674338 210.98805237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -02674339 210.98805237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -02674340 210.98808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -02674341 210.98808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -02674342 210.98811340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -02674343 210.98812866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -02674344 210.98814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -02674345 210.98814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -02674346 210.98817444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -02674347 210.98817444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -02674348 210.98820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -02674349 210.98820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -02674350 210.98822021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -02674351 210.98822021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -02674352 210.98825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -02674353 210.98826599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -02674354 210.98828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -02674355 210.98828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -02674356 210.98831177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -02674357 210.98831177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -02674358 210.98834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -02674359 210.98834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -02674360 210.98835754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -02674361 210.98835754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -02674362 210.98838806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -02674363 210.98840332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -02674364 210.98843384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -02674365 210.98843384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -02674366 210.98844910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -02674367 210.98844910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -02674368 210.98847961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -02674369 210.98847961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -02674370 210.98851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -02674371 210.98851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -02674372 210.98852539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -02674373 210.98854065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -02674374 210.98855591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -02674375 210.98857117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -02674376 210.98860168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -02674377 210.98860168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -02674378 210.98861694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -02674379 210.98861694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -02678748 211.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02678749 211.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02678750 211.05111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02678751 211.05111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02678752 211.05113220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02678753 211.05113220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02678754 211.05116272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02678755 211.05117798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02678756 211.05119324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -02678757 211.05119324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -02678758 211.05122375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -02678759 211.05122375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -02678760 211.05125427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -02678761 211.05125427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -02678762 211.05126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -02678763 211.05126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -02678764 211.05130005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -02678765 211.05131531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -02678766 211.05134583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -02678767 211.05134583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -02678768 211.05136108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -02678769 211.05136108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -02678770 211.05139160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -02678771 211.05139160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -02678772 211.05142212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -02678773 211.05142212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -02678774 211.05143738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -02678775 211.05145264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -02678776 211.05148315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -02678777 211.05148315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -02678778 211.05151367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -02678779 211.05151367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -02678780 211.05152893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -02678781 211.05152893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -02678782 211.05155945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -02678783 211.05155945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -02678784 211.05158997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -02678785 211.05158997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -02678786 211.05160522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -02678787 211.05162048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -02678788 211.05165100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -02678789 211.05165100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -02678790 211.05166626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -02678791 211.05166626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -02684512 211.14233398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48498 -02684513 211.14233398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48498 -02684514 211.14236450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a8 -02684515 211.14236450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a8 -02684516 211.14237976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b8 -02684517 211.14237976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b8 -02684518 211.14244080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c8 -02684519 211.14244080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c8 -02684520 211.14247131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d8 -02684521 211.14247131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d8 -02684522 211.14250183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e8 -02684523 211.14250183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e8 -02684524 211.14253235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f8 -02684525 211.14253235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f8 -02684526 211.14254761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48508 -02684527 211.14254761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48508 -02684528 211.14257813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48518 -02684529 211.14257813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48518 -02684530 211.14260864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48528 -02684531 211.14262390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48528 -02684532 211.14263916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48538 -02684533 211.14263916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48538 -02684534 211.14266968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48548 -02684535 211.14266968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48548 -02684536 211.14270020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48558 -02684537 211.14270020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48558 -02684538 211.14271545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48568 -02684539 211.14271545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48568 -02684540 211.14274597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48578 -02684541 211.14274597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48578 -02684542 211.14277649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48588 -02684543 211.14277649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48588 -02684544 211.14280701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48598 -02684545 211.14280701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48598 -02684546 211.14283752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a8 -02684547 211.14283752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a8 -02684548 211.14286804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b8 -02684549 211.14286804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b8 -02684550 211.14288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c8 -02684551 211.14288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c8 -02684552 211.14291382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d8 -02684553 211.14292908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d8 -02684554 211.14294434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e8 -02684555 211.14294434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e8 -02689908 211.27328491 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02689909 211.29078674 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689910 211.29080200 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689911 212.36108398 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689912 212.36114502 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689913 212.36114502 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689914 212.36116028 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02689915 212.36129761 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689916 212.36129761 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689917 212.36135864 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689918 212.36138916 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689919 213.29219055 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02689920 213.31066895 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689921 213.31066895 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689922 214.86788940 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689923 214.86791992 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689924 214.86793518 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689925 214.86796570 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02689926 214.86811829 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689927 214.86811829 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689928 214.86817932 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689929 214.86819458 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689930 215.31210327 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02689931 215.33058167 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689932 215.33058167 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689933 216.21890259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02689934 216.21890259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02689935 216.21893311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02689936 216.21893311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02689937 216.21896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02689938 216.21896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02689939 216.21897888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02689940 216.21897888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02689941 216.21900940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02689942 216.21903992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02689943 216.21905518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02689944 216.21905518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02689945 216.21908569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02689946 216.21908569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02689947 216.21911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02689948 216.21911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02689949 216.21913147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02689950 216.21913147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02689951 216.21916199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02689952 216.21916199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02689953 216.21919250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02689954 216.21919250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02689955 216.21920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02689956 216.21920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02689957 216.21923828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02689958 216.21923828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02689959 216.21926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02689960 216.21926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02689961 216.21928406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02689962 216.21931458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02689963 216.21934509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02689964 216.21934509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02689965 216.21936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02689966 216.21936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02689967 216.21939087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02689968 216.21939087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02689969 216.21942139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02689970 216.21942139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02689971 216.21943665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02689972 216.21943665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02689973 216.21946716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02689974 216.21946716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02689975 216.21949768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02689976 216.21949768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02689977 216.21951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02689978 216.21951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02689979 216.21954346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02689980 216.21954346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02689981 216.21957397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02689982 216.21958923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02689983 216.21961975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02689984 216.21961975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02689985 216.21965027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02689986 216.21965027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02689987 216.21968079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02689988 216.21968079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02689989 216.21969604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02689990 216.21969604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02689991 216.21972656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02689992 216.21972656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02689993 216.21975708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02689994 216.21975708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02689995 216.21977234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02689996 216.21977234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02689997 216.21980286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02689998 216.21980286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02689999 216.21983337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02690000 216.21983337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02690001 216.21992493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02690002 216.21992493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02690003 216.21995544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02690004 216.21995544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02690005 216.21998596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02690006 216.21998596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02690007 216.22000122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02690008 216.22003174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02690009 216.22006226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02690010 216.22006226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02690011 216.22007751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02690012 216.22007751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02690013 216.22010803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02690014 216.22010803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02690015 216.22013855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02690016 216.22013855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02690017 216.22015381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02690018 216.22015381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02690019 216.22018433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02690020 216.22018433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02690021 216.22021484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02690022 216.22021484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02690023 216.22023010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02690024 216.22023010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02690025 216.22026062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02690026 216.22029114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02690027 216.22030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02690028 216.22030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02690029 216.22033691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02690030 216.22033691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02690031 216.22036743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02690032 216.22036743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02690033 216.22039795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02690034 216.22039795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02690035 216.22041321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02690036 216.22041321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02690037 216.22044373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02690038 216.22044373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02690039 216.22047424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02690040 216.22047424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02690041 216.22048950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02690042 216.22048950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02690043 216.22052002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02690044 216.22052002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02690045 216.22055054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02690046 216.22055054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02690047 216.22056580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02690048 216.22059631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02690049 216.22062683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02690050 216.22062683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02690051 216.22064209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02690052 216.22064209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02690053 216.22067261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02690054 216.22067261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02690055 216.22070313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02690056 216.22070313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02690057 216.22074890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02690058 216.22074890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02690059 216.22077942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02690060 216.22077942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02690061 216.22079468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02690062 216.22079468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02690063 216.22082520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02690064 216.22082520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02690065 216.22085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02690066 216.22085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02690067 216.22087097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02690068 216.22087097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02690069 216.22090149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02690070 216.22090149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02690071 216.22093201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02690072 216.22094727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02690073 216.22097778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02690074 216.22097778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02690075 216.22100830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02690076 216.22100830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02690077 216.22102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02690078 216.22102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02690079 216.22105408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02690080 216.22105408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02690081 216.22108459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02690082 216.22108459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02690083 216.22109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02690084 216.22109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02690085 216.22113037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02690086 216.22113037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02690087 216.22116089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02690088 216.22116089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02690089 216.22119141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02690090 216.22119141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02690091 216.22120667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02690092 216.22120667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02690093 216.22123718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02690094 216.22126770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02690095 216.22128296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02690096 216.22128296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02690097 216.22131348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02690098 216.22131348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02690099 216.22134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02690100 216.22134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02690101 216.22135925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02690102 216.22135925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02690103 216.22138977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02690104 216.22138977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02690105 216.22142029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02690106 216.22142029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02690107 216.22143555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02690108 216.22143555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02690109 216.22146606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02690110 216.22146606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02690111 216.22149658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02690112 216.22149658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02690113 216.22151184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02690114 216.22154236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02690115 216.22157288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02690116 216.22157288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02690117 216.22158813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02690118 216.22158813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02690119 216.22161865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02690120 216.22161865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02690121 216.22164917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02690122 216.22164917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02690123 216.22166443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02690124 216.22166443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02690125 216.22169495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02690126 216.22169495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02690127 216.22172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02690128 216.22172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02690129 216.22174072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02690130 216.22174072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02690131 216.22177124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02690132 216.22177124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02690133 216.22180176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02690134 216.22181702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02690135 216.22184753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02690136 216.22184753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02690137 216.22187805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02690138 216.22187805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02690139 216.22189331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02690140 216.22189331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02690141 216.22192383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02690142 216.22192383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02690143 216.22195435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02690144 216.22195435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02690145 216.22198486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02690146 216.22198486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02690147 216.22200012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02690148 216.22200012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02690149 216.22203064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02690150 216.22203064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02690151 216.22206116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02690152 216.22206116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02690153 216.22207642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02690154 216.22210693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02690155 216.22213745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02690156 216.22213745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02690157 216.22215271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02690158 216.22215271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02690159 216.22218323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02690160 216.22218323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02690161 216.22221375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02690162 216.22221375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02690163 216.22222900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02690164 216.22222900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02690165 216.22225952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02690166 216.22225952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02690167 216.22229004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02690168 216.22229004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02690169 216.22230530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02690170 216.22230530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02690171 216.22233582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02690172 216.22233582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02690173 216.22236633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02690174 216.22238159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02690175 216.22241211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02690176 216.22241211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02690177 216.22244263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02690178 216.22244263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02690179 216.22245789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02690180 216.22245789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02690181 216.22248840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02690182 216.22248840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02690183 216.22251892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02690184 216.22251892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02690185 216.22253418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02690186 216.22253418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02690187 216.22256470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02690188 216.22256470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02690189 216.22259521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02690190 216.22259521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02690191 216.22261047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02690192 216.22261047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02690193 216.22264099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02690194 216.22264099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02690195 216.22267151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02690196 216.22270203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02690197 216.22271729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02690198 216.22271729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02690199 216.22274780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02690200 216.22274780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02690201 216.22277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02690202 216.22277832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02690203 216.22279358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02690204 216.22279358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02690205 216.22282410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02690206 216.22282410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02690207 216.22285461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02690208 216.22285461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02690209 216.22286987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02690210 216.22286987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02690211 216.22290039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02690212 216.22290039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02690213 216.22293091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02690214 216.22293091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02690215 216.22294617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02690216 216.22297668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02690217 216.22300720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02690218 216.22300720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02690219 216.22302246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02690220 216.22302246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02690221 216.22305298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02690222 216.22305298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02690223 216.22308350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02690224 216.22308350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02690225 216.22309875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02690226 216.22309875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02690227 216.22312927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02690228 216.22312927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02690229 216.22315979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02690230 216.22315979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02690231 216.22317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02690232 216.22317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02690233 216.22320557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02690234 216.22320557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02690235 216.22323608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02690236 216.22325134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02690237 216.22328186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02690238 216.22328186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02690239 216.22331238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02690240 216.22331238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02690241 216.22332764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02690242 216.22332764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02690243 216.22335815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02690244 216.22335815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02690245 216.22338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02690246 216.22338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02690247 216.22340393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02690248 216.22340393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02690249 216.22343445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02690250 216.22343445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02690251 216.22346497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02690252 216.22346497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02690253 216.22349548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02690254 216.22349548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02690255 216.22351074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02690256 216.22354126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02690257 216.22357178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02690258 216.22357178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02690259 216.22358704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02690260 216.22358704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02690261 216.22361755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02690262 216.22361755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02690263 216.22364807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02690264 216.22364807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02690265 216.22366333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02690266 216.22366333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02690267 216.22369385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02690268 216.22369385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02690269 216.22372437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02690270 216.22372437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02690271 216.22373962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02690272 216.22373962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02690273 216.22377014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02690274 216.22377014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02690275 216.22380066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02690276 216.22381592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02690277 216.22384644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02690278 216.22384644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02690279 216.22387695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02690280 216.22387695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02690281 216.22389221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02690282 216.22389221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02690283 216.22392273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02690284 216.22392273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02690285 216.22395325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02690286 216.22395325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02690287 216.22396851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02690288 216.22396851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02690289 216.22399902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02690290 216.22399902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02690291 216.22402954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02690292 216.22402954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02690293 216.22404480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02690294 216.22404480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02690295 216.22407532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02690296 216.22407532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02690297 216.22410583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02690298 216.22412109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02690299 216.22415161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02690300 216.22415161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02690301 216.22418213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02690302 216.22418213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02690303 216.22419739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02690304 216.22419739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02690305 216.22422791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02690306 216.22422791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02690307 216.22425842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02690308 216.22425842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02690309 216.22428894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02690310 216.22428894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02690311 216.22430420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02690312 216.22430420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02690313 216.22433472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02690314 216.22433472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02690315 216.22436523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02690316 216.22436523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02690317 216.22438049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02690318 216.22441101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02690319 216.22444153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02690320 216.22444153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02690321 216.22445679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02690322 216.22445679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02690323 216.22448730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02690324 216.22448730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02690325 216.22451782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02690326 216.22451782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02690327 216.22453308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02690328 216.22453308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02690329 216.22456360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02690330 216.22456360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02690331 216.22459412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02690332 216.22459412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02690333 216.22460938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02690334 216.22460938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02690335 216.22463989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02690336 216.22463989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02690337 216.22467041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02690338 216.22467041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02690339 216.22468567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02690340 216.22471619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02690341 216.22474670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02690342 216.22474670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02690343 216.22476196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02690344 216.22476196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02690345 216.22479248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02690346 216.22479248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02690347 216.22482300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02690348 216.22482300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02690349 216.22483826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02690350 216.22483826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02690351 216.22486877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02690352 216.22486877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02690353 216.22489929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02690354 216.22489929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02690355 216.22491455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02690356 216.22491455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02690357 216.22494507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02690358 216.22494507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02690359 216.22497559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02690360 216.22499084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02690361 216.22502136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02690362 216.22502136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02690363 216.22505188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02690364 216.22505188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02690365 216.22508240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02690366 216.22508240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02690367 216.22509766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02690368 216.22509766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02690369 216.22512817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02690370 216.22512817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02690371 216.22515869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02690372 216.22515869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02690373 216.22517395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02690374 216.22517395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02690375 216.22520447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02690376 216.22520447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02690377 216.22523499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02690378 216.22523499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02690379 216.22525024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02690380 216.22525024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02690381 216.22528076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02690382 216.22531128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02690383 216.22532654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02690384 216.22532654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02690385 216.22535706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02690386 216.22535706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02690387 216.22546387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02690388 216.22546387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02690389 216.22547913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02690390 216.22547913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02690391 216.22550964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02690392 216.22550964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02690393 216.22554016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02690394 216.22554016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02690395 216.22555542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02690396 216.22555542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02690397 216.22558594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02690398 216.22558594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02690399 216.22561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02690400 216.22561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02690401 216.22566223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02690402 216.22566223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02690403 216.22569275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02690404 216.22569275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02690405 216.22570801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02690406 216.22570801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02690407 216.22579956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02690408 216.22579956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02690409 216.22581482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02690410 216.22581482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02690411 216.22584534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02690412 216.22584534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02690413 216.22587585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02690414 216.22587585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02690415 216.22589111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02690416 216.22589111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02690417 216.22592163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02690418 216.22592163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02690419 216.22595215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02690420 216.22595215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02690421 216.22596741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02690422 216.22599792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02690423 216.22602844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02690424 216.22602844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02690425 216.22604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02690426 216.22604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02690427 216.22607422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02690428 216.22607422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02690429 216.22610474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02690430 216.22610474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02690431 216.22612000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02690432 216.22612000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02690433 216.22615051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02690434 216.22615051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02690435 216.22618103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02690436 216.22618103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02690437 216.22619629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02690438 216.22619629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02690439 216.22622681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02690440 216.22622681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02690441 216.22625732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02690442 216.22627258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02690443 216.22630310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02690444 216.22630310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02690445 216.22633362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02690446 216.22633362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02690447 216.22634888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02690448 216.22634888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02690449 216.22637939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02690450 216.22637939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02690451 216.22640991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02690452 216.22640991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02690453 216.22642517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02690454 216.22642517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02690455 216.22645569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02690456 216.22645569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02690457 216.22648621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02690458 216.22648621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02690459 216.22650146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02690460 216.22650146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02690461 216.22653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02690462 216.22656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02690463 216.22659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02690464 216.22659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02690465 216.22660828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02690466 216.22660828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02690467 216.22663879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02690468 216.22663879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02690469 216.22666931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02690470 216.22666931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02690471 216.22668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02690472 216.22668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02690473 216.22671509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02690474 216.22671509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02690475 216.22674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02690476 216.22674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02690477 216.22676086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02690478 216.22676086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02690479 216.22679138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02690480 216.22679138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02690481 216.22682190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02690482 216.22683716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02690483 216.22686768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02690484 216.22686768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02690485 216.22689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02690486 216.22689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02690487 216.22691345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02690488 216.22691345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02690489 216.22694397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02690490 216.22694397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02690491 216.22697449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02690492 216.22697449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02690493 216.22698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02690494 216.22698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02690495 216.22702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02690496 216.22702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02690497 216.22705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02690498 216.22705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02690499 216.22706604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02690500 216.22706604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02690501 216.22709656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02690502 216.22709656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02690503 216.22712708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02690504 216.22714233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02690505 216.22717285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02690506 216.22717285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02690507 216.22720337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02690508 216.22720337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02690509 216.22721863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02690510 216.22721863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02690511 216.22724915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02690512 216.22724915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02690513 216.22727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02690514 216.22727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02690515 216.22729492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02690516 216.22729492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02690517 216.22732544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02690518 216.22732544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02690519 216.22735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02690520 216.22735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02690521 216.22738647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02690522 216.22738647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02690523 216.22740173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02690524 216.22743225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02690525 216.22746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02690526 216.22746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02690527 216.22747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02690528 216.22747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02690529 216.22750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02690530 216.22750854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02690531 216.22753906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02690532 216.22753906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02690533 216.22755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02690534 216.22755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02690535 216.22758484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02690536 216.22758484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02690537 216.22761536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02690538 216.22761536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02690539 216.22763062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02690540 216.22763062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02690541 216.22766113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02690542 216.22766113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02690543 216.22769165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02690544 216.22770691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02690545 216.22773743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02690546 216.22773743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02690547 216.22776794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02690548 216.22776794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02690549 216.22778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02690550 216.22778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02690551 216.22781372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02690552 216.22781372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02690553 216.22784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02690554 216.22784424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02690555 216.22785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02690556 216.22785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02690557 216.22789001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02690558 216.22789001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02690559 216.22792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02690560 216.22792053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02690561 216.22793579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02690562 216.22793579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02690563 216.22796631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02690564 216.22799683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02690565 216.22801208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02690566 216.22801208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02690567 216.22804260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02690568 216.22804260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02690569 216.22807312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02690570 216.22807312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02690571 216.22808838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02690572 216.22808838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02690573 216.22811890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02690574 216.22811890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02690575 216.22814941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02690576 216.22814941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02690577 216.22817993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02690578 216.22817993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02690579 216.22819519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02690580 216.22819519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02690581 216.22822571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02690582 216.22822571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02690583 216.22825623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02690584 216.22827148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02690585 216.22830200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02690586 216.22830200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02690587 216.22833252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02690588 216.22833252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02690589 216.22834778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02690590 216.22834778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02690591 216.22837830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02690592 216.22837830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02690593 216.22840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02690594 216.22840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02690595 216.22842407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02690596 216.22842407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02690597 216.22845459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02690598 216.22845459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02690599 216.22848511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02690600 216.22848511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02690601 216.22850037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02690602 216.22850037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02690603 216.22853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02690604 216.22856140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02690605 216.22857666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02690606 216.22857666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02690607 216.22860718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02690608 216.22860718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02690609 216.22863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02690610 216.22863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02690611 216.22865295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02690612 216.22865295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02690613 216.22868347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02690614 216.22868347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02690615 216.22871399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02690616 216.22871399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02690617 216.22872925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02690618 216.22872925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02690619 216.22875977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02690620 216.22875977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02690621 216.22879028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02690622 216.22879028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02690623 216.22880554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02690624 216.22880554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02690625 216.22886658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02690626 216.22886658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02690627 216.22889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02690628 216.22889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02690629 216.22891235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02690630 216.22891235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02690631 216.22894287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02690632 216.22894287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02690633 216.22897339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02690634 216.22897339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02690635 216.22898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02690636 216.22898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02690637 216.22901917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02690638 216.22901917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02690639 216.22904968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02690640 216.22904968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02690641 216.22906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02690642 216.22906494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02690643 216.22909546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02690644 216.22912598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02690645 216.22914124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02690646 216.22914124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02690647 216.22917175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02690648 216.22917175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02690649 216.22920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02690650 216.22920227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02690651 216.22921753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02690652 216.22921753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02690653 216.22924805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02690654 216.22924805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02690655 216.22927856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02690656 216.22927856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02690657 216.22929382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02690658 216.22929382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02690659 216.22932434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02690660 216.22932434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02690661 216.22935486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02690662 216.22935486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02690663 216.22937012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02690664 216.22940063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02690665 216.22943115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02690666 216.22943115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02690667 216.22944641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02690668 216.22944641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02690669 216.22947693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02690670 216.22947693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02690671 216.22950745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02690672 216.22950745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02690673 216.22952271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02690674 216.22952271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02690675 216.22955322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02690676 216.22955322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02690677 216.22958374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02690678 216.22958374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02690679 216.22959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02690680 216.22959900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02690681 216.22962952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02690682 216.22962952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02690683 216.22966003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02690684 216.22966003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02690685 216.22969055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02690686 216.22970581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02690687 216.22973633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02690688 216.22973633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02690689 216.22976685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02690690 216.22976685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02690691 216.22978210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02690692 216.22978210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02690693 216.22981262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02690694 216.22981262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02690695 216.22984314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02690696 216.22984314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02690697 216.22985840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02690698 216.22985840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02690699 216.22988892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02690700 216.22988892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02690701 216.22991943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02690702 216.22991943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02690703 216.22993469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02690704 216.22993469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02690705 216.22996521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02690706 216.22999573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02690707 216.23001099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02690708 216.23001099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02690709 216.23004150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02690710 216.23004150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02690711 216.23007202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02690712 216.23007202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02690713 216.23008728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02690714 216.23008728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02690715 216.23011780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02690716 216.23011780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02690717 216.23014832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02690718 216.23014832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02690719 216.23016357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02690720 216.23016357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02690721 216.23019409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02690722 216.23019409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02690723 216.23022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02690724 216.23022461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02690725 216.23023987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02690726 216.23027039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02690727 216.23030090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02690728 216.23030090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02690729 216.23031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02690730 216.23031616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02690731 216.23034668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02690732 216.23034668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02690733 216.23037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02690734 216.23037720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02690735 216.23039246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02690736 216.23039246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02690737 216.23042297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02690738 216.23042297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02690739 216.23045349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02690740 216.23045349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02690741 216.23048401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02690742 216.23048401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02690743 216.23049927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02690744 216.23049927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02690745 216.23052979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02690746 216.23052979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02690747 216.23056030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02690748 216.23057556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02690749 216.23060608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02690750 216.23060608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02690751 216.23063660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02690752 216.23063660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02690753 216.23065186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02690754 216.23065186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02690755 216.23068237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02690756 216.23068237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02690757 216.23071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02690758 216.23071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02690759 216.23072815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02690760 216.23072815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02690761 216.23075867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02690762 216.23075867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02690763 216.23078918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02690764 216.23078918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02690765 216.23080444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02690766 216.23080444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02690767 216.23083496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02690768 216.23086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02690769 216.23088074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02690770 216.23088074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02690771 216.23091125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02690772 216.23091125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02690773 216.23094177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02690774 216.23094177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02690775 216.23095703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02690776 216.23095703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02690777 216.23098755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02690778 216.23098755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02690779 216.23101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02690780 216.23101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02690781 216.23103333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02690782 216.23103333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02690783 216.23106384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02690784 216.23106384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02690785 216.23109436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02690786 216.23109436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02690787 216.23110962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02690788 216.23114014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02690789 216.23117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02690790 216.23117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02690791 216.23120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02690792 216.23120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02690793 216.23121643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02690794 216.23121643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02690795 216.23124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02690796 216.23124695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02690797 216.23127747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02690798 216.23127747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02690799 216.23129272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02690800 216.23129272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02690801 216.23132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02690802 216.23132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02690803 216.23135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02690804 216.23135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02690805 216.23136902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02690806 216.23136902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02690807 216.23139954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02690808 216.23139954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02690809 216.23143005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02690810 216.23144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02690811 216.23147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02690812 216.23147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02690813 216.23150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02690814 216.23150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02690815 216.23152161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02690816 216.23152161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02690817 216.23155212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02690818 216.23155212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02690819 216.23158264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02690820 216.23158264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02690821 216.23159790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02690822 216.23159790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02690823 216.23162842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02690824 216.23162842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02690825 216.23165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02690826 216.23165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02690827 216.23167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02690828 216.23167419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02690829 216.23170471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02690830 216.23173523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02690831 216.23175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02690832 216.23175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02690833 216.23178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02690834 216.23178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02690835 216.23181152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02690836 216.23181152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02690837 216.23182678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02690838 216.23182678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02690839 216.23185730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02690840 216.23185730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02690841 216.23188782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02690842 216.23188782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02690843 216.23190308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02690844 216.23190308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02690845 216.23193359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02690846 216.23193359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02690847 216.23196411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02690848 216.23196411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02690849 216.23199463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02690850 216.23199463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02690851 216.23200989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02690852 216.23204041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02690853 216.23207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02690854 216.23207092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02690855 216.23208618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02690856 216.23208618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02690857 216.23211670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02690858 216.23211670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02690859 216.23214722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02690860 216.23214722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02690861 216.23216248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02690862 216.23216248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02690863 216.23219299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02690864 216.23219299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02690865 216.23222351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02690866 216.23222351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02690867 216.23223877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02690868 216.23223877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02690869 216.23226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02690870 216.23226929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02690871 216.23229980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02690872 216.23231506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02690873 216.23234558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02690874 216.23234558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02690875 216.23237610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02690876 216.23237610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02690877 216.23239136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02690878 216.23239136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02690879 216.23242188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02690880 216.23242188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02690881 216.23245239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02690882 216.23245239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02690883 216.23246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02690884 216.23246765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02690885 216.23249817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02690886 216.23249817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02690887 216.23252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02690888 216.23252869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02690889 216.23254395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02690890 216.23254395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02690891 216.23257446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02690892 216.23260498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02690893 216.23262024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02690894 216.23262024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02690895 216.23265076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02690896 216.23265076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02690897 216.23268127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02690898 216.23268127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02690899 216.23269653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02690900 216.23269653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02690901 216.23272705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02690902 216.23272705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02690903 216.23275757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02690904 216.23275757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02690905 216.23278809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02690906 216.23278809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02690907 216.23280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02690908 216.23280334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02690909 216.23283386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02690910 216.23283386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02690911 216.23286438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02690912 216.23286438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02690913 216.23287964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02690914 216.23291016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02690915 216.23294067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02690916 216.23294067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02690917 216.23295593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02690918 216.23295593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02690919 216.23298645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02690920 216.23298645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02690921 216.23301697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02690922 216.23301697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02690923 216.23303223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02690924 216.23303223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02690925 216.23306274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02690926 216.23306274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02690927 216.23309326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02690928 216.23309326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02690929 216.23310852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02690930 216.23310852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02690931 216.23313904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02690932 216.23313904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02690933 216.23316956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02690934 216.23318481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02690935 216.23321533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02690936 216.23321533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02690937 216.23324585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02690938 216.23324585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02690939 216.23326111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02690940 216.23326111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02690941 216.23329163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02690942 216.23329163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02690943 216.23332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02690944 216.23332214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02690945 216.23333740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02690946 216.23333740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02690947 216.23336792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02690948 216.23336792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02690949 216.23339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02690950 216.23339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02690951 216.23341370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02690952 216.23341370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02690953 216.23344421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02690954 216.23344421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02690955 216.23347473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02690956 216.23348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02690957 216.23352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02690958 216.23352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02690959 216.23355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02690960 216.23355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02690961 216.23358154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02690962 216.23358154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02690963 216.23359680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02690964 216.23359680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02690965 216.23362732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02690966 216.23362732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02690967 216.23365784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02690968 216.23365784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02690969 216.23367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02690970 216.23367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02690971 216.23370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02690972 216.23370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02690973 216.23373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02690974 216.23373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02690975 216.23374939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02690976 216.23377991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02690977 216.23381042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02690978 216.23381042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02690979 216.23382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02690980 216.23382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02690981 216.23385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02690982 216.23385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02690983 216.23388672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02690984 216.23388672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02690985 216.23390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02690986 216.23390198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02690987 216.23393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02690988 216.23393250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02690989 216.23396301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02690990 216.23396301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02690991 216.23397827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02690992 216.23397827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02690993 216.23400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02690994 216.23400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02690995 216.23403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02690996 216.23403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02690997 216.23405457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02690998 216.23408508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02690999 216.23411560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02691000 216.23411560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02691001 216.23413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02691002 216.23413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02691003 216.23416138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02691004 216.23416138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02691005 216.23419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02691006 216.23419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02691007 216.23420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02691008 216.23420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02691009 216.23423767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02691010 216.23423767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02691011 216.23426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02691012 216.23426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02691013 216.23429871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02691014 216.23429871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02691015 216.23431396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02691016 216.23431396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02691017 216.23434448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02691018 216.23437500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02691019 216.23439026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02691020 216.23439026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02691021 216.23442078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02691022 216.23442078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02691023 216.23445129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02691024 216.23445129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02691025 216.23446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02691026 216.23446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02691027 216.23449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02691028 216.23449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02691029 216.23452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02691030 216.23452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02691031 216.23454285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02691032 216.23454285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02691033 216.23457336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02691034 216.23457336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02691035 216.23460388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02691036 216.23460388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02691037 216.23461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02691038 216.23464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02691039 216.23468018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02691040 216.23468018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02691041 216.23475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02691042 216.23475647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02691043 216.23477173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02691044 216.23477173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02691045 216.23480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02691046 216.23480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02691047 216.23483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02691048 216.23483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02691049 216.23484802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02691050 216.23484802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02691051 216.23487854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02691052 216.23487854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02691053 216.23490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02691054 216.23490906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02691055 216.23492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02691056 216.23492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02691057 216.23495483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02691058 216.23495483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02691059 216.23498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02691060 216.23500061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02691061 216.23503113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02691062 216.23503113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02691063 216.23506165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02691064 216.23506165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02691065 216.23509216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02691066 216.23509216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02691067 216.23510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02691068 216.23510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02691069 216.23513794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02691070 216.23513794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02691071 216.23516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02691072 216.23516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02691073 216.23518372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02691074 216.23518372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02691075 216.23521423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02691076 216.23521423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02691077 216.23524475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02691078 216.23526001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02691079 216.23529053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02691080 216.23529053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02691081 216.23532104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02691082 216.23532104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02691083 216.23533630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02691084 216.23533630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02691085 216.23536682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02691086 216.23536682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02691087 216.23539734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02691088 216.23539734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02691089 216.23541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02691090 216.23541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02691091 216.23544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02691092 216.23544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02691093 216.23547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02691094 216.23547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02691095 216.23548889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02691096 216.23548889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02691097 216.23551941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02691098 216.23554993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02691099 216.23556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02691100 216.23556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02691101 216.23559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02691102 216.23559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02691103 216.23562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02691104 216.23562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02691105 216.23564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02691106 216.23564148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02691107 216.23567200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02691108 216.23567200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02691109 216.23570251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02691110 216.23570251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02691111 216.23571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02691112 216.23571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02691113 216.23574829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02691114 216.23574829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02691115 216.23577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02691116 216.23577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02691117 216.23579407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02691118 216.23579407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02691119 216.23582458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02691120 216.23585510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02691121 216.23588562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02691122 216.23588562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02691123 216.23590088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02691124 216.23590088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02691125 216.23593140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02691126 216.23593140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02691127 216.23596191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02691128 216.23596191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02691129 216.23597717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02691130 216.23597717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02691131 216.23600769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02691132 216.23600769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02691133 216.23603821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02691134 216.23603821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02691135 216.23605347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02691136 216.23605347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02691137 216.23608398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02691138 216.23608398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02691139 216.23611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02691140 216.23612976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02691141 216.23616028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02691142 216.23616028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02691143 216.23619080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02691144 216.23619080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02691145 216.23620605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02691146 216.23620605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02691147 216.23623657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02691148 216.23623657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02691149 216.23626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02691150 216.23626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02691151 216.23628235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02691152 216.23628235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02691153 216.23631287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02691154 216.23631287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02691155 216.23634338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02691156 216.23634338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02691157 216.23635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02691158 216.23635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02691159 216.23638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02691160 216.23641968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02691161 216.23643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02691162 216.23643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02691163 216.23646545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02691164 216.23646545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02691165 216.23649597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02691166 216.23649597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02691167 216.23651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02691168 216.23651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02691169 216.23654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02691170 216.23654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02691171 216.23657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02691172 216.23657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02691173 216.23660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02691174 216.23660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02691175 216.23661804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02691176 216.23661804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02691177 216.23664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02691178 216.23664856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02691179 216.23667908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02691180 216.23669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02691181 216.23672485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02691182 216.23672485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02691183 216.23675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02691184 216.23675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02691185 216.23677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02691186 216.23677063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02691187 216.23680115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02691188 216.23680115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02691189 216.23683167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02691190 216.23683167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02691191 216.23684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02691192 216.23684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02691193 216.23687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02691194 216.23687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02691195 216.23690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02691196 216.23690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02691197 216.23692322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02691198 216.23692322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02691199 216.23695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02691200 216.23698425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02691201 216.23699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02691202 216.23699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02691203 216.23703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02691204 216.23703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02691205 216.23706055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02691206 216.23706055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02691207 216.23707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02691208 216.23707581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02691209 216.23710632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02691210 216.23710632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02691211 216.23713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02691212 216.23713684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02691213 216.23715210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02691214 216.23715210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02691215 216.23718262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02691216 216.23718262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02691217 216.23721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02691218 216.23721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02691219 216.23722839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02691220 216.23725891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02691221 216.23728943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02691222 216.23728943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02691223 216.23730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02691224 216.23730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02691225 216.23733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02691226 216.23733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02691227 216.23736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02691228 216.23736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02691229 216.23739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02691230 216.23739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02691231 216.23741150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02691232 216.23741150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02691233 216.23744202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02691234 216.23744202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02691235 216.23747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02691236 216.23747253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02691237 216.23748779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02691238 216.23748779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02691239 216.23751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02691240 216.23751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02691241 216.23754883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02691242 216.23756409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02691243 216.23759460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02691244 216.23759460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02691245 216.23762512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02691246 216.23762512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02691247 216.23764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02691248 216.23764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02691249 216.23767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02691250 216.23767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02691251 216.23770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02691252 216.23770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02691253 216.23771667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02691254 216.23771667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02691255 216.23774719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02691256 216.23774719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02691257 216.23777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02691258 216.23777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02691259 216.23779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02691260 216.23779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02691261 216.23785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02691262 216.23785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02691263 216.23786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02691264 216.23786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02691265 216.23789978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02691266 216.23789978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02691267 216.23793030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02691268 216.23793030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02691269 216.23794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02691270 216.23794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02691271 216.23797607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02691272 216.23797607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02691273 216.23800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02691274 216.23800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02691275 216.23802185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02691276 216.23802185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02691277 216.23805237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02691278 216.23805237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02691279 216.23808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02691280 216.23808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02691281 216.23809814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02691282 216.23812866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02691283 216.23815918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02691284 216.23815918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02691285 216.23818970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02691286 216.23818970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02691287 216.23820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02691288 216.23820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02691289 216.23823547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02691290 216.23823547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02691291 216.23826599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02691292 216.23826599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02691293 216.23828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02691294 216.23828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02691295 216.23831177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02691296 216.23831177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02691297 216.23834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02691298 216.23834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02691299 216.23835754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02691300 216.23835754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02691301 216.23838806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02691302 216.23841858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02691303 216.23843384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02691304 216.23843384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02691305 216.23846436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02691306 216.23846436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02691307 216.23849487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02691308 216.23849487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02691309 216.23851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02691310 216.23851013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02691311 216.23854065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02691312 216.23854065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02691313 216.23857117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02691314 216.23857117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02691315 216.23858643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02691316 216.23858643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02691317 216.23861694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02691318 216.23861694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02691319 216.23864746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02691320 216.23864746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02691321 216.23866272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02691322 216.23869324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02691323 216.23872375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02691324 216.23872375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02691325 216.23873901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02691326 216.23873901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02691327 216.23876953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02691328 216.23876953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02691329 216.23880005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02691330 216.23880005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02691331 216.23881531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02691332 216.23881531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02691333 216.23884583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02691334 216.23884583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02691335 216.23887634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02691336 216.23887634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02691337 216.23889160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02691338 216.23889160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02691339 216.23892212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02691340 216.23892212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02691341 216.23895264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02691342 216.23898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02691343 216.23899841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02691344 216.23899841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02691345 216.23902893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02691346 216.23902893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02691347 216.23905945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02691348 216.23905945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02691349 216.23907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02691350 216.23907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02691351 216.23910522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02691352 216.23910522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02691353 216.23913574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02691354 216.23913574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02691355 216.23915100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02691356 216.23915100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02691357 216.23918152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02691358 216.23918152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02691359 216.23921204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02691360 216.23921204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02691361 216.23922729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02691362 216.23925781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02691363 216.23928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02691364 216.23928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02691365 216.23930359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02691366 216.23930359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02691367 216.23933411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02691368 216.23933411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02691369 216.23936462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02691370 216.23936462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02691371 216.23937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02691372 216.23937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02691373 216.23941040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02691374 216.23941040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02691375 216.23944092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02691376 216.23944092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02691377 216.23945618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02691378 216.23945618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02691379 216.23948669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02691380 216.23948669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02691381 216.23951721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02691382 216.23953247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02691383 216.23970032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02691384 216.23971558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02691385 216.23974609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02691386 216.23974609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02691387 216.23977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02691388 216.23977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02691389 216.23979187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02691390 216.23979187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02691391 216.23982239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02691392 216.23982239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02691393 216.23985291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02691394 216.23985291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02691395 216.23986816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02691396 216.23986816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02691397 216.23989868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02691398 216.23989868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02691399 216.23992920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02691400 216.23992920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02691401 216.23994446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02691402 216.23994446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02691403 216.23997498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02691404 216.24000549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02691405 216.24002075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02691406 216.24002075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02691407 216.24005127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02691408 216.24005127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02691409 216.24008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02691410 216.24008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02691411 216.24009705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02691412 216.24009705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02691413 216.24012756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02691414 216.24012756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02691415 216.24015808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02691416 216.24015808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02691417 216.24017334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02691418 216.24017334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02691419 216.24020386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02691420 216.24020386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02691421 216.24023438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02691422 216.24023438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02691423 216.24024963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02691424 216.24028015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02691425 216.24031067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02691426 216.24031067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02691427 216.24032593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02691428 216.24032593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02691429 216.24035645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02691430 216.24035645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02691431 216.24038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02691432 216.24038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02691433 216.24040222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02691434 216.24040222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02691435 216.24043274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02691436 216.24043274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02691437 216.24046326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02691438 216.24046326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02691439 216.24057007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02691440 216.24057007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02691441 216.24058533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02691442 216.24058533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02691443 216.24061584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02691444 216.24061584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02691445 216.24064636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02691446 216.24064636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02691447 216.24066162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02691448 216.24066162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02691449 216.24069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02691450 216.24069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02691451 216.24072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02691452 216.24073792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02691453 216.24076843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02691454 216.24076843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02691455 216.24079895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02691456 216.24079895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02691457 216.24081421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02691458 216.24081421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02691459 216.24084473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02691460 216.24084473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02691461 216.24087524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02691462 216.24087524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02691463 216.24089050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02691464 216.24089050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02691465 216.24092102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02691466 216.24092102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02691467 216.24095154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02691468 216.24095154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02691469 216.24096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02691470 216.24096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02691471 216.24099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02691472 216.24099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02691473 216.24104309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02691474 216.24104309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02691475 216.24107361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02691476 216.24107361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02691477 216.24110413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02691478 216.24110413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02691479 216.24111938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02691480 216.24111938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02691481 216.24114990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02691482 216.24114990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02691483 216.24118042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02691484 216.24118042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02691485 216.24119568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02691486 216.24119568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02691487 216.24122620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02691488 216.24122620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02691489 216.24125671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02691490 216.24125671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02691491 216.24128723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02691492 216.24130249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02691493 216.24133301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02691494 216.24133301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02691495 216.24136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02691496 216.24136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02691497 216.24137878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02691498 216.24137878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02691499 216.24140930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02691500 216.24140930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02691501 216.24143982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02691502 216.24143982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02691503 216.24153137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02691504 216.24153137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02691505 216.24156189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02691506 216.24156189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02691507 216.24159241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02691508 216.24159241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02691509 216.24160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02691510 216.24160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02691511 216.24163818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02691512 216.24163818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02691513 216.24166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02691514 216.24166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02691515 216.24168396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02691516 216.24168396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02691517 216.24171448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02691518 216.24171448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02691519 216.24174500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02691520 216.24176025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02691521 216.24179077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02691522 216.24179077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02691523 216.24182129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02691524 216.24182129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02691525 216.24183655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02691526 216.24183655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02691527 216.24186707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02691528 216.24186707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02691529 216.24189758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02691530 216.24189758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02691531 216.24191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02691532 216.24191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02691533 216.24194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02691534 216.24194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02691535 216.24197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02691536 216.24197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02691537 216.24200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02691538 216.24200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02691539 216.24201965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02691540 216.24205017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02691541 216.24208069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02691542 216.24208069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02691543 216.24209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02691544 216.24209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02691545 216.24212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02691546 216.24212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02691547 216.24215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02691548 216.24215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02691549 216.24217224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02691550 216.24217224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02691551 216.24220276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02691552 216.24220276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02691553 216.24223328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02691554 216.24223328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02691555 216.24224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02691556 216.24224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02691557 216.24227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02691558 216.24227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02691559 216.24230957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02691560 216.24232483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02691561 216.24235535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02691562 216.24235535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02691563 216.24238586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02691564 216.24238586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02691565 216.24246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02691566 216.24246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02691567 216.24247742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02691568 216.24250793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02691569 216.24253845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02691570 216.24253845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02691571 216.24255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02691572 216.24255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02691573 216.24258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02691574 216.24258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02691575 216.24261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02691576 216.24261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02691577 216.24263000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02691578 216.24263000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02691579 216.24266052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02691580 216.24266052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02691581 216.24269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02691582 216.24269104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02691583 216.24270630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02691584 216.24270630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02691585 216.24273682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02691586 216.24273682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02691587 216.24276733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02691588 216.24279785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02691589 216.24281311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02691590 216.24281311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02691591 216.24284363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02691592 216.24284363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02691593 216.24287415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02691594 216.24287415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02691595 216.24288940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02691596 216.24288940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02691597 216.24291992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02691598 216.24291992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02691599 216.24295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02691600 216.24295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02691601 216.24296570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02691602 216.24296570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02691603 216.24299622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02691604 216.24299622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02691605 216.24302673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02691606 216.24302673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02691607 216.24304199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02691608 216.24307251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02691609 216.24310303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02691610 216.24310303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02691611 216.24311829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02691612 216.24311829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02691613 216.24314880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02691614 216.24314880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02691615 216.24317932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02691616 216.24317932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02691617 216.24319458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02691618 216.24319458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02691619 216.24322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02691620 216.24322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02691621 216.24325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02691622 216.24325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02691623 216.24327087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02691624 216.24327087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02691625 216.24330139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02691626 216.24333191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02691627 216.24334717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02691628 216.24334717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02691629 216.24342346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02691630 216.24342346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02691631 216.24345398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02691632 216.24345398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02691633 216.24348450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02691634 216.24349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02691635 216.24353027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02691636 216.24353027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02691637 216.24356079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02691638 216.24356079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02691639 216.24359131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02691640 216.24359131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02691641 216.24360657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02691642 216.24360657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02691643 216.24363708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02691644 216.24363708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02691645 216.24366760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02691646 216.24366760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02691647 216.24368286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02691648 216.24368286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02691649 216.24371338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02691650 216.24371338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02691651 216.24374390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02691652 216.24374390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02691653 216.24378967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02691654 216.24378967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02691655 216.24382019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02691656 216.24382019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02691657 216.24383545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02691658 216.24383545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02691659 216.24386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02691660 216.24386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02691661 216.24389648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02691662 216.24389648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02691663 216.24391174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02691664 216.24391174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02691665 216.24394226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02691666 216.24394226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02691667 216.24397278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02691668 216.24397278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02691669 216.24398804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02691670 216.24398804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02691671 216.24401855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02691672 216.24404907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02691673 216.24406433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02691674 216.24406433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02691675 216.24409485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02691676 216.24409485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02691677 216.24412537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02691678 216.24412537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02691679 216.24414063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02691680 216.24414063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02691681 216.24417114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02691682 216.24417114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02691683 216.24420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02691684 216.24420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02691685 216.24421692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02691686 216.24421692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02691687 216.24424744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02691688 216.24424744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02691689 216.24427795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02691690 216.24427795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02691691 216.24429321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02691692 216.24429321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02691693 216.24440002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02691694 216.24443054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02691695 216.24446106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02691696 216.24446106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02691697 216.24447632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02691698 216.24447632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02691699 216.24450684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02691700 216.24450684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02691701 216.24453735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02691702 216.24453735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02691703 216.24455261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02691704 216.24455261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02691705 216.24458313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02691706 216.24458313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02691707 216.24461365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02691708 216.24461365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02691709 216.24462891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02691710 216.24462891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02691711 216.24465942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02691712 216.24468994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02691713 216.24470520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02691714 216.24470520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02691715 216.24473572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02691716 216.24473572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02691717 216.24476624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02691718 216.24476624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02691719 216.24478149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02691720 216.24478149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02691721 216.24481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02691722 216.24481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02691723 216.24484253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02691724 216.24484253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02691725 216.24485779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02691726 216.24485779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02691727 216.24488831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02691728 216.24488831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02691729 216.24491882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02691730 216.24491882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02691731 216.24493408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02691732 216.24493408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02691733 216.24496460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02691734 216.24499512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02691735 216.24501038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02691736 216.24501038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02691737 216.24504089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02691738 216.24504089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02691739 216.24507141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02691740 216.24507141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02691741 216.24510193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02691742 216.24510193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02691743 216.24511719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02691744 216.24511719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02691745 216.24514771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02691746 216.24514771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02691747 216.24517822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02691748 216.24517822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02691749 216.24519348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02691750 216.24519348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02691751 216.24522400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02691752 216.24525452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02691753 216.24526978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02691754 216.24526978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02691755 216.24530029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02691756 216.24530029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02691757 216.24533081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02691758 216.24533081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02691759 216.24534607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02691760 216.24534607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02691761 216.24537659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02691762 216.24537659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02691763 216.24540710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02691764 216.24540710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02691765 216.24542236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02691766 216.24542236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02691767 216.24545288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02691768 216.24545288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02691769 216.24548340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02691770 216.24548340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02691771 216.24549866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02691772 216.24552917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02691773 216.24555969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02691774 216.24555969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02691775 216.24557495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02691776 216.24557495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02691777 216.24560547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02691778 216.24560547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02691779 216.24563599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02691780 216.24563599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02691781 216.24565125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02691782 216.24565125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02691783 216.24568176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02691784 216.24568176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02691785 216.24571228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02691786 216.24571228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02691787 216.24572754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02691788 216.24572754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02691789 216.24575806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02691790 216.24575806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02691791 216.24578857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02691792 216.24580383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02691793 216.24583435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02691794 216.24583435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02691795 216.24586487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02691796 216.24586487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02691797 216.24589539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02691798 216.24589539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02691799 216.24591064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02691800 216.24591064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02691801 216.24594116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02691802 216.24594116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02691803 216.24597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02691804 216.24597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02691805 216.24598694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02691806 216.24598694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02691807 216.24601746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02691808 216.24601746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02691809 216.24604797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02691810 216.24604797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02691811 216.24606323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02691812 216.24609375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02691813 216.24612427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02691814 216.24612427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02691815 216.24613953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02691816 216.24613953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02691817 216.24617004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02691818 216.24617004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02691819 216.24620056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02691820 216.24620056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02691821 216.24621582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02691822 216.24621582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02691823 216.24624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02691824 216.24624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02691825 216.24627686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02691826 216.24627686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02691827 216.24629211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02691828 216.24629211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02691829 216.24632263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02691830 216.24635315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02691831 216.24636841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02691832 216.24636841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02691833 216.24639893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02691834 216.24639893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02691835 216.24642944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02691836 216.24642944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02691837 216.24652100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02691838 216.24652100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02691839 216.24655151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02691840 216.24655151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02691841 216.24658203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02691842 216.24658203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02691843 216.24659729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02691844 216.24659729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02691845 216.24662781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02691846 216.24662781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02691847 216.24665833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02691848 216.24665833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02691849 216.24670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02691850 216.24670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02691851 216.24673462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02691852 216.24673462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02691853 216.24676514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02691854 216.24676514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02691855 216.24678040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02691856 216.24678040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02691857 216.24681091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02691858 216.24681091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02691859 216.24684143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02691860 216.24684143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02691861 216.24685669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02691862 216.24685669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02691863 216.24688721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02691864 216.24688721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02691865 216.24691772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02691866 216.24691772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02691867 216.24693298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02691868 216.24693298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02691869 216.24696350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02691870 216.24696350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02691871 216.24699402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02691872 216.24699402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02691873 216.24703979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02691874 216.24703979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02691875 216.24707031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02691876 216.24707031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02691877 216.24708557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02691878 216.24708557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02691879 216.24711609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02691880 216.24711609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02691881 216.24714661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02691882 216.24714661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02691883 216.24716187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02691884 216.24716187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02691885 216.24719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02691886 216.24719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02691887 216.24722290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02691888 216.24722290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02691889 216.24723816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02691890 216.24723816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02691891 216.24726868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02691892 216.24726868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02691893 216.24729919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02691894 216.24729919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02691895 216.24731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02691896 216.24734497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02691897 216.24734497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02691898 216.24737549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02691899 216.24740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02691900 216.24740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02691901 216.24748230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02691902 216.24749756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02691903 216.24752808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02691904 216.24752808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02691905 216.24755859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02691906 216.24755859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02691907 216.24765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02691908 216.24765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02691909 216.24768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02691910 216.24768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02691911 216.24771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02691912 216.24771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02691913 216.24772644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02691914 216.24772644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02691915 216.24775696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02691916 216.24775696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02691917 216.24778748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02691918 216.24778748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02691919 216.24780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02691920 216.24780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02691921 216.24783325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02691922 216.24783325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02691923 216.24786377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02691924 216.24787903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02691925 216.24787903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02691926 216.24790955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02691927 216.24794006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02691928 216.24794006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02691929 216.24795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02691930 216.24795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02691931 216.24798584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02691932 216.24798584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02691933 216.24801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02691934 216.24801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02691935 216.24803162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02691936 216.24803162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02691937 216.24806213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02691938 216.24806213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02691939 216.24809265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02691940 216.24809265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02691941 216.24810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02691942 216.24810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02691943 216.24813843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02691944 216.24813843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02691945 216.24816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02691946 216.24816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02691947 216.24819946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02691948 216.24819946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02691949 216.24821472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02691950 216.24821472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02691951 216.24824524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02691952 216.24824524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02691953 216.24827576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02691954 216.24827576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02691955 216.24829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02691956 216.24829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02691957 216.24832153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02691958 216.24832153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02691959 216.24836731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02691960 216.24836731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02691961 216.24839783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02691962 216.24839783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02691963 216.24842834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02691964 216.24842834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02691965 216.24844360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02691966 216.24844360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02691967 216.24847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02691968 216.24847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02691969 216.24850464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02691970 216.24850464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02691971 216.24851990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02691972 216.24851990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02691973 216.24855042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02691974 216.24855042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02691975 216.24858093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02691976 216.24858093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02691977 216.24862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02691978 216.24862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02691979 216.24865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02691980 216.24865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02691981 216.24867249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02691982 216.24867249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02691983 216.24870300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02691984 216.24870300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02691985 216.24873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02691986 216.24873352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02691987 216.24874878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02691988 216.24874878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02691989 216.24877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02691990 216.24877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02691991 216.24880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02691992 216.24880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02691993 216.24882507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02691994 216.24882507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02691995 216.24885559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02691996 216.24888611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02691997 216.24890137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02691998 216.24890137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02691999 216.24893188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02692000 216.24893188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02692001 216.24896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02692002 216.24896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02692003 216.24899292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02692004 216.24899292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02692005 216.24900818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02692006 216.24900818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02692007 216.24903870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02692008 216.24903870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02692009 216.24906921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02692010 216.24906921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02692011 216.24908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02692012 216.24908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02692013 216.24911499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02692014 216.24911499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02692015 216.24914551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02692016 216.24914551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02692017 216.24919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02692018 216.24919128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02692019 216.24922180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02692020 216.24922180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02692021 216.24923706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02692022 216.24923706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02692023 216.24926758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02692024 216.24926758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02692025 216.24929810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02692026 216.24929810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02692027 216.24931335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02692028 216.24931335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02692029 216.24934387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02692030 216.24934387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02692031 216.24937439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02692032 216.24937439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02692033 216.24938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02692034 216.24938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02692035 216.24942017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02692036 216.24942017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02692037 216.24945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02692038 216.24946594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02692039 216.24949646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02692040 216.24949646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02692041 216.24952698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02692042 216.24952698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02692043 216.24954224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02692044 216.24954224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02692045 216.24957275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02692046 216.24957275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02692047 216.24960327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02692048 216.24960327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02692049 216.24961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02692050 216.24961853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02692051 216.24964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02692052 216.24964905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02692053 216.24967957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02692054 216.24967957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02692055 216.24972534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02692056 216.24972534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02692057 216.24975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02692058 216.24975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02692059 216.24980164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02692060 216.24980164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02692061 216.24983215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02692062 216.24983215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02692063 216.24986267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02692064 216.24986267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02692065 216.24987793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02692066 216.24987793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02692067 216.24990845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02692068 216.24990845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02692069 216.24993896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02692070 216.24995422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02692071 216.24998474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02692072 216.24998474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02692073 216.25001526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02692074 216.25001526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02692075 216.25003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02692076 216.25003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02692077 216.25006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02692078 216.25006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02692079 216.25009155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02692080 216.25009155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02692081 216.25010681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02692082 216.25010681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02692083 216.25013733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02692084 216.25013733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02692085 216.25016785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02692086 216.25016785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02692087 216.25018311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02692088 216.25018311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02692089 216.25021362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02692090 216.25024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02692091 216.25025940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02692092 216.25025940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02692093 216.25028992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02692094 216.25028992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02692095 216.25032043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02692096 216.25032043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02692097 216.25033569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02692098 216.25033569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02692099 216.25036621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02692100 216.25036621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02692101 216.25039673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02692102 216.25039673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02692103 216.25041199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02692104 216.25041199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02692105 216.25044250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02692106 216.25044250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02692107 216.25047302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02692108 216.25047302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02692109 216.25050354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02692110 216.25051880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02692111 216.25054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02692112 216.25054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02692113 216.25057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02692114 216.25057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02692115 216.25059509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02692116 216.25059509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02692117 216.25062561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02692118 216.25062561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02692119 216.25065613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02692120 216.25065613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02692121 216.25067139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02692122 216.25067139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02692123 216.25070190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02692124 216.25070190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02692125 216.25073242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02692126 216.25073242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02692127 216.25074768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02692128 216.25074768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02692129 216.25077820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02692130 216.25080872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02692131 216.25082397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02692132 216.25082397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02692133 216.25085449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02692134 216.25085449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02692135 216.25088501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02692136 216.25088501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02692137 216.25090027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02692138 216.25090027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02692139 216.25093079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02692140 216.25093079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02692141 216.25096130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02692142 216.25096130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02692143 216.25097656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02692144 216.25097656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02692145 216.25100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02692146 216.25100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02692147 216.25103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02692148 216.25103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02692149 216.25105286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02692150 216.25105286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02692151 216.25108337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02692152 216.25111389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02692153 216.25112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02692154 216.25112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02692155 216.25115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02692156 216.25115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02692157 216.25119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02692158 216.25119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02692159 216.25120544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02692160 216.25120544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02692161 216.25123596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02692162 216.25123596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02692163 216.25126648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02692164 216.25126648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02692165 216.25129700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02692166 216.25129700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02692167 216.25131226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02692168 216.25131226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02692169 216.25134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02692170 216.25134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02692171 216.25137329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02692172 216.25138855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02692173 216.25141907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02692174 216.25141907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02692175 216.25144958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02692176 216.25144958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02692177 216.25146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02692178 216.25146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02692179 216.25149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02692180 216.25149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02692181 216.25152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02692182 216.25152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02692183 216.25154114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02692184 216.25154114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02692185 216.25157166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02692186 216.25157166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02692187 216.25160217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02692188 216.25160217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02692189 216.25161743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02692190 216.25161743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02692191 216.25164795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02692192 216.25167847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02692193 216.25169373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02692194 216.25169373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02692195 216.25172424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02692196 216.25172424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02692197 216.25175476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02692198 216.25175476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02692199 216.25177002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02692200 216.25177002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02692201 216.25180054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02692202 216.25180054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02692203 216.25183105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02692204 216.25183105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02692205 216.25184631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02692206 216.25184631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02692207 216.25187683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02692208 216.25187683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02692209 216.25190735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02692210 216.25190735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02692211 216.25192261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02692212 216.25192261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02692213 216.25195313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02692214 216.25198364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02692215 216.25199890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02692216 216.25199890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02692217 216.25202942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02692218 216.25202942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02692219 216.25205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02692220 216.25205994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02692221 216.25209045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02692222 216.25209045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02692223 216.25210571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02692224 216.25210571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02692225 216.25213623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02692226 216.25213623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02692227 216.25216675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02692228 216.25216675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02692229 216.25218201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02692230 216.25218201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02692231 216.25221252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02692232 216.25221252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02692233 216.25224304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02692234 216.25225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02692235 216.25228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02692236 216.25228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02692237 216.25231934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02692238 216.25231934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02692239 216.25233459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02692240 216.25233459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02692241 216.25236511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02692242 216.25236511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02692243 216.25239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02692244 216.25239563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02692245 216.25241089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02692246 216.25241089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02692247 216.25244141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02692248 216.25244141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02692249 216.25247192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02692250 216.25247192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02692251 216.25248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02692252 216.25248718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02692253 216.25251770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02692254 216.25254822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02692255 216.25256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02692256 216.25256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02692257 216.25259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02692258 216.25259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02692259 216.25262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02692260 216.25262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02692261 216.25263977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02692262 216.25263977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02692263 216.25267029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02692264 216.25267029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02692265 216.25270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02692266 216.25270081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02692267 216.25271606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02692268 216.25271606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02692269 216.25274658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02692270 216.25274658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02692271 216.25277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02692272 216.25277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02692273 216.25280762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02692274 216.25280762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02692275 216.25282288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02692276 216.25285339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02692277 216.25288391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02692278 216.25288391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02692279 216.25289917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02692280 216.25289917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02692281 216.25292969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02692282 216.25292969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02692283 216.25296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02692284 216.25296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02692285 216.25297546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02692286 216.25297546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02692287 216.25300598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02692288 216.25300598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02692289 216.25303650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02692290 216.25303650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02692291 216.25305176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02692292 216.25305176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02692293 216.25308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02692294 216.25308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02692295 216.25311279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02692296 216.25312805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02692297 216.25315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02692298 216.25315857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02692299 216.25318909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02692300 216.25318909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02692301 216.25320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02692302 216.25320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02692303 216.25323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02692304 216.25323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02692305 216.25326538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02692306 216.25326538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02692307 216.25328064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02692308 216.25328064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02692309 216.25331116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02692310 216.25331116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02692311 216.25334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02692312 216.25334167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02692313 216.25335693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02692314 216.25335693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02692315 216.25338745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02692316 216.25341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02692317 216.25343323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02692318 216.25343323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02692319 216.25346375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02692320 216.25346375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02692321 216.25349426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02692322 216.25349426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02692323 216.25350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02692324 216.25350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02692325 216.25354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02692326 216.25354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02692327 216.25357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02692328 216.25357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02692329 216.25360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02692330 216.25360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02692331 216.25361633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02692332 216.25361633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02692333 216.25364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02692334 216.25364685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02692335 216.25367737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02692336 216.25367737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02692337 216.25369263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02692338 216.25372314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02692339 216.25375366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02692340 216.25375366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02692341 216.25376892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02692342 216.25376892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02692343 216.25379944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02692344 216.25379944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02692345 216.25382996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02692346 216.25382996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02692347 216.25384521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02692348 216.25384521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02692349 216.25387573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02692350 216.25387573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02692351 216.25390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02692352 216.25390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02692353 216.25392151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02692354 216.25392151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02692355 216.25395203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02692356 216.25395203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02692357 216.25398254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02692358 216.25399780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02692359 216.25402832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02692360 216.25402832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02692361 216.25405884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02692362 216.25405884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02692363 216.25407410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02692364 216.25407410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02692365 216.25410461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02692366 216.25410461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02692367 216.25413513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02692368 216.25413513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02692369 216.25415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02692370 216.25415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02692371 216.25418091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02692372 216.25418091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02692373 216.25421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02692374 216.25421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02692375 216.25422668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02692376 216.25422668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02692377 216.25425720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02692378 216.25425720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02692379 216.25436401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02692380 216.25436401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02692381 216.25439453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02692382 216.25440979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02692383 216.25444031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02692384 216.25444031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02692385 216.25447083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02692386 216.25447083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02692387 216.25448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02692388 216.25448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02692389 216.25451660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02692390 216.25451660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02692391 216.25454712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02692392 216.25454712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02692393 216.25456238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02692394 216.25456238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02692395 216.25459290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02692396 216.25459290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02692397 216.25462341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02692398 216.25462341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02692399 216.25463867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02692400 216.25463867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02692401 216.25466919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02692402 216.25469971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02692403 216.25471497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02692404 216.25471497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02692405 216.25474548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02692406 216.25474548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02692407 216.25477600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02692408 216.25477600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02692409 216.25479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02692410 216.25479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02692411 216.25482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02692412 216.25482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02692413 216.25485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02692414 216.25485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02692415 216.25486755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02692416 216.25486755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02692417 216.25489807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02692418 216.25489807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02692419 216.25492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02692420 216.25492859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02692421 216.25494385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02692422 216.25497437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02692423 216.25500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02692424 216.25500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02692425 216.25502014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02692426 216.25502014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02692427 216.25505066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02692428 216.25505066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02692429 216.25508118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02692430 216.25508118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02692431 216.25509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02692432 216.25509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02692433 216.25512695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02692434 216.25512695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02692435 216.25515747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02692436 216.25515747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02692437 216.25518799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02692438 216.25518799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02692439 216.25520325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02692440 216.25520325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02692441 216.25523376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02692442 216.25531006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02692443 216.25535583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02692444 216.25535583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02692445 216.25538635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02692446 216.25538635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02692447 216.25541687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02692448 216.25541687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02692449 216.25543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02692450 216.25543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02692451 216.25546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02692452 216.25546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02692453 216.25549316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02692454 216.25549316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02692455 216.25550842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02692456 216.25550842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02692457 216.25553894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02692458 216.25553894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02692459 216.25556946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02692460 216.25556946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02692461 216.25558472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02692462 216.25561523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02692463 216.25564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02692464 216.25564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02692465 216.25566101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02692466 216.25566101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02692467 216.25569153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02692468 216.25569153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02692469 216.25572205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02692470 216.25572205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02692471 216.25573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02692472 216.25573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02692473 216.25576782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02692474 216.25576782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02692475 216.25579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02692476 216.25579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02692477 216.25581360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02692478 216.25581360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02692479 216.25584412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02692480 216.25584412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02692481 216.25587463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02692482 216.25590515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02692483 216.25592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02692484 216.25592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02692485 216.25595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02692486 216.25595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02692487 216.25598145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02692488 216.25598145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02692489 216.25599670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02692490 216.25599670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02692491 216.25602722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02692492 216.25602722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02692493 216.25605774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02692494 216.25605774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02692495 216.25607300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02692496 216.25607300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02692497 216.25610352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02692498 216.25610352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02692499 216.25613403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02692500 216.25613403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02692501 216.25614929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02692502 216.25614929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02692503 216.25617981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02692504 216.25621033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02692505 216.25622559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02692506 216.25622559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02692507 216.25630188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02692508 216.25630188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02692509 216.25633240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02692510 216.25636292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02692511 216.25637817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02692512 216.25637817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02692513 216.25640869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02692514 216.25640869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02692515 216.25643921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02692516 216.25643921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02692517 216.25645447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02692518 216.25645447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02692519 216.25648499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02692520 216.25648499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02692521 216.25651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02692522 216.25651550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02692523 216.25653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02692524 216.25653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02692525 216.25656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02692526 216.25656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02692527 216.25659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02692528 216.25659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02692529 216.25660706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02692530 216.25663757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02692531 216.25666809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02692532 216.25666809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02692533 216.25669861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02692534 216.25669861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02692535 216.25671387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02692536 216.25671387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02692537 216.25674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02692538 216.25674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02692539 216.25677490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02692540 216.25677490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02692541 216.25679016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02692542 216.25679016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02692543 216.25682068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02692544 216.25682068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02692545 216.25685120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02692546 216.25685120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02692547 216.25686646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02692548 216.25686646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02692549 216.25689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02692550 216.25692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02692551 216.25694275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02692552 216.25694275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02692553 216.25697327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02692554 216.25697327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02692555 216.25700378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02692556 216.25700378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02692557 216.25701904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02692558 216.25701904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02692559 216.25704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02692560 216.25704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02692561 216.25708008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02692562 216.25708008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02692563 216.25709534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02692564 216.25709534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02692565 216.25712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02692566 216.25712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02692567 216.25715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02692568 216.25715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02692569 216.25717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02692570 216.25717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02692571 216.25720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02692572 216.25723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02692573 216.25730896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02692574 216.25730896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02692575 216.25732422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02692576 216.25732422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02692577 216.25735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02692578 216.25735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02692579 216.25738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02692580 216.25740051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02692581 216.25743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02692582 216.25743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02692583 216.25746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02692584 216.25746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02692585 216.25749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02692586 216.25749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02692587 216.25750732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02692588 216.25750732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02692589 216.25753784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02692590 216.25753784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02692591 216.25756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02692592 216.25756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02692593 216.25758362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02692594 216.25758362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02692595 216.25761414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02692596 216.25761414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02692597 216.25764465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02692598 216.25765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02692599 216.25769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02692600 216.25769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02692601 216.25772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02692602 216.25772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02692603 216.25773621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02692604 216.25773621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02692605 216.25776672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02692606 216.25776672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02692607 216.25779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02692608 216.25779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02692609 216.25781250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02692610 216.25781250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02692611 216.25784302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02692612 216.25784302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02692613 216.25787354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02692614 216.25787354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02692615 216.25788879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02692616 216.25788879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02708019 216.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24578 -02708020 216.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24578 -02708021 216.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24588 -02708022 216.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24588 -02708023 216.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24598 -02708024 216.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24598 -02708025 216.47697449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a8 -02708026 216.47697449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a8 -02708027 216.47700500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245b8 -02708028 216.47700500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245b8 -02708029 216.47703552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245c8 -02708030 216.47703552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245c8 -02708031 216.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245d8 -02708032 216.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245d8 -02708033 216.47708130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245e8 -02708034 216.47708130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245e8 -02708035 216.47711182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245f8 -02708036 216.47712708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x245f8 -02708037 216.47715759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24608 -02708038 216.47715759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24608 -02708039 216.47718811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24618 -02708040 216.47718811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24618 -02708041 216.47720337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24628 -02708042 216.47720337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24628 -02708043 216.47723389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24638 -02708044 216.47723389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24638 -02708045 216.47726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24648 -02708046 216.47726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24648 -02708047 216.47727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24658 -02708048 216.47727966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24658 -02708049 216.47731018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24668 -02708050 216.47731018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24668 -02708051 216.47734070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24678 -02708052 216.47734070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24678 -02708053 216.47735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24688 -02708054 216.47735596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24688 -02708055 216.47738647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -02708056 216.47741699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -02708057 216.47744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -02708058 216.47744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -02708059 216.47746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -02708060 216.47746277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -02708061 216.47749329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -02708062 216.47749329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -02712525 216.54251099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -02712526 216.54254150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -02712527 216.54257202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -02712528 216.54257202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -02712529 216.54258728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -02712530 216.54258728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -02712531 216.54261780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -02712532 216.54261780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -02712533 216.54264832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -02712534 216.54264832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -02712535 216.54266357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -02712536 216.54266357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -02712537 216.54269409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -02712538 216.54269409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -02712539 216.54272461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -02712540 216.54272461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -02712541 216.54273987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -02712542 216.54273987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -02712543 216.54277039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -02712544 216.54277039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -02712545 216.54280090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -02712546 216.54280090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -02712547 216.54281616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -02712548 216.54281616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -02712549 216.54284668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -02712550 216.54287720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -02712551 216.54289246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -02712552 216.54289246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -02712553 216.54292297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -02712554 216.54292297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -02712555 216.54295349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -02712556 216.54295349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -02712557 216.54296875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -02712558 216.54296875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -02712559 216.54299927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -02712560 216.54299927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -02712561 216.54302979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -02712562 216.54302979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -02712563 216.54306030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -02712564 216.54306030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -02712565 216.54307556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -02712566 216.54307556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -02712567 216.54310608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -02712568 216.54310608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -02717186 216.60894775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36388 -02717188 216.60897827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36398 -02717189 216.60897827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36398 -02717190 216.60899353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a8 -02717191 216.60902405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a8 -02717192 216.60902405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b8 -02717193 216.60905457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b8 -02717194 216.60906982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c8 -02717195 216.60906982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c8 -02717196 216.60910034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d8 -02717197 216.60910034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d8 -02717198 216.60913086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e8 -02717199 216.60913086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e8 -02717200 216.60914612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f8 -02717201 216.60914612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f8 -02717202 216.60917664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36408 -02717203 216.60917664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36408 -02717204 216.60920715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36418 -02717205 216.60920715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36418 -02717206 216.60922241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36428 -02717207 216.60922241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36428 -02717208 216.60925293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36438 -02717209 216.60925293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36438 -02717210 216.60928345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36448 -02717211 216.60929871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36448 -02717212 216.60932922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36458 -02717213 216.60932922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36458 -02717214 216.60935974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36468 -02717215 216.60935974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36468 -02717216 216.60937500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36478 -02717217 216.60937500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36478 -02717218 216.60940552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36488 -02717219 216.60940552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36488 -02717220 216.60943604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36498 -02717221 216.60943604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36498 -02717222 216.60946655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364a8 -02717223 216.60946655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364a8 -02717224 216.60948181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364b8 -02717225 216.60948181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364b8 -02717226 216.60951233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364c8 -02717227 216.60951233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364c8 -02717228 216.60954285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d8 -02717229 216.60955811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d8 -02717230 216.60955811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x364e8 -02724572 216.71331787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -02724573 216.71331787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -02724575 216.71334839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -02724576 216.71334839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -02724577 216.71336365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -02724578 216.71336365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -02724579 216.71339417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -02724580 216.71339417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -02724581 216.71342468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -02724582 216.71343994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -02724583 216.71347046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -02724584 216.71347046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -02724585 216.71350098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -02724586 216.71350098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -02724587 216.71351624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -02724588 216.71351624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -02724589 216.71354675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -02724590 216.71354675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -02724591 216.71357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -02724592 216.71357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -02724593 216.71359253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -02724594 216.71359253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -02724595 216.71362305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -02724596 216.71362305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -02724597 216.71365356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -02724598 216.71365356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -02724599 216.71368408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -02724600 216.71368408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -02724601 216.71369934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -02724602 216.71372986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -02724603 216.71376038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -02724604 216.71376038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -02724605 216.71377563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -02724606 216.71377563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -02724607 216.71380615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -02724608 216.71380615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -02724609 216.71383667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -02724610 216.71383667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -02724611 216.71385193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -02724612 216.71385193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -02724613 216.71388245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -02724614 216.71388245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -02724615 216.71391296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -02724616 216.71391296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -02732377 216.98669434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02732378 216.98669434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02732379 216.98672485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02732380 216.98672485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02732381 216.98675537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02732382 216.98675537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02732383 216.98677063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02732384 216.98677063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02732385 216.98680115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02732386 216.98680115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02732387 216.98683167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02732388 216.98684692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02732389 216.98687744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02732390 216.98687744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02732391 216.98690796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02732392 216.98690796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02732393 216.98693848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02732394 216.98693848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02732395 216.98695374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02732396 216.98695374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02732397 216.98698425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02732398 216.98698425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02732399 216.98701477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02732400 216.98701477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02732401 216.98703003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02732402 216.98703003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02732403 216.98706055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02732404 216.98706055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02732405 216.98709106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02732406 216.98709106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02732407 216.98710632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02732408 216.98710632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02732409 216.98713684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02732410 216.98713684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02732411 216.98716736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02732412 216.98716736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02732413 216.98718262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02732414 216.98718262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02732415 216.98721313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02732416 216.98721313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02732417 216.98724365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02732418 216.98724365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02732419 216.98725891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02732420 216.98728943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02736999 217.05233765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a0 -02737000 217.05233765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a0 -02737001 217.05236816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b0 -02737002 217.05236816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b0 -02737003 217.05238342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -02737004 217.05238342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -02737005 217.05241394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -02737006 217.05241394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -02737007 217.05244446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -02737008 217.05244446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -02737009 217.05245972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -02737010 217.05245972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -02737011 217.05249023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -02737012 217.05252075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -02737013 217.05255127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -02737014 217.05255127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -02737015 217.05256653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -02737016 217.05256653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -02737017 217.05259705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -02737018 217.05259705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -02737019 217.05262756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -02737020 217.05262756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -02737021 217.05264282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -02737022 217.05264282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -02737023 217.05267334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -02737024 217.05267334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -02737025 217.05270386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -02737026 217.05270386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -02737027 217.05271912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -02737028 217.05271912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -02737029 217.05274963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -02737030 217.05278015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -02737031 217.05279541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -02737032 217.05279541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -02737033 217.05282593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -02737034 217.05282593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -02737035 217.05285645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -02737036 217.05285645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -02737037 217.05287170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -02737038 217.05287170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -02737039 217.05290222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -02737040 217.05290222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -02737041 217.05293274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -02737042 217.05293274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -02742841 217.13531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16830 -02742842 217.13531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16830 -02742843 217.13533020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16840 -02742844 217.13533020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16840 -02742845 217.13536072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -02742846 217.13536072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -02742847 217.13539124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -02742848 217.13539124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -02742849 217.13540649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -02742850 217.13540649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -02742851 217.13543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -02742852 217.13543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -02742853 217.13546753 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -02742854 217.13548279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -02742855 217.13551331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -02742856 217.13551331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -02742857 217.13554382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -02742858 217.13554382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -02742859 217.13555908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -02742860 217.13555908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -02742861 217.13558960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -02742862 217.13558960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -02742863 217.13562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -02742864 217.13562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -02742865 217.13563538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -02742866 217.13563538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -02742867 217.13566589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -02742868 217.13566589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -02742869 217.13569641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -02742870 217.13569641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -02742871 217.13571167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -02742872 217.13574219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -02742873 217.13577271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -02742874 217.13577271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -02742875 217.13578796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -02742876 217.13578796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -02742877 217.13581848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -02742878 217.13581848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -02742879 217.13584900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -02742880 217.13584900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -02742881 217.13587952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -02742882 217.13587952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -02742883 217.13589478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -02742884 217.13589478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -02747195 217.19889832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f040 -02747196 217.19889832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f040 -02747197 217.19892883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f050 -02747198 217.19892883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f050 -02747199 217.19894409 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f060 -02747200 217.19897461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f060 -02747201 217.19900513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f070 -02747202 217.19900513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f070 -02747203 217.19902039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f080 -02747204 217.19902039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f080 -02747205 217.19905090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f090 -02747206 217.19905090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f090 -02747207 217.19908142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a0 -02747208 217.19908142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a0 -02747209 217.19909668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -02747210 217.19909668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -02747211 217.19915771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -02747212 217.19915771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -02747213 217.19918823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -02747214 217.19918823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -02747215 217.19920349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -02747216 217.19920349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -02747217 217.19923401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -02747218 217.19923401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -02747219 217.19926453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -02747220 217.19926453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -02747221 217.19927979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -02747222 217.19931030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -02747223 217.19934082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -02747224 217.19934082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -02747225 217.19935608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -02747226 217.19935608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -02747227 217.19938660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -02747228 217.19938660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -02747229 217.19941711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -02747230 217.19941711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -02747231 217.19943237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -02747232 217.19943237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -02747233 217.19949341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -02747234 217.19949341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -02747235 217.19950867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -02747236 217.19950867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -02747237 217.19953918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -02747238 217.19953918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -02750791 217.25140381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a0 -02750792 217.25140381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a0 -02750793 217.25143433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b0 -02750794 217.25144958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b0 -02750795 217.25148010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c0 -02750796 217.25148010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c0 -02750797 217.25151062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d0 -02750798 217.25151062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d0 -02750799 217.25152588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e0 -02750800 217.25152588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e0 -02750801 217.25155640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f0 -02750802 217.25155640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f0 -02750803 217.25158691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26100 -02750804 217.25158691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26100 -02750805 217.25160217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26110 -02750806 217.25160217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26110 -02750807 217.25163269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26120 -02750808 217.25163269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26120 -02750809 217.25166321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26130 -02750810 217.25169373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26130 -02750811 217.25170898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26140 -02750812 217.25170898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26140 -02750813 217.25173950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26150 -02750814 217.25173950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26150 -02750815 217.25177002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26160 -02750816 217.25177002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26160 -02750817 217.25178528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26170 -02750818 217.25178528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26170 -02750819 217.25181580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26180 -02750820 217.25181580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26180 -02750821 217.25184631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26190 -02750822 217.25184631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26190 -02750823 217.25186157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a0 -02750824 217.25186157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a0 -02750825 217.25189209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b0 -02750826 217.25192261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b0 -02750827 217.25193787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c0 -02750828 217.25193787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c0 -02750829 217.25196838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d0 -02750830 217.25196838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d0 -02750831 217.25199890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e0 -02750832 217.25199890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e0 -02750833 217.25201416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f0 -02750834 217.25201416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f0 -02766462 217.47648621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a00 -02766463 217.47648621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a00 -02766464 217.47650146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a10 -02766465 217.47650146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a10 -02766466 217.47653198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a20 -02766467 217.47653198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a20 -02766468 217.47656250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a30 -02766469 217.47657776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a30 -02766470 217.47660828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a40 -02766471 217.47660828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a40 -02766472 217.47663879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a50 -02766473 217.47663879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a50 -02766474 217.47665405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a60 -02766475 217.47665405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a60 -02766476 217.47668457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a70 -02766477 217.47668457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a70 -02766478 217.47671509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a80 -02766479 217.47671509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a80 -02766480 217.47673035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a90 -02766481 217.47673035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a90 -02766482 217.47676086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa0 -02766483 217.47676086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa0 -02766484 217.47679138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab0 -02766485 217.47679138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab0 -02766486 217.47680664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac0 -02766487 217.47683716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac0 -02766488 217.47686768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad0 -02766489 217.47686768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad0 -02766490 217.47688293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae0 -02766491 217.47688293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae0 -02766492 217.47691345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af0 -02766493 217.47691345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af0 -02766494 217.47694397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b00 -02766495 217.47694397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b00 -02766496 217.47695923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b10 -02766497 217.47695923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b10 -02766498 217.47698975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b20 -02766499 217.47698975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b20 -02766500 217.47702026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b30 -02766501 217.47702026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b30 -02766502 217.47705078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b40 -02766503 217.47705078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b40 -02766504 217.47706604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b50 -02766505 217.47709656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b50 -02771010 217.54122925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d820 -02771011 217.54122925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d820 -02771012 217.54124451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d830 -02771013 217.54124451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d830 -02771014 217.54127502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d840 -02771015 217.54127502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d840 -02771016 217.54130554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d850 -02771017 217.54130554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d850 -02771018 217.54132080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d860 -02771019 217.54132080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d860 -02771020 217.54135132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d870 -02771021 217.54135132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d870 -02771022 217.54138184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d880 -02771023 217.54138184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d880 -02771024 217.54139709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d890 -02771025 217.54139709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d890 -02771026 217.54142761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a0 -02771027 217.54142761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a0 -02771028 217.54145813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b0 -02771029 217.54147339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b0 -02771030 217.54150391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c0 -02771031 217.54150391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c0 -02771032 217.54153442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d0 -02771033 217.54153442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d0 -02771034 217.54154968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e0 -02771035 217.54154968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e0 -02771036 217.54158020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f0 -02771037 217.54158020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f0 -02771038 217.54161072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d900 -02771039 217.54161072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d900 -02771040 217.54162598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d910 -02771041 217.54162598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d910 -02771042 217.54165649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d920 -02771043 217.54165649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d920 -02771044 217.54168701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d930 -02771045 217.54168701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d930 -02771046 217.54170227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d940 -02771047 217.54170227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d940 -02771048 217.54173279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d950 -02771049 217.54173279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d950 -02771050 217.54176331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d960 -02771051 217.54176331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d960 -02771052 217.54177856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d970 -02771053 217.54177856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d970 -02773740 219.35203552 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02773741 219.37200928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773742 219.37200928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773743 219.88119507 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773744 219.88124084 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773745 219.88127136 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773746 219.88127136 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02773747 219.88139343 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773748 219.88139343 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02773749 219.88146973 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773750 219.88150024 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02773751 221.37382507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02773752 221.39569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773753 221.39570618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773754 221.81770325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02773755 221.81770325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02773756 221.81773376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02773757 221.81773376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02773758 221.81774902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02773759 221.81777954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02773760 221.81781006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02773761 221.81781006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02773762 221.81782532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02773763 221.81782532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02773764 221.81785583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02773765 221.81785583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02773766 221.81788635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02773767 221.81788635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02773768 221.81790161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02773769 221.81793213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02773770 221.81796265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02773771 221.81796265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02773772 221.81797791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02773773 221.81797791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02773774 221.81800842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02773775 221.81800842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02773776 221.81803894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02773777 221.81803894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02773778 221.81805420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02773779 221.81805420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02773780 221.81808472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02773781 221.81808472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02773782 221.81811523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02773783 221.81811523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02773784 221.81813049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02773785 221.81813049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02773786 221.81816101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02773787 221.81816101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02773788 221.81819153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02773789 221.81820679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02773790 221.81823730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02773791 221.81823730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02773792 221.81826782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02773793 221.81826782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02773794 221.81829834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02773795 221.81829834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02773796 221.81831360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02773797 221.81831360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02773798 221.81834412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02773799 221.81834412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02773800 221.81837463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02773801 221.81837463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02773802 221.81838989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02773803 221.81838989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02773804 221.81842041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02773805 221.81842041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02773806 221.81845093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02773807 221.81845093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02773808 221.81846619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02773809 221.81846619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02773810 221.81852722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02773811 221.81852722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02773812 221.81854248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02773813 221.81854248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02773814 221.81857300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02773815 221.81857300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02773816 221.81860352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02773817 221.81860352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02773818 221.81861877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02773819 221.81861877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02773820 221.81864929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02773821 221.81864929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02773822 221.81867981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02773823 221.81867981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02773824 221.81869507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02773825 221.81869507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02773826 221.81872559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02773827 221.81872559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02773828 221.81875610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02773829 221.81875610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02773830 221.81877136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02773831 221.81880188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02773832 221.81883240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02773833 221.81883240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02773834 221.81884766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02773835 221.81884766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02773836 221.81887817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02773837 221.81887817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02773838 221.81890869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02773839 221.81890869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02773840 221.81892395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02773841 221.81892395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02773842 221.81895447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02773843 221.81895447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02773844 221.81898499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02773845 221.81898499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02773846 221.81901550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02773847 221.81901550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02773848 221.81903076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02773849 221.81903076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02773850 221.81906128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02773851 221.81909180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02773852 221.81910706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02773853 221.81910706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02773854 221.81913757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02773855 221.81913757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02773856 221.81916809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02773857 221.81916809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02773858 221.81918335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02773859 221.81918335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02773860 221.81921387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02773861 221.81921387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02773862 221.81924438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02773863 221.81924438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02773864 221.81925964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02773865 221.81925964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02773866 221.81929016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02773867 221.81929016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02773868 221.81932068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02773869 221.81932068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02773870 221.81933594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02773871 221.81933594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02773872 221.81936646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02773873 221.81939697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02773874 221.81941223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02773875 221.81941223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02773876 221.81944275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02773877 221.81944275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02773878 221.81947327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02773879 221.81948853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02773880 221.81951904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02773881 221.81951904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02773882 221.81954956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02773883 221.81954956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02773884 221.81956482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02773885 221.81956482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02773886 221.81959534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02773887 221.81959534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02773888 221.81962585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02773889 221.81962585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02773890 221.81964111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02773891 221.81964111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02773892 221.81967163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02773893 221.81967163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02773894 221.81970215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02773895 221.81970215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02773896 221.81971741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02773897 221.81974792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02773898 221.81977844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02773899 221.81977844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02773900 221.81982422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02773901 221.81982422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02773902 221.81985474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02773903 221.81985474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02773904 221.81988525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02773905 221.81988525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02773906 221.81990051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02773907 221.81990051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02773908 221.81993103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02773909 221.81993103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02773910 221.81996155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02773911 221.81996155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02773912 221.81997681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02773913 221.81997681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02773914 221.82000732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02773915 221.82000732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02773916 221.82005310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02773917 221.82005310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02773918 221.82008362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02773919 221.82008362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02773920 221.82011414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02773921 221.82011414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02773922 221.82012939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02773923 221.82012939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02773924 221.82015991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02773925 221.82015991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02773926 221.82019043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02773927 221.82019043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02773928 221.82020569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02773929 221.82020569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02773930 221.82023621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02773931 221.82023621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02773932 221.82026672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02773933 221.82026672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02773934 221.82028198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02773935 221.82028198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02773936 221.82031250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02773937 221.82034302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02773938 221.82035828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02773939 221.82035828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02773940 221.82038879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02773941 221.82038879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02773942 221.82041931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02773943 221.82041931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02773944 221.82043457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02773945 221.82043457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02773946 221.82046509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02773947 221.82046509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02773948 221.82049561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02773949 221.82049561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02773950 221.82051086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02773951 221.82051086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02773952 221.82054138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02773953 221.82054138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02773954 221.82057190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02773955 221.82057190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02773956 221.82060242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02773957 221.82061768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02773958 221.82061768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02773959 221.82064819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02773960 221.82067871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02773961 221.82067871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02773962 221.82069397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02773963 221.82069397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02773964 221.82072449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02773965 221.82072449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02773966 221.82075500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02773967 221.82075500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02773968 221.82077026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02773969 221.82077026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02773970 221.82080078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02773971 221.82083130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02773972 221.82084656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02773973 221.82084656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02773974 221.82087708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02773975 221.82087708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02773976 221.82090759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02773977 221.82090759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02773978 221.82092285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02773979 221.82092285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02773980 221.82095337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02773981 221.82095337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02773982 221.82098389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02773983 221.82098389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02773984 221.82099915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02773985 221.82099915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02773986 221.82102966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02773987 221.82102966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02773988 221.82106018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02773989 221.82106018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02773990 221.82107544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02773991 221.82110596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02773992 221.82113647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02773993 221.82113647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02773994 221.82115173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02773995 221.82115173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02773996 221.82118225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02773997 221.82118225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02773998 221.82121277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02773999 221.82121277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02774000 221.82122803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02774001 221.82122803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02774002 221.82125854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02774003 221.82125854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02774004 221.82128906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02774005 221.82128906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02774006 221.82131958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02774007 221.82131958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02774008 221.82133484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02774009 221.82133484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02774010 221.82136536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02774011 221.82136536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02774012 221.82139587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02774013 221.82141113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02774014 221.82144165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02774015 221.82144165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02774016 221.82147217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02774017 221.82147217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02774018 221.82148743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02774019 221.82148743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02774020 221.82151794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02774021 221.82151794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02774022 221.82154846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02774023 221.82154846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02774024 221.82156372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02774025 221.82156372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02774026 221.82159424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02774027 221.82159424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02774028 221.82162476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02774029 221.82162476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02774030 221.82164001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02774031 221.82164001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02774032 221.82167053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02774033 221.82170105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02774034 221.82171631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02774035 221.82171631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02774036 221.82174683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02774037 221.82174683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02774038 221.82177734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02774039 221.82177734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02774040 221.82182312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02774041 221.82182312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02774042 221.82185364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02774043 221.82185364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02774044 221.82186890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02774045 221.82186890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02774046 221.82189941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02774047 221.82189941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02774048 221.82192993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02774049 221.82192993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02774050 221.82194519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02774051 221.82194519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02774052 221.82197571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02774053 221.82197571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02774054 221.82200623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02774055 221.82200623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02774056 221.82202148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02774057 221.82205200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02774058 221.82208252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02774059 221.82208252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02774060 221.82211304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02774061 221.82211304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02774062 221.82212830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02774063 221.82212830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02774064 221.82215881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02774065 221.82215881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02774066 221.82218933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02774067 221.82218933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02774068 221.82220459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02774069 221.82220459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02774070 221.82223511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02774071 221.82223511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02774072 221.82226563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02774073 221.82226563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02774074 221.82228088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02774075 221.82228088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02774076 221.82231140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02774077 221.82234192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02774078 221.82235718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02774079 221.82235718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02774080 221.82238770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02774081 221.82238770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02774082 221.82241821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02774083 221.82241821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02774084 221.82243347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02774085 221.82243347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02774086 221.82246399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02774087 221.82246399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02774088 221.82249451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02774089 221.82249451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02774090 221.82250977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02774091 221.82250977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02774092 221.82254028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02774093 221.82254028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02774094 221.82257080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02774095 221.82257080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02774096 221.82258606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02774097 221.82258606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02774098 221.82261658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02774099 221.82264709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02774100 221.82266235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02774101 221.82266235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02774102 221.82269287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02774103 221.82269287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02774104 221.82272339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02774105 221.82272339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02774106 221.82273865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02774107 221.82273865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02774108 221.82276917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02774109 221.82276917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02774110 221.82279968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02774111 221.82279968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02774112 221.82281494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02774113 221.82281494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02774114 221.82284546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02774115 221.82284546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02774116 221.82287598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02774117 221.82287598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02774118 221.82290649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02774119 221.82292175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02774120 221.82295227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02774121 221.82295227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02774122 221.82298279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02774123 221.82298279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02774124 221.82299805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02774125 221.82299805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02774126 221.82302856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02774127 221.82302856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02774128 221.82305908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02774129 221.82305908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02774130 221.82307434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02774131 221.82307434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02774132 221.82310486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02774133 221.82310486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02774134 221.82313538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02774135 221.82313538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02774136 221.82315063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02774137 221.82315063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02774138 221.82318115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02774139 221.82318115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02774140 221.82321167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02774141 221.82322693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02774142 221.82325745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02774143 221.82325745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02774144 221.82328796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02774145 221.82328796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02774146 221.82330322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02774147 221.82330322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02774148 221.82333374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02774149 221.82333374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02774150 221.82336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02774151 221.82336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02774152 221.82337952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02774153 221.82337952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02774154 221.82341003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02774155 221.82341003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02774156 221.82344055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02774157 221.82344055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02774158 221.82345581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02774159 221.82345581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02774160 221.82348633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02774161 221.82351685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02774162 221.82353210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02774163 221.82353210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02774164 221.82356262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02774165 221.82356262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02774166 221.82359314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02774167 221.82359314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02774168 221.82360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02774169 221.82360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02774170 221.82363892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02774171 221.82363892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02774172 221.82366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02774173 221.82366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02774174 221.82369995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02774175 221.82369995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02774176 221.82371521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02774177 221.82371521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02774178 221.82377625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02774179 221.82377625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02774180 221.82379150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02774181 221.82379150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02774182 221.82382202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02774183 221.82382202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02774184 221.82385254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02774185 221.82385254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02774186 221.82386780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02774187 221.82389832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02774188 221.82392883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02774189 221.82392883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02774190 221.82394409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02774191 221.82394409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02774192 221.82397461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02774193 221.82397461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02774194 221.82400513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02774195 221.82400513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02774196 221.82402039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02774197 221.82402039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02774198 221.82405090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02774199 221.82405090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02774200 221.82408142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02774201 221.82408142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02774202 221.82409668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02774203 221.82409668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02774204 221.82412720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02774205 221.82412720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02774206 221.82415771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02774207 221.82417297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02774208 221.82420349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02774209 221.82420349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02774210 221.82423401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02774211 221.82423401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02774212 221.82424927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02774213 221.82424927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02774214 221.82427979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02774215 221.82427979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02774216 221.82431030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02774217 221.82431030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02774218 221.82432556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02774219 221.82432556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02774220 221.82435608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02774221 221.82435608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02774222 221.82438660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02774223 221.82438660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02774224 221.82441711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02774225 221.82441711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02774226 221.82443237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02774227 221.82443237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02774228 221.82446289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02774229 221.82449341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02774230 221.82450867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02774231 221.82450867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02774232 221.82453918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02774233 221.82453918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02774234 221.82456970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02774235 221.82456970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02774236 221.82458496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02774237 221.82458496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02774238 221.82461548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02774239 221.82461548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02774240 221.82464600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02774241 221.82464600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02774242 221.82466125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02774243 221.82466125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02774244 221.82469177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02774245 221.82469177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02774246 221.82472229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02774247 221.82472229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02774248 221.82473755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02774249 221.82476807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02774250 221.82479858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02774251 221.82479858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02774252 221.82481384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02774253 221.82481384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02774254 221.82484436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02774255 221.82484436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02774256 221.82487488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02774257 221.82487488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02774258 221.82489014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02774259 221.82489014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02774260 221.82492065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02774261 221.82492065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02774262 221.82495117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02774263 221.82495117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02774264 221.82496643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02774265 221.82496643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02774266 221.82499695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02774267 221.82499695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02774268 221.82502747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02774269 221.82504272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02774270 221.82507324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02774271 221.82507324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02774272 221.82510376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02774273 221.82510376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02774274 221.82511902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02774275 221.82511902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02774276 221.82514954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02774277 221.82514954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02774278 221.82518005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02774279 221.82518005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02774280 221.82521057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02774281 221.82521057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02774282 221.82522583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02774283 221.82522583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02774284 221.82525635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02774285 221.82525635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02774286 221.82528687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02774287 221.82528687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02774288 221.82530212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02774289 221.82530212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02774290 221.82533264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02774291 221.82536316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02774292 221.82537842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02774293 221.82537842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02774294 221.82540894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02774295 221.82540894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02774296 221.82543945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02774297 221.82543945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02774298 221.82545471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02774299 221.82545471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02774300 221.82548523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02774301 221.82548523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02774302 221.82551575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02774303 221.82551575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02774304 221.82553101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02774305 221.82553101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02774306 221.82556152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02774307 221.82556152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02774308 221.82559204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02774309 221.82559204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02774310 221.82560730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02774311 221.82563782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02774312 221.82566833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02774313 221.82566833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02774314 221.82568359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02774315 221.82568359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02774316 221.82571411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02774317 221.82571411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02774318 221.82574463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02774319 221.82574463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02774320 221.82575989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02774321 221.82575989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02774322 221.82582092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02774323 221.82582092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02774324 221.82583618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02774325 221.82583618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02774326 221.82586670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02774327 221.82586670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02774328 221.82589722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02774329 221.82591248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02774330 221.82594299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02774331 221.82594299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02774332 221.82597351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02774333 221.82597351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02774334 221.82600403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02774335 221.82600403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02774336 221.82601929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02774337 221.82601929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02774338 221.82604980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02774339 221.82604980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02774340 221.82608032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02774341 221.82608032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02774342 221.82609558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02774343 221.82609558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02774344 221.82612610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02774345 221.82612610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02774346 221.82615662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02774347 221.82615662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02774348 221.82617188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02774349 221.82617188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02774350 221.82620239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02774351 221.82623291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02774352 221.82624817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02774353 221.82624817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02774354 221.82627869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02774355 221.82627869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02774356 221.82630920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02774357 221.82630920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02774358 221.82632446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02774359 221.82632446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02774360 221.82635498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02774361 221.82635498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02774362 221.82638550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02774363 221.82638550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02774364 221.82640076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02774365 221.82640076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02774366 221.82643127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02774367 221.82643127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02774368 221.82646179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02774369 221.82646179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02774370 221.82647705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02774371 221.82650757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02774372 221.82653809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02774373 221.82653809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02774374 221.82655334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02774375 221.82655334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02774376 221.82658386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02774377 221.82658386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02774378 221.82661438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02774379 221.82661438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02774380 221.82662964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02774381 221.82662964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02774382 221.82666016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02774383 221.82666016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02774384 221.82669067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02774385 221.82669067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02774386 221.82672119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02774387 221.82672119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02774388 221.82673645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02774389 221.82673645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02774390 221.82676697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02774391 221.82676697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02774392 221.82679749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02774393 221.82681274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02774394 221.82684326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02774395 221.82684326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02774396 221.82687378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02774397 221.82687378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02774398 221.82688904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02774399 221.82688904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02774400 221.82691956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02774401 221.82691956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02774402 221.82695007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02774403 221.82695007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02774404 221.82696533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02774405 221.82696533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02774406 221.82699585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02774407 221.82699585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02774408 221.82702637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02774409 221.82702637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02774410 221.82704163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02774411 221.82704163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02774412 221.82707214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02774413 221.82710266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02774414 221.82711792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02774415 221.82711792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02774416 221.82714844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02774417 221.82714844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02774418 221.82717896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02774419 221.82717896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02774420 221.82719421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02774421 221.82719421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02774422 221.82722473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02774423 221.82722473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02774424 221.82725525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02774425 221.82725525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02774426 221.82727051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02774427 221.82727051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02774428 221.82730103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02774429 221.82730103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02774430 221.82733154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02774431 221.82733154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02774432 221.82734680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02774433 221.82734680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02774434 221.82737732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02774435 221.82740784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02774436 221.82742310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02774437 221.82742310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02774438 221.82745361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02774439 221.82745361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02774440 221.82748413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02774441 221.82748413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02774442 221.82751465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02774443 221.82751465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02774444 221.82752991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02774445 221.82752991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02774446 221.82756042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02774447 221.82756042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02774448 221.82759094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02774449 221.82759094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02774450 221.82760620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02774451 221.82760620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02774452 221.82763672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02774453 221.82763672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02774454 221.82766724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02774455 221.82768250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02774456 221.82768250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02774457 221.82771301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02774458 221.82774353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02774459 221.82774353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02774460 221.82775879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02774461 221.82775879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02774462 221.82778931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02774463 221.82778931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02774464 221.82783508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02774465 221.82783508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02774466 221.82786560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02774467 221.82786560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02774468 221.82789612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02774469 221.82789612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02774470 221.82791138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02774471 221.82791138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02774472 221.82794189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02774473 221.82794189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02774474 221.82797241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02774475 221.82797241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02774476 221.82798767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02774477 221.82798767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02774478 221.82801819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02774479 221.82801819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02774480 221.82804871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02774481 221.82804871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02774482 221.82806396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02774483 221.82809448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02774484 221.82812500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02774485 221.82812500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02774486 221.82814026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02774487 221.82814026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02774488 221.82817078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02774489 221.82817078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02774490 221.82820129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02774491 221.82820129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02774492 221.82821655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02774493 221.82821655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02774494 221.82824707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02774495 221.82824707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02774496 221.82827759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02774497 221.82827759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02774498 221.82830811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02774499 221.82830811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02774500 221.82832336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02774501 221.82835388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02774502 221.82838440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02774503 221.82838440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02774504 221.82839966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02774505 221.82839966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02774506 221.82843018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02774507 221.82843018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02774508 221.82846069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02774509 221.82846069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02774510 221.82847595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02774511 221.82847595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02774512 221.82850647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02774513 221.82850647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02774514 221.82853699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02774515 221.82853699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02774516 221.82855225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02774517 221.82855225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02774518 221.82858276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02774519 221.82858276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02774520 221.82861328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02774521 221.82861328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02774522 221.82862854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02774523 221.82862854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02774524 221.82865906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02774525 221.82865906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02774526 221.82868958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02774527 221.82868958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02774528 221.82870483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02774529 221.82870483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02774530 221.82873535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02774531 221.82873535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02774532 221.82876587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02774533 221.82876587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02774534 221.82878113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02774535 221.82881165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02774536 221.82884216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02774537 221.82884216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02774538 221.82885742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02774539 221.82885742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02774540 221.82888794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02774541 221.82888794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02774542 221.82891846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02774543 221.82891846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02774544 221.82893372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02774545 221.82893372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02774546 221.82896423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02774547 221.82896423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02774548 221.82899475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02774549 221.82899475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02774550 221.82901001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02774551 221.82901001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02774552 221.82904053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02774553 221.82904053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02774554 221.82907104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02774555 221.82910156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02774556 221.82911682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02774557 221.82911682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02774558 221.82914734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02774559 221.82914734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02774560 221.82917786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02774561 221.82917786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02774562 221.82919312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02774563 221.82919312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02774564 221.82922363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02774565 221.82922363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02774566 221.82925415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02774567 221.82925415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02774568 221.82926941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02774569 221.82926941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02774570 221.82929993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02774571 221.82929993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02774572 221.82933044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02774573 221.82933044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02774574 221.82934570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02774575 221.82934570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02774576 221.82937622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02774577 221.82940674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02774578 221.82942200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02774579 221.82942200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02774580 221.82945251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02774581 221.82945251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02774582 221.82948303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02774583 221.82948303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02774584 221.82949829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02774585 221.82949829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02774586 221.82952881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02774587 221.82952881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02774588 221.82955933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02774589 221.82955933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02774590 221.82957458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02774591 221.82957458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02774592 221.82960510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02774593 221.82960510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02774594 221.82963562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02774595 221.82963562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02774596 221.82968140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02774597 221.82968140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02774598 221.82971191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02774599 221.82971191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02774600 221.82972717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02774601 221.82972717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02774602 221.82975769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02774603 221.82975769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02774604 221.82978821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02774605 221.82981873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02774606 221.82983398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02774607 221.82983398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02774608 221.82986450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02774609 221.82986450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02774610 221.82989502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02774611 221.82989502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02774612 221.82991028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02774613 221.82991028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02774614 221.82994080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02774615 221.82994080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02774616 221.82997131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02774617 221.82997131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02774618 221.82998657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02774619 221.82998657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02774620 221.83001709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02774621 221.83001709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02774622 221.83004761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02774623 221.83004761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02774624 221.83006287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02774625 221.83006287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02774626 221.83009338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02774627 221.83009338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02774628 221.83012390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02774629 221.83012390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02774630 221.83013916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02774631 221.83013916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02774632 221.83016968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02774633 221.83016968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02774634 221.83020020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02774635 221.83020020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02774636 221.83021545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02774637 221.83021545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02774638 221.83027649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02774639 221.83027649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02774640 221.83029175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02774641 221.83029175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02774642 221.83032227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02774643 221.83032227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02774644 221.83035278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02774645 221.83035278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02774646 221.83036804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02774647 221.83036804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02774648 221.83039856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02774649 221.83039856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02774650 221.83042908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02774651 221.83042908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02774652 221.83044434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02774653 221.83044434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02774654 221.83047485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02774655 221.83047485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02774656 221.83050537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02774657 221.83050537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02774658 221.83052063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02774659 221.83055115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02774660 221.83058167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02774661 221.83058167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02774662 221.83061218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02774663 221.83061218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02774664 221.83062744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02774665 221.83062744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02774666 221.83065796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02774667 221.83065796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02774668 221.83068848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02774669 221.83068848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02774670 221.83070374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02774671 221.83070374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02774672 221.83073425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02774673 221.83073425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02774674 221.83076477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02774675 221.83076477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02774676 221.83078003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02774677 221.83078003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02774678 221.83081055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02774679 221.83081055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02774680 221.83084106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02774681 221.83084106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02774682 221.83085632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02774683 221.83085632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02774684 221.83088684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02774685 221.83091736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02774686 221.83091736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02774687 221.83093262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02774688 221.83096313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02774689 221.83096313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02774690 221.83099365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02774691 221.83099365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02774692 221.83100891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02774693 221.83100891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02774694 221.83103943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02774695 221.83103943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02774696 221.83106995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02774697 221.83106995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02774698 221.83108521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02774699 221.83108521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02774700 221.83111572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02774701 221.83111572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02774702 221.83114624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02774703 221.83114624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02774704 221.83116150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02774705 221.83116150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02774706 221.83119202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02774707 221.83119202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02774708 221.83122253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02774709 221.83122253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02774710 221.83123779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02774711 221.83123779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02774712 221.83126831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02774713 221.83126831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02774714 221.83129883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02774715 221.83129883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02774716 221.83131409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02774717 221.83131409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02774718 221.83134460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02774719 221.83137512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02774720 221.83140564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02774721 221.83140564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02774722 221.83142090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02774723 221.83142090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02774724 221.83145142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02774725 221.83145142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02774726 221.83148193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02774727 221.83148193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02774728 221.83149719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02774729 221.83149719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02774730 221.83152771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02774731 221.83152771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02774732 221.83155823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02774733 221.83155823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02774734 221.83157349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02774735 221.83157349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02774736 221.83160400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02774737 221.83160400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02774738 221.83163452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02774739 221.83164978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02774740 221.83168030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02774741 221.83168030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02774742 221.83171082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02774743 221.83171082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02774744 221.83172607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02774745 221.83172607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02774746 221.83175659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02774747 221.83175659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02774748 221.83180237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02774749 221.83180237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02774750 221.83183289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02774751 221.83183289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02774752 221.83186340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02774753 221.83186340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02774754 221.83187866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02774755 221.83187866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02774756 221.83190918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02774757 221.83190918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02774758 221.83193970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02774759 221.83193970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02774760 221.83195496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02774761 221.83195496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02774762 221.83198547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02774763 221.83198547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02774764 221.83201599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02774765 221.83203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02774766 221.83206177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02774767 221.83206177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02774768 221.83209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02774769 221.83209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02774770 221.83212280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02774771 221.83212280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02774772 221.83213806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02774773 221.83213806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02774774 221.83216858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02774775 221.83216858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02774776 221.83219910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02774777 221.83219910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02774778 221.83221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02774779 221.83221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02774780 221.83224487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02774781 221.83224487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02774782 221.83227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02774783 221.83227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02774784 221.83229065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02774785 221.83229065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02774786 221.83232117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02774787 221.83232117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02774788 221.83235168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02774789 221.83235168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02774790 221.83236694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02774791 221.83236694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02774792 221.83239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02774793 221.83239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02774794 221.83242798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02774795 221.83242798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02774796 221.83244324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02774797 221.83244324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02774798 221.83247375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02774799 221.83247375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02774800 221.83250427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02774801 221.83250427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02774802 221.83251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02774803 221.83251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02774804 221.83258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02774805 221.83258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02774806 221.83259583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02774807 221.83259583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02774808 221.83262634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02774809 221.83262634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02774810 221.83265686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02774811 221.83265686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02774812 221.83267212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02774813 221.83267212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02774814 221.83270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02774815 221.83270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02774816 221.83273315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02774817 221.83273315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02774818 221.83274841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02774819 221.83274841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02774820 221.83277893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02774821 221.83277893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02774822 221.83280945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02774823 221.83280945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02774824 221.83282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02774825 221.83282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02774826 221.83285522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02774827 221.83288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02774828 221.83288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02774829 221.83291626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02774830 221.83293152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02774831 221.83293152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02774832 221.83296204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02774833 221.83296204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02774834 221.83299255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02774835 221.83299255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02774836 221.83300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02774837 221.83300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02774838 221.83303833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02774839 221.83303833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02774840 221.83306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02774841 221.83306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02774842 221.83308411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02774843 221.83308411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02774844 221.83311462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02774845 221.83311462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02774846 221.83314514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02774847 221.83314514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02774848 221.83316040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02774849 221.83316040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02774850 221.83319092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02774851 221.83319092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02774852 221.83322144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02774853 221.83322144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02778586 221.88584900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -02778587 221.88584900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -02778588 221.88587952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -02778589 221.88587952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -02778590 221.88589478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -02778591 221.88589478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -02778592 221.88592529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -02778593 221.88592529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -02778594 221.88595581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -02778595 221.88595581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -02778596 221.88597107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -02778597 221.88600159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -02778598 221.88603210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -02778599 221.88603210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -02778600 221.88604736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -02778601 221.88604736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -02778602 221.88607788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -02778603 221.88607788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -02778604 221.88610840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -02778605 221.88610840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -02778606 221.88612366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -02778607 221.88612366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -02778608 221.88615417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -02778609 221.88615417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -02778610 221.88618469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -02778611 221.88618469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -02778612 221.88621521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -02778613 221.88621521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -02778614 221.88623047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -02778615 221.88623047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -02778616 221.88626099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -02778617 221.88629150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -02778618 221.88630676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -02778619 221.88630676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -02778620 221.88633728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -02778621 221.88633728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -02778622 221.88636780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -02778623 221.88636780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -02778624 221.88638306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -02778625 221.88638306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -02778626 221.88641357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -02778627 221.88641357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -02778628 221.88644409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -02778629 221.88644409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -02785654 221.98526001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18428 -02785655 221.98526001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18428 -02785656 221.98527527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18438 -02785657 221.98527527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18438 -02785658 221.98530579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18448 -02785659 221.98530579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18448 -02785660 221.98533630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18458 -02785661 221.98533630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18458 -02785662 221.98535156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18468 -02785663 221.98535156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18468 -02785664 221.98538208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18478 -02785665 221.98541260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18478 -02785666 221.98542786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18488 -02785667 221.98542786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18488 -02785668 221.98545837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18498 -02785669 221.98545837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18498 -02785670 221.98548889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a8 -02785671 221.98548889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a8 -02785672 221.98550415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b8 -02785673 221.98550415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b8 -02785674 221.98553467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c8 -02785675 221.98553467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c8 -02785676 221.98556519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -02785677 221.98556519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -02785678 221.98558044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -02785679 221.98558044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -02785680 221.98561096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -02785681 221.98561096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -02785682 221.98564148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -02785683 221.98564148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -02785684 221.98565674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18518 -02785685 221.98565674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18518 -02785686 221.98568726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18528 -02785687 221.98571777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18528 -02785688 221.98574829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18538 -02785689 221.98574829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18538 -02785690 221.98576355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18548 -02785691 221.98576355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18548 -02785692 221.98579407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18558 -02785693 221.98579407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18558 -02785694 221.98582458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18568 -02785695 221.98582458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18568 -02785696 221.98583984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18578 -02785697 221.98583984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18578 -02791192 222.06350708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23138 -02791193 222.06350708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23138 -02791194 222.06353760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23148 -02791195 222.06353760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23148 -02791196 222.06356812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23158 -02791197 222.06356812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23158 -02791198 222.06358337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23168 -02791199 222.06358337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23168 -02791200 222.06361389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23178 -02791201 222.06361389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23178 -02791202 222.06364441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23188 -02791203 222.06365967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23188 -02791204 222.06365967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23198 -02791205 222.06369019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23198 -02791206 222.06372070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a8 -02791207 222.06372070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a8 -02791208 222.06375122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b8 -02791209 222.06375122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b8 -02791210 222.06376648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c8 -02791211 222.06376648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c8 -02791212 222.06387329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d8 -02791213 222.06387329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d8 -02791214 222.06390381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e8 -02791215 222.06390381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e8 -02791216 222.06391907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f8 -02791217 222.06391907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f8 -02791218 222.06394958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23208 -02791219 222.06394958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23208 -02791220 222.06398010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23218 -02791221 222.06398010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23218 -02791222 222.06399536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23228 -02791223 222.06399536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23228 -02791224 222.06402588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23238 -02791225 222.06405640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23238 -02791226 222.06407166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23248 -02791227 222.06407166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23248 -02791228 222.06410217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23258 -02791229 222.06410217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23258 -02791230 222.06413269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23268 -02791231 222.06413269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23268 -02791232 222.06414795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23278 -02791233 222.06414795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23278 -02791234 222.06417847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23288 -02791235 222.06417847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23288 -02797396 222.15168762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -02797397 222.15168762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -02797398 222.15170288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -02797399 222.15170288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -02797400 222.15173340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -02797401 222.15176392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -02797402 222.15177917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -02797403 222.15177917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -02797404 222.15184021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -02797405 222.15184021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -02797406 222.15185547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -02797407 222.15185547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -02797408 222.15188599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -02797409 222.15188599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -02797410 222.15191650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -02797411 222.15191650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -02797412 222.15193176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -02797413 222.15193176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -02797414 222.15196228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -02797415 222.15196228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -02797416 222.15199280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -02797417 222.15199280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -02797418 222.15200806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -02797419 222.15200806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -02797420 222.15203857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -02797421 222.15206909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -02797422 222.15208435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -02797423 222.15208435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -02797424 222.15211487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -02797425 222.15211487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -02797426 222.15214539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f408 -02797427 222.15214539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f408 -02797428 222.15216064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f418 -02797429 222.15216064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f418 -02797430 222.15219116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f428 -02797431 222.15219116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f428 -02797432 222.15222168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f438 -02797433 222.15222168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f438 -02797434 222.15223694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f448 -02797435 222.15223694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f448 -02797436 222.15226746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f458 -02797437 222.15226746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f458 -02797438 222.15229797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f468 -02797439 222.15229797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f468 -02804444 222.25041199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf58 -02804445 222.25041199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf58 -02804446 222.25044250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf68 -02804447 222.25047302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf68 -02804448 222.25050354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf78 -02804449 222.25050354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf78 -02804450 222.25051880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -02804451 222.25051880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -02804452 222.25054932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -02804453 222.25054932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -02804454 222.25057983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -02804455 222.25057983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -02804456 222.25059509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -02804457 222.25059509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -02804458 222.25062561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -02804459 222.25062561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -02804460 222.25065613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -02804461 222.25065613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -02804462 222.25067139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -02804463 222.25067139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -02804464 222.25070190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -02804465 222.25070190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -02804466 222.25073242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -02804467 222.25074768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -02804468 222.25077820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -02804469 222.25077820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -02804470 222.25080872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -02804471 222.25080872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -02804472 222.25082397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -02804473 222.25082397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -02804474 222.25085449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -02804475 222.25085449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -02804476 222.25088501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -02804477 222.25088501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -02804478 222.25090027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -02804479 222.25090027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -02804480 222.25093079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02804481 222.25093079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02804482 222.25096130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02804483 222.25096130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02804484 222.25097656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02804485 222.25097656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02804486 222.25100708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02804487 222.25103760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02815648 223.39665222 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02815649 223.41390991 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815650 223.41390991 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815651 224.89392090 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815652 224.89398193 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815653 224.89399719 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815654 224.89399719 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02815655 224.89413452 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815656 224.89413452 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815657 224.89421082 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815658 224.89422607 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815659 225.09248352 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815660 225.09301758 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815661 225.29710388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -02815662 225.29740906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815663 225.31704712 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815664 225.32014465 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815665 225.32063293 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815666 225.32112122 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815667 225.32147217 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815668 225.32389832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815669 225.32438660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815670 225.32717896 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815671 225.32774353 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02815672 225.41529846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02815673 225.43675232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815674 225.43676758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815675 227.40042114 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815676 227.40046692 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815677 227.40049744 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815678 227.40049744 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02815679 227.40063477 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815680 227.40063477 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815681 227.40071106 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815682 227.40072632 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815683 227.40725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02815684 227.40725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02815685 227.40728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02815686 227.40728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02815687 227.40730286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02815688 227.40730286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02815689 227.40733337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02815690 227.40733337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02815691 227.40736389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02815692 227.40736389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02815693 227.40737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02815694 227.40740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02815695 227.40744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02815696 227.40744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02815697 227.40745544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02815698 227.40745544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02815699 227.40748596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02815700 227.40748596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02815701 227.40751648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02815702 227.40751648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02815703 227.40753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02815704 227.40753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02815705 227.40756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02815706 227.40756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02815707 227.40759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02815708 227.40759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02815709 227.40762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02815710 227.40762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02815711 227.40763855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02815712 227.40763855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02815713 227.40766907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02815714 227.40766907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02815715 227.40769958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02815716 227.40771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02815717 227.40774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02815718 227.40774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02815719 227.40777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02815720 227.40777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02815721 227.40779114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02815722 227.40779114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02815723 227.40782166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02815724 227.40782166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02815725 227.40785217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02815726 227.40785217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02815727 227.40786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02815728 227.40786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02815729 227.40789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02815730 227.40789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02815731 227.40792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02815732 227.40792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02815733 227.40794373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02815734 227.40794373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02815735 227.40797424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02815736 227.40800476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02815737 227.40802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02815738 227.40802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02815739 227.40805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02815740 227.40805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02815741 227.40808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02815742 227.40808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02815743 227.40817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02815744 227.40817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02815745 227.40820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02815746 227.40820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02815747 227.40823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02815748 227.40823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02815749 227.40824890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02815750 227.40824890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02815751 227.40827942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02815752 227.40830994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02815753 227.40832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02815754 227.40832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02815755 227.40835571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02815756 227.40835571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02815757 227.40838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02815758 227.40838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02815759 227.40841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02815760 227.40841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02815761 227.40843201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02815762 227.40843201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02815763 227.40846252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02815764 227.40846252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02815765 227.40849304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02815766 227.40849304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02815767 227.40850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02815768 227.40850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02815769 227.40853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02815770 227.40853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02815771 227.40856934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02815772 227.40858459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02815773 227.40861511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02815774 227.40861511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02815775 227.40864563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02815776 227.40864563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02815777 227.40866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02815778 227.40866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02815779 227.40869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02815780 227.40869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02815781 227.40872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02815782 227.40872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02815783 227.40873718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02815784 227.40873718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02815785 227.40876770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02815786 227.40876770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02815787 227.40879822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02815788 227.40879822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02815789 227.40881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02815790 227.40881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02815791 227.40884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02815792 227.40884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02815793 227.40888977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02815794 227.40888977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02815795 227.40892029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02815796 227.40892029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02815797 227.40895081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02815798 227.40895081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02815799 227.40896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02815800 227.40896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02815801 227.40899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02815802 227.40899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02815803 227.40902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02815804 227.40902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02815805 227.40904236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02815806 227.40904236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02815807 227.40910339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02815808 227.40910339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02815809 227.40913391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02815810 227.40913391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02815811 227.40914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02815812 227.40914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02815813 227.40917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02815814 227.40917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02815815 227.40921021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02815816 227.40921021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02815817 227.40922546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02815818 227.40925598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02815819 227.40928650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02815820 227.40928650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02815821 227.40930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02815822 227.40930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02815823 227.40933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02815824 227.40933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02815825 227.40936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02815826 227.40936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02815827 227.40937805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02815828 227.40937805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02815829 227.40940857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02815830 227.40940857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02815831 227.40943909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02815832 227.40943909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02815833 227.40945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02815834 227.40945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02815835 227.40948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02815836 227.40948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02815837 227.40951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02815838 227.40951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02815839 227.40953064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02815840 227.40956116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02815841 227.40959167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02815842 227.40959167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02815843 227.40960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02815844 227.40960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02815845 227.40963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02815846 227.40963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02815847 227.40966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02815848 227.40966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02815849 227.40968323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02815850 227.40968323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02815851 227.40971375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02815852 227.40971375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02815853 227.40974426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02815854 227.40974426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02815855 227.40975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02815856 227.40975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02815857 227.40979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02815858 227.40979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02815859 227.40982056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02815860 227.40983582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02815861 227.40986633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02815862 227.40986633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02815863 227.40989685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02815864 227.40989685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02815865 227.40992737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02815866 227.40992737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02815867 227.40994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02815868 227.40994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02815869 227.40997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02815870 227.40997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02815871 227.41000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02815872 227.41000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02815873 227.41001892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02815874 227.41001892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02815875 227.41004944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02815876 227.41004944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02815877 227.41007996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02815878 227.41007996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02815879 227.41009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02815880 227.41012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02815881 227.41015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02815882 227.41015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02815883 227.41017151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02815884 227.41017151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02815885 227.41020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02815886 227.41020203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02815887 227.41023254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02815888 227.41023254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02815889 227.41035461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02815890 227.41035461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02815891 227.41038513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02815892 227.41038513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02815893 227.41040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02815894 227.41040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02815895 227.41043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02815896 227.41046143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02815897 227.41047668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02815898 227.41047668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02815899 227.41050720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02815900 227.41050720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02815901 227.41053772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02815902 227.41053772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02815903 227.41055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02815904 227.41055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02815905 227.41058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02815906 227.41058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02815907 227.41061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02815908 227.41061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02815909 227.41062927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02815910 227.41062927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02815911 227.41065979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02815912 227.41065979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02815913 227.41069031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02815914 227.41072083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02815915 227.41073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02815916 227.41073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02815917 227.41076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02815918 227.41076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02815919 227.41079712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02815920 227.41079712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02815921 227.41081238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02815922 227.41081238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02815923 227.41084290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02815924 227.41084290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02815925 227.41087341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02815926 227.41087341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02815927 227.41088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02815928 227.41088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02815929 227.41091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02815930 227.41091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02815931 227.41094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02815932 227.41094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02815933 227.41096497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02815934 227.41096497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02815935 227.41099548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02815936 227.41102600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02815937 227.41104126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02815938 227.41104126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02815939 227.41107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02815940 227.41107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02815941 227.41110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02815942 227.41110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02815943 227.41111755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02815944 227.41111755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02815945 227.41114807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02815946 227.41114807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02815947 227.41117859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02815948 227.41117859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02815949 227.41119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02815950 227.41119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02815951 227.41122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02815952 227.41122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02815953 227.41125488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02815954 227.41125488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02815955 227.41127014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02815956 227.41130066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02815957 227.41133118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02815958 227.41133118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02815959 227.41134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02815960 227.41134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02815961 227.41137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02815962 227.41137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02815963 227.41140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02815964 227.41140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02815965 227.41143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02815966 227.41143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02815967 227.41145325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02815968 227.41145325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02815969 227.41148376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02815970 227.41148376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02815971 227.41151428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02815972 227.41151428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02815973 227.41152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02815974 227.41152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02815975 227.41156006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02815976 227.41156006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02815977 227.41159058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02815978 227.41159058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02815979 227.41160583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02815980 227.41160583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02815981 227.41163635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02815982 227.41163635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02815983 227.41168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02815984 227.41168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02815985 227.41171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02815986 227.41171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02815987 227.41174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02815988 227.41174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02815989 227.41175842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02815990 227.41175842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02815991 227.41178894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02815992 227.41178894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02815993 227.41181946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02815994 227.41181946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02815995 227.41183472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02815996 227.41183472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02815997 227.41186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02815998 227.41186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02815999 227.41189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02816000 227.41189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02816001 227.41191101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02816002 227.41194153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02816003 227.41197205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02816004 227.41197205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02816005 227.41198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02816006 227.41198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02816007 227.41201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02816008 227.41201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02816009 227.41204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02816010 227.41204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02816011 227.41206360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02816012 227.41206360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02816013 227.41209412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02816014 227.41209412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02816015 227.41212463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02816016 227.41212463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02816017 227.41213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02816018 227.41213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02816019 227.41217041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02816020 227.41217041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02816021 227.41220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02816022 227.41220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02816023 227.41223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02816024 227.41223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02816025 227.41227722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02816026 227.41227722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02816027 227.41230774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02816028 227.41230774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02816029 227.41232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02816030 227.41232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02816031 227.41235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02816032 227.41235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02816033 227.41238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02816034 227.41238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02816035 227.41239929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02816036 227.41239929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02816037 227.41242981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02816038 227.41242981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02816039 227.41246033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02816040 227.41246033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02816041 227.41247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02816042 227.41247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02816043 227.41250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02816044 227.41250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02816045 227.41253662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02816046 227.41255188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02816047 227.41258240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02816048 227.41258240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02816049 227.41261292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02816050 227.41261292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02816051 227.41262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02816052 227.41262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02816053 227.41265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02816054 227.41265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02816055 227.41268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02816056 227.41268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02816057 227.41270447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02816058 227.41270447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02816059 227.41273499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02816060 227.41273499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02816061 227.41276550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02816062 227.41276550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02816063 227.41278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02816064 227.41278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02816065 227.41281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02816066 227.41281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02816067 227.41284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02816068 227.41284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02816069 227.41285706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02816070 227.41285706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02816071 227.41288757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02816072 227.41291809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02816073 227.41293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02816074 227.41293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02816075 227.41296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02816076 227.41296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02816077 227.41299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02816078 227.41299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02816079 227.41302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02816080 227.41302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02816081 227.41304016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02816082 227.41304016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02816083 227.41307068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02816084 227.41307068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02816085 227.41310120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02816086 227.41310120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02816087 227.41311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02816088 227.41311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02816089 227.41314697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02816090 227.41314697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02816091 227.41317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02816092 227.41317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02816093 227.41319275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02816094 227.41319275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02816095 227.41322327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02816096 227.41322327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02816097 227.41325378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02816098 227.41325378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02816099 227.41326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02816100 227.41326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02816101 227.41329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02816102 227.41329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02816103 227.41333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02816104 227.41333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02816105 227.41334534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02816106 227.41334534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02816107 227.41337585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02816108 227.41337585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02816109 227.41340637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02816110 227.41340637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02816111 227.41342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02816112 227.41345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02816113 227.41345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02816114 227.41348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02816115 227.41349792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02816116 227.41349792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02816117 227.41352844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02816118 227.41352844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02816119 227.41355896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02816120 227.41355896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02816121 227.41357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02816122 227.41357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02816123 227.41360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02816124 227.41360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02816125 227.41363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02816126 227.41363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02816127 227.41365051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02816128 227.41365051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02816129 227.41368103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02816130 227.41368103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02816131 227.41371155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02816132 227.41371155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02816133 227.41372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02816134 227.41372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02816135 227.41375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02816136 227.41375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02816137 227.41378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02816138 227.41378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02816139 227.41381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02816140 227.41381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02816141 227.41383362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02816142 227.41386414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02816143 227.41389465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02816144 227.41389465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02816145 227.41390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02816146 227.41390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02816147 227.41394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02816148 227.41394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02816149 227.41397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02816150 227.41397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02816151 227.41398621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02816152 227.41398621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02816153 227.41401672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02816154 227.41401672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02816155 227.41404724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02816156 227.41404724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02816157 227.41406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02816158 227.41406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02816159 227.41409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02816160 227.41409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02816161 227.41412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02816162 227.41412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02816163 227.41413879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02816164 227.41413879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02816165 227.41416931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02816166 227.41416931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02816167 227.41419983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02816168 227.41419983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02816169 227.41421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02816170 227.41424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02816171 227.41424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02816172 227.41427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02816173 227.41429138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02816174 227.41429138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02816175 227.41432190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02816176 227.41432190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02816177 227.41435242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02816178 227.41435242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02816179 227.41436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02816180 227.41436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02816181 227.41439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02816182 227.41439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02816183 227.41442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02816184 227.41442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02816185 227.41444397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02816186 227.41444397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02816187 227.41447449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02816188 227.41447449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02816189 227.41450500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02816190 227.41450500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02816191 227.41453552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02816192 227.41453552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02816193 227.41455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02816194 227.41455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02816195 227.41458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02816196 227.41458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02816197 227.41461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02816198 227.41461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02816199 227.41462708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02816200 227.41462708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02816201 227.41465759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02816202 227.41465759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02816203 227.41468811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02816204 227.41468811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02816205 227.41470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02816206 227.41470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02816207 227.41473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02816208 227.41473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02816209 227.41476440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02816210 227.41477966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02816211 227.41477966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02816212 227.41481018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02816213 227.41484070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02816214 227.41484070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02816215 227.41485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02816216 227.41485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02816217 227.41488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02816218 227.41488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02816219 227.41491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02816220 227.41491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02816221 227.41493225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02816222 227.41493225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02816223 227.41496277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02816224 227.41496277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02816225 227.41499329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02816226 227.41499329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02816227 227.41500854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02816228 227.41500854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02816229 227.41503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02816230 227.41503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02816231 227.41506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02816232 227.41506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02816233 227.41508484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02816234 227.41508484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02816235 227.41511536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02816236 227.41511536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02816237 227.41514587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02816238 227.41516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02816239 227.41516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02816240 227.41519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02816241 227.41522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02816242 227.41522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02816243 227.41523743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02816244 227.41523743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02816245 227.41526794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02816246 227.41526794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02816247 227.41529846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02816248 227.41529846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02816249 227.41532898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02816250 227.41532898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02816251 227.41534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02816252 227.41534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02816253 227.41537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02816254 227.41537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02816255 227.41540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02816256 227.41540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02816257 227.41542053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02816258 227.41542053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02816259 227.41545105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02816260 227.41545105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02816261 227.41548157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02816262 227.41548157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02816263 227.41549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02816264 227.41549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02816265 227.41552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02816266 227.41552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02816267 227.41555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02816268 227.41555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02816269 227.41557312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02816270 227.41557312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02816271 227.41560364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02816272 227.41560364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02816273 227.41563416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02816274 227.41563416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02816275 227.41564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02816276 227.41564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02816277 227.41567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02816278 227.41571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02816279 227.41571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02816280 227.41572571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02816281 227.41575623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02816282 227.41575623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02816283 227.41578674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02816284 227.41578674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02816285 227.41580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02816286 227.41580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02816287 227.41583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02816288 227.41583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02816289 227.41586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02816290 227.41586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02816291 227.41587830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02816292 227.41587830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02816293 227.41590881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02816294 227.41590881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02816295 227.41593933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02816296 227.41593933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02816297 227.41595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02816298 227.41598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02816299 227.41601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02816300 227.41601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02816301 227.41603088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02816302 227.41603088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02816303 227.41606140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02816304 227.41606140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02816305 227.41609192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02816306 227.41609192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02816307 227.41612244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02816308 227.41612244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02816309 227.41613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02816310 227.41613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02816311 227.41616821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02816312 227.41616821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02816313 227.41619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02816314 227.41619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02816315 227.41621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02816316 227.41621399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02816317 227.41624451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02816318 227.41624451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02816319 227.41627502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02816320 227.41627502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02816321 227.41629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02816322 227.41629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02816323 227.41632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02816324 227.41632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02816325 227.41635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02816326 227.41636658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02816327 227.41639709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02816328 227.41639709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02816329 227.41642761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02816330 227.41642761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02816331 227.41644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02816332 227.41644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02816333 227.41647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02816334 227.41647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02816335 227.41650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02816336 227.41650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02816337 227.41651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02816338 227.41651917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02816339 227.41654968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02816340 227.41654968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02816341 227.41658020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02816342 227.41658020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02816343 227.41659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02816344 227.41659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02816345 227.41662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02816346 227.41662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02816347 227.41665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02816348 227.41665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02816349 227.41667175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02816350 227.41667175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02816351 227.41670227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02816352 227.41670227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02816353 227.41673279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02816354 227.41673279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02816355 227.41674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02816356 227.41674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02816357 227.41680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02816358 227.41680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02816359 227.41683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02816360 227.41683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02816361 227.41685486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02816362 227.41685486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02816363 227.41688538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02816364 227.41688538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02816365 227.41691589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02816366 227.41691589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02816367 227.41693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02816368 227.41693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02816369 227.41696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02816370 227.41696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02816371 227.41699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02816372 227.41699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02816373 227.41700745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02816374 227.41700745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02816375 227.41703796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02816376 227.41703796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02816377 227.41706848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02816378 227.41706848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02816379 227.41708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02816380 227.41708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02816381 227.41711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02816382 227.41711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02816383 227.41716003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02816384 227.41716003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02816385 227.41719055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02816386 227.41719055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02816387 227.41722107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02816388 227.41722107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02816389 227.41723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02816390 227.41723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02816391 227.41726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02816392 227.41726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02816393 227.41729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02816394 227.41729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02816395 227.41731262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02816396 227.41731262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02816397 227.41734314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02816398 227.41734314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02816399 227.41737366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02816400 227.41737366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02816401 227.41738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02816402 227.41741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02816403 227.41744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02816404 227.41744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02816405 227.41746521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02816406 227.41746521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02816407 227.41749573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02816408 227.41749573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02816409 227.41752625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02816410 227.41752625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02816411 227.41754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02816412 227.41754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02816413 227.41757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02816414 227.41757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02816415 227.41760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02816416 227.41760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02816417 227.41763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02816418 227.41763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02816419 227.41764832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02816420 227.41767883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02816421 227.41770935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02816422 227.41770935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02816423 227.41772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02816424 227.41772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02816425 227.41775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02816426 227.41775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02816427 227.41778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02816428 227.41778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02816429 227.41780090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02816430 227.41780090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02816431 227.41783142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02816432 227.41783142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02816433 227.41786194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02816434 227.41786194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02816435 227.41787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02816436 227.41787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02816437 227.41790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02816438 227.41790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02816439 227.41793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02816440 227.41793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02816441 227.41795349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02816442 227.41795349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02816443 227.41798401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02816444 227.41798401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02816445 227.41801453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02816446 227.41802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02816447 227.41806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02816448 227.41806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02816449 227.41809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02816450 227.41809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02816451 227.41810608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02816452 227.41810608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02816453 227.41813660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02816454 227.41813660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02816455 227.41816711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02816456 227.41816711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02816457 227.41818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02816458 227.41818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02816459 227.41821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02816460 227.41821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02816461 227.41824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02816462 227.41824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02816463 227.41825867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02816464 227.41828918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02816465 227.41831970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02816466 227.41831970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02816467 227.41833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02816468 227.41833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02816469 227.41836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02816470 227.41836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02816471 227.41839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02816472 227.41839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02816473 227.41842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02816474 227.41842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02816475 227.41844177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02816476 227.41844177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02816477 227.41847229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02816478 227.41847229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02816479 227.41850281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02816480 227.41850281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02816481 227.41851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02816482 227.41851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02816483 227.41854858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02816484 227.41854858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02816485 227.41857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02816486 227.41859436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02816487 227.41862488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02816488 227.41862488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02816489 227.41865540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02816490 227.41865540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02816491 227.41867065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02816492 227.41867065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02816493 227.41870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02816494 227.41870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02816495 227.41873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02816496 227.41873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02816497 227.41874695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02816498 227.41874695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02816499 227.41877747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02816500 227.41877747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02816501 227.41880798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02816502 227.41880798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02816503 227.41882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02816504 227.41882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02816505 227.41885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02816506 227.41888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02816507 227.41889954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02816508 227.41889954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02816509 227.41893005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02816510 227.41893005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02816511 227.41896057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02816512 227.41896057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02816513 227.41897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02816514 227.41897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02816515 227.41900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02816516 227.41900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02816517 227.41903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02816518 227.41903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02816519 227.41905212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02816520 227.41905212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02816521 227.41908264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02816522 227.41908264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02816523 227.41911316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02816524 227.41911316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02816525 227.41912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02816526 227.41912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02816527 227.41915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02816528 227.41918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02816529 227.41918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02816530 227.41921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02816531 227.41923523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02816532 227.41923523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02816533 227.41926575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02816534 227.41926575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02816535 227.41929626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02816536 227.41929626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02816537 227.41931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02816538 227.41931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02816539 227.41934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02816540 227.41934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02816541 227.41937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02816542 227.41937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02816543 227.41938782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02816544 227.41938782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02816545 227.41941833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02816546 227.41941833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02816547 227.41944885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02816548 227.41944885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02816549 227.41946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02816550 227.41949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02816551 227.41952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02816552 227.41952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02816553 227.41954041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02816554 227.41954041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02816555 227.41957092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02816556 227.41957092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02816557 227.41960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02816558 227.41960144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02816559 227.41961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02816560 227.41961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02816561 227.41964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02816562 227.41964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02816563 227.41967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02816564 227.41967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02816565 227.41969299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02816566 227.41969299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02816567 227.41972351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02816568 227.41972351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02816569 227.41975403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02816570 227.41976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02816571 227.41979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02816572 227.41979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02816573 227.41983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02816574 227.41983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02816575 227.41984558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02816576 227.41984558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02816577 227.41987610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02816578 227.41987610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02816579 227.41990662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02816580 227.41990662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02816581 227.41993713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02816582 227.41993713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02816583 227.41995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02816584 227.41995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02816585 227.41998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02816586 227.41998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02816587 227.42001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02816588 227.42001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02816589 227.42002869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02816590 227.42005920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02816591 227.42008972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02816592 227.42008972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02816593 227.42010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02816594 227.42010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02816595 227.42013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02816596 227.42013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02816597 227.42016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02816598 227.42016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02816599 227.42018127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02816600 227.42018127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02816601 227.42021179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02816602 227.42021179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02816603 227.42024231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02816604 227.42024231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02816605 227.42025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02816606 227.42025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02816607 227.42028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02816608 227.42028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02816609 227.42031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02816610 227.42031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02816611 227.42033386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02816612 227.42033386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02816613 227.42036438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02816614 227.42036438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02816615 227.42039490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02816616 227.42039490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02816617 227.42041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02816618 227.42041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02816619 227.42044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02816620 227.42044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02816621 227.42047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02816622 227.42048645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02816623 227.42048645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02816624 227.42051697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02816625 227.42054749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02816626 227.42054749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02816627 227.42056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02816628 227.42056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02816629 227.42059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02816630 227.42059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02816631 227.42062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02816632 227.42062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02816633 227.42063904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02816634 227.42063904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02816635 227.42066956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02816636 227.42066956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02816637 227.42070007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02816638 227.42070007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02816639 227.42073059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02816640 227.42073059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02816641 227.42074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02816642 227.42074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02816643 227.42077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02816644 227.42077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02816645 227.42080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02816646 227.42080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02816647 227.42082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02816648 227.42082214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02816649 227.42089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02816650 227.42089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02816651 227.42092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02816652 227.42092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02816653 227.42095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02816654 227.42095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02816655 227.42097473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02816656 227.42097473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02816657 227.42100525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02816658 227.42100525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02816659 227.42103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02816660 227.42103577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02816661 227.42105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02816662 227.42108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02816663 227.42108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02816664 227.42111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02816665 227.42118835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02816666 227.42118835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02816667 227.42120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02816668 227.42120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02816669 227.42123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02816670 227.42123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02816671 227.42126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02816672 227.42126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02816673 227.42127991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02816674 227.42127991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02816675 227.42131042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02816676 227.42131042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02816677 227.42134094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02816678 227.42134094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02816679 227.42135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02816680 227.42135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02816681 227.42138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02816682 227.42138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02816683 227.42141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02816684 227.42141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02816685 227.42143250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02816686 227.42146301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02823091 227.51344299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7a8 -02823092 227.51347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b8 -02823093 227.51347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b8 -02823094 227.51350403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c8 -02823095 227.51351929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c8 -02823096 227.51354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d8 -02823097 227.51354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d8 -02823098 227.51358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7e8 -02823099 227.51358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7e8 -02823100 227.51359558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7f8 -02823101 227.51359558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7f8 -02823102 227.51362610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf808 -02823103 227.51362610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf808 -02823104 227.51365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf818 -02823105 227.51365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf818 -02823106 227.51367188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf828 -02823107 227.51367188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf828 -02823108 227.51370239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf838 -02823109 227.51370239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf838 -02823110 227.51373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf848 -02823111 227.51373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf848 -02823112 227.51374817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf858 -02823113 227.51374817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf858 -02823114 227.51377869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf868 -02823115 227.51380920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf868 -02823116 227.51382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf878 -02823117 227.51382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf878 -02823118 227.51385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf888 -02823119 227.51385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf888 -02823120 227.51388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf898 -02823121 227.51388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf898 -02823122 227.51390076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a8 -02823123 227.51390076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a8 -02823124 227.51393127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b8 -02823125 227.51393127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b8 -02823126 227.51396179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c8 -02823127 227.51396179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c8 -02823128 227.51397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d8 -02823129 227.51397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d8 -02823130 227.51400757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e8 -02823131 227.51400757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e8 -02823132 227.51403809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f8 -02823133 227.51403809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f8 -02823134 227.51405334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf908 -02845224 227.83250427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab58 -02845225 227.83250427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab58 -02845226 227.83251953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab68 -02845227 227.83251953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab68 -02845228 227.83255005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -02845229 227.83255005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -02845230 227.83258057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -02845231 227.83258057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -02845232 227.83259583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -02845233 227.83259583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -02845234 227.83262634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -02845235 227.83265686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -02845236 227.83265686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -02845237 227.83267212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -02845238 227.83270264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -02845239 227.83270264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -02845240 227.83273315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -02845241 227.83273315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -02845242 227.83274841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe8 -02845243 227.83274841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe8 -02845244 227.83277893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf8 -02845245 227.83277893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf8 -02845246 227.83280945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac08 -02845247 227.83280945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac08 -02845248 227.83282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac18 -02845249 227.83282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac18 -02845250 227.83285522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac28 -02845251 227.83285522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac28 -02845252 227.83288574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac38 -02845253 227.83288574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac38 -02845254 227.83291626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac48 -02845255 227.83291626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac48 -02845256 227.83293152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac58 -02845257 227.83293152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac58 -02845258 227.83296204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac68 -02845259 227.83296204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac68 -02845260 227.83299255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac78 -02845261 227.83299255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac78 -02845262 227.83300781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac88 -02845263 227.83300781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac88 -02845264 227.83303833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac98 -02845265 227.83303833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac98 -02845266 227.83306885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca8 -02845267 227.83306885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca8 -02857572 229.45809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02857573 229.47880554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857574 229.47880554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857575 229.90702820 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857576 229.90707397 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857577 229.90710449 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857578 229.90710449 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02857579 229.90722656 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857580 229.90722656 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857581 229.90730286 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857582 229.90733337 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857583 231.48019409 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02857584 231.49836731 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857585 231.49836731 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857586 231.86224365 [vmhook-eac [core number = 23]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7AD1BE0 -02857587 231.86389160 [vmhook-eac [core number = 23]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7AD1BE0 -02857588 232.41331482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857589 232.41336060 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857590 232.41336060 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857591 232.41339111 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02857592 232.41351318 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857593 232.41351318 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857594 232.41357422 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857595 232.41358948 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857596 233.00703430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02857597 233.00703430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02857598 233.00704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02857599 233.00704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02857600 233.00708008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02857601 233.00708008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02857602 233.00711060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02857603 233.00711060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02857604 233.00712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02857605 233.00712585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02857606 233.00715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02857607 233.00715637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02857608 233.00718689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02857609 233.00718689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02857610 233.00720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02857611 233.00720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02857612 233.00723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02857613 233.00723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02857614 233.00726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02857615 233.00726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02857616 233.00727844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02857617 233.00727844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02857618 233.00730896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02857619 233.00730896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02857620 233.00733948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02857621 233.00735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02857622 233.00735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02857623 233.00738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02857624 233.00741577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02857625 233.00741577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02857626 233.00743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02857627 233.00743103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02857628 233.00746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02857629 233.00746155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02857630 233.00749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02857631 233.00749207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02857632 233.00750732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02857633 233.00750732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02857634 233.00753784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02857635 233.00753784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02857636 233.00756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02857637 233.00756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02857638 233.00758362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02857639 233.00758362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02857640 233.00761414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02857641 233.00764465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02857642 233.00765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02857643 233.00765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02857644 233.00769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02857645 233.00769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02857646 233.00772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02857647 233.00772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02857648 233.00775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02857649 233.00775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02857650 233.00776672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02857651 233.00776672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02857652 233.00779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02857653 233.00779724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02857654 233.00782776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02857655 233.00782776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02857656 233.00784302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02857657 233.00784302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02857658 233.00787354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02857659 233.00787354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02857660 233.00790405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02857661 233.00791931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02857662 233.00791931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02857663 233.00794983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02857664 233.00798035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02857665 233.00798035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02857666 233.00799561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02857667 233.00799561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02857668 233.00802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02857669 233.00802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02857670 233.00805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02857671 233.00805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02857672 233.00807190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02857673 233.00807190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02857674 233.00810242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02857675 233.00810242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02857676 233.00813293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02857677 233.00813293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02857678 233.00814819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02857679 233.00814819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02857680 233.00817871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02857681 233.00817871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02857682 233.00820923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02857683 233.00820923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02857684 233.00822449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02857685 233.00822449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02857686 233.00828552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02857687 233.00828552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02857688 233.00830078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02857689 233.00833130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02857690 233.00836182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02857691 233.00836182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02857692 233.00837708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02857693 233.00837708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02857694 233.00840759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02857695 233.00840759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02857696 233.00843811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02857697 233.00843811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02857698 233.00845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02857699 233.00845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02857700 233.00848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02857701 233.00848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02857702 233.00851440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02857703 233.00851440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02857704 233.00854492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02857705 233.00854492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02857706 233.00856018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02857707 233.00859070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02857708 233.00862122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02857709 233.00862122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02857710 233.00863647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02857711 233.00863647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02857712 233.00866699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02857713 233.00866699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02857714 233.00869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02857715 233.00869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02857716 233.00871277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02857717 233.00871277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02857718 233.00874329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02857719 233.00874329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02857720 233.00877380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02857721 233.00878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02857722 233.00881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02857723 233.00881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02857724 233.00885010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02857725 233.00885010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02857726 233.00886536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02857727 233.00886536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02857728 233.00889587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02857729 233.00889587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02857730 233.00892639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02857731 233.00892639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02857732 233.00894165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02857733 233.00894165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02857734 233.00897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02857735 233.00897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02857736 233.00900269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02857737 233.00900269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02857738 233.00901794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02857739 233.00901794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02857740 233.00904846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02857741 233.00907898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02857742 233.00907898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02857743 233.00909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02857744 233.00912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02857745 233.00912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02857746 233.00915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02857747 233.00915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02857748 233.00917053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02857749 233.00917053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02857750 233.00920105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02857751 233.00920105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02857752 233.00923157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02857753 233.00923157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02857754 233.00924683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02857755 233.00924683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02857756 233.00927734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02857757 233.00927734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02857758 233.00930786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02857759 233.00930786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02857760 233.00933838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02857761 233.00933838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02857762 233.00935364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02857763 233.00938416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02857764 233.00941467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02857765 233.00941467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02857766 233.00942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02857767 233.00942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02857768 233.00946045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02857769 233.00946045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02857770 233.00949097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02857771 233.00949097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02857772 233.00950623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02857773 233.00950623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02857774 233.00953674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02857775 233.00953674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02857776 233.00956726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02857777 233.00956726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02857778 233.00958252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02857779 233.00958252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02857780 233.00961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02857781 233.00961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02857782 233.00964355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02857783 233.00964355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02857784 233.00965881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02857785 233.00965881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02857786 233.00968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02857787 233.00968933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02857788 233.00971985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02857789 233.00971985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02857790 233.00973511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02857791 233.00973511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02857792 233.00976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02857793 233.00976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02857794 233.00979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02857795 233.00981140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02857796 233.00984192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02857797 233.00984192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02857798 233.00987244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02857799 233.00987244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02857800 233.00988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02857801 233.00988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02857802 233.00991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02857803 233.00991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02857804 233.00994873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02857805 233.00994873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02857806 233.00996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02857807 233.00996399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02857808 233.00999451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02857809 233.00999451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02857810 233.01002502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02857811 233.01002502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02857812 233.01005554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02857813 233.01005554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02857814 233.01007080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02857815 233.01007080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02857816 233.01010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02857817 233.01010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02857818 233.01013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02857819 233.01013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02857820 233.01014709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02857821 233.01017761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02857822 233.01017761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02857823 233.01020813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02857824 233.01022339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02857825 233.01022339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02857826 233.01025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02857827 233.01025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02857828 233.01028442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02857829 233.01028442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02857830 233.01029968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02857831 233.01029968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02857832 233.01033020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02857833 233.01033020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02857834 233.01036072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02857835 233.01036072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02857836 233.01037598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02857837 233.01037598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02857838 233.01040649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02857839 233.01040649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02857840 233.01043701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02857841 233.01043701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02857842 233.01045227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02857843 233.01045227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02857844 233.01048279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02857845 233.01048279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02857846 233.01051331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02857847 233.01051331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02857848 233.01052856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02857849 233.01055908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02857850 233.01058960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02857851 233.01058960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02857852 233.01060486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02857853 233.01060486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02857854 233.01063538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02857855 233.01063538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02857856 233.01066589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02857857 233.01066589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02857858 233.01068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02857859 233.01068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02857860 233.01071167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02857861 233.01071167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02857862 233.01074219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02857863 233.01074219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02857864 233.01075745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02857865 233.01075745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02857866 233.01078796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02857867 233.01078796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02857868 233.01081848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02857869 233.01081848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02857870 233.01084900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02857871 233.01084900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02857872 233.01086426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02857873 233.01086426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02857874 233.01089478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02857875 233.01089478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02857876 233.01092529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02857877 233.01092529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02857878 233.01094055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02857879 233.01094055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02857880 233.01097107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02857881 233.01100159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02857882 233.01100159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02857883 233.01101685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02857884 233.01104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02857885 233.01104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02857886 233.01107788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02857887 233.01107788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02857888 233.01109314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02857889 233.01109314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02857890 233.01112366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02857891 233.01112366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02857892 233.01115417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02857893 233.01115417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02857894 233.01116943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02857895 233.01116943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02857896 233.01119995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02857897 233.01119995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02857898 233.01123047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02857899 233.01123047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02857900 233.01124573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02857901 233.01124573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02857902 233.01127625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02857903 233.01127625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02857904 233.01130676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02857905 233.01130676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02857906 233.01132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02857907 233.01132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02857908 233.01135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02857909 233.01135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02857910 233.01138306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02857911 233.01138306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02857912 233.01139832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02857913 233.01139832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02857914 233.01142883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02857915 233.01142883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02857916 233.01145935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02857917 233.01145935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02857918 233.01147461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02857919 233.01147461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02857920 233.01150513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02857921 233.01150513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02857922 233.01153564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02857923 233.01155090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02857924 233.01158142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02857925 233.01158142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02857926 233.01161194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02857927 233.01161194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02857928 233.01164246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02857929 233.01164246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02857930 233.01165771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02857931 233.01165771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02857932 233.01168823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02857933 233.01168823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02857934 233.01171875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02857935 233.01171875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02857936 233.01173401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02857937 233.01173401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02857938 233.01176453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02857939 233.01176453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02857940 233.01179504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02857941 233.01179504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02857942 233.01181030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02857943 233.01184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02857944 233.01184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02857945 233.01187134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02857946 233.01188660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02857947 233.01188660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02857948 233.01191711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02857949 233.01191711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02857950 233.01194763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02857951 233.01194763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02857952 233.01196289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02857953 233.01196289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02857954 233.01199341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02857955 233.01199341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02857956 233.01202393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02857957 233.01202393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02857958 233.01203918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02857959 233.01203918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02857960 233.01206970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02857961 233.01206970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02857962 233.01210022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02857963 233.01210022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02857964 233.01211548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02857965 233.01211548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02857966 233.01214600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02857967 233.01214600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02857968 233.01217651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02857969 233.01217651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02857970 233.01219177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02857971 233.01219177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02857972 233.01222229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02857973 233.01225281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02857974 233.01226807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02857975 233.01226807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02857976 233.01229858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02857977 233.01229858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02857978 233.01232910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02857979 233.01232910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02857980 233.01235962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02857981 233.01235962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02857982 233.01237488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02857983 233.01237488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02857984 233.01240540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02857985 233.01240540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02857986 233.01243591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02857987 233.01243591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02857988 233.01245117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02857989 233.01245117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02857990 233.01248169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02857991 233.01248169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02857992 233.01251221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02857993 233.01251221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02857994 233.01252747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02857995 233.01252747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02857996 233.01255798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02857997 233.01255798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02857998 233.01258850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02857999 233.01258850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02858000 233.01260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02858001 233.01260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02858002 233.01263428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02858003 233.01263428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02858004 233.01266479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02858005 233.01266479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02858006 233.01268005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02858007 233.01271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02858008 233.01271057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02858009 233.01274109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02858010 233.01275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02858011 233.01275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02858012 233.01278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02858013 233.01278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02858014 233.01281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02858015 233.01281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02858016 233.01283264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02858017 233.01283264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02858018 233.01289368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02858019 233.01289368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02858020 233.01290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02858021 233.01290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02858022 233.01293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02858023 233.01293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02858024 233.01296997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02858025 233.01296997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02858026 233.01298523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02858027 233.01298523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02858028 233.01301575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02858029 233.01301575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02858030 233.01304626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02858031 233.01306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02858032 233.01306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02858033 233.01309204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02858034 233.01312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02858035 233.01312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02858036 233.01315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02858037 233.01315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02858038 233.01316833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02858039 233.01316833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02858040 233.01319885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02858041 233.01319885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02858042 233.01322937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02858043 233.01322937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02858044 233.01324463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02858045 233.01324463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02858046 233.01327515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02858047 233.01327515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02858048 233.01330566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02858049 233.01330566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02858050 233.01332092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02858051 233.01332092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02858052 233.01335144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02858053 233.01335144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02858054 233.01338196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02858055 233.01338196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02858056 233.01339722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02858057 233.01339722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02858058 233.01342773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02858059 233.01345825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02858060 233.01347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02858061 233.01347351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02858062 233.01350403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02858063 233.01350403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02858064 233.01353455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02858065 233.01353455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02858066 233.01354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02858067 233.01354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02858068 233.01358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02858069 233.01358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02858070 233.01361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02858071 233.01361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02858072 233.01362610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02858073 233.01362610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02858074 233.01365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02858075 233.01365662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02858076 233.01368713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02858077 233.01368713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02858078 233.01370239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02858079 233.01373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02858080 233.01376343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02858081 233.01376343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02858082 233.01377869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02858083 233.01377869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02858084 233.01380920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02858085 233.01380920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02858086 233.01383972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02858087 233.01383972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02858088 233.01385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02858089 233.01385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02858090 233.01388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02858091 233.01388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02858092 233.01391602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02858093 233.01391602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02858094 233.01394653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02858095 233.01394653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02858096 233.01396179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02858097 233.01399231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02858098 233.01402283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02858099 233.01402283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02858100 233.01403809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02858101 233.01403809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02858102 233.01406860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02858103 233.01406860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02858104 233.01409912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02858105 233.01409912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02858106 233.01411438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02858107 233.01411438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02858108 233.01414490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02858109 233.01414490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02858110 233.01417542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02858111 233.01417542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02858112 233.01419067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02858113 233.01419067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02858114 233.01425171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02858115 233.01425171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02858116 233.01426697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02858117 233.01426697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02858118 233.01429749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02858119 233.01432800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02858120 233.01434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02858121 233.01434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02858122 233.01437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02858123 233.01437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02858124 233.01440430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02858125 233.01440430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02858126 233.01441956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02858127 233.01441956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02858128 233.01445007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02858129 233.01445007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02858130 233.01448059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02858131 233.01448059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02858132 233.01449585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02858133 233.01449585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02858134 233.01452637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02858135 233.01452637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02858136 233.01455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02858137 233.01455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02858138 233.01457214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02858139 233.01457214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02858140 233.01460266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02858141 233.01460266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02858142 233.01463318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02858143 233.01463318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02858144 233.01464844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02858145 233.01464844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02858146 233.01467896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02858147 233.01467896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02858148 233.01470947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02858149 233.01470947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02858150 233.01473999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02858151 233.01473999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02858152 233.01475525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02858153 233.01475525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02858154 233.01478577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02858155 233.01478577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02858156 233.01481628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02858157 233.01481628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02858158 233.01483154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02858159 233.01486206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02858160 233.01486206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02858161 233.01489258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02858162 233.01490784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02858163 233.01490784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02858164 233.01493835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02858165 233.01493835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02858166 233.01496887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02858167 233.01496887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02867814 233.14979553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f98 -02867815 233.14979553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f98 -02867816 233.14982605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa8 -02867817 233.14982605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa8 -02867818 233.14985657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb8 -02867819 233.14987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb8 -02867820 233.14990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc8 -02867821 233.14990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc8 -02867822 233.14993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd8 -02867823 233.14993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd8 -02867824 233.14994812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe8 -02867825 233.14994812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe8 -02867826 233.14997864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff8 -02867827 233.14997864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff8 -02867828 233.15000916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15008 -02867829 233.15000916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15008 -02867830 233.15002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15018 -02867831 233.15002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15018 -02867832 233.15005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15028 -02867833 233.15005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15028 -02867834 233.15008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15038 -02867835 233.15008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15038 -02867836 233.15010071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15048 -02867837 233.15010071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15048 -02867838 233.15013123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15058 -02867839 233.15016174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15058 -02867840 233.15017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15068 -02867841 233.15017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15068 -02867842 233.15020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15078 -02867843 233.15020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15078 -02867844 233.15023804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15088 -02867845 233.15023804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15088 -02867846 233.15025330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15098 -02867847 233.15025330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15098 -02867848 233.15028381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a8 -02867849 233.15028381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a8 -02867850 233.15031433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b8 -02867851 233.15031433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b8 -02867852 233.15032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c8 -02867853 233.15032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c8 -02867854 233.15036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d8 -02867855 233.15036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d8 -02867856 233.15039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e8 -02867857 233.15039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e8 -02888822 233.44412231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e018 -02888823 233.44412231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e018 -02888824 233.44415283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e028 -02888825 233.44416809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e028 -02888826 233.44419861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e038 -02888827 233.44419861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e038 -02888828 233.44422913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e048 -02888829 233.44422913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e048 -02888830 233.44424438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e058 -02888831 233.44424438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e058 -02888832 233.44427490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e068 -02888833 233.44427490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e068 -02888834 233.44430542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e078 -02888835 233.44430542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e078 -02888836 233.44432068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e088 -02888837 233.44432068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e088 -02888838 233.44435120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e098 -02888839 233.44435120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e098 -02888840 233.44438171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a8 -02888841 233.44438171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a8 -02888842 233.44439697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b8 -02888843 233.44439697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b8 -02888844 233.44447327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c8 -02888845 233.44447327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c8 -02888846 233.44450378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d8 -02888847 233.44450378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d8 -02888848 233.44453430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e8 -02888849 233.44453430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e8 -02888850 233.44454956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f8 -02888851 233.44454956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f8 -02888852 233.44458008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e108 -02888853 233.44461060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e108 -02888854 233.44461060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e118 -02888855 233.44464111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e118 -02888856 233.44465637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e128 -02888857 233.44465637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e128 -02888858 233.44468689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e138 -02888859 233.44468689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e138 -02888860 233.44471741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e148 -02888861 233.44471741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e148 -02888862 233.44473267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e158 -02888863 233.44473267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e158 -02888864 233.44476318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e168 -02888865 233.44476318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e168 -02899485 234.91993713 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02899486 234.91998291 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02899487 234.92004395 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02899488 234.92004395 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02899489 234.92016602 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02899490 234.92016602 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02899491 234.92024231 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02899492 234.92027283 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02899493 235.52000427 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02899494 235.54104614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02899495 235.54104614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02899496 236.58062744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02899497 236.58062744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02899498 236.58065796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02899499 236.58068848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02899500 236.58070374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02899501 236.58070374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02899502 236.58073425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02899503 236.58073425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02899504 236.58076477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02899505 236.58076477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02899506 236.58078003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02899507 236.58078003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02899508 236.58081055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02899509 236.58081055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02899510 236.58084106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02899511 236.58084106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02899512 236.58087158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02899513 236.58087158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02899514 236.58088684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02899515 236.58088684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02899516 236.58091736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02899517 236.58094788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02899518 236.58096313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02899519 236.58096313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02899520 236.58099365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02899521 236.58099365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02899522 236.58102417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02899523 236.58102417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02899524 236.58103943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02899525 236.58103943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02899526 236.58106995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02899527 236.58106995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02899528 236.58110046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02899529 236.58110046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02899530 236.58111572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02899531 236.58111572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02899532 236.58114624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02899533 236.58114624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02899534 236.58117676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02899535 236.58119202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02899536 236.58122253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02899537 236.58122253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02899538 236.58125305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02899539 236.58125305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02899540 236.58126831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02899541 236.58126831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02899542 236.58129883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02899543 236.58129883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02899544 236.58132935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02899545 236.58132935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02899546 236.58134460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02899547 236.58134460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02899548 236.58137512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02899549 236.58137512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02899550 236.58140564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02899551 236.58140564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02899552 236.58142090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02899553 236.58145142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02899554 236.58148193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02899555 236.58148193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02899556 236.58149719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02899557 236.58149719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02899558 236.58152771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02899559 236.58152771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02899560 236.58155823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02899561 236.58155823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02899562 236.58157349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02899563 236.58157349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02899564 236.58160400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02899565 236.58160400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02899566 236.58163452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02899567 236.58163452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02899568 236.58166504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02899569 236.58166504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02899570 236.58168030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02899571 236.58171082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02899572 236.58174133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02899573 236.58174133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02899574 236.58175659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02899575 236.58175659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02899576 236.58178711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02899577 236.58178711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02899578 236.58181763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02899579 236.58181763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02899580 236.58183289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02899581 236.58183289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02899582 236.58186340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02899583 236.58186340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02899584 236.58189392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02899585 236.58189392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02899586 236.58190918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02899587 236.58190918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02899588 236.58193970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02899589 236.58193970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02899590 236.58197021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02899591 236.58198547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02899592 236.58201599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02899593 236.58201599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02899594 236.58204651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02899595 236.58204651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02899596 236.58206177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02899597 236.58206177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02899598 236.58209229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02899599 236.58209229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02899600 236.58212280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02899601 236.58212280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02899602 236.58213806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02899603 236.58213806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02899604 236.58216858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02899605 236.58216858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02899606 236.58219910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02899607 236.58219910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02899608 236.58221436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02899609 236.58224487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02899610 236.58227539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02899611 236.58227539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02899612 236.58229065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02899613 236.58229065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02899614 236.58232117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02899615 236.58232117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02899616 236.58235168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02899617 236.58235168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02899618 236.58236694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02899619 236.58236694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02899620 236.58242798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02899621 236.58242798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02899622 236.58245850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02899623 236.58245850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02899624 236.58247375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02899625 236.58247375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02899626 236.58250427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02899627 236.58250427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02899628 236.58253479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02899629 236.58253479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02899630 236.58255005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02899631 236.58255005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02899632 236.58258057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02899633 236.58261108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02899634 236.58262634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02899635 236.58262634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02899636 236.58265686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02899637 236.58265686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02899638 236.58268738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02899639 236.58268738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02899640 236.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02899641 236.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02899642 236.58273315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02899643 236.58273315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02899644 236.58276367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02899645 236.58276367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02899646 236.58277893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02899647 236.58277893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02899648 236.58280945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02899649 236.58280945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02899650 236.58283997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02899651 236.58285522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02899652 236.58288574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02899653 236.58288574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02899654 236.58291626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02899655 236.58291626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02899656 236.58293152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02899657 236.58293152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02899658 236.58296204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02899659 236.58296204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02899660 236.58299255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02899661 236.58299255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02899662 236.58300781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02899663 236.58300781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02899664 236.58303833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02899665 236.58303833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02899666 236.58306885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02899667 236.58306885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02899668 236.58308411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02899669 236.58311462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02899670 236.58314514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02899671 236.58314514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02899672 236.58316040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02899673 236.58316040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02899674 236.58319092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02899675 236.58319092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02899676 236.58322144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02899677 236.58322144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02899678 236.58325195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02899679 236.58325195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02899680 236.58326721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02899681 236.58326721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02899682 236.58329773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02899683 236.58329773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02899684 236.58332825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02899685 236.58332825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02899686 236.58334351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02899687 236.58337402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02899688 236.58340454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02899689 236.58340454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02899690 236.58341980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02899691 236.58341980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02899692 236.58345032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02899693 236.58345032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02899694 236.58348083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02899695 236.58348083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02899696 236.58349609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02899697 236.58349609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02899698 236.58352661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02899699 236.58352661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02899700 236.58355713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02899701 236.58355713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02899702 236.58357239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02899703 236.58357239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02899704 236.58363342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02899705 236.58363342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02899706 236.58364868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02899707 236.58364868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02899708 236.58367920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02899709 236.58367920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02899710 236.58370972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02899711 236.58370972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02899712 236.58372498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02899713 236.58372498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02899714 236.58375549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02899715 236.58375549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02899716 236.58378601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -02899717 236.58378601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -02899718 236.58380127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -02899719 236.58380127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -02899720 236.58383179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -02899721 236.58383179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -02899722 236.58386230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -02899723 236.58387756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -02899724 236.58390808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -02899725 236.58390808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -02899726 236.58393860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -02899727 236.58393860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -02899728 236.58396912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -02899729 236.58396912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -02899730 236.58398438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -02899731 236.58398438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -02899732 236.58401489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -02899733 236.58401489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -02899734 236.58404541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -02899735 236.58404541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -02899736 236.58406067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -02899737 236.58406067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -02899738 236.58409119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -02899739 236.58409119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -02899740 236.58412170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -02899741 236.58413696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -02899742 236.58416748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -02899743 236.58416748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -02899744 236.58419800 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -02899745 236.58419800 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -02899746 236.58421326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -02899747 236.58421326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -02899748 236.58424377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -02899749 236.58424377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -02899750 236.58427429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -02899751 236.58427429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -02899752 236.58428955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -02899753 236.58428955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -02899754 236.58432007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -02899755 236.58432007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -02899756 236.58435059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -02899757 236.58435059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -02899758 236.58436584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -02899759 236.58439636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -02899760 236.58442688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -02899761 236.58442688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -02899762 236.58444214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -02899763 236.58444214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -02899764 236.58447266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -02899765 236.58447266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -02899766 236.58450317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -02899767 236.58450317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -02899768 236.58451843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -02899769 236.58451843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -02899770 236.58454895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -02899771 236.58454895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -02899772 236.58457947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -02899773 236.58457947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -02899774 236.58459473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -02899775 236.58459473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -02899776 236.58462524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -02899777 236.58465576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -02899778 236.58467102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -02899779 236.58467102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -02899780 236.58470154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -02899781 236.58470154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -02899782 236.58473206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -02899783 236.58473206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -02899784 236.58476257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -02899785 236.58476257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -02899786 236.58477783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -02899787 236.58477783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -02899788 236.58480835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -02899789 236.58480835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -02899790 236.58483887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -02899791 236.58483887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -02899792 236.58485413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -02899793 236.58485413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -02899794 236.58488464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -02899795 236.58491516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -02899796 236.58493042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -02899797 236.58493042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -02899798 236.58496094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -02899799 236.58496094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -02899800 236.58499146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -02899801 236.58499146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -02899802 236.58500671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -02899803 236.58500671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -02899804 236.58503723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -02899805 236.58503723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -02899806 236.58506775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -02899807 236.58506775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -02899808 236.58508301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -02899809 236.58508301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -02899810 236.58511353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -02899811 236.58511353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -02899812 236.58514404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -02899813 236.58515930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -02899814 236.58518982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -02899815 236.58518982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -02899816 236.58522034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -02899817 236.58522034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -02899818 236.58523560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -02899819 236.58523560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -02899820 236.58526611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -02899821 236.58526611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -02899822 236.58529663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -02899823 236.58529663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -02899824 236.58531189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -02899825 236.58531189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -02899826 236.58534241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -02899827 236.58534241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -02899828 236.58537292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -02899829 236.58537292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -02899830 236.58538818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -02899831 236.58541870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -02899832 236.58544922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -02899833 236.58544922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -02899834 236.58546448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -02899835 236.58546448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -02899836 236.58549500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -02899837 236.58549500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -02899838 236.58552551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -02899839 236.58552551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -02899840 236.58555603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -02899841 236.58555603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -02899842 236.58557129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -02899843 236.58557129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -02899844 236.58560181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -02899845 236.58560181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -02899846 236.58563232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -02899847 236.58563232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -02899848 236.58564758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -02899849 236.58567810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -02899850 236.58570862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -02899851 236.58570862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -02899852 236.58572388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -02899853 236.58572388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -02899854 236.58575439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -02899855 236.58575439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -02899856 236.58578491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -02899857 236.58578491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -02899858 236.58580017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -02899859 236.58580017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -02899860 236.58583069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -02899861 236.58583069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -02899862 236.58586121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -02899863 236.58586121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -02899864 236.58587646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -02899865 236.58587646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -02899866 236.58590698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -02899867 236.58593750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -02899868 236.58595276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -02899869 236.58595276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -02899870 236.58598328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -02899871 236.58598328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -02899872 236.58601379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -02899873 236.58601379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -02899874 236.58602905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -02899875 236.58602905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -02899876 236.58605957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -02899877 236.58605957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -02899878 236.58609009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -02899879 236.58609009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -02899880 236.58610535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -02899881 236.58610535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -02899882 236.58613586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -02899883 236.58613586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -02899884 236.58616638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -02899885 236.58618164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -02899886 236.58621216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -02899887 236.58621216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -02899888 236.58624268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -02899889 236.58624268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -02899890 236.58627319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -02899891 236.58627319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -02899892 236.58628845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -02899893 236.58628845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -02899894 236.58631897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -02899895 236.58631897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -02899896 236.58634949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -02899897 236.58634949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -02899898 236.58636475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -02899899 236.58636475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -02899900 236.58639526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -02899901 236.58639526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -02899902 236.58642578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -02899903 236.58642578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -02899904 236.58647156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -02899905 236.58647156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -02899906 236.58650208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -02899907 236.58650208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -02899908 236.58651733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -02899909 236.58651733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -02899910 236.58654785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -02899911 236.58654785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -02899912 236.58657837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -02899913 236.58657837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -02899914 236.58659363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -02899915 236.58659363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -02899916 236.58662415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -02899917 236.58662415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -02899918 236.58665466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -02899919 236.58665466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -02899920 236.58666992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -02899921 236.58666992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -02899922 236.58670044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -02899923 236.58673096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -02899924 236.58674622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -02899925 236.58674622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -02899926 236.58677673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -02899927 236.58677673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -02899928 236.58680725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -02899929 236.58680725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -02899930 236.58682251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -02899931 236.58682251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -02899932 236.58685303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -02899933 236.58685303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -02899934 236.58688354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -02899935 236.58688354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -02899936 236.58689880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -02899937 236.58689880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -02899938 236.58692932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -02899939 236.58692932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -02899940 236.58695984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -02899941 236.58697510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -02899942 236.58700562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -02899943 236.58700562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -02899944 236.58703613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -02899945 236.58703613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -02899946 236.58706665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -02899947 236.58706665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -02899948 236.58708191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -02899949 236.58708191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -02899950 236.58711243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -02899951 236.58711243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -02899952 236.58714294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -02899953 236.58714294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -02899954 236.58715820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -02899955 236.58715820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -02899956 236.58718872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -02899957 236.58718872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -02899958 236.58721924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -02899959 236.58723450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -02899960 236.58726501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -02899961 236.58726501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -02899962 236.58729553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -02899963 236.58729553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -02899964 236.58731079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -02899965 236.58731079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -02899966 236.58734131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -02899967 236.58734131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -02899968 236.58737183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -02899969 236.58737183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -02899970 236.58738708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -02899971 236.58738708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -02899972 236.58741760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -02899973 236.58741760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -02899974 236.58744812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -02899975 236.58744812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -02899976 236.58746338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -02899977 236.58746338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -02899978 236.58749390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -02899979 236.58752441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -02899980 236.58753967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -02899981 236.58753967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -02899982 236.58757019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -02899983 236.58757019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -02899984 236.58760071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -02899985 236.58760071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -02899986 236.58761597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -02899987 236.58761597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -02899988 236.58764648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -02899989 236.58764648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -02899990 236.58767700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -02899991 236.58767700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -02899992 236.58769226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -02899993 236.58769226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -02899994 236.58772278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -02899995 236.58772278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -02899996 236.58775330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -02899997 236.58776855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -02899998 236.58779907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -02899999 236.58779907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -02900000 236.58782959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -02900001 236.58782959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -02900002 236.58786011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -02900003 236.58786011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -02900004 236.58787537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -02900005 236.58787537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -02900006 236.58790588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -02900007 236.58790588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -02900008 236.58793640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -02900009 236.58793640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -02900010 236.58795166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -02900011 236.58795166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -02900012 236.58798218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -02900013 236.58798218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -02900014 236.58801270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -02900015 236.58802795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -02900016 236.58805847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -02900017 236.58805847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -02900018 236.58808899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -02900019 236.58808899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -02900020 236.58810425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -02900021 236.58810425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -02900022 236.58813477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -02900023 236.58813477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -02900024 236.58816528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -02900025 236.58816528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -02900026 236.58818054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -02900027 236.58818054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -02900028 236.58821106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -02900029 236.58821106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -02900030 236.58824158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -02900031 236.58824158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -02900032 236.58825684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -02900033 236.58828735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -02900034 236.58831787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -02900035 236.58831787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -02900036 236.58833313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -02900037 236.58833313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -02900038 236.58836365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02900039 236.58836365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02900040 236.58839417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02900041 236.58839417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02900042 236.58840942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02900043 236.58840942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02900044 236.58843994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02900045 236.58843994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02900046 236.58847046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02900047 236.58847046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02900048 236.58848572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02900049 236.58848572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02900050 236.58851624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02900051 236.58851624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02900052 236.58854675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02900053 236.58856201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02900054 236.58859253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02900055 236.58859253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02900056 236.58862305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02900057 236.58862305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02900058 236.58865356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02900059 236.58865356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02900060 236.58866882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02900061 236.58866882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02900062 236.58869934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02900063 236.58869934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02900064 236.58872986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02900065 236.58872986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02900066 236.58874512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02900067 236.58874512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02900068 236.58877563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02900069 236.58877563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02900070 236.58882141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02900071 236.58882141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02900072 236.58885193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02900073 236.58885193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02900074 236.58888245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02900075 236.58888245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02900076 236.58889771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02900077 236.58889771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02900078 236.58892822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02900079 236.58892822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02900080 236.58895874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02900081 236.58895874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02900082 236.58897400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -02900083 236.58897400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -02900084 236.58900452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -02900085 236.58900452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -02900086 236.58903503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -02900087 236.58903503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -02900088 236.58905029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -02900089 236.58908081 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -02900090 236.58911133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -02900091 236.58911133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -02900092 236.58912659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -02900093 236.58912659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -02900094 236.58915710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -02900095 236.58915710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -02900096 236.58918762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -02900097 236.58918762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -02900098 236.58920288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -02900099 236.58920288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -02900100 236.58923340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -02900101 236.58923340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -02900102 236.58926392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -02900103 236.58926392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -02900104 236.58927917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -02900105 236.58927917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -02900106 236.58930969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -02900107 236.58934021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -02900108 236.58937073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -02900109 236.58937073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -02900110 236.58938599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -02900111 236.58938599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -02900112 236.58941650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -02900113 236.58941650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -02900114 236.58944702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -02900115 236.58944702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -02900116 236.58946228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -02900117 236.58946228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -02900118 236.58949280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -02900119 236.58949280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -02900120 236.58952332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -02900121 236.58952332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -02900122 236.58953857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -02900123 236.58953857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -02900124 236.58956909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -02900125 236.58959961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -02900126 236.58961487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -02900127 236.58961487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -02900128 236.58964539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -02900129 236.58964539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -02900130 236.58967590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -02900131 236.58967590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -02900132 236.58969116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -02900133 236.58969116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -02900134 236.58972168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -02900135 236.58972168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -02900136 236.58975220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -02900137 236.58975220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -02900138 236.58976746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -02900139 236.58976746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -02900140 236.58979797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -02900141 236.58982849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -02900142 236.58984375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -02900143 236.58984375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -02900144 236.58987427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -02900145 236.58987427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -02900146 236.58990479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -02900147 236.58990479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -02900148 236.58992004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -02900149 236.58992004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -02900150 236.58995056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -02900151 236.58995056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -02900152 236.58998108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -02900153 236.58998108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -02900154 236.58999634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -02900155 236.58999634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -02900156 236.59002686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -02900157 236.59002686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -02900158 236.59005737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -02900159 236.59007263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -02900160 236.59010315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -02900161 236.59010315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -02900162 236.59013367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -02900163 236.59013367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -02900164 236.59016418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -02900165 236.59016418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -02900166 236.59017944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -02900167 236.59017944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -02900168 236.59020996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -02900169 236.59020996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -02900170 236.59024048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -02900171 236.59024048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -02900172 236.59025574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -02900173 236.59025574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -02900174 236.59028625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -02900175 236.59028625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -02900176 236.59031677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -02900177 236.59033203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -02900178 236.59036255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -02900179 236.59036255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -02900180 236.59039307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -02900181 236.59039307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -02900182 236.59040833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -02900183 236.59040833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -02900184 236.59043884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -02900185 236.59043884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -02900186 236.59046936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -02900187 236.59046936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -02900188 236.59048462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -02900189 236.59048462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -02900190 236.59051514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -02900191 236.59051514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -02900192 236.59054565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -02900193 236.59054565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -02900194 236.59056091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -02900195 236.59059143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -02900196 236.59062195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -02900197 236.59062195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -02900198 236.59063721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -02900199 236.59063721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -02900200 236.59066772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -02900201 236.59066772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -02900202 236.59069824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -02900203 236.59069824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -02900204 236.59071350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -02900205 236.59071350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -02900206 236.59074402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -02900207 236.59074402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -02900208 236.59077454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -02900209 236.59077454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -02900210 236.59078979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -02900211 236.59078979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -02900212 236.59082031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -02900213 236.59085083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -02900214 236.59086609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -02900215 236.59086609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -02900216 236.59089661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -02900217 236.59089661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -02900218 236.59092712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -02900219 236.59092712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -02900220 236.59095764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -02900221 236.59095764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -02900222 236.59097290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -02900223 236.59097290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -02900224 236.59100342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -02900225 236.59100342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -02900226 236.59103394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -02900227 236.59103394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -02900228 236.59104919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -02900229 236.59104919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -02900230 236.59107971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -02900231 236.59107971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -02900232 236.59111023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -02900233 236.59112549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -02900234 236.59115601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -02900235 236.59115601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -02900236 236.59118652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -02900237 236.59118652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -02900238 236.59120178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -02900239 236.59120178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -02900240 236.59123230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -02900241 236.59123230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -02900242 236.59126282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -02900243 236.59126282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -02900244 236.59127808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -02900245 236.59127808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -02900246 236.59130859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -02900247 236.59130859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -02900248 236.59133911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -02900249 236.59133911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -02900250 236.59135437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -02900251 236.59138489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -02900252 236.59141541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -02900253 236.59141541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -02900254 236.59143066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -02900255 236.59143066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -02900256 236.59146118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -02900257 236.59146118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -02900258 236.59149170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -02900259 236.59149170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -02900260 236.59150696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -02900261 236.59150696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -02900262 236.59153748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -02900263 236.59153748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -02900264 236.59156799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -02900265 236.59156799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -02900266 236.59158325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -02900267 236.59158325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -02900268 236.59161377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -02900269 236.59164429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -02900270 236.59167480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -02900271 236.59167480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -02900272 236.59169006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -02900273 236.59169006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -02900274 236.59172058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -02900275 236.59172058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -02900276 236.59175110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -02900277 236.59175110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -02900278 236.59176636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -02900279 236.59176636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -02900280 236.59179688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -02900281 236.59179688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -02900282 236.59182739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -02900283 236.59182739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -02900284 236.59184265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -02900285 236.59184265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -02900286 236.59187317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -02900287 236.59190369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -02900288 236.59191895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -02900289 236.59191895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -02900290 236.59194946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -02900291 236.59194946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -02900292 236.59197998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -02900293 236.59197998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -02900294 236.59199524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -02900295 236.59199524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -02900296 236.59202576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -02900297 236.59202576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -02900298 236.59205627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -02900299 236.59205627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -02900300 236.59207153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -02900301 236.59207153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -02900302 236.59210205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -02900303 236.59213257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -02900304 236.59214783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -02900305 236.59214783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -02900306 236.59217834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -02900307 236.59217834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -02900308 236.59220886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -02900309 236.59220886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -02900310 236.59222412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -02900311 236.59222412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -02900312 236.59225464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -02900313 236.59225464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -02900314 236.59228516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -02900315 236.59228516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -02900316 236.59230042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -02900317 236.59230042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -02900318 236.59233093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -02900319 236.59233093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -02900320 236.59236145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -02900321 236.59236145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -02900322 236.59240723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -02900323 236.59240723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -02900324 236.59243774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -02900325 236.59243774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -02900326 236.59246826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -02900327 236.59246826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -02900328 236.59248352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -02900329 236.59248352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -02900330 236.59251404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -02900331 236.59251404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -02900332 236.59254456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -02900333 236.59254456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -02900334 236.59255981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -02900335 236.59255981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -02900336 236.59259033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -02900337 236.59259033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -02900338 236.59262085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -02900339 236.59263611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -02900340 236.59266663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -02900341 236.59266663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -02900342 236.59269714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -02900343 236.59269714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -02900344 236.59271240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -02900345 236.59271240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -02900346 236.59274292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -02900347 236.59274292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -02900348 236.59277344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -02900349 236.59277344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -02900350 236.59278870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -02900351 236.59278870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -02900352 236.59281921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -02900353 236.59281921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -02900354 236.59284973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -02900355 236.59284973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -02900356 236.59286499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -02900357 236.59289551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -02900358 236.59292603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -02900359 236.59292603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -02900360 236.59294128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -02900361 236.59294128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -02900362 236.59297180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -02900363 236.59297180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -02900364 236.59300232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -02900365 236.59300232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -02900366 236.59301758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -02900367 236.59301758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -02900368 236.59304810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -02900369 236.59304810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -02900370 236.59307861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -02900371 236.59307861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -02900372 236.59309387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -02900373 236.59309387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -02900374 236.59312439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -02900375 236.59315491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -02900376 236.59317017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -02900377 236.59317017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -02900378 236.59320068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -02900379 236.59320068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -02900380 236.59323120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -02900381 236.59323120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -02900382 236.59326172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -02900383 236.59326172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -02900384 236.59327698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -02900385 236.59327698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -02900386 236.59330750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -02900387 236.59330750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -02900388 236.59333801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -02900389 236.59333801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -02900390 236.59335327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -02900391 236.59335327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -02900392 236.59338379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -02900393 236.59341431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -02900394 236.59342957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -02900395 236.59342957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -02900396 236.59346008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -02900397 236.59346008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -02900398 236.59349060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -02900399 236.59349060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -02900400 236.59350586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -02900401 236.59350586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -02900402 236.59353638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -02900403 236.59353638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -02900404 236.59356689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -02900405 236.59356689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -02900406 236.59358215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -02900407 236.59358215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -02900408 236.59361267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -02900409 236.59361267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -02900410 236.59364319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -02900411 236.59364319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -02900412 236.59365845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -02900413 236.59368896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -02900414 236.59371948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -02900415 236.59371948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -02900416 236.59373474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -02900417 236.59373474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -02900418 236.59376526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -02900419 236.59376526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -02900420 236.59379578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -02900421 236.59379578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -02900422 236.59381104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -02900423 236.59381104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -02900424 236.59384155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -02900425 236.59384155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -02900426 236.59387207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -02900427 236.59387207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -02900428 236.59388733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -02900429 236.59388733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -02900430 236.59391785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -02900431 236.59394836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -02900432 236.59396362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -02900433 236.59396362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -02900434 236.59399414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -02900435 236.59399414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -02900436 236.59402466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -02900437 236.59402466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -02900438 236.59405518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -02900439 236.59405518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -02900440 236.59407043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -02900441 236.59407043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -02900442 236.59410095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -02900443 236.59410095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -02900444 236.59413147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -02900445 236.59413147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -02900446 236.59414673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -02900447 236.59414673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -02900448 236.59417725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -02900449 236.59420776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -02900450 236.59422302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -02900451 236.59422302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -02900452 236.59425354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -02900453 236.59425354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -02900454 236.59428406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -02900455 236.59428406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -02900456 236.59429932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -02900457 236.59429932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -02900458 236.59432983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -02900459 236.59432983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -02900460 236.59436035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -02900461 236.59436035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -02900462 236.59437561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -02900463 236.59437561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -02900464 236.59440613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -02900465 236.59440613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -02900466 236.59443665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -02900467 236.59445190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -02900468 236.59448242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -02900469 236.59448242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -02900470 236.59451294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -02900471 236.59451294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -02900472 236.59452820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -02900473 236.59452820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -02900474 236.59455872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -02900475 236.59455872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -02900476 236.59458923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -02900477 236.59458923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -02900478 236.59460449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -02900479 236.59460449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -02900480 236.59463501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -02900481 236.59463501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -02900482 236.59466553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -02900483 236.59466553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -02900484 236.59471130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -02900485 236.59471130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -02900486 236.59474182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -02900487 236.59474182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -02900488 236.59477234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -02900489 236.59477234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -02900490 236.59478760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -02900491 236.59478760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -02900492 236.59481812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -02900493 236.59481812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -02900494 236.59484863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -02900495 236.59484863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -02900496 236.59486389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -02900497 236.59486389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -02900498 236.59489441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -02900499 236.59489441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -02900500 236.59492493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -02900501 236.59492493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -02900502 236.59494019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -02900503 236.59497070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -02900504 236.59500122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -02900505 236.59500122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -02900506 236.59501648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -02900507 236.59501648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -02900508 236.59504700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -02900509 236.59504700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -02900510 236.59507751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -02900511 236.59507751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -02900512 236.59509277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -02900513 236.59509277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -02900514 236.59512329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -02900515 236.59512329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -02900516 236.59515381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -02900517 236.59515381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -02900518 236.59516907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -02900519 236.59516907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -02900520 236.59519958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -02900521 236.59523010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -02900522 236.59524536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -02900523 236.59524536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -02900524 236.59527588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -02900525 236.59527588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -02900526 236.59530640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -02900527 236.59530640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -02900528 236.59532166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -02900529 236.59532166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -02900530 236.59535217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -02900531 236.59535217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -02900532 236.59538269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -02900533 236.59538269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -02900534 236.59539795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -02900535 236.59539795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -02900536 236.59542847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -02900537 236.59542847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -02900538 236.59545898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -02900539 236.59547424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -02900540 236.59550476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -02900541 236.59550476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -02900542 236.59553528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -02900543 236.59553528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -02900544 236.59556580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -02900545 236.59556580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -02900546 236.59558105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -02900547 236.59558105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -02900548 236.59561157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -02900549 236.59561157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -02900550 236.59564209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -02900551 236.59564209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -02900552 236.59565735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -02900553 236.59565735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -02900554 236.59568787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -02900555 236.59568787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -02900556 236.59571838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -02900557 236.59573364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -02900558 236.59576416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -02900559 236.59576416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -02900560 236.59579468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -02900561 236.59579468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -02900562 236.59580994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -02900563 236.59580994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -02900564 236.59584045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -02900565 236.59584045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -02900566 236.59587097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -02900567 236.59587097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -02900568 236.59588623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -02900569 236.59588623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -02900570 236.59591675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -02900571 236.59591675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -02900572 236.59594727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -02900573 236.59594727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -02900574 236.59596252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -02900575 236.59599304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -02900576 236.59602356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -02900577 236.59602356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -02900578 236.59603882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -02900579 236.59603882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -02900580 236.59606934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -02900581 236.59606934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -02900582 236.59609985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -02900583 236.59609985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -02900584 236.59611511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -02900585 236.59611511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -02900586 236.59614563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -02900587 236.59614563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -02900588 236.59617615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -02900589 236.59617615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -02900590 236.59619141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -02900591 236.59619141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -02900592 236.59622192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -02900593 236.59622192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -02900594 236.59625244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -02900595 236.59626770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -02903104 236.63221741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -02903105 236.63221741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -02903106 236.63224792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -02903107 236.63224792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -02903108 236.63226318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -02903109 236.63226318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -02903110 236.63229370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -02903111 236.63229370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -02903112 236.63232422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -02903113 236.63232422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -02903114 236.63233948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -02903115 236.63233948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -02903116 236.63237000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -02903117 236.63240051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -02903118 236.63241577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -02903119 236.63241577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -02903120 236.63244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -02903121 236.63244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -02903122 236.63247681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -02903123 236.63247681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -02903124 236.63249207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -02903125 236.63249207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -02903126 236.63252258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -02903127 236.63252258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -02903128 236.63255310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -02903129 236.63255310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -02903130 236.63258362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -02903131 236.63258362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -02903132 236.63259888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -02903133 236.63259888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -02903134 236.63262939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -02903135 236.63265991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -02903136 236.63267517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -02903137 236.63267517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -02903138 236.63270569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -02903139 236.63270569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -02903140 236.63273621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -02903141 236.63273621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -02903142 236.63275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -02903143 236.63275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -02903144 236.63278198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -02903145 236.63278198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -02903146 236.63281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -02903147 236.63281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -02907640 236.69764709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec0 -02907641 236.69764709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec0 -02907642 236.69767761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed0 -02907643 236.69767761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed0 -02907644 236.69770813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee0 -02907645 236.69770813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee0 -02907646 236.69772339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef0 -02907647 236.69772339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef0 -02907648 236.69775391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f00 -02907649 236.69775391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f00 -02907650 236.69778442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f10 -02907651 236.69779968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f10 -02907652 236.69783020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f20 -02907653 236.69783020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f20 -02907654 236.69786072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f30 -02907655 236.69786072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f30 -02907656 236.69787598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f40 -02907657 236.69787598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f40 -02907658 236.69790649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f50 -02907659 236.69790649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f50 -02907660 236.69793701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f60 -02907661 236.69795227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f60 -02907662 236.69798279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f70 -02907663 236.69798279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f70 -02907664 236.69801331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f80 -02907665 236.69801331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f80 -02907666 236.69802856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f90 -02907667 236.69802856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f90 -02907668 236.69805908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa0 -02907669 236.69805908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa0 -02907670 236.69808960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb0 -02907671 236.69808960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb0 -02907672 236.69813538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc0 -02907673 236.69813538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc0 -02907674 236.69816589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd0 -02907675 236.69816589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd0 -02907676 236.69819641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe0 -02907677 236.69819641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe0 -02907678 236.69821167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff0 -02907679 236.69821167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff0 -02907680 236.69824219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11000 -02907681 236.69824219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11000 -02907682 236.69827271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11010 -02907683 236.69828796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11010 -02911748 236.75799561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f20 -02911749 236.75799561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f20 -02911750 236.75801086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f30 -02911751 236.75801086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f30 -02911752 236.75804138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f40 -02911753 236.75804138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f40 -02911754 236.75807190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f50 -02911755 236.75807190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f50 -02911756 236.75808716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f60 -02911757 236.75808716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f60 -02911758 236.75811768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f70 -02911759 236.75811768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f70 -02911760 236.75814819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f80 -02911761 236.75816345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f80 -02911762 236.75819397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f90 -02911763 236.75819397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f90 -02911764 236.75822449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fa0 -02911765 236.75822449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fa0 -02911766 236.75823975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fb0 -02911767 236.75823975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fb0 -02911768 236.75827026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fc0 -02911769 236.75827026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fc0 -02911770 236.75830078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -02911771 236.75830078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -02911772 236.75831604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -02911773 236.75831604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -02911774 236.75834656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -02911775 236.75834656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -02911776 236.75837708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -02911777 236.75837708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -02911778 236.75840759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -02911779 236.75842285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -02911780 236.75845337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -02911781 236.75845337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -02911782 236.75848389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -02911783 236.75848389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -02911784 236.75849915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -02911785 236.75849915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -02911786 236.75852966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -02911787 236.75852966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -02911788 236.75856018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -02911789 236.75856018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -02911790 236.75857544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -02911791 236.75857544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -02927838 236.98654175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x385f0 -02927839 236.98654175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x385f0 -02927840 236.98657227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38600 -02927841 236.98657227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38600 -02927842 236.98660278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38610 -02927843 236.98660278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38610 -02927844 236.98661804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38620 -02927845 236.98664856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38620 -02927846 236.98667908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38630 -02927847 236.98667908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38630 -02927848 236.98669434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38640 -02927849 236.98669434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38640 -02927850 236.98672485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38650 -02927851 236.98672485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38650 -02927852 236.98675537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38660 -02927853 236.98675537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38660 -02927854 236.98677063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -02927855 236.98677063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -02927856 236.98680115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -02927857 236.98680115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -02927858 236.98683167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -02927859 236.98683167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -02927860 236.98684692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -02927861 236.98684692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -02927862 236.98687744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -02927863 236.98690796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -02927864 236.98693848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -02927865 236.98693848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -02927866 236.98695374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -02927867 236.98695374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -02927868 236.98698425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -02927869 236.98698425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -02927870 236.98701477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -02927871 236.98701477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -02927872 236.98703003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -02927873 236.98703003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -02927874 236.98706055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -02927875 236.98706055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -02927876 236.98709106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -02927877 236.98709106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -02927878 236.98710632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -02927879 236.98710632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -02927880 236.98713684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -02927881 236.98716736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -02933338 237.06495667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x431d0 -02933339 237.06495667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x431d0 -02933340 237.06498718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x431e0 -02933341 237.06498718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x431e0 -02933342 237.06501770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x431f0 -02933343 237.06503296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x431f0 -02933344 237.06506348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43200 -02933345 237.06506348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43200 -02933346 237.06509399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43210 -02933347 237.06509399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43210 -02933348 237.06510925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43220 -02933349 237.06510925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43220 -02933350 237.06513977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -02933351 237.06513977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -02933352 237.06517029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -02933353 237.06517029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -02933354 237.06518555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -02933355 237.06518555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -02933356 237.06521606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -02933357 237.06521606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -02933358 237.06524658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -02933359 237.06524658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -02933360 237.06526184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -02933361 237.06526184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -02933362 237.06529236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -02933363 237.06532288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -02933364 237.06533813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -02933365 237.06533813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -02933366 237.06536865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -02933367 237.06536865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -02933368 237.06539917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -02933369 237.06539917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -02933370 237.06541443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -02933371 237.06541443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -02933372 237.06544495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432e0 -02933373 237.06544495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432e0 -02933374 237.06547546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432f0 -02933375 237.06547546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x432f0 -02933376 237.06549072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43300 -02933377 237.06549072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43300 -02933378 237.06552124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43310 -02933379 237.06552124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43310 -02933380 237.06555176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43320 -02933381 237.06556702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43320 -02938592 237.13996887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -02938593 237.13996887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -02938594 237.13999939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -02938595 237.13999939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -02938596 237.14001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -02938597 237.14001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -02938598 237.14007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -02938599 237.14007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -02938600 237.14009094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -02938601 237.14009094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -02938602 237.14012146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -02938603 237.14012146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -02938604 237.14015198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -02938605 237.14015198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -02938606 237.14016724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -02938607 237.14016724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -02938608 237.14019775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -02938609 237.14019775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -02938610 237.14022827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -02938611 237.14022827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -02938612 237.14024353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -02938613 237.14024353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -02938614 237.14027405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -02938615 237.14030457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -02938616 237.14031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -02938617 237.14031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -02938618 237.14035034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -02938619 237.14035034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -02938620 237.14038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -02938621 237.14038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -02938622 237.14039612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -02938623 237.14039612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -02938624 237.14042664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d700 -02938625 237.14042664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d700 -02938626 237.14045715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d710 -02938627 237.14045715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d710 -02938628 237.14047241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d720 -02938629 237.14047241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d720 -02938630 237.14050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d730 -02938631 237.14050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d730 -02938632 237.14053345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d740 -02938633 237.14056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d740 -02938634 237.14057922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d750 -02938635 237.14057922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d750 -02941390 237.42701721 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941391 237.42707825 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941392 237.42709351 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941393 237.42709351 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02941394 237.42723083 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941395 237.42723083 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02941396 237.42730713 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941397 237.42732239 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02941398 237.54199219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02941399 237.55921936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941400 237.55921936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941401 238.59471130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02941402 238.59471130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02941403 238.59477234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02941404 238.59477234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02941405 238.59478760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02941406 238.59478760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02941407 238.59481812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02941408 238.59481812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02941409 238.59484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02941410 238.59484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02941411 238.59486389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02941412 238.59486389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02941413 238.59489441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02941414 238.59489441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02941415 238.59492493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02941416 238.59492493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02941417 238.59494019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02941418 238.59494019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02941419 238.59497070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02941420 238.59497070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02941421 238.59500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02941422 238.59500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02941423 238.59501648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02941424 238.59501648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02941425 238.59504700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02941426 238.59504700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02941427 238.59507751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02941428 238.59507751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02941429 238.59512329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02941430 238.59512329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02941431 238.59515381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02941432 238.59515381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02941433 238.59516907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02941434 238.59516907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02941435 238.59519958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02941436 238.59519958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02941437 238.59523010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02941438 238.59523010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02941439 238.59524536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02941440 238.59524536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02941441 238.59527588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02941442 238.59527588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02941443 238.59530640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02941444 238.59530640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02941445 238.59532166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02941446 238.59532166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02941447 238.59535217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02941448 238.59535217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02941449 238.59538269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02941450 238.59538269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02941451 238.59539795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02941452 238.59539795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02941453 238.59542847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02941454 238.59542847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02941455 238.59545898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02941456 238.59545898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02941457 238.59547424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02941458 238.59547424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02941459 238.59550476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02941460 238.59550476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02941461 238.59553528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02941462 238.59553528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02941463 238.59556580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02941464 238.59556580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02941465 238.59558105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02941466 238.59561157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02941467 238.59561157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02941468 238.59564209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02941469 238.59565735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02941470 238.59565735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02941471 238.59568787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02941472 238.59568787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02941473 238.59571838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02941474 238.59571838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02941475 238.59573364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02941476 238.59573364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02941477 238.59576416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02941478 238.59576416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02941479 238.59579468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02941480 238.59579468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02941481 238.59580994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02941482 238.59580994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02941483 238.59584045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02941484 238.59584045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02941485 238.59587097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02941486 238.59587097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02941487 238.59588623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02941488 238.59588623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02941489 238.59591675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02941490 238.59591675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02941491 238.59594727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02941492 238.59596252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02941493 238.59599304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02941494 238.59599304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02941495 238.59602356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02941496 238.59602356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02941497 238.59603882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02941498 238.59603882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02941499 238.59606934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02941500 238.59606934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02941501 238.59609985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02941502 238.59609985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02941503 238.59611511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02941504 238.59611511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02941505 238.59614563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02941506 238.59614563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02941507 238.59617615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02941508 238.59617615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02941509 238.59619141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02941510 238.59619141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02941511 238.59622192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02941512 238.59625244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02941513 238.59626770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02941514 238.59626770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02941515 238.59629822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02941516 238.59629822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02941517 238.59632874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02941518 238.59632874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02941519 238.59635925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02941520 238.59635925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02941521 238.59643555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02941522 238.59643555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02941523 238.59645081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02941524 238.59645081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02941525 238.59651184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02941526 238.59651184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02941527 238.59652710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02941528 238.59652710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02941529 238.59655762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02941530 238.59655762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02941531 238.59658813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02941532 238.59658813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02941533 238.59660339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02941534 238.59660339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02941535 238.59663391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02941536 238.59663391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02941537 238.59666443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02941538 238.59666443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02941539 238.59667969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02941540 238.59667969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02941541 238.59671021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02941542 238.59671021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02941543 238.59674072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02941544 238.59675598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02941545 238.59675598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02941546 238.59678650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02941547 238.59681702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02941548 238.59681702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02941549 238.59683228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02941550 238.59683228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02941551 238.59686279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02941552 238.59686279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02941553 238.59689331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02941554 238.59689331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02941555 238.59690857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02941556 238.59690857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02941557 238.59693909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02941558 238.59693909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02941559 238.59696960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02941560 238.59696960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02941561 238.59698486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02941562 238.59698486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02941563 238.59701538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02941564 238.59701538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02941565 238.59704590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02941566 238.59704590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02941567 238.59707642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02941568 238.59707642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02941569 238.59709167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02941570 238.59709167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02941571 238.59712219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02941572 238.59712219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02941573 238.59715271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02941574 238.59715271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02941575 238.59716797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02941576 238.59716797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02941577 238.59719849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02941578 238.59719849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02941579 238.59722900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02941580 238.59722900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02941581 238.59724426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02941582 238.59724426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02941583 238.59727478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02941584 238.59730530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02941585 238.59730530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02941586 238.59732056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02941587 238.59735107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02941588 238.59735107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02941589 238.59738159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02941590 238.59738159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02941591 238.59739685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02941592 238.59739685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02941593 238.59742737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02941594 238.59742737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02941595 238.59745789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02941596 238.59745789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02941597 238.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02941598 238.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02941599 238.59750366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02941600 238.59750366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02941601 238.59753418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02941602 238.59753418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02941603 238.59754944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02941604 238.59754944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02941605 238.59757996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02941606 238.59757996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02941607 238.59761047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02941608 238.59761047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02941609 238.59762573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02941610 238.59762573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02941611 238.59765625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02941612 238.59765625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02941613 238.59768677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02941614 238.59770203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02941615 238.59773254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02941616 238.59773254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02941617 238.59776306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02941618 238.59776306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02941619 238.59777832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02941620 238.59777832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02941621 238.59780884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02941622 238.59780884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02941623 238.59783936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02941624 238.59783936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02941625 238.59786987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02941626 238.59786987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02941627 238.59788513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02941628 238.59788513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02941629 238.59791565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02941630 238.59791565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02941631 238.59794617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02941632 238.59794617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02941633 238.59796143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02941634 238.59796143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02941635 238.59799194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02941636 238.59799194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02941637 238.59802246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02941638 238.59802246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02941639 238.59803772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02941640 238.59803772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02941641 238.59806824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02941642 238.59809875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02941643 238.59811401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02941644 238.59811401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02941645 238.59814453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02941646 238.59814453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02941647 238.59817505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02941648 238.59817505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02941649 238.59819031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02941650 238.59819031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02941651 238.59822083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02941652 238.59822083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02941653 238.59825134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02941654 238.59825134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02941655 238.59826660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02941656 238.59826660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02941657 238.59829712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02941658 238.59829712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02941659 238.59832764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02941660 238.59832764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02941661 238.59834290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02941662 238.59834290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02941663 238.59837341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02941664 238.59837341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02941665 238.59840393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02941666 238.59840393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02941667 238.59841919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02941668 238.59844971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02941669 238.59848022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02941670 238.59848022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02941671 238.59849548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02941672 238.59849548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02941673 238.59852600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02941674 238.59852600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02941675 238.59855652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02941676 238.59855652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02941677 238.59857178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02941678 238.59857178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02941679 238.59860229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02941680 238.59860229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02941681 238.59863281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02941682 238.59863281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02941683 238.59866333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02941684 238.59866333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02941685 238.59867859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02941686 238.59867859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02941687 238.59870911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02941688 238.59870911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02941689 238.59873962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02941690 238.59873962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02941691 238.59875488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02941692 238.59875488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02941693 238.59878540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02941694 238.59881592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02941695 238.59883118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02941696 238.59883118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02941697 238.59886169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02941698 238.59886169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02941699 238.59889221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02941700 238.59889221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02941701 238.59890747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02941702 238.59890747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02941703 238.59893799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02941704 238.59893799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02941705 238.59896851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02941706 238.59896851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02941707 238.59898376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02941708 238.59898376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02944259 238.63984680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -02944260 238.63984680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -02944261 238.63987732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -02944262 238.63987732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -02944263 238.63989258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -02944264 238.63989258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -02944265 238.63992310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -02944266 238.63992310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -02944267 238.63995361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -02944268 238.63995361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -02944269 238.63996887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -02944270 238.63996887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -02944271 238.63999939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -02944272 238.63999939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -02944273 238.64002991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -02944274 238.64002991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -02944275 238.64004517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -02944276 238.64004517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -02944277 238.64007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -02944278 238.64007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -02944279 238.64010620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -02944280 238.64010620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -02944281 238.64012146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -02944282 238.64015198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -02944283 238.64018250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -02944284 238.64018250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -02944285 238.64019775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -02944286 238.64019775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -02944287 238.64022827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -02944288 238.64022827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -02944289 238.64025879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -02944290 238.64025879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -02944291 238.64027405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -02944292 238.64027405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -02944293 238.64030457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -02944294 238.64030457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -02944295 238.64033508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -02944296 238.64033508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -02944297 238.64036560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -02944298 238.64036560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -02944299 238.64041138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -02944300 238.64041138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -02944301 238.64044189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -02944302 238.64044189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -02951089 238.73635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f08 -02951090 238.73635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f08 -02951091 238.73638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f18 -02951092 238.73638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f18 -02951093 238.73640442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f28 -02951094 238.73640442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f28 -02951095 238.73643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f38 -02951096 238.73643494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f38 -02951097 238.73646545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f48 -02951098 238.73646545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f48 -02951099 238.73648071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f58 -02951100 238.73651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f58 -02951101 238.73651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f68 -02951102 238.73654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f68 -02951103 238.73655701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f78 -02951104 238.73655701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f78 -02951105 238.73658752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f88 -02951106 238.73658752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f88 -02951107 238.73661804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f98 -02951108 238.73661804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f98 -02951109 238.73663330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa8 -02951110 238.73663330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa8 -02951111 238.73666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb8 -02951112 238.73666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb8 -02951113 238.73669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc8 -02951114 238.73669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc8 -02951115 238.73670959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd8 -02951116 238.73670959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd8 -02951117 238.73674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe8 -02951118 238.73674011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe8 -02951119 238.73680115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff8 -02951120 238.73680115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff8 -02951121 238.73681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14008 -02951122 238.73681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14008 -02951123 238.73684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14018 -02951124 238.73684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14018 -02951125 238.73687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14028 -02951126 238.73687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14028 -02951127 238.73689270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14038 -02951128 238.73689270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14038 -02951129 238.73692322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14048 -02951130 238.73692322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14048 -02951131 238.73695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14058 -02951132 238.73695374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14058 -02968418 238.97840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c88 -02968419 238.97840881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c98 -02968420 238.97843933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c98 -02968421 238.97845459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca8 -02968422 238.97845459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca8 -02968423 238.97848511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb8 -02968424 238.97848511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb8 -02968425 238.97851563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc8 -02968426 238.97851563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc8 -02968427 238.97853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd8 -02968428 238.97853088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd8 -02968429 238.97856140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce8 -02968430 238.97856140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce8 -02968431 238.97859192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf8 -02968432 238.97859192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf8 -02968433 238.97863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d08 -02968434 238.97863770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d08 -02968435 238.97866821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d18 -02968436 238.97866821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d18 -02968437 238.97868347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -02968438 238.97871399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -02968439 238.97874451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d38 -02968440 238.97874451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d38 -02968441 238.97875977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d48 -02968442 238.97875977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d48 -02968443 238.97879028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d58 -02968444 238.97879028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d58 -02968445 238.97882080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d68 -02968446 238.97882080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d68 -02968447 238.97883606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d78 -02968448 238.97883606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d78 -02968449 238.97886658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d88 -02968450 238.97886658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d88 -02968451 238.97889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d98 -02968452 238.97889709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d98 -02968453 238.97891235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da8 -02968454 238.97891235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da8 -02968455 238.97894287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db8 -02968456 238.97894287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db8 -02968457 238.97897339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc8 -02968458 238.97897339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc8 -02968459 238.97898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd8 -02968460 238.97898865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd8 -02968461 238.97901917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35de8 -02972345 239.03536987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d748 -02972346 239.03536987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d748 -02972347 239.03538513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d758 -02972348 239.03538513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d758 -02972349 239.03541565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d768 -02972350 239.03541565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d768 -02972351 239.03544617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d778 -02972352 239.03544617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d778 -02972353 239.03546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d788 -02972354 239.03546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d788 -02972355 239.03549194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d798 -02972356 239.03549194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d798 -02972357 239.03552246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7a8 -02972358 239.03555298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7a8 -02972359 239.03556824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7b8 -02972360 239.03556824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7b8 -02972361 239.03559875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7c8 -02972362 239.03559875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7c8 -02972363 239.03562927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7d8 -02972364 239.03562927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7d8 -02972365 239.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7e8 -02972366 239.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7e8 -02972367 239.03567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7f8 -02972368 239.03567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7f8 -02972369 239.03570557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d808 -02972370 239.03570557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d808 -02972371 239.03572083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d818 -02972372 239.03572083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d818 -02972373 239.03575134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d828 -02972374 239.03575134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d828 -02972375 239.03578186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d838 -02972376 239.03578186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d838 -02972377 239.03579712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d848 -02972378 239.03582764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d848 -02972379 239.03585815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d858 -02972380 239.03585815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d858 -02972381 239.03587341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d868 -02972382 239.03587341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d868 -02972383 239.03590393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d878 -02972384 239.03590393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d878 -02972385 239.03593445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d888 -02972386 239.03593445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d888 -02972387 239.03594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d898 -02972388 239.03594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d898 -02977883 239.11790466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48458 -02977884 239.11790466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48458 -02977885 239.11791992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48468 -02977886 239.11791992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48468 -02977887 239.11795044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48478 -02977888 239.11795044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48478 -02977889 239.11798096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48488 -02977890 239.11798096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48488 -02977891 239.11799622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48498 -02977892 239.11799622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48498 -02977893 239.11802673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a8 -02977894 239.11805725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a8 -02977895 239.11807251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b8 -02977896 239.11807251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b8 -02977897 239.11810303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c8 -02977898 239.11810303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c8 -02977899 239.11813354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d8 -02977900 239.11813354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d8 -02977901 239.11816406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e8 -02977902 239.11816406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e8 -02977903 239.11817932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f8 -02977904 239.11817932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f8 -02977905 239.11820984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48508 -02977906 239.11820984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48508 -02977907 239.11824036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48518 -02977908 239.11824036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48518 -02977909 239.11825562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48528 -02977910 239.11825562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48528 -02977911 239.11828613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48538 -02977912 239.11828613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48538 -02977913 239.11831665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48548 -02977914 239.11833191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48548 -02977915 239.11836243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48558 -02977916 239.11836243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48558 -02977917 239.11839294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48568 -02977918 239.11839294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48568 -02977919 239.11840820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48578 -02977920 239.11840820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48578 -02977921 239.11843872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48588 -02977922 239.11843872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48588 -02977923 239.11846924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48598 -02977924 239.11846924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48598 -02977925 239.11848450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a8 -02977926 239.11848450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a8 -02982641 239.18733215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51908 -02982642 239.18737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51908 -02982643 239.18740845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51918 -02982644 239.18740845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51918 -02982645 239.18742371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51928 -02982646 239.18742371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51928 -02982647 239.18745422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51938 -02982648 239.18745422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51938 -02982649 239.18748474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51948 -02982650 239.18750000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51948 -02982651 239.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51958 -02982652 239.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51958 -02982653 239.18756104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51968 -02982654 239.18756104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51968 -02982655 239.18759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51978 -02982656 239.18759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51978 -02982657 239.18760681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -02982658 239.18760681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -02982659 239.18763733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -02982660 239.18763733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -02982661 239.18766785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -02982662 239.18766785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -02982663 239.18768311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b8 -02982664 239.18768311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b8 -02982665 239.18771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c8 -02982666 239.18771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c8 -02982667 239.18774414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d8 -02982668 239.18774414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d8 -02982669 239.18775940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e8 -02982670 239.18775940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e8 -02982671 239.18778992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -02982672 239.18782043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -02982673 239.18783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -02982674 239.18783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -02982675 239.18786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -02982676 239.18786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -02982677 239.18789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -02982678 239.18789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -02982679 239.18791199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -02982680 239.18791199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -02982681 239.18794250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -02982682 239.18794250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -02982683 239.18797302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -02982684 239.18797302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -02983287 239.43022156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02983288 239.43022156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02983289 239.43025208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02983290 239.43025208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02983291 239.43026733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02983292 239.43029785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02983293 239.43032837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02983294 239.43032837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02983295 239.43034363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02983296 239.43034363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02983297 239.43037415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02983298 239.43037415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02983299 239.43040466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02983300 239.43040466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02983301 239.43041992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02983302 239.43041992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02983303 239.43045044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02983304 239.43045044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02983305 239.43048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02983306 239.43048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02983307 239.43049622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02983308 239.43049622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02983309 239.43052673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02983310 239.43052673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02983311 239.43055725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02983312 239.43055725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02983313 239.43057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02983314 239.43057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02983315 239.43060303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02983316 239.43060303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02983317 239.43063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02983318 239.43063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02983319 239.43064880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02983320 239.43067932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02983321 239.43067932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02983322 239.43070984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02983323 239.43074036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02983324 239.43074036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02983325 239.43075562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02983326 239.43075562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02983327 239.43078613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02983328 239.43078613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02983329 239.43081665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02983330 239.43081665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02987105 239.48394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -02987106 239.48394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -02987107 239.48397827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -02987108 239.48397827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -02987109 239.48400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -02987110 239.48400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -02987111 239.48403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -02987112 239.48403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -02987113 239.48405457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -02987114 239.48405457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -02987115 239.48408508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -02987116 239.48408508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -02987117 239.48411560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -02987118 239.48411560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -02987119 239.48413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -02987120 239.48416138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -02987121 239.48419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -02987122 239.48419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -02987123 239.48420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -02987124 239.48420715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -02987125 239.48423767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -02987126 239.48423767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -02987127 239.48426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -02987128 239.48426819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -02987129 239.48428345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -02987130 239.48428345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -02987131 239.48442078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -02987132 239.48442078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -02987133 239.48443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -02987134 239.48443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -02987135 239.48446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -02987136 239.48446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -02987137 239.48449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -02987138 239.48449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -02987139 239.48451233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -02987140 239.48451233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -02987141 239.48454285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -02987142 239.48454285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -02987143 239.48457336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -02987144 239.48458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -02987145 239.48461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -02987146 239.48461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -02987147 239.48464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -02987148 239.48464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -02991952 239.55271912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f08 -02991953 239.55274963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f18 -02991954 239.55274963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f18 -02991955 239.55276489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f28 -02991956 239.55276489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f28 -02991957 239.55279541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f38 -02991958 239.55279541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f38 -02991959 239.55282593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f48 -02991960 239.55282593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f48 -02991961 239.55284119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f58 -02991962 239.55284119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f58 -02991963 239.55287170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f68 -02991964 239.55287170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f68 -02991965 239.55290222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f78 -02991966 239.55290222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f78 -02991967 239.55291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f88 -02991968 239.55291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f88 -02991969 239.55294800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f98 -02991970 239.55294800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f98 -02991971 239.55297852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa8 -02991972 239.55297852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa8 -02991973 239.55299377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb8 -02991974 239.55299377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb8 -02991975 239.55302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc8 -02991976 239.55302429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc8 -02991977 239.55305481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd8 -02991978 239.55307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd8 -02991979 239.55307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe8 -02991980 239.55310059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe8 -02991981 239.55313110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff8 -02991982 239.55313110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff8 -02991983 239.55314636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12008 -02991984 239.55314636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12008 -02991985 239.55317688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12018 -02991986 239.55317688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12018 -02991987 239.55320740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12028 -02991988 239.55320740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12028 -02991989 239.55322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12038 -02991990 239.55322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12038 -02991991 239.55325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12048 -02991992 239.55325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12048 -02991993 239.55328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12058 -02991994 239.55328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12058 -02991995 239.55329895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12068 -02997468 239.63179016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb58 -02997469 239.63179016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb58 -02997470 239.63182068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb68 -02997471 239.63182068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb68 -02997472 239.63185120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb78 -02997473 239.63185120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb78 -02997474 239.63186646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb88 -02997475 239.63186646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb88 -02997476 239.63189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb98 -02997477 239.63189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb98 -02997478 239.63192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba8 -02997479 239.63192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba8 -02997480 239.63194275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb8 -02997481 239.63194275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb8 -02997482 239.63197327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc8 -02997483 239.63197327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc8 -02997484 239.63200378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd8 -02997485 239.63201904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd8 -02997486 239.63204956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe8 -02997487 239.63204956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe8 -02997488 239.63208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf8 -02997489 239.63208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf8 -02997490 239.63209534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -02997491 239.63209534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -02997492 239.63212585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -02997493 239.63212585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -02997494 239.63215637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -02997495 239.63215637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -02997496 239.63217163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc38 -02997497 239.63217163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc38 -02997498 239.63220215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc48 -02997499 239.63220215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc48 -02997500 239.63223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc58 -02997501 239.63223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc58 -02997502 239.63226318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc68 -02997503 239.63226318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc68 -02997504 239.63227844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -02997505 239.63230896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -02997506 239.63233948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -02997507 239.63233948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -02997508 239.63235474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -02997509 239.63235474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -02997510 239.63238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -02997511 239.63238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -03002806 239.70846558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27228 -03002807 239.70846558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27228 -03002808 239.70849609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27238 -03002809 239.70849609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27238 -03002810 239.70851135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27248 -03002811 239.70851135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27248 -03002812 239.70854187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27258 -03002813 239.70857239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27258 -03002814 239.70858765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27268 -03002815 239.70858765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27268 -03002816 239.70861816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27278 -03002817 239.70861816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27278 -03002818 239.70864868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27288 -03002819 239.70864868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27288 -03002820 239.70867920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27298 -03002821 239.70867920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27298 -03002822 239.70869446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -03002823 239.70869446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -03002824 239.70872498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -03002825 239.70872498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -03002826 239.70875549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -03002827 239.70875549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -03002828 239.70877075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -03002829 239.70877075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -03002830 239.70880127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -03002831 239.70880127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -03002832 239.70883179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -03002833 239.70884705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -03002834 239.70887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -03002835 239.70887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -03002836 239.70890808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -03002837 239.70890808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -03002838 239.70892334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -03002839 239.70892334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -03002840 239.70895386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -03002841 239.70895386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -03002842 239.70898438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -03002843 239.70898438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -03002844 239.70899963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -03002845 239.70899963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -03002846 239.70903015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -03002847 239.70903015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -03002848 239.70906067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -03002849 239.70906067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -03022594 239.98773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc48 -03022595 239.98773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc48 -03022596 239.98776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc58 -03022597 239.98776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc58 -03022598 239.98779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc68 -03022599 239.98779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc68 -03022600 239.98780823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc78 -03022601 239.98780823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc78 -03022602 239.98783875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc88 -03022603 239.98783875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc88 -03022604 239.98786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc98 -03022605 239.98786926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc98 -03022606 239.98788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca8 -03022607 239.98788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca8 -03022608 239.98791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb8 -03022609 239.98791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb8 -03022610 239.98794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc8 -03022611 239.98796082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc8 -03022612 239.98799133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -03022613 239.98799133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -03022614 239.98802185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -03022615 239.98802185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -03022616 239.98805237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -03022617 239.98805237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -03022618 239.98806763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -03022619 239.98806763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -03022620 239.98809814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -03022621 239.98809814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -03022622 239.98812866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -03022623 239.98812866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -03022624 239.98814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -03022625 239.98814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -03022626 239.98817444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -03022627 239.98817444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -03022628 239.98820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -03022629 239.98820496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -03022630 239.98822021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -03022631 239.98825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -03022632 239.98828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -03022633 239.98828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -03022634 239.98829651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -03022635 239.98829651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -03022636 239.98832703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -03022637 239.98832703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -03025184 240.14143372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -03025185 241.58169556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03025186 241.60031128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025187 241.60031128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025188 242.43994141 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025189 242.43995667 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025190 242.43998718 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025191 242.44001770 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03025192 242.44013977 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025193 242.44013977 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03025194 242.44018555 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025195 242.44021606 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03025196 243.60163879 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03025197 243.62170410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025198 243.62170410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025199 244.19703674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03025200 244.19703674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03025201 244.19706726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03025202 244.19706726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03025203 244.19709778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03025204 244.19709778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03025205 244.19711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03025206 244.19711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03025207 244.19714355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03025208 244.19714355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03025209 244.19717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03025210 244.19717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03025211 244.19718933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03025212 244.19721985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03025213 244.19725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03025214 244.19725037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03025215 244.19728088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03025216 244.19728088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03025217 244.19729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03025218 244.19729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03025219 244.19732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03025220 244.19732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03025221 244.19735718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03025222 244.19735718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03025223 244.19737244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03025224 244.19737244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03025225 244.19740295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03025226 244.19740295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03025227 244.19743347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03025228 244.19743347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03025229 244.19744873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03025230 244.19744873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03025231 244.19747925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03025232 244.19747925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03025233 244.19752502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03025234 244.19752502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03025235 244.19755554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03025236 244.19755554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03025237 244.19758606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03025238 244.19758606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03025239 244.19760132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03025240 244.19760132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03025241 244.19763184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03025242 244.19763184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03025243 244.19766235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03025244 244.19766235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03025245 244.19767761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03025246 244.19767761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03025247 244.19770813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03025248 244.19770813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03025249 244.19773865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03025250 244.19773865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03025251 244.19775391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03025252 244.19778442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03025253 244.19781494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03025254 244.19781494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03025255 244.19783020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03025256 244.19783020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03025257 244.19786072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03025258 244.19786072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03025259 244.19789124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03025260 244.19789124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03025261 244.19790649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03025262 244.19790649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03025263 244.19793701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03025264 244.19793701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03025265 244.19796753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03025266 244.19796753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03025267 244.19798279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03025268 244.19798279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03025269 244.19801331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03025270 244.19801331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03025271 244.19804382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03025272 244.19807434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03025273 244.19808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03025274 244.19808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03025275 244.19812012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03025276 244.19812012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03025277 244.19815063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03025278 244.19815063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03025279 244.19816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03025280 244.19816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03025281 244.19819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03025282 244.19819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03025283 244.19822693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03025284 244.19822693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03025285 244.19824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03025286 244.19824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03025287 244.19827271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03025288 244.19827271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03025289 244.19830322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03025290 244.19830322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03025291 244.19831848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03025292 244.19834900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03025293 244.19837952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03025294 244.19837952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03025295 244.19839478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03025296 244.19839478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03025297 244.19842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03025298 244.19842529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03025299 244.19845581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03025300 244.19845581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03025301 244.19847107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03025302 244.19847107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03025303 244.19853210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03025304 244.19853210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03025305 244.19854736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03025306 244.19854736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03025307 244.19857788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03025308 244.19857788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03025309 244.19860840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03025310 244.19860840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03025311 244.19862366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03025312 244.19865417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03025313 244.19868469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03025314 244.19868469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03025315 244.19869995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03025316 244.19869995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03025317 244.19873047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03025318 244.19873047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03025319 244.19876099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03025320 244.19876099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03025321 244.19879150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03025322 244.19879150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03025323 244.19883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03025324 244.19883728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03025325 244.19886780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03025326 244.19886780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03025327 244.19888306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03025328 244.19891357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03025329 244.19894409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03025330 244.19894409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03025331 244.19895935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03025332 244.19895935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03025333 244.19898987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03025334 244.19898987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03025335 244.19902039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03025336 244.19902039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03025337 244.19903564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03025338 244.19903564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03025339 244.19906616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03025340 244.19906616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03025341 244.19909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03025342 244.19909668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03025343 244.19911194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03025344 244.19911194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03025345 244.19914246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03025346 244.19914246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03025347 244.19917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03025348 244.19917297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03025349 244.19918823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03025350 244.19921875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03025351 244.19921875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03025352 244.19924927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03025353 244.19926453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03025354 244.19926453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03025355 244.19929504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03025356 244.19929504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03025357 244.19932556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03025358 244.19932556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03025359 244.19934082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03025360 244.19934082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03025361 244.19937134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03025362 244.19937134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03025363 244.19940186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03025364 244.19940186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03025365 244.19941711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03025366 244.19941711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03025367 244.19944763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03025368 244.19944763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03025369 244.19947815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03025370 244.19947815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03025371 244.19949341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03025372 244.19952393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03025373 244.19955444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03025374 244.19955444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03025375 244.19958496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03025376 244.19958496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03025377 244.19960022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03025378 244.19960022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03025379 244.19963074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03025380 244.19963074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03025381 244.19966125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03025382 244.19966125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03025383 244.19967651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03025384 244.19967651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03025385 244.19970703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03025386 244.19970703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03025387 244.19973755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03025388 244.19973755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03025389 244.19975281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03025390 244.19975281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03025391 244.19978333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03025392 244.19981384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03025393 244.19981384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03025394 244.19982910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03025395 244.19985962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03025396 244.19985962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03025397 244.19989014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03025398 244.19989014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03025399 244.19990540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03025400 244.19990540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03025401 244.19993591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03025402 244.19993591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03025403 244.19996643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03025404 244.19996643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03025405 244.19998169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03025406 244.19998169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03025407 244.20001221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03025408 244.20001221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03025409 244.20004272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03025410 244.20004272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03025411 244.20005798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03025412 244.20005798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03025413 244.20011902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03025414 244.20011902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03025415 244.20013428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03025416 244.20013428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03025417 244.20016479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03025418 244.20016479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03025419 244.20019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03025420 244.20019531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03025421 244.20021057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03025422 244.20021057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03025423 244.20024109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03025424 244.20024109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03025425 244.20027161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03025426 244.20027161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03025427 244.20028687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03025428 244.20028687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03025429 244.20031738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03025430 244.20031738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03025431 244.20034790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03025432 244.20037842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03025433 244.20039368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03025434 244.20039368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03025435 244.20042419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03025436 244.20042419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03025437 244.20045471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03025438 244.20045471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03025439 244.20046997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03025440 244.20046997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03025441 244.20050049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03025442 244.20050049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03025443 244.20057678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03025444 244.20057678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03025445 244.20060730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03025446 244.20060730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03025447 244.20062256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03025448 244.20062256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03025449 244.20065308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03025450 244.20065308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03025451 244.20068359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03025452 244.20068359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03025453 244.20069885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03025454 244.20072937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03025455 244.20072937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03025456 244.20075989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03025457 244.20077515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03025458 244.20077515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03025459 244.20080566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03025460 244.20083618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03025461 244.20085144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03025462 244.20085144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03025463 244.20088196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03025464 244.20088196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03025465 244.20091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03025466 244.20091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03025467 244.20092773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03025468 244.20092773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03025469 244.20095825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03025470 244.20095825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03025471 244.20098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03025472 244.20098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03025473 244.20100403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03025474 244.20100403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03025475 244.20103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03025476 244.20103455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03025477 244.20106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03025478 244.20106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03025479 244.20109558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03025480 244.20109558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03025481 244.20111084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03025482 244.20114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03025483 244.20114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03025484 244.20117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03025485 244.20118713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03025486 244.20118713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03025487 244.20121765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03025488 244.20121765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03025489 244.20124817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03025490 244.20124817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03025491 244.20126343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03025492 244.20126343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03025493 244.20129395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03025494 244.20129395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03025495 244.20132446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03025496 244.20132446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03025497 244.20133972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03025498 244.20133972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03025499 244.20137024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03025500 244.20137024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03025501 244.20140076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03025502 244.20140076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03025503 244.20141602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03025504 244.20144653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03025505 244.20147705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03025506 244.20147705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03025507 244.20149231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03025508 244.20149231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03025509 244.20152283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03025510 244.20152283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03025511 244.20155334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03025512 244.20155334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03025513 244.20156860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03025514 244.20156860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03025515 244.20159912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03025516 244.20159912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03025517 244.20162964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03025518 244.20162964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03025519 244.20164490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03025520 244.20164490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03025521 244.20167542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03025522 244.20167542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03025523 244.20170593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03025524 244.20172119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03025525 244.20175171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03025526 244.20175171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03025527 244.20178223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03025528 244.20178223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03025529 244.20179749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03025530 244.20179749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03025531 244.20182800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03025532 244.20182800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03025533 244.20185852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03025534 244.20185852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03025535 244.20188904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03025536 244.20188904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03025537 244.20190430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03025538 244.20190430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03025539 244.20193481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03025540 244.20193481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03025541 244.20196533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03025542 244.20198059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03025543 244.20201111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03025544 244.20201111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03025545 244.20204163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03025546 244.20204163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03025547 244.20205688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03025548 244.20205688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03025549 244.20208740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03025550 244.20208740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03025551 244.20211792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03025552 244.20211792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03025553 244.20213318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03025554 244.20213318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03025555 244.20216370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03025556 244.20216370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03025557 244.20219421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03025558 244.20219421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03025559 244.20220947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03025560 244.20220947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03025561 244.20223999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03025562 244.20223999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03025563 244.20227051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03025564 244.20227051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03025565 244.20228577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03025566 244.20228577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03025567 244.20231628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03025568 244.20231628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03025569 244.20234680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03025570 244.20234680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03025571 244.20236206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03025572 244.20239258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03025573 244.20239258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03025574 244.20242310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03025575 244.20243835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03025576 244.20243835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03025577 244.20246887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03025578 244.20246887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03025579 244.20249939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03025580 244.20249939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03025581 244.20251465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03025582 244.20251465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03025583 244.20254517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03025584 244.20254517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03025585 244.20257568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03025586 244.20257568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03025587 244.20259094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03025588 244.20259094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03025589 244.20262146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03025590 244.20262146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03025591 244.20265198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03025592 244.20265198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03025593 244.20268250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03025594 244.20269775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03025595 244.20272827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03025596 244.20272827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03025597 244.20275879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03025598 244.20275879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03025599 244.20277405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03025600 244.20277405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03025601 244.20280457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03025602 244.20280457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03025603 244.20283508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03025604 244.20283508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03025605 244.20285034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03025606 244.20285034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03025607 244.20288086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03025608 244.20288086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03025609 244.20292664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03025610 244.20292664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03025611 244.20295715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03025612 244.20295715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03025613 244.20298767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03025614 244.20298767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03025615 244.20300293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03025616 244.20300293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03025617 244.20303345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03025618 244.20303345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03025619 244.20306396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03025620 244.20306396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03025621 244.20307922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03025622 244.20307922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03025623 244.20310974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03025624 244.20310974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03025625 244.20314026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03025626 244.20314026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03025627 244.20315552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03025628 244.20315552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03025629 244.20318604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03025630 244.20321655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03025631 244.20323181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03025632 244.20323181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03025633 244.20326233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03025634 244.20326233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03025635 244.20329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03025636 244.20329285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03025637 244.20330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03025638 244.20330811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03025639 244.20333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03025640 244.20333862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03025641 244.20336914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03025642 244.20336914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03025643 244.20338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03025644 244.20338440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03025645 244.20341492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03025646 244.20341492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03025647 244.20344543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03025648 244.20347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03025649 244.20347595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03025650 244.20349121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03025651 244.20352173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03025652 244.20352173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03025653 244.20355225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03025654 244.20355225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03025655 244.20356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03025656 244.20356750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03025657 244.20359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03025658 244.20359802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03025659 244.20362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03025660 244.20362854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03025661 244.20364380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03025662 244.20364380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03025663 244.20367432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03025664 244.20367432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03025665 244.20370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03025666 244.20370483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03025667 244.20372009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03025668 244.20372009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03025669 244.20375061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03025670 244.20375061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03025671 244.20378113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03025672 244.20378113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03025673 244.20379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03025674 244.20379639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03025675 244.20382690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03025676 244.20382690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03025677 244.20385742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03025678 244.20387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03025679 244.20387268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03025680 244.20390320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03025681 244.20393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03025682 244.20393372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03025683 244.20394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03025684 244.20394897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03025685 244.20397949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03025686 244.20397949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03025687 244.20401001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03025688 244.20401001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03025689 244.20402527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03025690 244.20402527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03025691 244.20405579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03025692 244.20405579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03025693 244.20408630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03025694 244.20408630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03025695 244.20410156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03025696 244.20410156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03025697 244.20413208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03025698 244.20413208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03025699 244.20416260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03025700 244.20416260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03025701 244.20419312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03025702 244.20419312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03025703 244.20420837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03025704 244.20420837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03025705 244.20423889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03025706 244.20423889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03025707 244.20426941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03025708 244.20426941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03025709 244.20428467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03025710 244.20431519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03025711 244.20431519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03025712 244.20434570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03025713 244.20436096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03025714 244.20436096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03025715 244.20439148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03025716 244.20439148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03025717 244.20442200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03025718 244.20442200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03025719 244.20443726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03025720 244.20443726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03025721 244.20446777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03025722 244.20446777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03025723 244.20449829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03025724 244.20449829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03025725 244.20451355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03025726 244.20451355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03025727 244.20454407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03025728 244.20454407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03025729 244.20457458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03025730 244.20457458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03025731 244.20458984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03025732 244.20462036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03025733 244.20465088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03025734 244.20465088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03025735 244.20466614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03025736 244.20466614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03025737 244.20469666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03025738 244.20469666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03025739 244.20472717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03025740 244.20472717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03025741 244.20474243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03025742 244.20474243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03025743 244.20477295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03025744 244.20477295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03025745 244.20480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03025746 244.20480347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03025747 244.20481873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03025748 244.20481873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03025749 244.20484924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03025750 244.20484924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03025751 244.20487976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03025752 244.20487976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03025753 244.20489502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03025754 244.20489502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03025755 244.20492554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03025756 244.20492554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03025757 244.20495605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03025758 244.20495605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03025759 244.20498657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03025760 244.20498657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03025761 244.20500183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03025762 244.20500183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03025763 244.20503235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03025764 244.20506287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03025765 244.20506287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03025766 244.20507813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03025767 244.20510864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03025768 244.20510864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03025769 244.20513916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03025770 244.20513916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03025771 244.20515442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03025772 244.20515442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03025773 244.20518494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03025774 244.20518494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03025775 244.20521545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03025776 244.20521545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03025777 244.20523071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03025778 244.20523071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03025779 244.20526123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03025780 244.20526123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03025781 244.20529175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03025782 244.20529175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03025783 244.20530701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03025784 244.20530701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03025785 244.20536804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03025786 244.20536804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03025787 244.20538330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03025788 244.20538330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03025789 244.20541382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03025790 244.20541382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03025791 244.20544434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03025792 244.20544434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03025793 244.20545959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03025794 244.20545959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03025795 244.20549011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03025796 244.20549011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03025797 244.20552063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03025798 244.20552063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03025799 244.20553589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03025800 244.20553589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03025801 244.20556641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03025802 244.20556641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03025803 244.20559692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03025804 244.20559692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03025805 244.20561218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03025806 244.20561218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03025807 244.20564270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03025808 244.20564270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03025809 244.20567322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03025810 244.20567322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03025811 244.20568848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03025812 244.20568848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03025813 244.20574951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03025814 244.20574951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03025815 244.20578003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03025816 244.20578003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03025817 244.20579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03025818 244.20579529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03025819 244.20582581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03025820 244.20582581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03025821 244.20585632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03025822 244.20585632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03025823 244.20587158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03025824 244.20587158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03025825 244.20590210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03025826 244.20590210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03025827 244.20593262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03025828 244.20593262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03025829 244.20594788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03025830 244.20597839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03025831 244.20600891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03025832 244.20600891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03025833 244.20602417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03025834 244.20602417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03025835 244.20605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03025836 244.20605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03025837 244.20608521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03025838 244.20608521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03025839 244.20610046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03025840 244.20610046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03025841 244.20613098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03025842 244.20613098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03025843 244.20616150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03025844 244.20616150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03025845 244.20617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03025846 244.20617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03025847 244.20620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03025848 244.20620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03025849 244.20623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03025850 244.20623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03025851 244.20625305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03025852 244.20625305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03025853 244.20628357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03025854 244.20628357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03025855 244.20631409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03025856 244.20631409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03025857 244.20632935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03025858 244.20632935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03025859 244.20635986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03025860 244.20639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03025861 244.20639038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03025862 244.20640564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03025863 244.20643616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03025864 244.20643616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03025865 244.20646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03025866 244.20646667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03025867 244.20649719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03025868 244.20649719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03025869 244.20651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03025870 244.20651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03025871 244.20654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03025872 244.20654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03025873 244.20657349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03025874 244.20657349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03025875 244.20661926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03025876 244.20661926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03025877 244.20664978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03025878 244.20664978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03025879 244.20666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03025880 244.20666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03025881 244.20669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03025882 244.20669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03025883 244.20672607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03025884 244.20674133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03025885 244.20677185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03025886 244.20677185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03025887 244.20680237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03025888 244.20680237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03025889 244.20681763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03025890 244.20681763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03025891 244.20684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03025892 244.20684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03025893 244.20687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03025894 244.20687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03025895 244.20689392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03025896 244.20689392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03025897 244.20692444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03025898 244.20692444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03025899 244.20695496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03025900 244.20695496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03025901 244.20697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03025902 244.20697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03025903 244.20700073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03025904 244.20700073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03025905 244.20703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03025906 244.20703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03025907 244.20704651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03025908 244.20707703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03025909 244.20707703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03025910 244.20710754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03025911 244.20712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03025912 244.20712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03025913 244.20715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03025914 244.20715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03025915 244.20718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03025916 244.20718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03025917 244.20719910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03025918 244.20719910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03025919 244.20722961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03025920 244.20722961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03025921 244.20726013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03025922 244.20726013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03025923 244.20729065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03025924 244.20729065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03025925 244.20730591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03025926 244.20730591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03025927 244.20733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03025928 244.20733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03025929 244.20736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03025930 244.20736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03025931 244.20738220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03025932 244.20738220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03025933 244.20741272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03025934 244.20741272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03025935 244.20744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03025936 244.20744324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03025937 244.20745850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03025938 244.20745850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03025939 244.20748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03025940 244.20748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03025941 244.20751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03025942 244.20751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03025943 244.20753479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03025944 244.20753479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03025945 244.20756531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03025946 244.20759583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03025947 244.20761108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03025948 244.20761108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03025949 244.20764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03025950 244.20764160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03025951 244.20767212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03025952 244.20767212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03025953 244.20768738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03025954 244.20768738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03025955 244.20771790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03025956 244.20771790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03025957 244.20774841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03025958 244.20774841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03025959 244.20776367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03025960 244.20776367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03025961 244.20779419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03025962 244.20779419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03025963 244.20782471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03025964 244.20782471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03025965 244.20783997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03025966 244.20783997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03025967 244.20787048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03025968 244.20790100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03025969 244.20790100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03025970 244.20791626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03025971 244.20794678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03025972 244.20794678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03025973 244.20797729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03025974 244.20797729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03025975 244.20799255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03025976 244.20799255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03025977 244.20802307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03025978 244.20802307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03025979 244.20805359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03025980 244.20805359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03025981 244.20808411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03025982 244.20808411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03025983 244.20809937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03025984 244.20809937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03025985 244.20812988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03025986 244.20812988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03025987 244.20816040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03025988 244.20816040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03025989 244.20817566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03025990 244.20817566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03025991 244.20820618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03025992 244.20820618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03025993 244.20823669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03025994 244.20823669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03025995 244.20825195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03025996 244.20825195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03025997 244.20828247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03025998 244.20831299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03025999 244.20832825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03026000 244.20832825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03026001 244.20835876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03026002 244.20835876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03026003 244.20838928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03026004 244.20838928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03026005 244.20840454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03026006 244.20840454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03026007 244.20843506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03026008 244.20843506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03026009 244.20846558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03026010 244.20846558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03026011 244.20848083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03026012 244.20848083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03026013 244.20851135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03026014 244.20851135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03026015 244.20854187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03026016 244.20854187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03026017 244.20855713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03026018 244.20855713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03026019 244.20858765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03026020 244.20861816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03026021 244.20863342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03026022 244.20863342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03026023 244.20866394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03026024 244.20866394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03026025 244.20869446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03026026 244.20869446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03026027 244.20870972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03026028 244.20870972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03026029 244.20874023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03026030 244.20874023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03026031 244.20877075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03026032 244.20877075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03026033 244.20878601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03026034 244.20878601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03026035 244.20881653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03026036 244.20881653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03026037 244.20884705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03026038 244.20884705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03026039 244.20887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03026040 244.20887756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03026041 244.20889282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03026042 244.20889282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03026043 244.20892334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03026044 244.20892334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03026045 244.20895386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03026046 244.20896912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03026047 244.20899963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03026048 244.20899963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03026049 244.20903015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03026050 244.20903015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03026051 244.20904541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03026052 244.20904541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03026053 244.20907593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03026054 244.20907593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03026055 244.20910645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03026056 244.20910645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03026057 244.20912170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03026058 244.20912170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03026059 244.20915222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03026060 244.20915222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03026061 244.20918274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03026062 244.20919800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03026063 244.20922852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03026064 244.20922852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03026065 244.20925903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03026066 244.20925903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03026067 244.20927429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03026068 244.20927429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03026069 244.20930481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03026070 244.20930481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03026071 244.20933533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03026072 244.20933533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03026073 244.20935059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03026074 244.20935059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03026075 244.20938110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03026076 244.20938110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03026077 244.20941162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03026078 244.20941162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03026079 244.20942688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03026080 244.20942688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03026081 244.20945740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03026082 244.20945740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03026083 244.20950317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03026084 244.20950317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03026085 244.20953369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03026086 244.20953369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03026087 244.20956421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03026088 244.20956421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03026089 244.20959473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03026090 244.20959473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03026091 244.20960999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03026092 244.20960999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03026093 244.20964050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03026094 244.20964050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03026095 244.20967102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03026096 244.20967102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03026097 244.20968628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03026098 244.20968628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03026099 244.20971680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03026100 244.20971680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03026101 244.20974731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03026102 244.20974731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03026103 244.20976257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03026104 244.20979309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03026105 244.20982361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03026106 244.20982361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03026107 244.20983887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03026108 244.20983887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03026109 244.20986938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03026110 244.20986938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03026111 244.20989990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03026112 244.20989990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03026113 244.20991516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03026114 244.20991516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03026115 244.20994568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03026116 244.20994568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03026117 244.20997620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03026118 244.20997620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03026119 244.20999146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03026120 244.20999146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03026121 244.21002197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03026122 244.21002197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03026123 244.21005249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03026124 244.21006775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03026125 244.21009827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03026126 244.21009827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03026127 244.21012878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03026128 244.21012878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03026129 244.21014404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03026130 244.21014404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03026131 244.21017456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03026132 244.21017456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03026133 244.21020508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03026134 244.21020508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03026135 244.21022034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03026136 244.21022034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03026137 244.21025085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03026138 244.21025085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03026139 244.21028137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03026140 244.21028137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03026141 244.21029663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03026142 244.21032715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03026143 244.21035767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03026144 244.21035767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03026145 244.21038818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03026146 244.21038818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03026147 244.21040344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03026148 244.21040344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03026149 244.21043396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03026150 244.21043396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03026151 244.21046448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03026152 244.21046448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03026153 244.21047974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03026154 244.21047974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03026155 244.21051025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03026156 244.21054077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03026157 244.21055603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03026158 244.21055603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03026159 244.21058655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03026160 244.21058655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03026161 244.21061707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03026162 244.21061707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03026163 244.21063232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03026164 244.21063232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03026165 244.21066284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03026166 244.21066284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03026167 244.21069336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03026168 244.21069336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03026169 244.21070862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03026170 244.21070862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03026171 244.21073914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03026172 244.21073914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03026173 244.21076965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03026174 244.21076965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03026175 244.21078491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03026176 244.21078491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03026177 244.21081543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03026178 244.21081543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03026179 244.21084595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03026180 244.21084595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03026181 244.21086121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03026182 244.21089172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03026183 244.21089172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03026184 244.21092224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03026185 244.21093750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03026186 244.21093750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03026187 244.21096802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03026188 244.21096802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03026189 244.21101379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03026190 244.21104431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03026191 244.21107483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03026192 244.21107483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03026193 244.21109009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03026194 244.21109009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03026195 244.21112061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03026196 244.21112061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03026197 244.21115112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03026198 244.21115112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03026199 244.21118164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03026200 244.21118164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03026201 244.21119690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03026202 244.21119690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03026203 244.21122742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03026204 244.21122742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03026205 244.21125793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03026206 244.21125793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03026207 244.21127319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03026208 244.21127319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03026209 244.21130371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03026210 244.21130371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03026211 244.21133423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03026212 244.21133423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03026213 244.21134949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03026214 244.21134949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03026215 244.21138000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03026216 244.21138000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03026217 244.21141052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03026218 244.21142578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03026219 244.21145630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03026220 244.21145630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03026221 244.21148682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03026222 244.21148682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03026223 244.21150208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03026224 244.21150208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03026225 244.21153259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03026226 244.21153259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03026227 244.21156311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03026228 244.21156311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03026229 244.21157837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03026230 244.21157837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03026231 244.21160889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03026232 244.21160889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03026233 244.21163940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03026234 244.21163940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03026235 244.21165466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03026236 244.21165466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03026237 244.21168518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03026238 244.21168518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03026239 244.21171570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03026240 244.21173096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03026241 244.21176147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03026242 244.21176147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03026243 244.21179199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03026244 244.21179199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03026245 244.21180725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03026246 244.21180725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03026247 244.21183777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03026248 244.21183777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03026249 244.21186829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03026250 244.21186829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03026251 244.21189880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03026252 244.21189880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03026253 244.21191406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03026254 244.21191406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03026255 244.21194458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03026256 244.21194458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03026257 244.21197510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03026258 244.21197510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03026259 244.21199036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03026260 244.21202087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03026261 244.21205139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03026262 244.21205139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03026263 244.21206665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03026264 244.21206665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03026265 244.21209717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03026266 244.21209717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03026267 244.21212769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03026268 244.21212769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03026269 244.21214294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03026270 244.21214294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03026271 244.21217346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03026272 244.21217346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03026273 244.21220398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03026274 244.21220398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03026275 244.21224976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03026276 244.21228027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03026277 244.21229553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03026278 244.21229553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03026279 244.21232605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03026280 244.21232605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03026281 244.21235657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03026282 244.21235657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03026283 244.21237183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03026284 244.21237183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03026285 244.21240234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03026286 244.21240234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03026287 244.21243286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03026288 244.21243286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03026289 244.21244812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03026290 244.21244812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03026291 244.21247864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03026292 244.21247864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03026293 244.21250916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03026294 244.21250916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03026295 244.21252441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03026296 244.21252441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03026297 244.21255493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03026298 244.21255493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03026299 244.21258545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03026300 244.21260071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03026301 244.21263123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03026302 244.21263123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03026303 244.21266174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03026304 244.21266174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03026305 244.21269226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03026306 244.21269226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03026307 244.21270752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03026308 244.21270752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03026309 244.21273804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03026310 244.21273804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03026311 244.21276855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03026312 244.21276855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03026313 244.21278381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03026314 244.21278381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03026315 244.21281433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03026316 244.21281433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03026317 244.21284485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03026318 244.21284485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03026319 244.21286011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03026320 244.21286011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03026321 244.21289063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03026322 244.21289063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03026323 244.21292114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03026324 244.21292114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03026325 244.21293640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03026326 244.21293640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03026327 244.21296692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03026328 244.21296692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03026329 244.21299744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03026330 244.21299744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03026331 244.21301270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03026332 244.21301270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03026333 244.21304321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03026334 244.21307373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03026335 244.21308899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03026336 244.21308899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03026337 244.21311951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03026338 244.21311951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03026339 244.21315002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03026340 244.21315002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03026341 244.21316528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03026342 244.21316528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03026343 244.21319580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03026344 244.21319580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03026345 244.21322632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03026346 244.21322632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03026347 244.21324158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03026348 244.21324158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03026349 244.21327209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03026350 244.21327209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03026351 244.21330261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03026352 244.21330261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03026353 244.21331787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03026354 244.21331787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03026355 244.21334839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03026356 244.21334839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03026357 244.21337891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03026358 244.21337891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03026359 244.21339417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03026360 244.21339417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03026361 244.21342468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03026362 244.21342468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03026363 244.21345520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03026364 244.21345520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03026365 244.21348572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03026366 244.21348572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03026367 244.21350098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03026368 244.21350098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03026369 244.21353149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03026370 244.21353149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03026371 244.21356201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03026372 244.21357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03026373 244.21357727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03026374 244.21360779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03026375 244.21363831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03026376 244.21363831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03026377 244.21365356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03026378 244.21365356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03026379 244.21368408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03026380 244.21368408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03026381 244.21371460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03026382 244.21371460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03026383 244.21372986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03026384 244.21372986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03026385 244.21376038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03026386 244.21376038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03026387 244.21379089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03026388 244.21379089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03026389 244.21380615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03026390 244.21380615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03026391 244.21383667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03026392 244.21383667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03026393 244.21386719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03026394 244.21386719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03026395 244.21388245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03026396 244.21388245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03026397 244.21391296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03026398 244.21391296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03026399 244.21394348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03026400 244.21395874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03026401 244.21398926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03026402 244.21398926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03026403 244.21401978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03026404 244.21401978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03026405 244.21403503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03026406 244.21403503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03026407 244.21406555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03026408 244.21406555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03026409 244.21409607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03026410 244.21409607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03026411 244.21411133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03026412 244.21411133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03026413 244.21414185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03026414 244.21414185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03026415 244.21417236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03026416 244.21417236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03026417 244.21418762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03026418 244.21418762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03026419 244.21421814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03026420 244.21421814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03026421 244.21424866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03026422 244.21424866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03026423 244.21427917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03026424 244.21427917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03026425 244.21429443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03026426 244.21432495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03026427 244.21432495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03026428 244.21435547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03026429 244.21437073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03026430 244.21437073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03026431 244.21440125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03026432 244.21440125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03026433 244.21443176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03026434 244.21443176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03026435 244.21444702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03026436 244.21444702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03026437 244.21447754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03026438 244.21447754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03026439 244.21450806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03026440 244.21450806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03026441 244.21452332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03026442 244.21452332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03026443 244.21455383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03026444 244.21455383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03026445 244.21458435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03026446 244.21458435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03026447 244.21459961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03026448 244.21459961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03026449 244.21463013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03026450 244.21466064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03026451 244.21467590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03026452 244.21467590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03026453 244.21470642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03026454 244.21470642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03026455 244.21473694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03026456 244.21473694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03026457 244.21475220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03026458 244.21475220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03026459 244.21478271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03026460 244.21478271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03026461 244.21481323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03026462 244.21481323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03026463 244.21482849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03026464 244.21482849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03026465 244.21485901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03026466 244.21485901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03026467 244.21488953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03026468 244.21488953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03026469 244.21490479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03026470 244.21490479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03026471 244.21493530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03026472 244.21493530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03026473 244.21496582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03026474 244.21496582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03026475 244.21499634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03026476 244.21499634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03026477 244.21501160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03026478 244.21501160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03026479 244.21504211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03026480 244.21504211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03026481 244.21507263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03026482 244.21507263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03026483 244.21508789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03026484 244.21511841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03026485 244.21511841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03026486 244.21514893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03026487 244.21516418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03026488 244.21516418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03026489 244.21519470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03026490 244.21519470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03026491 244.21522522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03026492 244.21522522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03026493 244.21524048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03026494 244.21524048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03026495 244.21527100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03026496 244.21527100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03026497 244.21530151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03026498 244.21530151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03026499 244.21531677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03026500 244.21531677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03026501 244.21534729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03026502 244.21534729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03026503 244.21537781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03026504 244.21537781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03026505 244.21539307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03026506 244.21539307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03026507 244.21542358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03026508 244.21542358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03026509 244.21545410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03026510 244.21545410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03026511 244.21546936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03026512 244.21546936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03026513 244.21549988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03026514 244.21549988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03026515 244.21553040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03026516 244.21553040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03026517 244.21554565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03026518 244.21554565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03026519 244.21557617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03026520 244.21557617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03026521 244.21560669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03026522 244.21560669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03026523 244.21562195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03026524 244.21562195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03026525 244.21565247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03026526 244.21568298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03026527 244.21568298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03026528 244.21569824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03026529 244.21572876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03026530 244.21572876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03026531 244.21575928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03026532 244.21575928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03026533 244.21578979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03026534 244.21578979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03026535 244.21580505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03026536 244.21580505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03026537 244.21583557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03026538 244.21583557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03026539 244.21586609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03026540 244.21586609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03026541 244.21588135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03026542 244.21588135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03026543 244.21591187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03026544 244.21591187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03026545 244.21594238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03026546 244.21594238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03026547 244.21595764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03026548 244.21598816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03026549 244.21598816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03026550 244.21601868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03026551 244.21603394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03026552 244.21603394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03026553 244.21606445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03026554 244.21606445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03026555 244.21609497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03026556 244.21609497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03026557 244.21611023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03026558 244.21611023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03026559 244.21614075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03026560 244.21614075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03026561 244.21617126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03026562 244.21617126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03026563 244.21618652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03026564 244.21618652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03026565 244.21621704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03026566 244.21621704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03026567 244.21624756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03026568 244.21624756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03026569 244.21626282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03026570 244.21626282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03026571 244.21629333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03026572 244.21629333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03026573 244.21632385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03026574 244.21632385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03026575 244.21633911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03026576 244.21633911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03026577 244.21636963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03026578 244.21636963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03026579 244.21640015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03026580 244.21640015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03026581 244.21641541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03026582 244.21641541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03026583 244.21644592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03026584 244.21644592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03026585 244.21647644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03026586 244.21649170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03026587 244.21652222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03026588 244.21652222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03026589 244.21655273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03026590 244.21655273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03026591 244.21658325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03026592 244.21658325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03026593 244.21659851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03026594 244.21659851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03026595 244.21662903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03026596 244.21662903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03026597 244.21665955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03026598 244.21665955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03026599 244.21667480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03026600 244.21667480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03026601 244.21670532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03026602 244.21670532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03026603 244.21673584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03026604 244.21673584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03026605 244.21675110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03026606 244.21678162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03026607 244.21681213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03026608 244.21681213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03026609 244.21682739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03026610 244.21682739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03026611 244.21685791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03026612 244.21685791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03026613 244.21688843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03026614 244.21688843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03026615 244.21690369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03026616 244.21690369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03026617 244.21693420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03026618 244.21693420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03026619 244.21696472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03026620 244.21696472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03026621 244.21697998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03026622 244.21697998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03026623 244.21701050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03026624 244.21701050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03026625 244.21704102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03026626 244.21705627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03026627 244.21708679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03026628 244.21708679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03026629 244.21711731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03026630 244.21711731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03026631 244.21713257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03026632 244.21713257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03026633 244.21716309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03026634 244.21716309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03026635 244.21719360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03026636 244.21719360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03026637 244.21720886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03026638 244.21720886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03026639 244.21723938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03026640 244.21723938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03026641 244.21726990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03026642 244.21726990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03026643 244.21730042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03026644 244.21730042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03026645 244.21731567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03026646 244.21731567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03026647 244.21734619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03026648 244.21734619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03026649 244.21737671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03026650 244.21737671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03026651 244.21739197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03026652 244.21739197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03026653 244.21742249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03026654 244.21742249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03026655 244.21745300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03026656 244.21746826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03026657 244.21746826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03026658 244.21749878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03026659 244.21752930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03026660 244.21752930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03026661 244.21754456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03026662 244.21754456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03026663 244.21757507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03026664 244.21757507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03026665 244.21760559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03026666 244.21760559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03026667 244.21762085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03026668 244.21762085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03026669 244.21765137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03026670 244.21765137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03026671 244.21768188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03026672 244.21768188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03026673 244.21769714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03026674 244.21769714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03026675 244.21772766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03026676 244.21772766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03026677 244.21775818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03026678 244.21777344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03026679 244.21780396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03026680 244.21780396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03026681 244.21783447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03026682 244.21783447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03026683 244.21784973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03026684 244.21784973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03026685 244.21788025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03026686 244.21788025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03026687 244.21791077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03026688 244.21791077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03026689 244.21792603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03026690 244.21792603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03026691 244.21795654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03026692 244.21795654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03026693 244.21798706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03026694 244.21798706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03026695 244.21800232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03026696 244.21800232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03026697 244.21803284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03026698 244.21806335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03026699 244.21809387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03026700 244.21809387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03026701 244.21810913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03026702 244.21810913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03026703 244.21813965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03026704 244.21813965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03026705 244.21817017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03026706 244.21817017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03026707 244.21818542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03026708 244.21818542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03026709 244.21821594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03026710 244.21821594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03026711 244.21824646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03026712 244.21824646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03026713 244.21826172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03026714 244.21826172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03026715 244.21829224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03026716 244.21829224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03026717 244.21832275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03026718 244.21832275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03026719 244.21833801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03026720 244.21833801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03026721 244.21836853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03026722 244.21836853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03026723 244.21839905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03026724 244.21839905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03026725 244.21841431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03026726 244.21841431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03026727 244.21844482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03026728 244.21847534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03026729 244.21849060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03026730 244.21849060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03026731 244.21852112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03026732 244.21852112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03026733 244.21855164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03026734 244.21855164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03026735 244.21856689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03026736 244.21856689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03026737 244.21859741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03026738 244.21859741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03026739 244.21862793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03026740 244.21862793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03026741 244.21864319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03026742 244.21864319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03026743 244.21867371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03026744 244.21867371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03026745 244.21870422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03026746 244.21871948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03026747 244.21871948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03026748 244.21875000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03026749 244.21878052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03026750 244.21878052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03026751 244.21879578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03026752 244.21879578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03026753 244.21882629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03026754 244.21882629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03026755 244.21885681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03026756 244.21885681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03026757 244.21888733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03026758 244.21888733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03026759 244.21890259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03026760 244.21890259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03026761 244.21893311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03026762 244.21893311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03026763 244.21896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03026764 244.21896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03026765 244.21897888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03026766 244.21897888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03026767 244.21900940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03026768 244.21900940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03026769 244.21903992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03026770 244.21905518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03026771 244.21908569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03026772 244.21908569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03026773 244.21911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03026774 244.21911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03026775 244.21913147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03026776 244.21913147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03026777 244.21916199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03026778 244.21916199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03026779 244.21919250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03026780 244.21919250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03026781 244.21920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03026782 244.21920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03026783 244.21923828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03026784 244.21923828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03026785 244.21926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03026786 244.21926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03026787 244.21928406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03026788 244.21928406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03026789 244.21931458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03026790 244.21931458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03026791 244.21934509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03026792 244.21934509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03026793 244.21936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03026794 244.21936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03026795 244.21939087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03026796 244.21939087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03026797 244.21942139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03026798 244.21942139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03026799 244.21943665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03026800 244.21943665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03026801 244.21946716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03026802 244.21946716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03026803 244.21949768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03026804 244.21951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03026805 244.21954346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03026806 244.21954346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03026807 244.21957397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03026808 244.21957397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03026809 244.21958923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03026810 244.21958923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03026811 244.21961975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03026812 244.21961975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03026813 244.21965027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03026814 244.21965027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03026815 244.21968079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03026816 244.21968079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03026817 244.21969604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03026818 244.21969604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03026819 244.21972656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03026820 244.21972656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03026821 244.21977234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03026822 244.21977234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03026823 244.21980286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03026824 244.21980286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03026825 244.21983337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03026826 244.21983337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03026827 244.21984863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03026828 244.21984863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03026829 244.21987915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03026830 244.21987915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03026831 244.21990967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03026832 244.21990967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03026833 244.21992493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03026834 244.21992493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03026835 244.21995544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03026836 244.21995544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03026837 244.21998596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03026838 244.21998596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03026839 244.22000122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03026840 244.22000122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03026841 244.22003174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03026842 244.22003174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03026843 244.22013855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03026844 244.22013855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03026845 244.22015381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03026846 244.22015381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03026847 244.22018433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03026848 244.22018433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03026849 244.22021484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03026850 244.22021484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03026851 244.22023010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03026852 244.22023010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03026853 244.22026062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03026854 244.22026062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03026855 244.22029114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03026856 244.22030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03026857 244.22030640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03026858 244.22033691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03026859 244.22036743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03026860 244.22036743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03026861 244.22039795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03026862 244.22039795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03026863 244.22041321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03026864 244.22041321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03026865 244.22044373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03026866 244.22044373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03026867 244.22047424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03026868 244.22047424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03026869 244.22048950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03026870 244.22048950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03026871 244.22052002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03026872 244.22052002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03026873 244.22055054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03026874 244.22055054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03026875 244.22056580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03026876 244.22056580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03026877 244.22059631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03026878 244.22062683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03026879 244.22064209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03026880 244.22064209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03026881 244.22067261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03026882 244.22067261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03026883 244.22070313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03026884 244.22070313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03026885 244.22071838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03026886 244.22071838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03026887 244.22074890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03026888 244.22074890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03026889 244.22077942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03026890 244.22077942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03026891 244.22079468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03026892 244.22079468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03026893 244.22082520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03026894 244.22085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03026895 244.22085571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03026896 244.22087097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03026897 244.22090149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03026898 244.22090149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03026899 244.22093201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03026900 244.22093201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03026901 244.22094727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03026902 244.22094727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03026903 244.22097778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03026904 244.22097778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03026905 244.22100830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03026906 244.22100830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03026907 244.22102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03026908 244.22102356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03026909 244.22105408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03026910 244.22105408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03026911 244.22108459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03026912 244.22108459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03026913 244.22109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03026914 244.22109985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03026915 244.22113037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03026916 244.22113037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03026917 244.22116089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03026918 244.22116089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03026919 244.22119141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03026920 244.22119141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03026921 244.22120667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03026922 244.22120667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03026923 244.22123718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03026924 244.22123718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03026925 244.22126770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03026926 244.22126770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03026927 244.22128296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03026928 244.22131348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03026929 244.22134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03026930 244.22134399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03026931 244.22135925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03026932 244.22135925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03026933 244.22138977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03026934 244.22138977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03026935 244.22142029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03026936 244.22142029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03026937 244.22143555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03026938 244.22143555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03026939 244.22146606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03026940 244.22146606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03026941 244.22149658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03026942 244.22149658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03026943 244.22151184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03026944 244.22151184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03026945 244.22154236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03026946 244.22154236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03026947 244.22157288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03026948 244.22158813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03026949 244.22161865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03026950 244.22161865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03026951 244.22164917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03026952 244.22164917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03026953 244.22166443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03026954 244.22166443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03026955 244.22169495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03026956 244.22169495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03026957 244.22172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03026958 244.22172546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03029324 244.25535583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03029325 244.25538635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03029326 244.25541687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03029327 244.25543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03029328 244.25543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03029329 244.25546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03029330 244.25546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03029331 244.25549316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03029332 244.25549316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03029333 244.25550842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -03029334 244.25550842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -03029335 244.25553894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -03029336 244.25553894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -03029337 244.25556946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -03029338 244.25556946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -03029339 244.25558472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -03029340 244.25558472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -03029341 244.25561523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -03029342 244.25561523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -03029343 244.25564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -03029344 244.25564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -03029345 244.25566101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -03029346 244.25566101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -03029347 244.25569153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -03029348 244.25572205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -03029349 244.25573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -03029350 244.25573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -03029351 244.25576782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -03029352 244.25576782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -03029353 244.25579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -03029354 244.25579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -03029355 244.25581360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -03029356 244.25581360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -03029357 244.25584412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -03029358 244.25584412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -03029359 244.25587463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -03029360 244.25587463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -03029361 244.25590515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -03029362 244.25590515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -03029363 244.25592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -03029364 244.25592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -03029365 244.25595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -03029366 244.25595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -03029367 244.25598145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -03045827 244.48760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e8 -03045828 244.48760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e8 -03045829 244.48762512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f8 -03045830 244.48762512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f8 -03045831 244.48765564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -03045832 244.48765564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -03045833 244.48768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29518 -03045834 244.48768616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29518 -03045835 244.48770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29528 -03045836 244.48770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29528 -03045837 244.48773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29538 -03045838 244.48773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29538 -03045839 244.48776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29548 -03045840 244.48776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29548 -03045841 244.48777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29558 -03045842 244.48777771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29558 -03045843 244.48780823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29568 -03045844 244.48783875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29568 -03045845 244.48785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29578 -03045846 244.48785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29578 -03045847 244.48788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29588 -03045848 244.48788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29588 -03045849 244.48791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29598 -03045850 244.48791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29598 -03045851 244.48793030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a8 -03045852 244.48793030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a8 -03045853 244.48796082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b8 -03045854 244.48796082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b8 -03045855 244.48799133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c8 -03045856 244.48799133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c8 -03045857 244.48800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d8 -03045858 244.48800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d8 -03045859 244.48803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e8 -03045860 244.48803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e8 -03045861 244.48806763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f8 -03045862 244.48806763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f8 -03045863 244.48808289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29608 -03045864 244.48811340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29608 -03045865 244.48814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29618 -03045866 244.48814392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29618 -03045867 244.48815918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29628 -03045868 244.48815918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29628 -03045869 244.48818970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29638 -03045870 244.48818970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29638 -03050840 244.55821228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33188 -03050841 244.55822754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -03050842 244.55822754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -03050843 244.55825806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -03050844 244.55825806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -03050845 244.55828857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -03050846 244.55830383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -03050847 244.55830383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -03050848 244.55833435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -03050849 244.55836487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -03050850 244.55836487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -03050851 244.55838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -03050852 244.55838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -03050853 244.55841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -03050854 244.55841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -03050855 244.55844116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33208 -03050856 244.55844116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33208 -03050857 244.55845642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33218 -03050858 244.55845642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33218 -03050859 244.55848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33228 -03050860 244.55848694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33228 -03050861 244.55851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33238 -03050862 244.55851746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33238 -03050863 244.55854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33248 -03050864 244.55854797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33248 -03050865 244.55856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33258 -03050866 244.55856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33258 -03050867 244.55859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33268 -03050868 244.55859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33268 -03050869 244.55862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33278 -03050870 244.55862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33278 -03050871 244.55863953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33288 -03050872 244.55867004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33288 -03050873 244.55870056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33298 -03050874 244.55870056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33298 -03050875 244.55871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a8 -03050876 244.55871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a8 -03050877 244.55874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b8 -03050878 244.55874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b8 -03050879 244.55877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c8 -03050880 244.55877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c8 -03050881 244.55879211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d8 -03050882 244.55879211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d8 -03050883 244.55882263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e8 -03055499 244.62515259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c328 -03055500 244.62515259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c328 -03055501 244.62518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c338 -03055502 244.62518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c338 -03055503 244.62519836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c348 -03055504 244.62519836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c348 -03055505 244.62522888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c358 -03055506 244.62522888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c358 -03055507 244.62525940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c368 -03055508 244.62525940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c368 -03055509 244.62530518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c378 -03055510 244.62530518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c378 -03055511 244.62533569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c388 -03055512 244.62533569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c388 -03055513 244.62535095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c398 -03055514 244.62535095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c398 -03055515 244.62538147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a8 -03055516 244.62538147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a8 -03055517 244.62541199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b8 -03055518 244.62541199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b8 -03055519 244.62542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c8 -03055520 244.62542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c8 -03055521 244.62548828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d8 -03055522 244.62548828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d8 -03055523 244.62550354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e8 -03055524 244.62550354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e8 -03055525 244.62553406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f8 -03055526 244.62553406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f8 -03055527 244.62556458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c408 -03055528 244.62556458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c408 -03055529 244.62557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c418 -03055530 244.62557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c418 -03055531 244.62561035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c428 -03055532 244.62561035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c428 -03055533 244.62564087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c438 -03055534 244.62564087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c438 -03055535 244.62567139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c448 -03055536 244.62567139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c448 -03055537 244.62568665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c458 -03055538 244.62568665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c458 -03055539 244.62571716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c468 -03055540 244.62571716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c468 -03055541 244.62574768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c478 -03055542 244.62576294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c478 -03060658 244.69778442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46458 -03060659 244.69779968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46468 -03060660 244.69779968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46468 -03060661 244.69783020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46478 -03060662 244.69783020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46478 -03060663 244.69786072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46488 -03060664 244.69786072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46488 -03060665 244.69787598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46498 -03060666 244.69787598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46498 -03060667 244.69790649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a8 -03060668 244.69790649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a8 -03060669 244.69793701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b8 -03060670 244.69793701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b8 -03060671 244.69795227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c8 -03060672 244.69798279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c8 -03060673 244.69801331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d8 -03060674 244.69801331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d8 -03060675 244.69802856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e8 -03060676 244.69802856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e8 -03060677 244.69805908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f8 -03060678 244.69805908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f8 -03060679 244.69808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46508 -03060680 244.69808960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46508 -03060681 244.69810486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -03060682 244.69810486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -03060683 244.69813538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -03060684 244.69813538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -03060685 244.69816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46538 -03060686 244.69816589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46538 -03060687 244.69819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46548 -03060688 244.69819641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46548 -03060689 244.69821167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46558 -03060690 244.69821167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46558 -03060691 244.69824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46568 -03060692 244.69824219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46568 -03060693 244.69827271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -03060694 244.69827271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -03060695 244.69828796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -03060696 244.69828796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -03060697 244.69831848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -03060698 244.69831848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -03060699 244.69834900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -03060700 244.69834900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -03060701 244.69836426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b8 -03067093 245.62321472 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03067094 245.64559937 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067095 245.64559937 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067096 247.45231628 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067097 247.45236206 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067098 247.45239258 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067099 247.45239258 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03067100 247.45251465 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067101 247.45251465 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03067102 247.45259094 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067103 247.45262146 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03067104 247.64726257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03067105 247.66947937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067106 247.66950989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067107 249.67111206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03067108 249.69161987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067109 249.69165039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067110 249.78941345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03067111 249.78941345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03067112 249.78944397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03067113 249.78944397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03067114 249.78945923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03067115 249.78945923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03067116 249.78948975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03067117 249.78948975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03067118 249.78952026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03067119 249.78952026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03067120 249.78953552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03067121 249.78953552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03067122 249.78956604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03067123 249.78956604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03067124 249.78959656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03067125 249.78961182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03067126 249.78964233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03067127 249.78964233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03067128 249.78967285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03067129 249.78967285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03067130 249.78970337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03067131 249.78970337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03067132 249.78971863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03067133 249.78971863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03067134 249.78974915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03067135 249.78974915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03067136 249.78977966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03067137 249.78977966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03067138 249.78979492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03067139 249.78979492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03067140 249.78982544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03067141 249.78982544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03067142 249.78985596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03067143 249.78985596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03067144 249.78987122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03067145 249.78990173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03067146 249.78993225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03067147 249.78993225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03067148 249.78994751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03067149 249.78994751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03067150 249.78997803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03067151 249.78997803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03067152 249.79000854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03067153 249.79000854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03067154 249.79002380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03067155 249.79002380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03067156 249.79005432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03067157 249.79005432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03067158 249.79008484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03067159 249.79008484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03067160 249.79010010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03067161 249.79010010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03067162 249.79013062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03067163 249.79016113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03067164 249.79017639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03067165 249.79017639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03067166 249.79020691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03067167 249.79020691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03067168 249.79023743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03067169 249.79023743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03067170 249.79025269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03067171 249.79025269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03067172 249.79028320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03067173 249.79028320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03067174 249.79031372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03067175 249.79031372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03067176 249.79032898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03067177 249.79032898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03067178 249.79035950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03067179 249.79035950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03067180 249.79039001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03067181 249.79039001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03067182 249.79040527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03067183 249.79040527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03067184 249.79043579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03067185 249.79046631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03067186 249.79049683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03067187 249.79049683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03067188 249.79051208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03067189 249.79051208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03067190 249.79054260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03067191 249.79054260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03067192 249.79057312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03067193 249.79057312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03067194 249.79058838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03067195 249.79058838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03067196 249.79061890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03067197 249.79061890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03067198 249.79064941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03067199 249.79064941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03067200 249.79066467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03067201 249.79066467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03067202 249.79069519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03067203 249.79072571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03067204 249.79074097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03067205 249.79074097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03067206 249.79077148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03067207 249.79077148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03067208 249.79080200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03067209 249.79080200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03067210 249.79081726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03067211 249.79081726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03067212 249.79084778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03067213 249.79084778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03067214 249.79087830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03067215 249.79087830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03067216 249.79089355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03067217 249.79089355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03067218 249.79092407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03067219 249.79092407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03067220 249.79095459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03067221 249.79095459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03067222 249.79096985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03067223 249.79096985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03067224 249.79100037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03067225 249.79103088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03067226 249.79104614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03067227 249.79104614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03067228 249.79107666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03067229 249.79107666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03067230 249.79110718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03067231 249.79110718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03067232 249.79112244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03067233 249.79112244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03067234 249.79118347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03067235 249.79118347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03067236 249.79121399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03067237 249.79121399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03067238 249.79122925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03067239 249.79122925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03067240 249.79125977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03067241 249.79125977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03067242 249.79129028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03067243 249.79129028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03067244 249.79130554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03067245 249.79130554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03067246 249.79133606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03067247 249.79133606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03067248 249.79136658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03067249 249.79136658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03067250 249.79138184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03067251 249.79141235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03067252 249.79144287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03067253 249.79144287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03067254 249.79145813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03067255 249.79145813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03067256 249.79148865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03067257 249.79148865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03067258 249.79151917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03067259 249.79151917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03067260 249.79153442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03067261 249.79153442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03067262 249.79156494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03067263 249.79156494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03067264 249.79159546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03067265 249.79159546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03067266 249.79161072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03067267 249.79161072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03067268 249.79164124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03067269 249.79164124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03067270 249.79167175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03067271 249.79167175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03067272 249.79168701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03067273 249.79171753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03067274 249.79174805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03067275 249.79174805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03067276 249.79176331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03067277 249.79176331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03067278 249.79179382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03067279 249.79179382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03067280 249.79182434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03067281 249.79182434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03067282 249.79183960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03067283 249.79183960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03067284 249.79187012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03067285 249.79187012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03067286 249.79190063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03067287 249.79190063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03067288 249.79191589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03067289 249.79191589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03067290 249.79194641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03067291 249.79194641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03067292 249.79197693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03067293 249.79200745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03067294 249.79202271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03067295 249.79202271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03067296 249.79205322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03067297 249.79205322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03067298 249.79208374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03067299 249.79208374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03067300 249.79209900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03067301 249.79209900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03067302 249.79212952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03067303 249.79212952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03067304 249.79216003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03067305 249.79216003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03067306 249.79217529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03067307 249.79217529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03067308 249.79220581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03067309 249.79220581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03067310 249.79223633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03067311 249.79223633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03067312 249.79225159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03067313 249.79225159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03067314 249.79228210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03067315 249.79231262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03067316 249.79232788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03067317 249.79232788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03067318 249.79235840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03067319 249.79235840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03067320 249.79238892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03067321 249.79238892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03067322 249.79240417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03067323 249.79240417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03067324 249.79243469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03067325 249.79243469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03067326 249.79246521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03067327 249.79246521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03067328 249.79248047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03067329 249.79248047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03067330 249.79251099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03067331 249.79251099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03067332 249.79254150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03067333 249.79254150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03067334 249.79255676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03067335 249.79258728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03067336 249.79261780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03067337 249.79261780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03067338 249.79263306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03067339 249.79263306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03067340 249.79266357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03067341 249.79266357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03067342 249.79269409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03067343 249.79269409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03067344 249.79270935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03067345 249.79270935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03067346 249.79273987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03067347 249.79273987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03067348 249.79277039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03067349 249.79277039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03067350 249.79280090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03067351 249.79280090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03067352 249.79281616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03067353 249.79281616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03067354 249.79284668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03067355 249.79284668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03067356 249.79287720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03067357 249.79289246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03067358 249.79292297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03067359 249.79292297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03067360 249.79295349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03067361 249.79295349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03067362 249.79296875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03067363 249.79296875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03067364 249.79299927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03067365 249.79299927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03067366 249.79302979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03067367 249.79302979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03067368 249.79304504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03067369 249.79304504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03067370 249.79307556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03067371 249.79307556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03067372 249.79310608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03067373 249.79310608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03067374 249.79312134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03067375 249.79312134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03067376 249.79315186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03067377 249.79318237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03067378 249.79319763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03067379 249.79319763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03067380 249.79322815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03067381 249.79322815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03067382 249.79325867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03067383 249.79325867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03067384 249.79327393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03067385 249.79327393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03067386 249.79330444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03067387 249.79330444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03067388 249.79333496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03067389 249.79333496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03067390 249.79335022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03067391 249.79335022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03067392 249.79338074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03067393 249.79338074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03067394 249.79341125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03067395 249.79341125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03067396 249.79342651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03067397 249.79342651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03067398 249.79345703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03067399 249.79348755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03067400 249.79350281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03067401 249.79350281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03067402 249.79353333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03067403 249.79353333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03067404 249.79356384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03067405 249.79356384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03067406 249.79359436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03067407 249.79359436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03067408 249.79360962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03067409 249.79360962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03067410 249.79364014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03067411 249.79364014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03067412 249.79367065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03067413 249.79367065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03067414 249.79368591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03067415 249.79368591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03067416 249.79371643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03067417 249.79371643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03067418 249.79374695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03067419 249.79376221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03067420 249.79379272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03067421 249.79379272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03067422 249.79382324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03067423 249.79382324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03067424 249.79383850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03067425 249.79383850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03067426 249.79386902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03067427 249.79386902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03067428 249.79389954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03067429 249.79389954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03067430 249.79391479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03067431 249.79391479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03067432 249.79394531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03067433 249.79394531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03067434 249.79397583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03067435 249.79397583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03067436 249.79399109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03067437 249.79399109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03067438 249.79402161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03067439 249.79405212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03067440 249.79406738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03067441 249.79406738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03067442 249.79409790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03067443 249.79409790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03067444 249.79412842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03067445 249.79412842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03067446 249.79414368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03067447 249.79414368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03067448 249.79417419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03067449 249.79417419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03067450 249.79420471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03067451 249.79420471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03067452 249.79421997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03067453 249.79421997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03067454 249.79425049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03067455 249.79425049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03067456 249.79428101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03067457 249.79428101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03067458 249.79431152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03067459 249.79431152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03067460 249.79432678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03067461 249.79435730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03067462 249.79438782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03067463 249.79438782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03067464 249.79440308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03067465 249.79440308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03067466 249.79443359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03067467 249.79443359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03067468 249.79446411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03067469 249.79446411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03067470 249.79447937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03067471 249.79447937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03067472 249.79450989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03067473 249.79450989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03067474 249.79454041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03067475 249.79454041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03067476 249.79455566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03067477 249.79455566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03067478 249.79458618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03067479 249.79458618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03067480 249.79461670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03067481 249.79463196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03067482 249.79466248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03067483 249.79466248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03067484 249.79469299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03067485 249.79469299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03067486 249.79470825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03067487 249.79470825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03067488 249.79473877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03067489 249.79473877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03067490 249.79476929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03067491 249.79476929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03067492 249.79478455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03067493 249.79478455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03067494 249.79481506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03067495 249.79481506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03067496 249.79484558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03067497 249.79484558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03067498 249.79486084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03067499 249.79486084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03067500 249.79489136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03067501 249.79489136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03067502 249.79492188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03067503 249.79493713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03067504 249.79496765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03067505 249.79496765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03067506 249.79499817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03067507 249.79499817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03067508 249.79501343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03067509 249.79501343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03067510 249.79504395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03067511 249.79504395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03067512 249.79507446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03067513 249.79507446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03067514 249.79510498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03067515 249.79510498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03067516 249.79512024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03067517 249.79512024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03067518 249.79515076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03067519 249.79515076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03067520 249.79518127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03067521 249.79518127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03067522 249.79519653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03067523 249.79519653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03067524 249.79522705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03067525 249.79525757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03067526 249.79527283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03067527 249.79527283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03067528 249.79530334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03067529 249.79530334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03067530 249.79533386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03067531 249.79533386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03067532 249.79534912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03067533 249.79534912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03067534 249.79537964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03067535 249.79537964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03067536 249.79541016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03067537 249.79541016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03067538 249.79542542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03067539 249.79542542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03067540 249.79545593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03067541 249.79545593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03067542 249.79548645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03067543 249.79548645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03067544 249.79550171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03067545 249.79553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03067546 249.79556274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03067547 249.79556274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03067548 249.79557800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03067549 249.79557800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03067550 249.79560852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03067551 249.79560852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03067552 249.79563904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03067553 249.79563904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03067554 249.79565430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03067555 249.79565430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03067556 249.79568481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03067557 249.79568481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03067558 249.79571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03067559 249.79571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03067560 249.79573059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03067561 249.79573059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03067562 249.79576111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03067563 249.79576111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03067564 249.79579163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03067565 249.79580688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03067566 249.79583740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03067567 249.79583740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03067568 249.79586792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03067569 249.79586792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03067570 249.79589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03067571 249.79589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03067572 249.79591370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03067573 249.79591370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03067574 249.79594421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03067575 249.79594421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03067576 249.79597473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03067577 249.79597473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03067578 249.79598999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03067579 249.79598999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03067580 249.79602051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03067581 249.79602051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03067582 249.79605103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03067583 249.79605103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03067584 249.79606628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03067585 249.79606628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03067586 249.79609680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03067587 249.79612732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03067588 249.79614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03067589 249.79614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03067590 249.79617310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03067591 249.79617310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03067592 249.79620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03067593 249.79620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03067594 249.79621887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03067595 249.79621887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03067596 249.79624939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03067597 249.79624939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03067598 249.79627991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03067599 249.79627991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03067600 249.79629517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03067601 249.79629517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03067602 249.79632568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03067603 249.79632568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03067604 249.79635620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03067605 249.79635620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03067606 249.79637146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03067607 249.79637146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03067608 249.79640198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03067609 249.79643250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03067610 249.79644775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03067611 249.79644775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03067612 249.79647827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03067613 249.79647827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03067614 249.79650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03067615 249.79650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03067616 249.79652405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03067617 249.79652405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03067618 249.79655457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03067619 249.79655457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03067620 249.79658508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03067621 249.79658508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03067622 249.79661560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03067623 249.79661560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03067624 249.79663086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03067625 249.79663086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03067626 249.79666138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03067627 249.79666138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03067628 249.79669189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03067629 249.79670715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03067630 249.79673767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03067631 249.79673767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03067632 249.79676819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03067633 249.79676819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03067634 249.79678345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03067635 249.79678345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03067636 249.79681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03067637 249.79681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03067638 249.79684448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03067639 249.79684448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03067640 249.79685974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03067641 249.79685974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03067642 249.79689026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03067643 249.79689026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03067644 249.79692078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03067645 249.79692078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03067646 249.79693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03067647 249.79693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03067648 249.79696655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03067649 249.79696655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03067650 249.79699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03067651 249.79701233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03067652 249.79704285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03067653 249.79704285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03067654 249.79707336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03067655 249.79707336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03067656 249.79708862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03067657 249.79708862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03067658 249.79711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03067659 249.79711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03067660 249.79714966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03067661 249.79714966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03067662 249.79716492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03067663 249.79716492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03067664 249.79719543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03067665 249.79719543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03067666 249.79722595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03067667 249.79722595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03067668 249.79724121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03067669 249.79724121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03067670 249.79727173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03067671 249.79730225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03067672 249.79731750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03067673 249.79731750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03067674 249.79734802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03067675 249.79734802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03067676 249.79737854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03067677 249.79737854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03067678 249.79740906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03067679 249.79740906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03067680 249.79742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03067681 249.79742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03067682 249.79745483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03067683 249.79745483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03067684 249.79748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03067685 249.79748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03067686 249.79750061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03067687 249.79750061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03067688 249.79753113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03067689 249.79753113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03067690 249.79756165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03067691 249.79756165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03067692 249.79757690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03067693 249.79760742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03067694 249.79763794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03067695 249.79763794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03067696 249.79765320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03067697 249.79765320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03067698 249.79768372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03067699 249.79768372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03067700 249.79771423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03067701 249.79771423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03067702 249.79772949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03067703 249.79772949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03067704 249.79776001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03067705 249.79776001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03067706 249.79779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03067707 249.79779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03067708 249.79780579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03067709 249.79780579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03067710 249.79783630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03067711 249.79783630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03067712 249.79786682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03067713 249.79788208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03067714 249.79791260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03067715 249.79791260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03067716 249.79794312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03067717 249.79794312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03067718 249.79795837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03067719 249.79795837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03067720 249.79798889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03067721 249.79798889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03067722 249.79801941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03067723 249.79801941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03067724 249.79803467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03067725 249.79803467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03067726 249.79806519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03067727 249.79806519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03067728 249.79809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03067729 249.79809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03067730 249.79811096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03067731 249.79811096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03067732 249.79814148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03067733 249.79814148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03067734 249.79817200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03067735 249.79820251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03067736 249.79821777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03067737 249.79821777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03067738 249.79824829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03067739 249.79824829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03067740 249.79827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03067741 249.79827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03067742 249.79829407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03067743 249.79829407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03067744 249.79832458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03067745 249.79832458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03067746 249.79835510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03067747 249.79835510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03067748 249.79837036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03067749 249.79837036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03067750 249.79840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03067751 249.79840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03067752 249.79843140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03067753 249.79843140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03067754 249.79844666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03067755 249.79847717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03067756 249.79850769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03067757 249.79850769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03067758 249.79852295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03067759 249.79852295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03067760 249.79855347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03067761 249.79855347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03067762 249.79858398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03067763 249.79858398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03067764 249.79859924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03067765 249.79859924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03067766 249.79862976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03067767 249.79862976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03067768 249.79866028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03067769 249.79866028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03067770 249.79867554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03067771 249.79867554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03067772 249.79870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03067773 249.79870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03067774 249.79873657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03067775 249.79873657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03067776 249.79875183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03067777 249.79878235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03067778 249.79881287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03067779 249.79881287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03067780 249.79882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03067781 249.79882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03067782 249.79885864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03067783 249.79885864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03067784 249.79888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03067785 249.79888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03067786 249.79890442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03067787 249.79890442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03067788 249.79893494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03067789 249.79893494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03067790 249.79896545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03067791 249.79896545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03067792 249.79899597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03067793 249.79899597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03067794 249.79901123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03067795 249.79901123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03067796 249.79904175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03067797 249.79907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03067798 249.79908752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03067799 249.79908752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03067800 249.79911804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03067801 249.79911804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03067802 249.79914856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03067803 249.79914856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03067804 249.79916382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03067805 249.79916382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03067806 249.79919434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03067807 249.79919434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03067808 249.79922485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03067809 249.79922485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03067810 249.79924011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03067811 249.79924011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03067812 249.79927063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03067813 249.79927063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03067814 249.79930115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03067815 249.79930115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03067816 249.79931641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03067817 249.79931641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03067818 249.79934692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03067819 249.79937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03067820 249.79939270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03067821 249.79939270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03067822 249.79942322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03067823 249.79942322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03067824 249.79945374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03067825 249.79945374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03067826 249.79946899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03067827 249.79946899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03067828 249.79949951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03067829 249.79949951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03067830 249.79953003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03067831 249.79953003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03067832 249.79954529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03067833 249.79954529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03067834 249.79957581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03067835 249.79957581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03067836 249.79960632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03067837 249.79960632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03067838 249.79962158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03067839 249.79965210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03067840 249.79968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03067841 249.79968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03067842 249.79971313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03067843 249.79971313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03067844 249.79972839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03067845 249.79972839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03067846 249.79975891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03067847 249.79975891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03067848 249.79978943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03067849 249.79978943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03067850 249.79980469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03067851 249.79980469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03067852 249.79983521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03067853 249.79983521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03067854 249.79986572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03067855 249.79986572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03067856 249.79988098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03067857 249.79988098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03067858 249.79991150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03067859 249.79991150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03067860 249.79994202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03067861 249.79995728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03067862 249.79998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03067863 249.79998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03067864 249.80001831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03067865 249.80001831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03067866 249.80003357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03067867 249.80003357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03067868 249.80006409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03067869 249.80006409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03067870 249.80009460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03067871 249.80009460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03067872 249.80010986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03067873 249.80010986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03067874 249.80014038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03067875 249.80014038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03067876 249.80017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03067877 249.80017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03067878 249.80018616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03067879 249.80018616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03067880 249.80021667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03067881 249.80024719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03067882 249.80026245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03067883 249.80026245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03067884 249.80029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03067885 249.80029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03067886 249.80032349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03067887 249.80032349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03067888 249.80033875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03067889 249.80033875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03067890 249.80036926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03067891 249.80036926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03067892 249.80039978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03067893 249.80039978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03067894 249.80041504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03067895 249.80041504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03067896 249.80044556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03067897 249.80044556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03067898 249.80047607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03067899 249.80047607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03067900 249.80050659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03067901 249.80050659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03067902 249.80055237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03067903 249.80055237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03067904 249.80058289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03067905 249.80058289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03067906 249.80059814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03067907 249.80059814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03067908 249.80062866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03067909 249.80062866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03067910 249.80065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03067911 249.80065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03067912 249.80067444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03067913 249.80067444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03067914 249.80070496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03067915 249.80070496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03067916 249.80073547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03067917 249.80073547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03067918 249.80075073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03067919 249.80075073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03067920 249.80078125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03067921 249.80078125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03067922 249.80081177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03067923 249.80082703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03067924 249.80085754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03067925 249.80085754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03067926 249.80088806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03067927 249.80088806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03067928 249.80090332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03067929 249.80090332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03067930 249.80093384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03067931 249.80093384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03067932 249.80096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03067933 249.80096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03067934 249.80097961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03067935 249.80097961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03067936 249.80101013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03067937 249.80101013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03067938 249.80104065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03067939 249.80104065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03067940 249.80105591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03067941 249.80105591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03067942 249.80108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03067943 249.80108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03067944 249.80111694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03067945 249.80113220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03067946 249.80116272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03067947 249.80116272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03067948 249.80119324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03067949 249.80119324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03067950 249.80120850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03067951 249.80120850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03067952 249.80123901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03067953 249.80123901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03067954 249.80126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03067955 249.80126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03067956 249.80130005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03067957 249.80130005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03067958 249.80131531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03067959 249.80131531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03067960 249.80134583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03067961 249.80134583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03067962 249.80137634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03067963 249.80137634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03067964 249.80139160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03067965 249.80142212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03067966 249.80145264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03067967 249.80145264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03067968 249.80146790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03067969 249.80146790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03067970 249.80149841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03067971 249.80149841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03067972 249.80152893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03067973 249.80152893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03067974 249.80154419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03067975 249.80154419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03067976 249.80157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03067977 249.80157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03067978 249.80160522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03067979 249.80160522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03067980 249.80162048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03067981 249.80162048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03067982 249.80165100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03067983 249.80165100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03067984 249.80168152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03067985 249.80168152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03067986 249.80169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03067987 249.80172729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03067988 249.80175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03067989 249.80175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03067990 249.80177307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03067991 249.80177307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03067992 249.80180359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03067993 249.80180359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03067994 249.80183411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03067995 249.80183411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03067996 249.80184937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03067997 249.80184937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03067998 249.80187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03067999 249.80187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03068000 249.80191040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03068001 249.80191040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03068002 249.80192566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03068003 249.80192566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03068004 249.80195618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03068005 249.80195618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03068006 249.80198669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03068007 249.80201721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03068008 249.80203247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03068009 249.80203247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03068010 249.80206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03068011 249.80206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03068012 249.80209351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03068013 249.80209351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03068014 249.80210876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03068015 249.80210876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03068016 249.80213928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03068017 249.80213928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03068018 249.80216980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03068019 249.80216980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03068020 249.80218506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03068021 249.80218506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03068022 249.80221558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03068023 249.80221558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03068024 249.80224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03068025 249.80224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03068026 249.80226135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03068027 249.80226135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03068028 249.80229187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03068029 249.80232239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03068030 249.80233765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03068031 249.80233765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03068032 249.80236816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03068033 249.80236816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03068034 249.80239868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03068035 249.80239868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03068036 249.80241394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03068037 249.80241394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03068038 249.80244446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03068039 249.80244446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03068040 249.80247498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03068041 249.80247498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03068042 249.80249023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03068043 249.80249023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03068044 249.80252075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03068045 249.80252075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03068046 249.80255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03068047 249.80255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03068048 249.80256653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03068049 249.80256653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03068050 249.80259705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03068051 249.80262756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03068052 249.80264282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03068053 249.80264282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03068054 249.80267334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03068055 249.80267334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03068056 249.80270386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03068057 249.80270386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03068058 249.80271912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03068059 249.80271912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03068060 249.80274963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03068061 249.80274963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03068062 249.80278015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03068063 249.80278015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03068064 249.80281067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03068065 249.80281067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03068066 249.80282593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03068067 249.80282593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03068068 249.80285645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03068069 249.80285645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03068070 249.80288696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03068071 249.80290222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03068072 249.80290222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03068073 249.80293274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03068074 249.80296326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03068075 249.80296326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03068076 249.80297852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03068077 249.80297852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03068078 249.80300903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03068079 249.80300903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03068080 249.80303955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03068081 249.80303955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03068082 249.80305481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03068083 249.80305481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03068084 249.80308533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03068085 249.80308533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03068086 249.80311584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03068087 249.80311584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03068088 249.80313110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03068089 249.80313110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03068090 249.80316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03068091 249.80316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03068092 249.80319214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03068093 249.80320740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03068094 249.80323792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03068095 249.80323792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03068096 249.80326843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03068097 249.80326843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03068098 249.80328369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03068099 249.80328369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03068100 249.80331421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03068101 249.80331421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03068102 249.80334473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03068103 249.80334473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03068104 249.80335999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03068105 249.80335999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03068106 249.80339050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03068107 249.80339050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03068108 249.80342102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03068109 249.80342102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03068110 249.80343628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03068111 249.80343628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03068112 249.80346680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03068113 249.80346680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03068114 249.80349731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03068115 249.80351257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03068116 249.80354309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03068117 249.80354309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03068118 249.80357361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03068119 249.80357361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03068120 249.80360413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03068121 249.80360413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03068122 249.80361938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03068123 249.80361938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03068124 249.80364990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03068125 249.80364990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03068126 249.80368042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03068127 249.80368042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03068128 249.80369568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03068129 249.80369568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03068130 249.80372620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03068131 249.80372620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03068132 249.80375671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03068133 249.80375671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03068134 249.80377197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03068135 249.80380249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03068136 249.80383301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03068137 249.80383301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03068138 249.80384827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03068139 249.80384827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03068140 249.80387878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03068141 249.80387878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03068142 249.80390930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03068143 249.80390930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03068144 249.80392456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03068145 249.80392456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03068146 249.80395508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03068147 249.80395508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03068148 249.80398560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03068149 249.80398560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03068150 249.80400085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03068151 249.80400085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03068152 249.80403137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03068153 249.80403137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03068154 249.80406189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03068155 249.80406189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03068156 249.80407715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03068157 249.80410767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03068158 249.80413818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03068159 249.80413818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03068160 249.80415344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03068161 249.80415344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03068162 249.80418396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03068163 249.80418396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03068164 249.80421448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03068165 249.80421448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03068166 249.80422974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03068167 249.80422974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03068168 249.80426025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03068169 249.80426025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03068170 249.80429077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03068171 249.80429077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03068172 249.80430603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03068173 249.80430603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03068174 249.80433655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03068175 249.80433655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03068176 249.80436707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03068177 249.80439758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03068178 249.80441284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03068179 249.80441284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03068180 249.80444336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03068181 249.80444336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03068182 249.80447388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03068183 249.80447388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03068184 249.80448914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03068185 249.80448914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03068186 249.80451965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03068187 249.80451965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03068188 249.80455017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03068189 249.80455017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03068190 249.80456543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03068191 249.80456543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03068192 249.80459595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03068193 249.80459595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03068194 249.80462646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03068195 249.80462646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03068196 249.80464172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03068197 249.80464172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03068198 249.80467224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03068199 249.80470276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03068200 249.80471802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03068201 249.80471802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03068202 249.80474854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03068203 249.80474854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03068204 249.80477905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03068205 249.80477905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03068206 249.80479431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03068207 249.80479431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03068208 249.80482483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03068209 249.80482483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03068210 249.80485535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03068211 249.80485535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03068212 249.80487061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03068213 249.80487061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03068214 249.80490112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03068215 249.80490112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03068216 249.80493164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03068217 249.80494690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03068218 249.80497742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03068219 249.80497742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03068220 249.80500793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03068221 249.80500793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03068222 249.80502319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03068223 249.80502319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03068224 249.80505371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03068225 249.80505371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03068226 249.80508423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03068227 249.80508423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03068228 249.80511475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03068229 249.80511475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03068230 249.80513000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03068231 249.80513000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03068232 249.80516052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03068233 249.80516052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03068234 249.80519104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03068235 249.80519104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03068236 249.80520630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03068237 249.80520630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03068238 249.80523682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03068239 249.80526733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03068240 249.80528259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03068241 249.80528259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03068242 249.80531311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03068243 249.80531311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03068244 249.80534363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03068245 249.80534363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03068246 249.80535889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03068247 249.80535889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03068248 249.80538940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03068249 249.80538940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03068250 249.80541992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03068251 249.80541992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03068252 249.80543518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03068253 249.80543518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03068254 249.80546570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03068255 249.80546570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03068256 249.80549622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03068257 249.80549622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03068258 249.80551147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03068259 249.80551147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03068260 249.80557251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03068261 249.80557251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03068262 249.80558777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03068263 249.80558777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03068264 249.80561829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03068265 249.80561829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03068266 249.80564880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03068267 249.80564880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03068268 249.80566406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03068269 249.80566406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03068270 249.80569458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03068271 249.80569458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03068272 249.80572510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03068273 249.80572510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03068274 249.80574036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03068275 249.80574036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03068276 249.80577087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03068277 249.80577087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03068278 249.80580139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03068279 249.80580139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03068280 249.80581665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03068281 249.80584717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03068282 249.80587769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03068283 249.80587769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03068284 249.80590820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03068285 249.80590820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03068286 249.80592346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03068287 249.80592346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03068288 249.80595398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03068289 249.80595398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03068290 249.80598450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03068291 249.80598450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03068292 249.80599976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03068293 249.80599976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03068294 249.80603027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03068295 249.80603027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03068296 249.80606079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03068297 249.80606079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03068298 249.80607605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03068299 249.80607605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03068300 249.80610657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03068301 249.80610657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03068302 249.80613708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03068303 249.80615234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03068304 249.80618286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03068305 249.80618286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03068306 249.80621338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03068307 249.80621338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03068308 249.80622864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03068309 249.80622864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03068310 249.80625916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03068311 249.80625916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03068312 249.80628967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03068313 249.80628967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03068314 249.80630493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03068315 249.80630493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03068316 249.80633545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03068317 249.80633545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03068318 249.80636597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03068319 249.80636597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03068320 249.80638123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03068321 249.80638123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03068322 249.80641174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03068323 249.80644226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03068324 249.80645752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03068325 249.80645752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03068326 249.80648804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03068327 249.80648804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03068328 249.80651855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03068329 249.80651855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03068330 249.80653381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03068331 249.80653381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03068332 249.80656433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03068333 249.80656433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03068334 249.80659485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03068335 249.80659485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03068336 249.80661011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03068337 249.80661011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03068338 249.80664063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03068339 249.80664063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03068340 249.80667114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03068341 249.80667114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03068342 249.80670166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03068343 249.80670166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03068344 249.80671692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03068345 249.80674744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03068346 249.80677795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03068347 249.80677795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03068348 249.80679321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03068349 249.80679321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03068350 249.80682373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03068351 249.80682373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03068352 249.80685425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03068353 249.80685425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03068354 249.80686951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03068355 249.80686951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03068356 249.80690002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03068357 249.80690002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03068358 249.80693054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03068359 249.80693054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03068360 249.80694580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03068361 249.80694580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03068362 249.80697632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03068363 249.80697632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03068364 249.80700684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03068365 249.80702209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03068366 249.80705261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03068367 249.80705261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03068368 249.80708313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03068369 249.80708313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03068370 249.80709839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03068371 249.80709839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03068372 249.80712891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03068373 249.80712891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03068374 249.80715942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03068375 249.80715942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03068376 249.80717468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03068377 249.80717468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03068378 249.80720520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03068379 249.80720520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03068380 249.80723572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03068381 249.80723572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03068382 249.80725098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03068383 249.80725098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03068384 249.80728149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03068385 249.80728149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03081254 249.98571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -03081255 249.98571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -03081256 249.98574829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -03081257 249.98574829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -03081258 249.98576355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -03081259 249.98576355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -03081260 249.98579407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca38 -03081261 249.98579407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca38 -03081262 249.98582458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca48 -03081263 249.98582458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca48 -03081264 249.98583984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca58 -03081265 249.98587036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca58 -03081266 249.98590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca68 -03081267 249.98590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca68 -03081268 249.98591614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca78 -03081269 249.98591614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca78 -03081270 249.98594666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca88 -03081271 249.98594666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca88 -03081272 249.98597717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca98 -03081273 249.98597717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca98 -03081274 249.98599243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa8 -03081275 249.98599243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa8 -03081276 249.98602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab8 -03081277 249.98602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab8 -03081278 249.98605347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac8 -03081279 249.98605347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac8 -03081280 249.98606873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad8 -03081281 249.98606873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad8 -03081282 249.98609924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae8 -03081283 249.98609924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae8 -03081284 249.98614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf8 -03081285 249.98614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf8 -03081286 249.98617554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb08 -03081287 249.98617554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb08 -03081288 249.98620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb18 -03081289 249.98620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb18 -03081290 249.98622131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb28 -03081291 249.98622131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb28 -03081292 249.98625183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb38 -03081293 249.98625183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb38 -03081294 249.98628235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb48 -03081295 249.98628235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb48 -03081296 249.98629761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb58 -03081297 249.98629761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb58 -03085758 250.04853821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256c8 -03085759 250.04853821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256c8 -03085760 250.04856873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256d8 -03085761 250.04856873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256d8 -03085762 250.04858398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256e8 -03085763 250.04858398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256e8 -03085764 250.04861450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256f8 -03085765 250.04861450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x256f8 -03085766 250.04864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25708 -03085767 250.04866028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25708 -03085768 250.04866028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25718 -03085769 250.04869080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25718 -03085770 250.04872131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25728 -03085771 250.04872131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25728 -03085772 250.04873657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25738 -03085773 250.04873657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25738 -03085774 250.04876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25748 -03085775 250.04876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25748 -03085776 250.04879761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25758 -03085777 250.04879761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25758 -03085778 250.04881287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25768 -03085779 250.04881287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25768 -03085780 250.04884338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25778 -03085781 250.04884338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25778 -03085782 250.04887390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25788 -03085783 250.04887390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25788 -03085784 250.04888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25798 -03085785 250.04888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25798 -03085786 250.04891968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a8 -03085787 250.04891968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a8 -03085788 250.04895020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b8 -03085789 250.04895020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b8 -03085790 250.04896545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c8 -03085791 250.04896545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c8 -03085792 250.04899597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d8 -03085793 250.04899597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d8 -03085794 250.04902649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e8 -03085795 250.04902649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e8 -03085796 250.04905701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f8 -03085797 250.04905701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f8 -03085798 250.04907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25808 -03085799 250.04910278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25808 -03085800 250.04913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -03085801 250.04913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -03097103 250.20776367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b948 -03097104 250.20779419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -03097105 250.20779419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -03097106 250.20782471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -03097107 250.20782471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -03097108 250.20783997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -03097109 250.20787048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -03097110 250.20790100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -03097111 250.20790100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -03097112 250.20791626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -03097113 250.20791626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -03097114 250.20794678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -03097115 250.20794678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -03097116 250.20797729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -03097117 250.20797729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -03097118 250.20799255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -03097119 250.20799255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -03097120 250.20802307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -03097121 250.20802307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -03097122 250.20805359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -03097123 250.20805359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -03097124 250.20808411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -03097125 250.20808411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -03097126 250.20809937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -03097127 250.20809937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -03097128 250.20812988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -03097129 250.20812988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -03097130 250.20816040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -03097131 250.20817566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -03097132 250.20820618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba38 -03097133 250.20820618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba38 -03097134 250.20823669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba48 -03097135 250.20823669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba48 -03097136 250.20825195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba58 -03097137 250.20825195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba58 -03097138 250.20828247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba68 -03097139 250.20828247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba68 -03097140 250.20831299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -03097141 250.20831299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -03097142 250.20832825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -03097143 250.20832825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -03097144 250.20835876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -03097145 250.20835876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -03097146 250.20838928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa8 -03109004 251.63510132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03109005 251.63560486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03109006 251.69244385 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03109007 251.71394348 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109008 251.71394348 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109009 252.46495056 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109010 252.46499634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109011 252.46499634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109012 252.46502686 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03109013 252.46514893 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109014 252.46514893 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03109015 252.46520996 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109016 252.46522522 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03109017 253.71487427 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03109018 253.73304749 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109019 253.73306274 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109020 254.97167969 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109021 254.97169495 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109022 254.97172546 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109023 254.97172546 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03109024 254.97184753 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109025 254.97184753 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03109026 254.97192383 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03109027 254.97195435 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03109028 255.18141174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03109029 255.18141174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03109030 255.18144226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03109031 255.18147278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03109032 255.18148804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03109033 255.18148804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03109034 255.18151855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03109035 255.18151855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03109036 255.18154907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03109037 255.18154907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03109038 255.18156433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03109039 255.18156433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03109040 255.18159485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03109041 255.18159485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03109042 255.18162537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03109043 255.18162537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03109044 255.18164063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03109045 255.18164063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03109046 255.18167114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03109047 255.18167114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03109048 255.18170166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03109049 255.18171692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03109050 255.18174744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03109051 255.18174744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03109052 255.18177795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03109053 255.18177795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03109054 255.18179321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03109055 255.18179321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03109056 255.18182373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03109057 255.18182373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03109058 255.18185425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03109059 255.18185425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03109060 255.18186951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03109061 255.18186951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03109062 255.18190002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03109063 255.18190002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03109064 255.18193054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03109065 255.18193054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03109066 255.18194580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03109067 255.18197632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03109068 255.18200684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03109069 255.18200684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03109070 255.18202209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03109071 255.18202209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03109072 255.18205261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03109073 255.18205261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03109074 255.18208313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03109075 255.18208313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03109076 255.18209839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03109077 255.18209839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03109078 255.18212891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03109079 255.18212891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03109080 255.18215942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03109081 255.18215942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03109082 255.18218994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03109083 255.18218994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03109084 255.18220520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03109085 255.18223572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03109086 255.18226624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03109087 255.18226624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03109088 255.18228149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03109089 255.18228149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03109090 255.18231201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03109091 255.18231201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03109092 255.18234253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03109093 255.18234253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03109094 255.18235779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03109095 255.18235779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03109096 255.18238831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03109097 255.18238831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03109098 255.18241882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03109099 255.18241882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03109100 255.18243408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03109101 255.18243408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03109102 255.18246460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03109103 255.18249512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03109104 255.18251038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03109105 255.18251038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03109106 255.18254089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03109107 255.18254089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03109108 255.18257141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03109109 255.18257141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03109110 255.18258667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03109111 255.18258667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03109112 255.18261719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03109113 255.18261719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03109114 255.18264771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03109115 255.18264771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03109116 255.18266296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03109117 255.18266296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03109118 255.18269348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03109119 255.18269348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03109120 255.18272400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03109121 255.18273926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03109122 255.18276978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03109123 255.18276978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03109124 255.18280029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03109125 255.18280029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03109126 255.18281555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03109127 255.18281555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03109128 255.18284607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03109129 255.18284607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03109130 255.18287659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03109131 255.18287659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03109132 255.18289185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03109133 255.18289185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03109134 255.18292236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03109135 255.18292236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03109136 255.18295288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03109137 255.18295288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03109138 255.18298340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03109139 255.18299866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03109140 255.18302917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03109141 255.18302917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03109142 255.18305969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03109143 255.18305969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03109144 255.18307495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03109145 255.18307495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03109146 255.18310547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03109147 255.18310547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03109148 255.18313599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03109149 255.18313599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03109150 255.18315125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03109151 255.18315125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03109152 255.18321228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03109153 255.18321228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03109154 255.18322754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03109155 255.18322754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03109156 255.18325806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03109157 255.18325806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03109158 255.18328857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03109159 255.18328857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03109160 255.18330383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03109161 255.18330383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03109162 255.18336487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03109163 255.18336487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03109164 255.18338013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03109165 255.18338013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03109166 255.18341064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03109167 255.18341064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03109168 255.18344116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03109169 255.18344116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03109170 255.18345642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03109171 255.18345642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03109172 255.18348694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03109173 255.18348694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03109174 255.18351746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03109175 255.18351746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03109176 255.18353271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03109177 255.18353271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03109178 255.18356323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03109179 255.18359375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03109180 255.18360901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03109181 255.18360901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03109182 255.18363953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03109183 255.18363953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03109184 255.18367004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03109185 255.18367004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03109186 255.18368530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03109187 255.18368530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03109188 255.18371582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03109189 255.18371582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03109190 255.18374634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03109191 255.18374634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03109192 255.18377686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03109193 255.18377686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03109194 255.18379211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03109195 255.18379211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03109196 255.18382263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03109197 255.18385315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03109198 255.18386841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03109199 255.18386841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03109200 255.18389893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03109201 255.18389893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03109202 255.18392944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03109203 255.18392944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03109204 255.18394470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03109205 255.18394470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03109206 255.18397522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03109207 255.18397522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03109208 255.18400574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03109209 255.18400574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03109210 255.18402100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03109211 255.18402100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03109212 255.18405151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03109213 255.18405151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03109214 255.18408203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03109215 255.18409729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03109216 255.18412781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03109217 255.18412781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03109218 255.18415833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03109219 255.18415833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03109220 255.18417358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03109221 255.18417358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03109222 255.18420410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03109223 255.18420410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03109224 255.18423462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03109225 255.18423462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03109226 255.18424988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03109227 255.18424988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03109228 255.18428040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03109229 255.18428040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03109230 255.18431091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03109231 255.18431091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03109232 255.18432617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03109233 255.18435669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03109234 255.18438721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03109235 255.18438721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03109236 255.18440247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03109237 255.18440247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03109238 255.18443298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03109239 255.18443298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03109240 255.18446350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03109241 255.18446350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03109242 255.18449402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03109243 255.18449402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03109244 255.18450928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03109245 255.18450928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03109246 255.18453979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03109247 255.18453979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03109248 255.18457031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03109249 255.18457031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03109250 255.18458557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03109251 255.18461609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03109252 255.18464661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03109253 255.18464661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03109254 255.18466187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03109255 255.18466187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03109256 255.18469238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03109257 255.18469238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03109258 255.18472290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03109259 255.18472290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03109260 255.18473816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03109261 255.18473816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03109262 255.18476868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03109263 255.18476868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03109264 255.18479919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03109265 255.18479919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03109266 255.18481445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03109267 255.18481445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03109268 255.18484497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03109269 255.18487549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03109270 255.18489075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03109271 255.18489075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03109272 255.18492126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03109273 255.18492126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03109274 255.18495178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03109275 255.18495178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03109276 255.18496704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03109277 255.18496704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03109278 255.18499756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03109279 255.18499756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03109280 255.18502808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03109281 255.18502808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03109282 255.18504333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03109283 255.18504333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03109284 255.18507385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03109285 255.18507385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03109286 255.18510437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03109287 255.18510437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03109288 255.18511963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03109289 255.18515015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03109290 255.18518066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03109291 255.18518066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03109292 255.18519592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03109293 255.18519592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03109294 255.18522644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03109295 255.18522644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03109296 255.18525696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03109297 255.18525696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03109298 255.18528748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03109299 255.18528748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03109300 255.18530273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03109301 255.18530273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03109302 255.18533325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03109303 255.18533325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03109304 255.18536377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03109305 255.18537903 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03109306 255.18540955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03109307 255.18540955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03109308 255.18544006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03109309 255.18544006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03109310 255.18545532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03109311 255.18545532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03109312 255.18548584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03109313 255.18548584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03109314 255.18551636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03109315 255.18551636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03109316 255.18553162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03109317 255.18553162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03109318 255.18556213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03109319 255.18556213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03109320 255.18559265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03109321 255.18559265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03109322 255.18560791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03109323 255.18560791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03109324 255.18563843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03109325 255.18566895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03109326 255.18568420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03109327 255.18568420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03109328 255.18571472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03109329 255.18571472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03109330 255.18574524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03109331 255.18574524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03109332 255.18576050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03109333 255.18576050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03109334 255.18579102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03109335 255.18579102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03109336 255.18582153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03109337 255.18582153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03109338 255.18583679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03109339 255.18583679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03109340 255.18586731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03109341 255.18589783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03109342 255.18591309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03109343 255.18591309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03109344 255.18594360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03109345 255.18594360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03109346 255.18597412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03109347 255.18597412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03109348 255.18598938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03109349 255.18598938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03109350 255.18601990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03109351 255.18601990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03109352 255.18605042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03109353 255.18605042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03109354 255.18608093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03109355 255.18608093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03109356 255.18609619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03109357 255.18609619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03109358 255.18612671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03109359 255.18612671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03109360 255.18615723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03109361 255.18617249 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03109362 255.18620300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03109363 255.18620300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03109364 255.18623352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03109365 255.18623352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03109366 255.18624878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03109367 255.18624878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03109368 255.18627930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03109369 255.18627930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03109370 255.18630981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03109371 255.18630981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03109372 255.18632507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03109373 255.18632507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03109374 255.18635559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03109375 255.18635559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03109376 255.18638611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03109377 255.18638611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03109378 255.18640137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03109379 255.18643188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03109380 255.18646240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03109381 255.18646240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03109382 255.18647766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03109383 255.18647766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03109384 255.18650818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03109385 255.18650818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03109386 255.18653870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03109387 255.18653870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03109388 255.18655396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03109389 255.18655396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03109390 255.18658447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03109391 255.18658447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03109392 255.18661499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03109393 255.18661499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03109394 255.18663025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03109395 255.18663025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03109396 255.18666077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03109397 255.18669128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03109398 255.18670654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03109399 255.18670654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03109400 255.18673706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03109401 255.18673706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03109402 255.18676758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03109403 255.18676758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03109404 255.18678284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03109405 255.18678284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03109406 255.18681335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03109407 255.18681335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03109408 255.18684387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03109409 255.18684387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03109410 255.18687439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03109411 255.18687439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03109412 255.18688965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03109413 255.18688965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03109414 255.18692017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03109415 255.18695068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03109416 255.18696594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03109417 255.18696594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03109418 255.18699646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03109419 255.18699646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03109420 255.18702698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03109421 255.18702698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03109422 255.18704224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03109423 255.18704224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03109424 255.18707275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03109425 255.18707275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03109426 255.18710327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03109427 255.18710327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03109428 255.18711853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03109429 255.18711853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03109430 255.18714905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03109431 255.18714905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03109432 255.18717957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03109433 255.18719482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03109434 255.18722534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03109435 255.18722534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03109436 255.18725586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03109437 255.18725586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03109438 255.18727112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03109439 255.18727112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03109440 255.18730164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03109441 255.18730164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03109442 255.18733215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03109443 255.18733215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03109444 255.18734741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03109445 255.18734741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03109446 255.18737793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03109447 255.18737793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03109448 255.18740845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03109449 255.18740845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03109450 255.18742371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03109451 255.18745422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03109452 255.18748474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03109453 255.18748474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03109454 255.18750000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03109455 255.18750000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03109456 255.18753052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03109457 255.18753052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03109458 255.18756104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03109459 255.18756104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03109460 255.18759155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03109461 255.18759155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03109462 255.18760681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03109463 255.18760681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03109464 255.18763733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03109465 255.18763733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03109466 255.18766785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03109467 255.18766785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03109468 255.18768311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03109469 255.18771362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03109470 255.18774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03109471 255.18774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03109472 255.18775940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03109473 255.18775940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03109474 255.18778992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03109475 255.18778992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03109476 255.18782043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03109477 255.18782043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03109478 255.18783569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03109479 255.18783569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03109480 255.18786621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03109481 255.18786621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03109482 255.18789673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03109483 255.18789673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03109484 255.18791199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03109485 255.18791199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03109486 255.18794250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03109487 255.18797302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03109488 255.18798828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03109489 255.18798828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03109490 255.18801880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03109491 255.18801880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03109492 255.18804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03109493 255.18804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03109494 255.18806458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03109495 255.18806458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03109496 255.18809509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03109497 255.18809509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03109498 255.18812561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03109499 255.18812561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03109500 255.18814087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03109501 255.18814087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03109502 255.18817139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03109503 255.18817139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03109504 255.18820190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03109505 255.18821716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03109506 255.18824768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03109507 255.18824768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03109508 255.18827820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03109509 255.18827820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03109510 255.18829346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03109511 255.18829346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03109512 255.18832397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03109513 255.18832397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03109514 255.18835449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03109515 255.18835449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03109516 255.18838501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03109517 255.18838501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03109518 255.18840027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03109519 255.18840027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03109520 255.18843079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03109521 255.18843079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03109522 255.18846130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03109523 255.18847656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03109524 255.18850708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03109525 255.18850708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03109526 255.18853760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03109527 255.18853760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03109528 255.18855286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03109529 255.18855286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03109530 255.18858337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03109531 255.18858337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03109532 255.18861389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03109533 255.18861389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03109534 255.18862915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03109535 255.18862915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03109536 255.18865967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03109537 255.18865967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03109538 255.18869019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03109539 255.18869019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03109540 255.18870544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03109541 255.18870544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03109542 255.18873596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03109543 255.18876648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03109544 255.18878174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03109545 255.18878174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03109546 255.18881226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03109547 255.18881226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03109548 255.18884277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03109549 255.18884277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03109550 255.18885803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03109551 255.18885803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03109552 255.18888855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03109553 255.18888855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03109554 255.18891907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03109555 255.18891907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03109556 255.18893433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03109557 255.18893433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03109558 255.18896484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03109559 255.18899536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03109560 255.18901062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03109561 255.18901062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03109562 255.18904114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03109563 255.18904114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03109564 255.18907166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03109565 255.18907166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03109566 255.18908691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03109567 255.18908691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03109568 255.18911743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03109569 255.18911743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03109570 255.18917847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03109571 255.18917847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03109572 255.18919373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03109573 255.18919373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03109574 255.18922424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03109575 255.18922424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03109576 255.18925476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03109577 255.18925476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03109578 255.18927002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03109579 255.18930054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03109580 255.18933105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03109581 255.18933105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03109582 255.18934631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03109583 255.18934631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03109584 255.18937683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03109585 255.18937683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03109586 255.18940735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03109587 255.18940735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03109588 255.18942261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03109589 255.18942261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03109590 255.18945313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03109591 255.18945313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03109592 255.18948364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03109593 255.18948364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03109594 255.18949890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03109595 255.18949890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03109596 255.18952942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03109597 255.18955994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03109598 255.18957520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03109599 255.18957520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03109600 255.18960571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03109601 255.18960571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03109602 255.18963623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03109603 255.18963623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03109604 255.18965149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03109605 255.18965149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03109606 255.18968201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03109607 255.18968201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03109608 255.18971252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03109609 255.18971252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03109610 255.18972778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03109611 255.18972778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03109612 255.18975830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03109613 255.18975830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03109614 255.18978882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03109615 255.18980408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03109616 255.18983459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03109617 255.18983459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03109618 255.18986511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03109619 255.18986511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03109620 255.18988037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03109621 255.18988037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03109622 255.18991089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03109623 255.18991089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03109624 255.18994141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03109625 255.18994141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03109626 255.18997192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03109627 255.18997192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03109628 255.18998718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03109629 255.18998718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03109630 255.19001770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03109631 255.19001770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03109632 255.19004822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03109633 255.19006348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03109634 255.19009399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03109635 255.19009399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03109636 255.19012451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03109637 255.19012451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03109638 255.19013977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03109639 255.19013977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03109640 255.19017029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03109641 255.19017029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03109642 255.19020081 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03109643 255.19020081 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03109644 255.19021606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03109645 255.19021606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03109646 255.19024658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03109647 255.19024658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03109648 255.19027710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03109649 255.19029236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03109650 255.19032288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03109651 255.19032288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03109652 255.19035339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03109653 255.19035339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03109654 255.19036865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03109655 255.19036865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03109656 255.19039917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03109657 255.19039917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03109658 255.19042969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03109659 255.19042969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03109660 255.19044495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03109661 255.19044495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03109662 255.19047546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03109663 255.19047546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03109664 255.19050598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03109665 255.19050598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03109666 255.19052124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03109667 255.19055176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03109668 255.19058228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03109669 255.19058228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03109670 255.19059753 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03109671 255.19059753 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03109672 255.19062805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03109673 255.19062805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03109674 255.19065857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03109675 255.19065857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03109676 255.19068909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03109677 255.19068909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03109678 255.19070435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03109679 255.19070435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03109680 255.19073486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03109681 255.19073486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03109682 255.19076538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03109683 255.19076538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03109684 255.19078064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03109685 255.19081116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03109686 255.19084167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03109687 255.19084167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03109688 255.19085693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03109689 255.19085693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03109690 255.19088745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03109691 255.19088745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03109692 255.19091797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03109693 255.19091797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03109694 255.19093323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03109695 255.19093323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03109696 255.19096375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03109697 255.19096375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03109698 255.19099426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03109699 255.19099426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03109700 255.19100952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03109701 255.19100952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03109702 255.19104004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03109703 255.19107056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03109704 255.19108582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03109705 255.19108582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03109706 255.19111633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03109707 255.19111633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03109708 255.19114685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03109709 255.19114685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03109710 255.19116211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03109711 255.19116211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03109712 255.19119263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03109713 255.19119263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03109714 255.19122314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03109715 255.19122314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03109716 255.19123840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03109717 255.19123840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03109718 255.19126892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03109719 255.19126892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03109720 255.19129944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03109721 255.19131470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03109722 255.19134521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03109723 255.19134521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03109724 255.19137573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03109725 255.19137573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03109726 255.19139099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03109727 255.19139099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03109728 255.19142151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03109729 255.19142151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03109730 255.19145203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03109731 255.19145203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03109732 255.19148254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03109733 255.19148254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03109734 255.19149780 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03109735 255.19149780 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03109736 255.19152832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03109737 255.19152832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03109738 255.19155884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03109739 255.19157410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03109740 255.19160461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03109741 255.19160461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03109742 255.19163513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03109743 255.19163513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03109744 255.19165039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03109745 255.19165039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03109746 255.19168091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03109747 255.19168091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03109748 255.19171143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03109749 255.19171143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03109750 255.19172668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03109751 255.19172668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03109752 255.19175720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03109753 255.19175720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03109754 255.19178772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03109755 255.19178772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03109756 255.19180298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03109757 255.19183350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03109758 255.19186401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03109759 255.19186401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03109760 255.19187927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03109761 255.19187927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03109762 255.19190979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03109763 255.19190979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03109764 255.19194031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03109765 255.19194031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03109766 255.19195557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03109767 255.19195557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03109768 255.19198608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03109769 255.19198608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03109770 255.19201660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03109771 255.19201660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03109772 255.19203186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03109773 255.19203186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03109774 255.19206238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03109775 255.19209290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03109776 255.19210815 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03109777 255.19210815 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03109778 255.19213867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03109779 255.19213867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03109780 255.19216919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03109781 255.19216919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03109782 255.19218445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03109783 255.19218445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03109784 255.19221497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03109785 255.19221497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03109786 255.19224548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03109787 255.19224548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03109788 255.19227600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03109789 255.19227600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03109790 255.19229126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03109791 255.19229126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03109792 255.19232178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03109793 255.19235229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03109794 255.19236755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03109795 255.19236755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03109796 255.19239807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03109797 255.19239807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03109798 255.19242859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03109799 255.19242859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03109800 255.19244385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03109801 255.19244385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03109802 255.19247437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03109803 255.19247437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03109804 255.19250488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03109805 255.19250488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03109806 255.19252014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03109807 255.19252014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03109808 255.19255066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03109809 255.19255066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03109810 255.19258118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03109811 255.19259644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03109812 255.19262695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03109813 255.19262695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03109814 255.19265747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03109815 255.19265747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03109816 255.19267273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03109817 255.19267273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03109818 255.19270325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03109819 255.19270325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03109820 255.19273376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03109821 255.19273376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03109822 255.19274902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03109823 255.19274902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03109824 255.19277954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03109825 255.19277954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03109826 255.19281006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03109827 255.19281006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03109828 255.19282532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03109829 255.19285583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03109830 255.19288635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03109831 255.19288635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03109832 255.19290161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03109833 255.19290161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03109834 255.19293213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03109835 255.19293213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03109836 255.19296265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03109837 255.19296265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03109838 255.19299316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03109839 255.19299316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03109840 255.19300842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03109841 255.19300842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03109842 255.19303894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03109843 255.19303894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03109844 255.19306946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03109845 255.19306946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03109846 255.19308472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03109847 255.19311523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03109848 255.19314575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03109849 255.19314575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03109850 255.19316101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03109851 255.19316101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03109852 255.19319153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03109853 255.19319153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03109854 255.19322205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03109855 255.19322205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03109856 255.19323730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03109857 255.19323730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03109858 255.19326782 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03109859 255.19326782 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03109860 255.19329834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03109861 255.19329834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03109862 255.19331360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03109863 255.19331360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03109864 255.19334412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03109865 255.19337463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03109866 255.19338989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03109867 255.19338989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03109868 255.19342041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03109869 255.19342041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03109870 255.19345093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03109871 255.19345093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03109872 255.19346619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03109873 255.19346619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03109874 255.19349670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03109875 255.19349670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03109876 255.19352722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03109877 255.19352722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03109878 255.19354248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03109879 255.19354248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03109880 255.19357300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03109881 255.19357300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03109882 255.19360352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03109883 255.19360352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03109884 255.19361877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03109885 255.19364929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03109886 255.19367981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03109887 255.19367981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03109888 255.19369507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03109889 255.19369507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03109890 255.19372559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03109891 255.19372559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03109892 255.19375610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03109893 255.19375610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03109894 255.19378662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03109895 255.19378662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03109896 255.19380188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03109897 255.19380188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03109898 255.19383240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03109899 255.19383240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03109900 255.19386292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03109901 255.19386292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03109902 255.19387817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03109903 255.19390869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03109904 255.19393921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03109905 255.19393921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03109906 255.19395447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03109907 255.19395447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03109908 255.19398499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03109909 255.19398499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03109910 255.19401550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03109911 255.19401550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03109912 255.19403076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03109913 255.19403076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03109914 255.19406128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03109915 255.19406128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03109916 255.19409180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03109917 255.19409180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03109918 255.19410706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03109919 255.19410706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03109920 255.19413757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03109921 255.19416809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03109922 255.19418335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03109923 255.19418335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03109924 255.19421387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03109925 255.19421387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03109926 255.19424438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03109927 255.19424438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03109928 255.19425964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03109929 255.19425964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03109930 255.19429016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03109931 255.19429016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03109932 255.19432068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03109933 255.19432068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03109934 255.19433594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03109935 255.19433594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03109936 255.19436646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03109937 255.19436646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03109938 255.19439697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03109939 255.19441223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03109940 255.19444275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03109941 255.19444275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03109942 255.19447327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03109943 255.19447327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03109944 255.19448853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03109945 255.19448853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03109946 255.19451904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03109947 255.19451904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03109948 255.19454956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03109949 255.19454956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03109950 255.19458008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03109951 255.19458008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03109952 255.19459534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03109953 255.19459534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03109954 255.19462585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03109955 255.19462585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03109956 255.19465637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03109957 255.19467163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03109958 255.19470215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03109959 255.19470215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03109960 255.19473267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03109961 255.19473267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03109962 255.19474792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03109963 255.19474792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03109964 255.19477844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03109965 255.19477844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03109966 255.19480896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03109967 255.19480896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03109968 255.19482422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03109969 255.19482422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03109970 255.19485474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03109971 255.19485474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03109972 255.19488525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03109973 255.19488525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03109974 255.19490051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03109975 255.19493103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03109976 255.19496155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03109977 255.19496155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03109978 255.19497681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03109979 255.19497681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03109980 255.19500732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03109981 255.19500732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03109982 255.19503784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03109983 255.19503784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03109984 255.19505310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03109985 255.19505310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03109986 255.19508362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03109987 255.19508362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03109988 255.19511414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03109989 255.19511414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03109990 255.19512939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03109991 255.19512939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03109992 255.19515991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03109993 255.19515991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03109994 255.19520569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03109995 255.19520569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03109996 255.19523621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03109997 255.19523621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03109998 255.19526672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03109999 255.19526672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03110000 255.19528198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03110001 255.19528198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03110002 255.19531250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03110003 255.19531250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03110004 255.19534302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03110005 255.19534302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03110006 255.19537354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03110007 255.19537354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03110008 255.19538879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03110009 255.19538879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03110010 255.19541931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03110011 255.19541931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03110012 255.19544983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03110013 255.19546509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03110014 255.19549561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03110015 255.19549561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03110016 255.19552612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03110017 255.19552612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03110018 255.19554138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03110019 255.19554138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03110020 255.19557190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03110021 255.19557190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03110022 255.19560242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03110023 255.19560242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03110024 255.19561768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03110025 255.19561768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03110026 255.19564819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03110027 255.19564819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03110028 255.19567871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03110029 255.19567871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03110030 255.19569397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03110031 255.19572449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03110032 255.19575500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03110033 255.19575500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03110034 255.19577026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03110035 255.19577026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03110036 255.19580078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03110037 255.19580078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03110038 255.19583130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03110039 255.19583130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03110040 255.19584656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03110041 255.19584656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03110042 255.19587708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03110043 255.19587708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03110044 255.19590759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03110045 255.19590759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03110046 255.19592285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03110047 255.19592285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03110048 255.19595337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03110049 255.19598389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03110050 255.19599915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03110051 255.19599915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03110052 255.19602966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03110053 255.19602966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03110054 255.19606018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03110055 255.19606018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03110056 255.19609070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03110057 255.19609070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03110058 255.19610596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03110059 255.19610596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03110060 255.19613647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03110061 255.19613647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03110062 255.19616699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03110063 255.19616699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03110064 255.19618225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03110065 255.19618225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03110066 255.19621277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03110067 255.19624329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03110068 255.19625854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03110069 255.19625854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03110070 255.19628906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03110071 255.19628906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03110072 255.19631958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03110073 255.19631958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03110074 255.19633484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03110075 255.19633484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03110076 255.19636536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03110077 255.19636536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03110078 255.19639587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03110079 255.19639587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03110080 255.19641113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03110081 255.19641113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03110082 255.19644165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03110083 255.19647217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03110084 255.19648743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03110085 255.19648743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03110086 255.19651794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03110087 255.19651794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03110088 255.19654846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03110089 255.19654846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03110090 255.19656372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03110091 255.19656372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03110092 255.19659424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03110093 255.19659424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03110094 255.19662476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03110095 255.19662476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03110096 255.19664001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03110097 255.19664001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03110098 255.19667053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03110099 255.19667053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03110100 255.19670105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03110101 255.19671631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03110102 255.19674683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03110103 255.19674683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03110104 255.19677734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03110105 255.19677734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03110106 255.19679260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03110107 255.19679260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03110108 255.19682312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03110109 255.19682312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03110110 255.19685364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03110111 255.19685364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03110112 255.19688416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03110113 255.19688416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03110114 255.19689941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03110115 255.19689941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03110116 255.19692993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03110117 255.19692993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03110118 255.19696045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03110119 255.19696045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03110120 255.19697571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03110121 255.19700623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03110122 255.19703674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03110123 255.19703674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03110124 255.19705200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03110125 255.19705200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03110126 255.19708252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03110127 255.19708252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03110128 255.19711304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03110129 255.19711304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03110130 255.19712830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03110131 255.19712830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03110132 255.19715881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03110133 255.19715881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03110134 255.19718933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03110135 255.19718933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03110136 255.19720459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03110137 255.19720459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03110138 255.19723511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03110139 255.19726563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03110140 255.19728088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03110141 255.19728088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03110142 255.19731140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03110143 255.19731140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03110144 255.19734192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03110145 255.19734192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03110146 255.19735718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03110147 255.19735718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03110148 255.19738770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03110149 255.19738770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03110150 255.19741821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03110151 255.19741821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03110152 255.19743347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03110153 255.19743347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03110154 255.19746399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03110155 255.19746399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03110156 255.19749451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03110157 255.19750977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03110158 255.19754028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03110159 255.19754028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03110160 255.19757080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03110161 255.19757080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03110162 255.19758606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03110163 255.19758606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03110164 255.19761658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03110165 255.19761658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03110166 255.19764709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03110167 255.19764709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03110168 255.19767761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03110169 255.19767761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03110170 255.19769287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03110171 255.19769287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03110172 255.19772339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03110173 255.19772339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03110174 255.19775391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03110175 255.19776917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03110176 255.19779968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03110177 255.19779968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03110178 255.19783020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03110179 255.19783020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03110180 255.19784546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03110181 255.19784546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03110182 255.19787598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03110183 255.19787598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03110184 255.19790649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03110185 255.19790649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03110186 255.19792175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03110187 255.19792175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03110188 255.19795227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03110189 255.19795227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03110190 255.19798279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03110191 255.19798279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03110192 255.19799805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03110193 255.19802856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03110194 255.19805908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03110195 255.19805908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03110196 255.19807434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03110197 255.19807434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03110198 255.19810486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03110199 255.19810486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03110200 255.19813538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03110201 255.19813538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03110202 255.19815063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03110203 255.19815063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03110204 255.19818115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03110205 255.19818115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03110206 255.19821167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03110207 255.19821167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03110208 255.19822693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03110209 255.19822693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03110210 255.19825745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03110211 255.19825745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03110212 255.19830322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03110213 255.19830322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03110214 255.19833374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03110215 255.19833374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03110216 255.19836426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03110217 255.19836426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03110218 255.19839478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03110219 255.19839478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03110220 255.19841003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03110221 255.19841003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03110222 255.19844055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03110223 255.19844055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03110224 255.19847107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03110225 255.19847107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03110226 255.19848633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03110227 255.19848633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03110228 255.19854736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03110229 255.19854736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03110230 255.19856262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03110231 255.19856262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03110232 255.19859314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03110233 255.19859314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03110234 255.19862366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03110235 255.19862366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03110236 255.19863892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03110237 255.19863892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03110238 255.19866943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03110239 255.19866943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03110240 255.19869995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03110241 255.19869995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03110242 255.19871521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03110243 255.19874573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03110244 255.19877625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03110245 255.19877625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03110246 255.19879150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03110247 255.19879150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03110248 255.19882202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03110249 255.19882202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03110250 255.19885254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03110251 255.19885254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03110252 255.19886780 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03110253 255.19886780 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03110254 255.19889832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03110255 255.19889832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03110256 255.19892883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03110257 255.19894409 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03110258 255.19897461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03110259 255.19897461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03110260 255.19900513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03110261 255.19900513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03110262 255.19902039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03110263 255.19902039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03110264 255.19905090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03110265 255.19905090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03110266 255.19908142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03110267 255.19908142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03110268 255.19909668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03110269 255.19909668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03110270 255.19915771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03110271 255.19915771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03110272 255.19918823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03110273 255.19918823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03110274 255.19920349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03110275 255.19920349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03110276 255.19923401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03110277 255.19923401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03110278 255.19926453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03110279 255.19926453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03110280 255.19927979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03110281 255.19927979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03110282 255.19931030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03110283 255.19931030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03110284 255.19934082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03110285 255.19935608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03110286 255.19938660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03110287 255.19938660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03110288 255.19941711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03110289 255.19941711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03110290 255.19943237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03110291 255.19943237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03110292 255.19946289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03110293 255.19946289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03110294 255.19949341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03110295 255.19949341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03110296 255.19950867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03110297 255.19950867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03110298 255.19953918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03110299 255.19956970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03110300 255.19958496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03110301 255.19958496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03110302 255.19961548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03110303 255.19961548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03110304 255.19964600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03110305 255.19964600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03110306 255.19966125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03110307 255.19966125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03110308 255.19969177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03110309 255.19969177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03110310 255.19972229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03110311 255.19972229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03110312 255.19973755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03110313 255.19976807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03110314 255.19979858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03110315 255.19979858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03110316 255.19981384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03110317 255.19981384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03110318 255.19984436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03110319 255.19984436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03110320 255.19987488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03110321 255.19987488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03110322 255.19989014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03110323 255.19989014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03110324 255.19992065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03110325 255.19992065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03110326 255.19995117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03110327 255.19995117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03110328 255.19998169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03110329 255.19998169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03110330 255.19999695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03110331 255.20002747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03110332 255.20005798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03110333 255.20005798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03110334 255.20007324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03110335 255.20007324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03110336 255.20010376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03110337 255.20010376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03110338 255.20013428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03110339 255.20013428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03110340 255.20014954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03110341 255.20014954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03110342 255.20018005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03110343 255.20018005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03110344 255.20021057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03110345 255.20022583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03110346 255.20025635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03110347 255.20025635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03110348 255.20028687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03110349 255.20028687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03110350 255.20030212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03110351 255.20030212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03110352 255.20033264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03110353 255.20033264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03110354 255.20036316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03110355 255.20036316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03110356 255.20037842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03110357 255.20037842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03110358 255.20040894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03110359 255.20040894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03110360 255.20043945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03110361 255.20045471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03110362 255.20048523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03110363 255.20048523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03110364 255.20051575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03110365 255.20051575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03110366 255.20053101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03110367 255.20053101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03110368 255.20056152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03110369 255.20056152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03110370 255.20059204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03110371 255.20059204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03110372 255.20060730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03110373 255.20060730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03110374 255.20063782 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03110375 255.20063782 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03110376 255.20066833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03110377 255.20066833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03110378 255.20071411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03110379 255.20071411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03110380 255.20074463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03110381 255.20074463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03110382 255.20077515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03110383 255.20077515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03110384 255.20079041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03110385 255.20079041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03110386 255.20082092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03110387 255.20082092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03110388 255.20085144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03110389 255.20085144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03110390 255.20086670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03110391 255.20086670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03110392 255.20089722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03110393 255.20092773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03110394 255.20094299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03110395 255.20094299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03110396 255.20097351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03110397 255.20097351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03110398 255.20100403 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03110399 255.20100403 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03110400 255.20101929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03110401 255.20101929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03110402 255.20104980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03110403 255.20104980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03110404 255.20108032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03110405 255.20108032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03110406 255.20109558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03110407 255.20109558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03110408 255.20112610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03110409 255.20112610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03110410 255.20115662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03110411 255.20117188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03110412 255.20120239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03110413 255.20120239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03110414 255.20123291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03110415 255.20123291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03110416 255.20124817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03110417 255.20124817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03110418 255.20127869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03110419 255.20127869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03110420 255.20130920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03110421 255.20130920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03110422 255.20132446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03110423 255.20132446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03110424 255.20135498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03110425 255.20135498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03110426 255.20138550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03110427 255.20138550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03110428 255.20140076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -03110429 255.20143127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -03110430 255.20146179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -03110431 255.20146179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -03110432 255.20149231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -03110433 255.20149231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -03110434 255.20150757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -03110435 255.20150757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -03110436 255.20153809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -03110437 255.20153809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -03110438 255.20156860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -03110439 255.20156860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -03110440 255.20158386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -03110441 255.20158386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -03110442 255.20161438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -03110443 255.20161438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -03110444 255.20164490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -03110445 255.20164490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -03110446 255.20166016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -03110447 255.20169067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -03110448 255.20172119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -03110449 255.20172119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -03110450 255.20173645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -03110451 255.20173645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -03110452 255.20176697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -03110453 255.20176697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -03110454 255.20179749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -03110455 255.20179749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -03110456 255.20181274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -03110457 255.20181274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -03110458 255.20184326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -03110459 255.20184326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -03110460 255.20187378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -03110461 255.20187378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -03110462 255.20188904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -03110463 255.20191956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -03110464 255.20195007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -03110465 255.20195007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -03110466 255.20196533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -03110467 255.20196533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -03110468 255.20199585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -03110469 255.20199585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -03110470 255.20202637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -03110471 255.20202637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -03110472 255.20204163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -03110473 255.20204163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -03110474 255.20207214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -03110475 255.20207214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -03110476 255.20210266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -03110477 255.20210266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -03110478 255.20211792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -03110479 255.20211792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -03110480 255.20214844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -03110481 255.20217896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -03110482 255.20219421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -03110483 255.20219421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -03110484 255.20222473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -03110485 255.20222473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -03110486 255.20225525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -03110487 255.20225525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -03110488 255.20228577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -03110489 255.20228577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -03110490 255.20230103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -03110491 255.20230103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -03110492 255.20233154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -03110493 255.20233154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -03110494 255.20236206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -03110495 255.20236206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -03110496 255.20237732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -03110497 255.20237732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -03110498 255.20240784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -03110499 255.20243835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -03110500 255.20245361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -03110501 255.20245361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -03110502 255.20248413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -03110503 255.20248413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -03110504 255.20251465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -03110505 255.20251465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -03110506 255.20252991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -03110507 255.20252991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -03110508 255.20256042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -03110509 255.20256042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -03110510 255.20259094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -03110511 255.20259094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -03110512 255.20260620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -03110513 255.20260620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -03110514 255.20263672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -03110515 255.20263672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -03110516 255.20266724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -03110517 255.20268250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -03110518 255.20271301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -03110519 255.20271301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -03110520 255.20274353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -03110521 255.20274353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -03110522 255.20275879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -03110523 255.20275879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -03110524 255.20278931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -03110525 255.20278931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -03110526 255.20281982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -03110527 255.20281982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -03110528 255.20283508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -03110529 255.20283508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -03110530 255.20286560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -03110531 255.20286560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -03110532 255.20289612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -03110533 255.20291138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -03110534 255.20294189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -03110535 255.20294189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -03110536 255.20297241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -03110537 255.20297241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -03110538 255.20298767 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -03110539 255.20298767 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -03110540 255.20301819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -03110541 255.20301819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -03110542 255.20304871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -03110543 255.20304871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -03110544 255.20307922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -03110545 255.20307922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -03110546 255.20309448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -03110547 255.20309448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -03110548 255.20312500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -03110549 255.20312500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -03110550 255.20317078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -03110551 255.20317078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -03110552 255.20320129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -03110553 255.20320129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -03110554 255.20323181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -03110555 255.20323181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -03110556 255.20324707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -03110557 255.20324707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -03110558 255.20327759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -03110559 255.20327759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -03110560 255.20330811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -03110561 255.20330811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -03110562 255.20332336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -03110563 255.20332336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -03110564 255.20335388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -03110565 255.20338440 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -03110566 255.20339966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -03110567 255.20339966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -03110568 255.20343018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -03110569 255.20343018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -03110570 255.20346069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -03110571 255.20346069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -03110572 255.20347595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -03110573 255.20347595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -03110574 255.20350647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -03110575 255.20350647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -03110576 255.20353699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -03110577 255.20353699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -03110578 255.20355225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -03110579 255.20355225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -03110580 255.20358276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -03110581 255.20358276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -03110582 255.20362854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -03110583 255.20362854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -03110584 255.20365906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -03110585 255.20365906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -03110586 255.20368958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -03110587 255.20368958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -03110588 255.20370483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -03110589 255.20370483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -03110590 255.20373535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -03110591 255.20373535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -03110592 255.20376587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -03110593 255.20376587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -03110594 255.20379639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -03110595 255.20379639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -03110596 255.20381165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -03110597 255.20381165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -03110598 255.20384216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -03110599 255.20387268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -03110600 255.20388794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -03110601 255.20388794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -03110602 255.20391846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -03110603 255.20391846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -03110604 255.20394897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -03110605 255.20394897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -03110606 255.20396423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -03110607 255.20396423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -03110608 255.20399475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -03110609 255.20399475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -03110610 255.20402527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -03110611 255.20402527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -03111872 255.22193909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -03111873 255.22196960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -03111874 255.22198486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -03111875 255.22198486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -03111876 255.22201538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -03111877 255.22201538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -03111878 255.22204590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -03111879 255.22204590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -03111880 255.22206116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -03111881 255.22206116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -03111882 255.22209167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -03111883 255.22209167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -03111884 255.22212219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -03111885 255.22212219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -03111886 255.22213745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -03111887 255.22213745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -03111888 255.22216797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -03111889 255.22216797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -03111890 255.22219849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -03111891 255.22221375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -03111892 255.22224426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -03111893 255.22224426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -03111894 255.22227478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -03111895 255.22227478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -03111896 255.22229004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -03111897 255.22229004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -03111898 255.22232056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -03111899 255.22232056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -03111900 255.22235107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -03111901 255.22235107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -03111902 255.22238159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -03111903 255.22238159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -03111904 255.22239685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -03111905 255.22239685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -03111906 255.22242737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -03111907 255.22242737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -03111908 255.22247314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -03111909 255.22247314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -03111910 255.22250366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -03111911 255.22250366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -03111912 255.22253418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -03111913 255.22253418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -03111914 255.22254944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -03111915 255.22254944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -03137678 255.48544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe38 -03137679 255.48544312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a0 -03137680 255.48544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe38 -03137681 255.48544312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a0 -03137682 255.48545837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe48 -03137683 255.48548889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b0 -03137684 255.48548889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe48 -03137685 255.48548889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b0 -03137686 255.48551941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c0 -03137687 255.48551941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe58 -03137688 255.48551941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c0 -03137689 255.48551941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe58 -03137690 255.48554993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d0 -03137691 255.48554993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe68 -03137692 255.48554993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d0 -03137693 255.48554993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe68 -03137694 255.48556519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e0 -03137695 255.48556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe78 -03137696 255.48556519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e0 -03137697 255.48556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe78 -03137698 255.48559570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f0 -03137699 255.48559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe88 -03137700 255.48559570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f0 -03137701 255.48559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe88 -03137702 255.48562622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a200 -03137703 255.48562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe98 -03137704 255.48562622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a200 -03137705 255.48562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe98 -03137706 255.48564148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a210 -03137707 255.48567200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea8 -03137708 255.48567200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a210 -03137709 255.48567200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea8 -03137710 255.48570251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a220 -03137711 255.48570251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb8 -03137712 255.48570251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a220 -03137713 255.48570251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb8 -03137714 255.48571777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a230 -03137715 255.48571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec8 -03137716 255.48571777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a230 -03137717 255.48571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec8 -03137718 255.48574829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a240 -03137719 255.48574829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed8 -03137720 255.48574829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a240 -03137721 255.48574829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed8 -03145927 255.54580688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -03145928 255.54580688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f0 -03145929 255.54580688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -03145930 255.54583740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -03145931 255.54583740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -03145932 255.54583740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -03145933 255.54583740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -03145934 255.54585266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -03145935 255.54585266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -03145936 255.54585266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -03145937 255.54585266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -03145938 255.54588318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -03145939 255.54588318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -03145940 255.54588318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -03145941 255.54588318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -03145942 255.54591370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -03145943 255.54591370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -03145944 255.54591370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -03145945 255.54591370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -03145946 255.54592896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -03145947 255.54595947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -03145948 255.54595947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -03145949 255.54595947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -03145950 255.54598999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -03145951 255.54598999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e08 -03145952 255.54598999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -03145953 255.54598999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e08 -03145954 255.54600525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -03145955 255.54600525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e18 -03145956 255.54600525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -03145957 255.54600525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e18 -03145958 255.54603577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -03145959 255.54603577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e28 -03145960 255.54603577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -03145961 255.54603577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e28 -03145962 255.54606628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -03145963 255.54606628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e38 -03145964 255.54606628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -03145965 255.54606628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e38 -03145966 255.54608154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -03145967 255.54608154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e48 -03145968 255.54608154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -03145969 255.54608154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e48 -03145970 255.54611206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a0 -03156254 255.62280273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff8 -03156255 255.62280273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c460 -03156256 255.62280273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff8 -03156257 255.62280273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c460 -03156258 255.62283325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22008 -03156259 255.62283325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22008 -03156260 255.62283325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c470 -03156261 255.62283325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c470 -03156262 255.62286377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22018 -03156263 255.62286377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22018 -03156264 255.62286377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c480 -03156265 255.62287903 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c480 -03156266 255.62287903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22028 -03156267 255.62287903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22028 -03156268 255.62290955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c490 -03156269 255.62290955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c490 -03156270 255.62290955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22038 -03156271 255.62294006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22038 -03156272 255.62294006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a0 -03156273 255.62294006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a0 -03156274 255.62297058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22048 -03156275 255.62297058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22048 -03156276 255.62297058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b0 -03156277 255.62297058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b0 -03156278 255.62298584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22058 -03156279 255.62298584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22058 -03156280 255.62298584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4c0 -03156281 255.62298584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4c0 -03156282 255.62301636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22068 -03156283 255.62301636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22068 -03156284 255.62301636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4d0 -03156285 255.62304688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4d0 -03156286 255.62304688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22078 -03156287 255.62304688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22078 -03156288 255.62306213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4e0 -03156289 255.62306213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4e0 -03156290 255.62306213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22088 -03156291 255.62306213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22088 -03156292 255.62309265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4f0 -03156293 255.62309265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4f0 -03156294 255.62309265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22098 -03156295 255.62309265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22098 -03156296 255.62312317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c500 -03156297 255.62312317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c500 -03166974 255.70089722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a8 -03166975 255.70089722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -03166976 255.70089722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a8 -03166977 255.70089722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -03166978 255.70091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b8 -03166979 255.70091248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b8 -03166980 255.70091248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -03166981 255.70091248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -03166982 255.70094299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c8 -03166983 255.70094299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c8 -03166984 255.70094299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -03166985 255.70097351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -03166986 255.70097351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d8 -03166987 255.70097351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d8 -03166988 255.70098877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -03166989 255.70098877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -03166990 255.70098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e8 -03166991 255.70098877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e8 -03166992 255.70101929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -03166993 255.70101929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -03166994 255.70101929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f8 -03166995 255.70104980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f8 -03166996 255.70104980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -03166997 255.70104980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -03166998 255.70106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c608 -03166999 255.70106506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c608 -03167000 255.70106506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -03167001 255.70106506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -03167002 255.70109558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c618 -03167003 255.70109558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c618 -03167004 255.70109558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -03167005 255.70109558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -03167006 255.70112610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c628 -03167007 255.70112610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c628 -03167008 255.70112610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -03167009 255.70112610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -03167010 255.70114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c638 -03167011 255.70114136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c638 -03167012 255.70114136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -03167013 255.70117188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -03167014 255.70117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c648 -03167015 255.70117188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c648 -03167016 255.70120239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -03167017 255.70120239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -03178395 255.78367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37748 -03178396 255.78367615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e0 -03178397 255.78367615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37748 -03178398 255.78367615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e0 -03178399 255.78370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37758 -03178400 255.78370667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f0 -03178401 255.78370667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37758 -03178402 255.78370667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f0 -03178403 255.78373718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37768 -03178404 255.78373718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37768 -03178405 255.78373718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52100 -03178406 255.78373718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52100 -03178407 255.78375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37778 -03178408 255.78375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37778 -03178409 255.78375244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52110 -03178410 255.78375244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52110 -03178411 255.78378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37788 -03178412 255.78378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37788 -03178413 255.78378296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52120 -03178414 255.78378296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52120 -03178415 255.78381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37798 -03178416 255.78381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37798 -03178417 255.78381348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52130 -03178418 255.78382874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52130 -03178419 255.78382874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a8 -03178420 255.78382874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a8 -03178421 255.78385925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52140 -03178422 255.78385925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52140 -03178423 255.78385925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b8 -03178424 255.78385925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b8 -03178425 255.78388977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52150 -03178426 255.78388977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52150 -03178427 255.78388977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c8 -03178428 255.78388977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c8 -03178429 255.78390503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52160 -03178430 255.78390503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52160 -03178431 255.78393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d8 -03178432 255.78393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d8 -03178433 255.78393555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52170 -03178434 255.78393555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52170 -03178435 255.78396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e8 -03178436 255.78396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e8 -03178437 255.78396606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52180 -03178438 255.78396606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52180 -03192425 255.97726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52128 -03192426 255.97726440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52128 -03192427 255.97729492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52138 -03192428 255.97729492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52138 -03192429 255.97734070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52148 -03192430 255.97734070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52148 -03192431 255.97737122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52158 -03192432 255.97737122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52158 -03192433 255.97740173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52168 -03192434 255.97740173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52168 -03192435 255.97741699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52178 -03192436 255.97741699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52178 -03192437 255.97744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52188 -03192438 255.97744751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52188 -03192439 255.97747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52198 -03192440 255.97747803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52198 -03192441 255.97749329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a8 -03192442 255.97749329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a8 -03192443 255.97752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b8 -03192444 255.97752380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b8 -03192445 255.97755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -03192446 255.97755432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -03192447 255.97756958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -03192448 255.97756958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -03192449 255.97760010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e8 -03192450 255.97763062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e8 -03192451 255.97764587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f8 -03192452 255.97764587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f8 -03192453 255.97767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52208 -03192454 255.97767639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52208 -03192455 255.97770691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52218 -03192456 255.97770691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52218 -03192457 255.97772217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -03192458 255.97772217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -03192459 255.97775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -03192460 255.97775269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -03192461 255.97778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -03192462 255.97778320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -03192463 255.97779846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -03192464 255.97779846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -03192465 255.97782898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52268 -03192466 255.97782898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52268 -03192467 255.97785950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52278 -03192468 255.97787476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52278 -03192811 257.47805786 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192812 257.47814941 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192813 257.47817993 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192814 257.47817993 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03192815 257.47830200 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192816 257.47830200 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192817 257.47836304 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192818 257.47836304 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192819 257.75369263 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03192820 257.77288818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192821 257.77288818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192822 259.77426147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03192823 259.79101563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192824 259.79101563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192825 259.98471069 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192826 259.98477173 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192827 259.98480225 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192828 259.98483276 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03192829 259.98495483 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192830 259.98495483 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192831 259.98498535 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192832 259.98501587 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192833 260.98339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03192834 260.98339844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03192835 260.98342896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03192836 260.98345947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03192837 260.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03192838 260.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03192839 260.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03192840 260.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03192841 260.98352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03192842 260.98352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03192843 260.98355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03192844 260.98355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03192845 260.98358154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03192846 260.98358154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03192847 260.98361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03192848 260.98361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03192849 260.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03192850 260.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03192851 260.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03192852 260.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03192853 260.98367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03192854 260.98367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03192855 260.98370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03192856 260.98373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03192857 260.98376465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03192858 260.98376465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03192859 260.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03192860 260.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03192861 260.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03192862 260.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03192863 260.98382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03192864 260.98382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03192865 260.98385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03192866 260.98385620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03192867 260.98388672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03192868 260.98388672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03192869 260.98391724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03192870 260.98391724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03192871 260.98394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03192872 260.98394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03192873 260.98394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03192874 260.98394775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03192875 260.98397827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03192876 260.98400879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03192877 260.98403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03192878 260.98403931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03192879 260.98406982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03192880 260.98406982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03192881 260.98410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03192882 260.98410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03192883 260.98410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03192884 260.98410034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03192885 260.98413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03192886 260.98413086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03192887 260.98416138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03192888 260.98416138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03192889 260.98419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03192890 260.98419189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03192891 260.98422241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03192892 260.98422241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03192893 260.98425293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03192894 260.98425293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03192895 260.98428345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03192896 260.98428345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03192897 260.98431396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03192898 260.98431396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03192899 260.98434448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03192900 260.98434448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03192901 260.98437500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03192902 260.98437500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03192903 260.98440552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03192904 260.98440552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03192905 260.98443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03192906 260.98443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03192907 260.98443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03192908 260.98443604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03192909 260.98446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03192910 260.98446655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03192911 260.98449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03192912 260.98449707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03192913 260.98452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03192914 260.98452759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03192915 260.98455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03192916 260.98455811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03192917 260.98458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03192918 260.98458862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03192919 260.98461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03192920 260.98461914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03192921 260.98464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03192922 260.98464966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03192923 260.98468018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03192924 260.98468018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03192925 260.98471069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03192926 260.98471069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03192927 260.98474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03192928 260.98474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03192929 260.98474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03192930 260.98474121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03192931 260.98477173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03192932 260.98477173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03192933 260.98480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03192934 260.98480225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03192935 260.98483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03192936 260.98483276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03192937 260.98486328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03192938 260.98489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03192939 260.98489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03192940 260.98489380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03192941 260.98492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03192942 260.98492432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03192943 260.98495483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03192944 260.98495483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03192945 260.98498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03192946 260.98498535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03192947 260.98501587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03192948 260.98501587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03192949 260.98504639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03192950 260.98504639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03192951 260.98507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03192952 260.98507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03192953 260.98507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03192954 260.98507690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03192955 260.98510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03192956 260.98510742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03192957 260.98516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03192958 260.98516846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03192959 260.98519897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03192960 260.98519897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03192961 260.98522949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03192962 260.98522949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03192963 260.98522949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03192964 260.98526001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03192965 260.98529053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03192966 260.98529053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03192967 260.98532104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03192968 260.98532104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03192969 260.98535156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03192970 260.98535156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03192971 260.98538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03192972 260.98538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03192973 260.98538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03192974 260.98538208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03192975 260.98541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03192976 260.98541260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03192977 260.98544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03192978 260.98544312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03192979 260.98547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03192980 260.98547363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03192981 260.98550415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03192982 260.98550415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03192983 260.98553467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03192984 260.98553467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03192985 260.98556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03192986 260.98556519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03192987 260.98559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03192988 260.98559570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03192989 260.98562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03192990 260.98562622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03192991 260.98565674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03192992 260.98565674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03192993 260.98568726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03192994 260.98568726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03192995 260.98568726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03192996 260.98568726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03192997 260.98571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03192998 260.98571777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03192999 260.98574829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03193000 260.98574829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03193001 260.98577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03193002 260.98577881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03193003 260.98580933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03193004 260.98580933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03193005 260.98583984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03193006 260.98587036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03193007 260.98587036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03193008 260.98587036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03193009 260.98593140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03193010 260.98593140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03193011 260.98596191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03193012 260.98596191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03193013 260.98599243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03193014 260.98599243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03193015 260.98602295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03193016 260.98602295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03193017 260.98605347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03193018 260.98605347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03193019 260.98608398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03193020 260.98608398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03193021 260.98611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03193022 260.98611450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03193023 260.98614502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03193024 260.98614502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03193025 260.98617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03193026 260.98617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03193027 260.98617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03193028 260.98617554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03193029 260.98620605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03193030 260.98620605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03193031 260.98623657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03193032 260.98623657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03193033 260.98626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03193034 260.98626709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03193035 260.98629761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03193036 260.98632813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03193037 260.98632813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03193038 260.98632813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03193039 260.98635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03193040 260.98635864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03193041 260.98638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03193042 260.98638916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03193043 260.98641968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03193044 260.98641968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03193045 260.98645020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03193046 260.98645020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03193047 260.98648071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03193048 260.98648071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03193049 260.98651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03193050 260.98651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03193051 260.98651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03193052 260.98651123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03193053 260.98654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03193054 260.98654175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03193055 260.98657227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03193056 260.98660278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03193057 260.98663330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03193058 260.98663330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03193059 260.98666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03193060 260.98666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03193061 260.98666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03193062 260.98666382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03193063 260.98669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03193064 260.98669434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03193065 260.98672485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03193066 260.98672485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03193067 260.98675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03193068 260.98675537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03193069 260.98678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03193070 260.98678589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03193071 260.98681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03193072 260.98681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03193073 260.98681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03193074 260.98681641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03193075 260.98684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03193076 260.98684692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03193077 260.98687744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03193078 260.98690796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03193079 260.98693848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03193080 260.98693848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03193081 260.98696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03193082 260.98696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03193083 260.98696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03193084 260.98696899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03193085 260.98699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03193086 260.98699951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03193087 260.98703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03193088 260.98703003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03193089 260.98706055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03193090 260.98706055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03193091 260.98709106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03193092 260.98709106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03193093 260.98712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03193094 260.98712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03193095 260.98712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03193096 260.98712158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03193097 260.98715210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03193098 260.98718262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03193099 260.98721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03193100 260.98721313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03193101 260.98724365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03193102 260.98724365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03193103 260.98727417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03193104 260.98727417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03193105 260.98730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03193106 260.98730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03193107 260.98730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03193108 260.98730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03193109 260.98733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03193110 260.98733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03193111 260.98736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03193112 260.98736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03193113 260.98739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03193114 260.98739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03193115 260.98742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03193116 260.98742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03193117 260.98745728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03193118 260.98745728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03193119 260.98748779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03193120 260.98748779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03193121 260.98751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03193122 260.98751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03193123 260.98754883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03193124 260.98754883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03193125 260.98757935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03193126 260.98757935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03193127 260.98760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03193128 260.98760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03193129 260.98760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03193130 260.98760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03193131 260.98764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03193132 260.98764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03193133 260.98767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03193134 260.98767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03193135 260.98770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03193136 260.98770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03193137 260.98773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03193138 260.98773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03193139 260.98776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03193140 260.98776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03193141 260.98779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03193142 260.98779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03193143 260.98782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03193144 260.98782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03193145 260.98785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03193146 260.98785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03193147 260.98788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03193148 260.98788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03193149 260.98791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03193150 260.98791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03193151 260.98791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03193152 260.98791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03193153 260.98794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03193154 260.98794556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03193155 260.98797607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03193156 260.98797607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03193157 260.98800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03193158 260.98800659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03193159 260.98803711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03193160 260.98806763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03193161 260.98809814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03193162 260.98809814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03193163 260.98809814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03193164 260.98809814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03193165 260.98812866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03193166 260.98812866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03193167 260.98815918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03193168 260.98815918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03193169 260.98818970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03193170 260.98818970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03193171 260.98822021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03193172 260.98822021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03193173 260.98825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03193174 260.98825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03193175 260.98825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03193176 260.98825073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03193177 260.98828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03193178 260.98828125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03193179 260.98831177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03193180 260.98831177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03193181 260.98834229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03193182 260.98837280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03193183 260.98840332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03193184 260.98840332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03193185 260.98840332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03193186 260.98840332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03193187 260.98843384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03193188 260.98843384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03193189 260.98846436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03193190 260.98846436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03193191 260.98849487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03193192 260.98849487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03193193 260.98852539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03193194 260.98852539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03193195 260.98855591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03193196 260.98855591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03193197 260.98855591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03193198 260.98855591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03193199 260.98858643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03193200 260.98858643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03193201 260.98861694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03193202 260.98864746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03193203 260.98867798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03193204 260.98867798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03193205 260.98870850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03193206 260.98870850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03193207 260.98870850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03193208 260.98870850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03193209 260.98873901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03193210 260.98873901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03193211 260.98876953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03193212 260.98876953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03193213 260.98880005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03193214 260.98880005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03193215 260.98883057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03193216 260.98883057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03193217 260.98886108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03193218 260.98886108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03193219 260.98889160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03193220 260.98889160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03193221 260.98892212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03193222 260.98892212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03193223 260.98895264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03193224 260.98895264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03193225 260.98898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03193226 260.98898315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03193227 260.98901367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03193228 260.98901367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03193229 260.98904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03193230 260.98904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03193231 260.98904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03193232 260.98904419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03193233 260.98907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03193234 260.98907471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03193235 260.98910522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03193236 260.98910522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03193237 260.98913574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03193238 260.98913574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03193239 260.98916626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03193240 260.98916626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03193241 260.98919678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03193242 260.98919678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03193243 260.98919678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03193244 260.98919678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03193245 260.98922729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03193246 260.98922729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03193247 260.98925781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03193248 260.98928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03193249 260.98928833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03193250 260.98931885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03193251 260.98934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03193252 260.98934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03193253 260.98934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03193254 260.98934937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03193255 260.98937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03193256 260.98937988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03193257 260.98941040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03193258 260.98941040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03193259 260.98944092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03193260 260.98944092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03193261 260.98947144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03193262 260.98947144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03193263 260.98950195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03193264 260.98950195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03193265 260.98950195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03193266 260.98950195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03193267 260.98953247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03193268 260.98953247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03193269 260.98956299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03193270 260.98956299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03193271 260.98959351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03193272 260.98959351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03193273 260.98968506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03193274 260.98968506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03193275 260.98971558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03193276 260.98971558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03193277 260.98974609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03193278 260.98977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03193279 260.98977661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03193280 260.98980713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03193281 260.98983765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03193282 260.98983765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03193283 260.98983765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03193284 260.98983765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03193285 260.98986816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03193286 260.98986816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03193287 260.98989868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03193288 260.98989868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03193289 260.98992920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03193290 260.98992920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03193291 260.98995972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03193292 260.98995972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03193293 260.98999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03193294 260.98999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03193295 260.98999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03193296 260.98999023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03193297 260.99002075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03193298 260.99002075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03193299 260.99005127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03193300 260.99005127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03193301 260.99008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03193302 260.99008179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03193303 260.99011230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03193304 260.99011230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03193305 260.99014282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03193306 260.99014282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03193307 260.99017334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03193308 260.99017334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03193309 260.99020386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03193310 260.99020386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03193311 260.99023438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03193312 260.99023438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03193313 260.99026489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03193314 260.99026489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03193315 260.99029541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03193316 260.99029541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03193317 260.99029541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03193318 260.99029541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03193319 260.99032593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03193320 260.99032593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03193321 260.99035645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03193322 260.99035645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03193323 260.99038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03193324 260.99038696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03193325 260.99041748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03193326 260.99041748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03193327 260.99044800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03193328 260.99044800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03193329 260.99047852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03193330 260.99047852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03193331 260.99047852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03193332 260.99050903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03193333 260.99053955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03193334 260.99053955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03193335 260.99057007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03193336 260.99057007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03193337 260.99060059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03193338 260.99060059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03193339 260.99063110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03193340 260.99063110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03193341 260.99063110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03193342 260.99063110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03193343 260.99066162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03193344 260.99066162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03193345 260.99069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03193346 260.99069214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03193347 260.99072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03193348 260.99072266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03193349 260.99075317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03193350 260.99075317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03193351 260.99078369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03193352 260.99078369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03193353 260.99078369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03193354 260.99078369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03193355 260.99081421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03193356 260.99081421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03193357 260.99084473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03193358 260.99084473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03193359 260.99087524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03193360 260.99087524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03193361 260.99090576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03193362 260.99090576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03193363 260.99093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03193364 260.99093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03193365 260.99093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03193366 260.99093628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03193367 260.99096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03193368 260.99096680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03193369 260.99099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03193370 260.99099731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03193371 260.99102783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03193372 260.99105835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03193373 260.99105835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03193374 260.99108887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03193375 260.99108887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03193376 260.99108887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03193377 260.99111938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03193378 260.99111938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03193379 260.99114990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03193380 260.99114990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03193381 260.99118042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03193382 260.99118042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03193383 260.99121094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03193384 260.99121094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03193385 260.99124146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03193386 260.99124146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03193387 260.99127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03193388 260.99127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03193389 260.99127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03193390 260.99127197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03193391 260.99130249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03193392 260.99130249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03193393 260.99133301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03193394 260.99133301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03193395 260.99136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03193396 260.99136353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03193397 260.99139404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03193398 260.99139404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03193399 260.99142456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03193400 260.99142456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03193401 260.99142456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03193402 260.99142456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03193403 260.99145508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03193404 260.99148560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03193405 260.99151611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03193406 260.99151611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03193407 260.99154663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03193408 260.99154663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03193409 260.99157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03193410 260.99157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03193411 260.99157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03193412 260.99157715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03193413 260.99160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03193414 260.99160767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03193415 260.99163818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03193416 260.99163818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03193417 260.99166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03193418 260.99166870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03193419 260.99169922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03193420 260.99169922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03193421 260.99172974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03193422 260.99172974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03193423 260.99172974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03193424 260.99172974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03193425 260.99176025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03193426 260.99176025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03193427 260.99179077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03193428 260.99179077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03193429 260.99182129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03193430 260.99182129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03193431 260.99185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03193432 260.99185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03193433 260.99188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03193434 260.99188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03193435 260.99191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03193436 260.99191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03193437 260.99191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03193438 260.99194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03193439 260.99194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03193440 260.99197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03193441 260.99200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03193442 260.99200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03193443 260.99203491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03193444 260.99203491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03193445 260.99206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03193446 260.99206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03193447 260.99206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03193448 260.99206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03193449 260.99209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03193450 260.99209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03193451 260.99212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03193452 260.99212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03193453 260.99215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03193454 260.99215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03193455 260.99218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03193456 260.99218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03193457 260.99221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03193458 260.99221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03193459 260.99221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03193460 260.99221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03193461 260.99224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03193462 260.99227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03193463 260.99227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03193464 260.99230957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03193465 260.99234009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03193466 260.99234009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03193467 260.99237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03193468 260.99237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03193469 260.99237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03193470 260.99237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03193471 260.99240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03193472 260.99240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03193473 260.99243164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03193474 260.99243164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03193475 260.99246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03193476 260.99246216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03193477 260.99249268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03193478 260.99249268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03193479 260.99252319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03193480 260.99252319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03193481 260.99252319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03193482 260.99252319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03193483 260.99255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03193484 260.99255371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03193485 260.99258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03193486 260.99258423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03193487 260.99261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03193488 260.99261475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03193489 260.99264526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03193490 260.99264526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03193491 260.99267578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03193492 260.99267578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03193493 260.99270630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03193494 260.99270630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03193495 260.99273682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03193496 260.99273682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03193497 260.99276733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03193498 260.99276733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03193499 260.99279785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03193500 260.99279785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03193501 260.99282837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03193502 260.99282837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03193503 260.99285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03193504 260.99285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03193505 260.99285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03193506 260.99285889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03193507 260.99288940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03193508 260.99288940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03193509 260.99291992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03193510 260.99291992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03193511 260.99295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03193512 260.99295044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03193513 260.99298096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03193514 260.99298096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03193515 260.99301147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03193516 260.99301147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03193517 260.99304199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03193518 260.99304199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03193519 260.99307251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03193520 260.99307251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03193521 260.99310303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03193522 260.99310303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03193523 260.99313354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03193524 260.99313354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03193525 260.99316406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03193526 260.99316406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03193527 260.99316406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03193528 260.99316406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03193529 260.99319458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03193530 260.99319458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03193531 260.99322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03193532 260.99322510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03193533 260.99325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03193534 260.99325562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03193535 260.99328613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03193536 260.99331665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03193537 260.99331665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03193538 260.99331665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03193539 260.99334717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03193540 260.99334717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03193541 260.99337769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03193542 260.99337769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03193543 260.99340820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03193544 260.99340820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03193545 260.99343872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03193546 260.99343872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03193547 260.99346924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03193548 260.99346924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03193549 260.99349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03193550 260.99349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03193551 260.99349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03193552 260.99349976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03193553 260.99353027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03193554 260.99356079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03193555 260.99359131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03193556 260.99359131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03193557 260.99362183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03193558 260.99362183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03193559 260.99365234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03193560 260.99365234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03193561 260.99368286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03193562 260.99368286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03193563 260.99371338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03193564 260.99371338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03193565 260.99374390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03193566 260.99374390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03193567 260.99377441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03193568 260.99377441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03193569 260.99380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03193570 260.99380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03193571 260.99380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03193572 260.99380493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03193573 260.99386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03193574 260.99386597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03193575 260.99392700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03193576 260.99392700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03193577 260.99395752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03193578 260.99395752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03193579 260.99395752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03193580 260.99395752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03193581 260.99398804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03193582 260.99398804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03193583 260.99401855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03193584 260.99404907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03193585 260.99407959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03193586 260.99407959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03193587 260.99411011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03193588 260.99411011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03193589 260.99411011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03193590 260.99411011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03193591 260.99414063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03193592 260.99414063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03193593 260.99417114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03193594 260.99417114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03193595 260.99420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03193596 260.99420166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03193597 260.99423218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03193598 260.99423218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03193599 260.99426270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03193600 260.99426270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03193601 260.99429321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03193602 260.99429321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03193603 260.99432373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03193604 260.99432373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03193605 260.99435425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03193606 260.99435425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03193607 260.99438477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03193608 260.99438477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03193609 260.99441528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03193610 260.99441528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03193611 260.99444580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03193612 260.99444580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03193613 260.99444580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03193614 260.99444580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03193615 260.99447632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03193616 260.99447632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03193617 260.99450684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03193618 260.99453735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03193619 260.99456787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03193620 260.99456787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03193621 260.99459839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03193622 260.99459839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03193623 260.99459839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03193624 260.99462891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03193625 260.99465942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03193626 260.99465942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03193627 260.99468994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03193628 260.99468994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03193629 260.99472046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03193630 260.99472046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03193631 260.99475098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03193632 260.99475098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03193633 260.99475098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03193634 260.99475098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03193635 260.99478149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03193636 260.99478149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03193637 260.99481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03193638 260.99481201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03193639 260.99484253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03193640 260.99484253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03193641 260.99487305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03193642 260.99487305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03193643 260.99490356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03193644 260.99490356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03193645 260.99493408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03193646 260.99493408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03193647 260.99496460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03193648 260.99496460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03193649 260.99499512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03193650 260.99499512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03193651 260.99502563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03193652 260.99502563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03193653 260.99505615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03193654 260.99505615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03193655 260.99508667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03193656 260.99508667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03193657 260.99508667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03193658 260.99508667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03193659 260.99511719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03193660 260.99511719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03193661 260.99514771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03193662 260.99514771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03193663 260.99520874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03193664 260.99520874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03193665 260.99523926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03193666 260.99523926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03193667 260.99523926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03193668 260.99523926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03193669 260.99526978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03193670 260.99526978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03193671 260.99530029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03193672 260.99530029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03193673 260.99533081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03193674 260.99533081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03193675 260.99536133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03193676 260.99536133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03193677 260.99539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03193678 260.99539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03193679 260.99539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03193680 260.99539185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03193681 260.99542236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03193682 260.99545288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03193683 260.99548340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03193684 260.99548340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03193685 260.99551392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03193686 260.99551392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03193687 260.99554443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03193688 260.99554443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03193689 260.99554443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03193690 260.99554443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03193691 260.99557495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03193692 260.99557495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03193693 260.99560547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03193694 260.99560547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03193695 260.99563599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03193696 260.99563599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03193697 260.99566650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03193698 260.99566650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03193699 260.99569702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03193700 260.99569702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03193701 260.99569702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03193702 260.99572754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03193703 260.99575806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03193704 260.99575806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03193705 260.99578857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03193706 260.99578857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03193707 260.99581909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03193708 260.99581909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03193709 260.99584961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03193710 260.99584961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03193711 260.99588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03193712 260.99588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03193713 260.99588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03193714 260.99588013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03193715 260.99591064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03193716 260.99591064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03193717 260.99594116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03193718 260.99594116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03193719 260.99597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03193720 260.99597168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03193721 260.99600220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03193722 260.99603271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03193723 260.99603271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03193724 260.99603271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03193725 260.99606323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03193726 260.99606323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03193727 260.99609375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03193728 260.99609375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03193729 260.99612427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03193730 260.99612427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03193731 260.99615479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03193732 260.99615479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03193733 260.99618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03193734 260.99618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03193735 260.99618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03193736 260.99618530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03193737 260.99621582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03193738 260.99621582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03193739 260.99624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03193740 260.99624634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03193741 260.99627686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03193742 260.99630737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03193743 260.99633789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03193744 260.99633789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03193745 260.99633789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03193746 260.99633789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03193747 260.99636841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03193748 260.99636841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03193749 260.99639893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03193750 260.99639893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03193751 260.99642944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03193752 260.99642944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03193753 260.99645996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03193754 260.99645996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03193755 260.99649048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03193756 260.99649048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03193757 260.99649048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03193758 260.99649048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03193759 260.99652100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03193760 260.99652100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03193761 260.99655151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03193762 260.99658203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03193763 260.99661255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03193764 260.99661255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03193765 260.99664307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03193766 260.99664307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03193767 260.99667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03193768 260.99667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03193769 260.99667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03193770 260.99667358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03193771 260.99670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03193772 260.99670410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03193773 260.99673462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03193774 260.99673462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03193775 260.99676514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03193776 260.99676514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03193777 260.99679565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03193778 260.99679565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03193779 260.99682617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03193780 260.99682617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03193781 260.99682617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03193782 260.99682617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03193783 260.99685669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03193784 260.99688721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03193785 260.99691772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03193786 260.99691772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03193787 260.99694824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03193788 260.99694824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03193789 260.99697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03193790 260.99697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03193791 260.99697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03193792 260.99697876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03193793 260.99700928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03193794 260.99700928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03193795 260.99703979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03193796 260.99703979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03193797 260.99707031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03193798 260.99707031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03193799 260.99710083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03193800 260.99710083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03193801 260.99713135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03193802 260.99713135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03193803 260.99713135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03193804 260.99716187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03193805 260.99719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03193806 260.99719238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03193807 260.99722290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03193808 260.99722290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03193809 260.99725342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03193810 260.99725342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03193811 260.99728394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03193812 260.99728394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03193813 260.99731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03193814 260.99731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03193815 260.99731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03193816 260.99731445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03193817 260.99734497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03193818 260.99734497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03193819 260.99737549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03193820 260.99737549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03193821 260.99740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03193822 260.99740601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03193823 260.99743652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03193824 260.99746704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03193825 260.99746704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03193826 260.99746704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03193827 260.99749756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03193828 260.99749756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03193829 260.99752808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03193830 260.99752808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03193831 260.99755859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03193832 260.99755859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03193833 260.99758911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03193834 260.99758911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03193835 260.99761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03193836 260.99761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03193837 260.99761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03193838 260.99761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03193839 260.99765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03193840 260.99765015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03193841 260.99768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03193842 260.99768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03193843 260.99771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03193844 260.99771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03193845 260.99774170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03193846 260.99777222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03193847 260.99777222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03193848 260.99777222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03193849 260.99780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03193850 260.99780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03193851 260.99783325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03193852 260.99783325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03193853 260.99786377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03193854 260.99786377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03193855 260.99789429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03193856 260.99789429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03193857 260.99792480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03193858 260.99792480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03193859 260.99792480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03193860 260.99792480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03193861 260.99795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03193862 260.99795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03193863 260.99798584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03193864 260.99798584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03193865 260.99801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03193866 260.99804688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03193867 260.99807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03193868 260.99807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03193869 260.99810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03193870 260.99810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03193871 260.99810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03193872 260.99810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03193873 260.99816895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03193874 260.99819946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03193875 260.99822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03193876 260.99822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03193877 260.99826050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03193878 260.99826050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03193879 260.99826050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03193880 260.99826050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03193881 260.99829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03193882 260.99829102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03193883 260.99832153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03193884 260.99832153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03193885 260.99835205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03193886 260.99835205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03193887 260.99838257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03193888 260.99838257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03193889 260.99841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03193890 260.99841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03193891 260.99841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03193892 260.99841309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03193893 260.99844360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03193894 260.99847412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03193895 260.99850464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03193896 260.99850464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03193897 260.99853516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03193898 260.99853516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03193899 260.99856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03193900 260.99856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03193901 260.99856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03193902 260.99856567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03193903 260.99859619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03193904 260.99859619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03193905 260.99862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03193906 260.99862671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03193907 260.99865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03193908 260.99865723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03193909 260.99868774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03193910 260.99868774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03193911 260.99871826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03193912 260.99871826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03193913 260.99871826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03193914 260.99874878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03193915 260.99877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03193916 260.99877930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03193917 260.99880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03193918 260.99880981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03193919 260.99884033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03193920 260.99884033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03193921 260.99887085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03193922 260.99887085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03193923 260.99890137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03193924 260.99890137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03193925 260.99890137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03193926 260.99890137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03193927 260.99893188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03193928 260.99893188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03193929 260.99896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03193930 260.99896240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03193931 260.99899292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03193932 260.99899292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03193933 260.99902344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03193934 260.99902344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03193935 260.99905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03193936 260.99905396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03193937 260.99908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03193938 260.99908447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03193939 260.99911499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03193940 260.99911499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03193941 260.99914551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03193942 260.99914551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03193943 260.99917603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03193944 260.99917603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03193945 260.99920654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03193946 260.99920654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03193947 260.99920654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03193948 260.99920654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03193949 260.99923706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03193950 260.99923706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03193951 260.99926758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03193952 260.99926758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03193953 260.99929810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03193954 260.99929810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03193955 260.99932861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03193956 260.99935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03193957 260.99935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03193958 260.99935913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03193959 260.99938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03193960 260.99938965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03193961 260.99942017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03193962 260.99942017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03193963 260.99945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03193964 260.99945068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03193965 260.99948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03193966 260.99948120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03193967 260.99951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03193968 260.99951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03193969 260.99951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03193970 260.99951172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03193971 260.99954224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03193972 260.99954224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03193973 260.99957275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03193974 260.99957275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03193975 260.99960327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03193976 260.99963379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03193977 260.99966431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03193978 260.99966431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03193979 260.99969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03193980 260.99969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03193981 260.99969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03193982 260.99969482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03193983 260.99972534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03193984 260.99972534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03193985 260.99975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03193986 260.99975586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03193987 260.99978638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03193988 260.99978638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03193989 260.99981689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03193990 260.99981689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03193991 260.99984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03193992 260.99984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03193993 260.99984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03193994 260.99984741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03193995 260.99987793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03193996 260.99987793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03193997 260.99990845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03193998 260.99993896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03193999 260.99996948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03194000 260.99996948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03194001 261.00000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03194002 261.00000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03194003 261.00000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03194004 261.00000000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03194005 261.00003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03194006 261.00003052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03194007 261.00006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03194008 261.00006104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03194009 261.00009155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03194010 261.00009155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03194011 261.00012207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03194012 261.00012207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03194013 261.00015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03194014 261.00015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03194015 261.00015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03194016 261.00015259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03194017 261.00018311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03194018 261.00021362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03194019 261.00024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03194020 261.00024414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03194021 261.00027466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03194022 261.00027466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03194023 261.00030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03194024 261.00030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03194025 261.00030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03194026 261.00030518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03194027 261.00033569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03194028 261.00033569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03194029 261.00036621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03194030 261.00036621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03194031 261.00039673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03194032 261.00039673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03194033 261.00042725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03194034 261.00042725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03194035 261.00045776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03194036 261.00045776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03194037 261.00048828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03194038 261.00048828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03194039 261.00048828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03194040 261.00051880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03194041 261.00054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03194042 261.00054932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03194043 261.00057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03194044 261.00057983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03194045 261.00061035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03194046 261.00061035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03194047 261.00064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03194048 261.00064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03194049 261.00064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03194050 261.00064087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03194051 261.00067139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03194052 261.00067139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03194053 261.00070190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03194054 261.00070190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03194055 261.00073242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03194056 261.00073242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03194057 261.00076294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03194058 261.00076294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03194059 261.00079346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03194060 261.00079346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03194061 261.00082397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03194062 261.00082397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03194063 261.00085449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03194064 261.00085449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03194065 261.00088501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03194066 261.00088501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03194067 261.00091553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03194068 261.00091553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03194069 261.00094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03194070 261.00094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03194071 261.00094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03194072 261.00094604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03194073 261.00097656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03194074 261.00097656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03194075 261.00100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03194076 261.00100708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03194077 261.00103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03194078 261.00103760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03194079 261.00106812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03194080 261.00106812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03194081 261.00109863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03194082 261.00109863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03194083 261.00112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03194084 261.00112915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03194085 261.00115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03194086 261.00115967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03194087 261.00119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03194088 261.00119019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03194089 261.00122070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03194090 261.00122070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03194091 261.00125122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03194092 261.00125122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03194093 261.00128174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03194094 261.00128174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03194095 261.00128174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03194096 261.00128174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03194097 261.00131226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03194098 261.00131226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03194099 261.00134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03194100 261.00134277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03194101 261.00137329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03194102 261.00140381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03194103 261.00143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03194104 261.00143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03194105 261.00143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03194106 261.00143433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03194107 261.00146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03194108 261.00146484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03194109 261.00149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03194110 261.00149536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03194111 261.00152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03194112 261.00152588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03194113 261.00155640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03194114 261.00155640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03194115 261.00158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03194116 261.00158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03194117 261.00158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03194118 261.00158691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03194119 261.00161743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03194120 261.00161743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03194121 261.00164795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03194122 261.00167847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03194123 261.00170898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03194124 261.00170898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03194125 261.00173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03194126 261.00173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03194127 261.00173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03194128 261.00173950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03194129 261.00177002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03194130 261.00177002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03194131 261.00180054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03194132 261.00180054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03194133 261.00183105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03194134 261.00183105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03194135 261.00186157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03194136 261.00186157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03194137 261.00189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03194138 261.00189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03194139 261.00189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03194140 261.00189209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03194141 261.00192261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03194142 261.00192261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03194143 261.00195313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03194144 261.00198364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03194145 261.00201416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03194146 261.00201416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03194147 261.00204468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03194148 261.00204468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03194149 261.00207520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03194150 261.00207520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03194151 261.00207520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03194152 261.00207520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03194153 261.00210571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03194154 261.00210571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03194155 261.00213623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03194156 261.00213623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03194157 261.00216675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03194158 261.00216675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03194159 261.00219727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03194160 261.00219727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03194161 261.00222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03194162 261.00222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03194163 261.00222778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03194164 261.00225830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03194165 261.00228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03194166 261.00228882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03194167 261.00231934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03194168 261.00231934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03194169 261.00234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03194170 261.00234985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03194171 261.00238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03194172 261.00238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03194173 261.00238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03194174 261.00238037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03194175 261.00241089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03194176 261.00241089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03194177 261.00244141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03194178 261.00244141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03194179 261.00247192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03194180 261.00247192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03194181 261.00250244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03194182 261.00250244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03194183 261.00253296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03194184 261.00253296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03194185 261.00253296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03194186 261.00256348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03194187 261.00259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03194188 261.00259399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03194189 261.00262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03194190 261.00262451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03194191 261.00265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03194192 261.00265503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03194193 261.00268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03194194 261.00268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03194195 261.00268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03194196 261.00268555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03194197 261.00271606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03194198 261.00271606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03194199 261.00274658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03194200 261.00274658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03194201 261.00277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03194202 261.00277710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03194203 261.00280762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03194204 261.00280762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03194205 261.00283813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03194206 261.00286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03194207 261.00286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03194208 261.00286865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03194209 261.00289917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03194210 261.00289917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03194211 261.00292969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03194212 261.00292969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03194213 261.00296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03194214 261.00296021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03194215 261.00299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03194216 261.00299072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03194217 261.00302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03194218 261.00302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03194219 261.00302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03194220 261.00302124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03194221 261.00305176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03194222 261.00305176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03194223 261.00308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03194224 261.00308228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03194225 261.00311279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03194226 261.00311279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03194227 261.00314331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03194228 261.00317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03194229 261.00317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03194230 261.00317383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03194231 261.00320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03194232 261.00320435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03194233 261.00323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03194234 261.00323486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03194235 261.00326538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03194236 261.00326538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03194237 261.00329590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03194238 261.00329590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03194239 261.00332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03194240 261.00332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03194241 261.00332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03194242 261.00332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03194243 261.00335693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03194244 261.00335693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03194245 261.00338745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03194246 261.00338745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03194247 261.00341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03194248 261.00344849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03194249 261.00347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03194250 261.00347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03194251 261.00350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03194252 261.00350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03194253 261.00350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03194254 261.00350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03194255 261.00354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03194256 261.00354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03194257 261.00357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03194258 261.00357056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03194259 261.00360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03194260 261.00360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03194261 261.00363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03194262 261.00363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03194263 261.00366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03194264 261.00366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03194265 261.00366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03194266 261.00366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03194267 261.00369263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03194268 261.00369263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03194269 261.00372314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03194270 261.00375366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03194271 261.00378418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03194272 261.00378418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03194273 261.00381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03194274 261.00381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03194275 261.00381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03194276 261.00381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03194277 261.00384521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03194278 261.00384521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03194279 261.00387573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03194280 261.00387573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03194281 261.00390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03194282 261.00390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03194283 261.00393677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03194284 261.00393677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03194285 261.00396729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03194286 261.00396729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03194287 261.00396729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03194288 261.00396729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03194289 261.00399780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03194290 261.00402832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03194291 261.00405884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03194292 261.00405884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03194293 261.00408936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03194294 261.00408936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03194295 261.00411987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03194296 261.00411987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03194297 261.00411987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03194298 261.00411987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03194299 261.00415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03194300 261.00415039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03194301 261.00418091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03194302 261.00418091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03194303 261.00421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03194304 261.00421143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03194305 261.00424194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03194306 261.00424194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03194307 261.00427246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03194308 261.00427246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03194309 261.00430298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03194310 261.00430298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03194311 261.00430298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03194312 261.00433350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03194313 261.00436401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03194314 261.00436401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03194315 261.00439453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03194316 261.00439453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03194317 261.00442505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03194318 261.00442505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03194319 261.00445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03194320 261.00445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03194321 261.00445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03194322 261.00445557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03194323 261.00448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03194324 261.00448608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03194325 261.00451660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03194326 261.00451660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03194327 261.00454712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03194328 261.00454712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03194329 261.00457764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03194330 261.00457764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03194331 261.00460815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03194332 261.00460815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03194333 261.00463867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03194334 261.00463867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03194335 261.00466919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03194336 261.00466919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03194337 261.00469971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03194338 261.00469971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03194339 261.00473022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03194340 261.00473022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03194341 261.00476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03194342 261.00476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03194343 261.00476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03194344 261.00476074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03194345 261.00479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03194346 261.00479126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03194347 261.00482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03194348 261.00482178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03194349 261.00485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03194350 261.00485229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03194351 261.00488281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03194352 261.00488281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03194353 261.00491333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03194354 261.00491333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03194355 261.00494385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03194356 261.00494385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03194357 261.00497437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03194358 261.00497437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03194359 261.00500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03194360 261.00500488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03194361 261.00503540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03194362 261.00503540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03194363 261.00506592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03194364 261.00506592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03194365 261.00509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03194366 261.00509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03194367 261.00509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03194368 261.00509644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03194369 261.00512695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03194370 261.00512695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03194371 261.00515747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03194372 261.00515747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03194373 261.00518799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03194374 261.00518799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03194375 261.00521851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03194376 261.00524902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03194377 261.00524902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03194378 261.00524902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03194379 261.00527954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03194380 261.00527954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03194381 261.00531006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03194382 261.00531006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03194383 261.00534058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03194384 261.00534058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03194385 261.00537109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03194386 261.00537109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03194387 261.00540161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03194388 261.00540161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03194389 261.00540161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03194390 261.00540161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03194391 261.00543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03194392 261.00543213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03194393 261.00546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03194394 261.00546265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03194395 261.00549316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03194396 261.00552368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03194397 261.00555420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03194398 261.00555420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03194399 261.00555420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03194400 261.00555420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03194401 261.00558472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03194402 261.00558472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03194403 261.00561523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03194404 261.00561523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03194405 261.00564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03194406 261.00564575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03194407 261.00567627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03194408 261.00567627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03194409 261.00570679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03194410 261.00570679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03194411 261.00570679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03194412 261.00570679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03194413 261.00573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03194414 261.00573730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03194415 261.00576782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03194416 261.00579834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03194417 261.00582886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03194418 261.00582886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03194419 261.00585938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03194420 261.00585938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03194421 261.00588989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03194422 261.00588989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03194423 261.00588989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03194424 261.00588989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03194425 261.00592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03194426 261.00592041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03194427 261.00595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03194428 261.00595093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03194429 261.00598145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03194430 261.00598145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03194431 261.00601196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03194432 261.00601196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03194433 261.00604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03194434 261.00604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03194435 261.00604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03194436 261.00604248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03194437 261.00607300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03194438 261.00610352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03194439 261.00613403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03194440 261.00613403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03194441 261.00616455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03194442 261.00616455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03194443 261.00619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03194444 261.00619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03194445 261.00619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03194446 261.00619507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03194447 261.00622559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03194448 261.00622559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03194449 261.00625610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03194450 261.00625610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03194451 261.00634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03194452 261.00634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03194453 261.00634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03194454 261.00634766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03194455 261.00637817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03194456 261.00637817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03194457 261.00640869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03194458 261.00643921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03194459 261.00646973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03194460 261.00646973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03194461 261.00650024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03194462 261.00650024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03194463 261.00650024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03194464 261.00650024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03194465 261.00653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03194466 261.00653076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03194467 261.00656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03194468 261.00656128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03194469 261.00659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03194470 261.00659180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03194471 261.00662231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03194472 261.00662231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03194473 261.00665283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03194474 261.00665283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03194475 261.00668335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03194476 261.00668335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03194477 261.00668335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03194478 261.00671387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03194479 261.00674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03194480 261.00674438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03194481 261.00677490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03194482 261.00677490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03194483 261.00680542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03194484 261.00680542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03194485 261.00683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03194486 261.00683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03194487 261.00683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03194488 261.00683594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03194489 261.00686646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03194490 261.00686646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03194491 261.00689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03194492 261.00689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03194493 261.00692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03194494 261.00692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03194495 261.00695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03194496 261.00695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03194497 261.00698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03194498 261.00698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03194499 261.00698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03194500 261.00701904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03194501 261.00704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03194502 261.00704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03194503 261.00708008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03194504 261.00708008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03194505 261.00711060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03194506 261.00711060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03194507 261.00714111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03194508 261.00714111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03194509 261.00714111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03194510 261.00714111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03194511 261.00717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03194512 261.00717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03194513 261.00720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03194514 261.00720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03194515 261.00723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03194516 261.00723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03194517 261.00726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03194518 261.00726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03194519 261.00729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03194520 261.00729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03194521 261.00732422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03194522 261.00732422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03194523 261.00735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03194524 261.00735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03194525 261.00738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03194526 261.00738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03194527 261.00741577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03194528 261.00741577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03194529 261.00744629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03194530 261.00744629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03194531 261.00747681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03194532 261.00747681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03194533 261.00747681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03194534 261.00747681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03194535 261.00750732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03194536 261.00750732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03194537 261.00753784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03194538 261.00753784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03194539 261.00756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03194540 261.00756836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03194541 261.00759888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03194542 261.00762939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03194543 261.00762939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03194544 261.00762939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03194545 261.00765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03194546 261.00765991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03194547 261.00769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03194548 261.00769043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03194549 261.00772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03194550 261.00772095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03194551 261.00775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03194552 261.00775146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03194553 261.00778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03194554 261.00778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03194555 261.00778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03194556 261.00778198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03194557 261.00781250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03194558 261.00781250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03194559 261.00784302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03194560 261.00787354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03194561 261.00790405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03194562 261.00790405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03194563 261.00793457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03194564 261.00793457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03194565 261.00793457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03194566 261.00793457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03194567 261.00796509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03194568 261.00796509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03194569 261.00799561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03194570 261.00799561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03194571 261.00802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03194572 261.00802612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03194573 261.00805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03194574 261.00805664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03194575 261.00808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03194576 261.00808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03194577 261.00808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03194578 261.00808716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03194579 261.00811768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03194580 261.00811768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03194581 261.00814819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03194582 261.00817871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03194583 261.00820923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03194584 261.00820923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03194585 261.00823975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03194586 261.00823975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03194587 261.00827026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03194588 261.00827026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03194589 261.00827026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03194590 261.00827026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03194591 261.00830078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03194592 261.00836182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03194593 261.00839233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03194594 261.00839233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03194595 261.00842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03194596 261.00842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03194597 261.00842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03194598 261.00842285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03194599 261.00845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03194600 261.00845337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03194601 261.00848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03194602 261.00848389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03194603 261.00851440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03194604 261.00851440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03194605 261.00854492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03194606 261.00857544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03194607 261.00857544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03194608 261.00857544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03194609 261.00860596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03194610 261.00860596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03194611 261.00863647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03194612 261.00863647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03194613 261.00866699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03194614 261.00866699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03194615 261.00869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03194616 261.00869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03194617 261.00872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03194618 261.00872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03194619 261.00872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03194620 261.00872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03194621 261.00875854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03194622 261.00875854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03194623 261.00878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03194624 261.00878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03194625 261.00881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03194626 261.00881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03194627 261.00885010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03194628 261.00888062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03194629 261.00891113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03194630 261.00891113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03194631 261.00891113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03194632 261.00891113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03194633 261.00894165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03194634 261.00894165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03194635 261.00897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03194636 261.00897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03194637 261.00900269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03194638 261.00900269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03194639 261.00903320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03194640 261.00903320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03194641 261.00906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03194642 261.00906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03194643 261.00906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03194644 261.00906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03194645 261.00909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03194646 261.00909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03194647 261.00912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03194648 261.00915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03194649 261.00918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03194650 261.00918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03194651 261.00921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03194652 261.00921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03194653 261.00921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03194654 261.00921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03194655 261.00924683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03194656 261.00924683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03194657 261.00927734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03194658 261.00927734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03194659 261.00930786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03194660 261.00930786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03194661 261.00933838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03194662 261.00933838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03194663 261.00936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03194664 261.00936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03194665 261.00936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03194666 261.00936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03194667 261.00939941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03194668 261.00939941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03194669 261.00942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03194670 261.00942993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03194671 261.00946045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03194672 261.00946045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03194673 261.00949097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03194674 261.00949097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03194675 261.00952148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03194676 261.00952148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03194677 261.00955200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03194678 261.00955200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03194679 261.00958252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03194680 261.00958252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03194681 261.00961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03194682 261.00961304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03194683 261.00964355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03194684 261.00964355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03194685 261.00967407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03194686 261.00967407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03194687 261.00970459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03194688 261.00970459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03194689 261.00970459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03194690 261.00970459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03194691 261.00973511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03194692 261.00973511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03194693 261.00976563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03194694 261.00979614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03194695 261.00982666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03194696 261.00982666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03194697 261.00985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03194698 261.00985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03194699 261.00985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03194700 261.00985718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03194701 261.00988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03194702 261.00988770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03194703 261.00991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03194704 261.00991821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03194705 261.00994873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03194706 261.00994873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03194707 261.00997925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03194708 261.00997925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03194709 261.01000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03194710 261.01000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03194711 261.01000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03194712 261.01000977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03194713 261.01004028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03194714 261.01004028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03194715 261.01007080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03194716 261.01007080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03194717 261.01010132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03194718 261.01013184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03194719 261.01016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03194720 261.01016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03194721 261.01016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03194722 261.01016235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03194723 261.01019287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03194724 261.01019287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03194725 261.01022339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03194726 261.01022339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03194727 261.01025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03194728 261.01025391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03194729 261.01028442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03194730 261.01028442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03194731 261.01031494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03194732 261.01031494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03194733 261.01031494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03194734 261.01031494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03194735 261.01040649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03194736 261.01040649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03194737 261.01043701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03194738 261.01043701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03194739 261.01046753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03194740 261.01046753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03194741 261.01049805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03194742 261.01049805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03194743 261.01049805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03194744 261.01049805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03194745 261.01052856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03194746 261.01052856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03194747 261.01055908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03194748 261.01055908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03194749 261.01058960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03194750 261.01058960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03194751 261.01062012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03194752 261.01062012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03194753 261.01065063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03194754 261.01065063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03194755 261.01065063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03194756 261.01068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03194757 261.01068115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03194758 261.01071167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03194759 261.01074219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03194760 261.01074219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03194761 261.01077271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03194762 261.01077271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03194763 261.01080322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03194764 261.01080322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03194765 261.01080322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03194766 261.01080322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03194767 261.01083374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03194768 261.01083374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03194769 261.01086426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03194770 261.01086426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03194771 261.01089478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03194772 261.01089478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03194773 261.01092529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03194774 261.01092529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03194775 261.01095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03194776 261.01095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03194777 261.01095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03194778 261.01095581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03194779 261.01098633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03194780 261.01098633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03194781 261.01101685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03194782 261.01101685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03194783 261.01104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03194784 261.01104736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03194785 261.01107788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03194786 261.01107788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03194787 261.01110840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03194788 261.01110840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03194789 261.01110840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03194790 261.01110840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03194791 261.01113892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03194792 261.01113892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03194793 261.01116943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03194794 261.01116943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03194795 261.01119995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03194796 261.01119995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03194797 261.01123047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03194798 261.01126099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03194799 261.01126099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03194800 261.01129150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03194801 261.01129150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03194802 261.01129150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03194803 261.01132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03194804 261.01132202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03194805 261.01135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03194806 261.01135254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03194807 261.01138306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03194808 261.01138306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03194809 261.01141357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03194810 261.01141357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03194811 261.01144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03194812 261.01144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03194813 261.01144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03194814 261.01144409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03194815 261.01147461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03194816 261.01147461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03194817 261.01150513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03194818 261.01150513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03194819 261.01153564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03194820 261.01153564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03194821 261.01156616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03194822 261.01156616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03194823 261.01159668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03194824 261.01159668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03194825 261.01159668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03194826 261.01159668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03194827 261.01162720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03194828 261.01162720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03194829 261.01165771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03194830 261.01165771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03194831 261.01168823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03194832 261.01168823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03194833 261.01171875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03194834 261.01171875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03194835 261.01174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03194836 261.01174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03194837 261.01174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03194838 261.01174927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03194839 261.01177979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03194840 261.01177979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03194841 261.01181030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03194842 261.01184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03194843 261.01184082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03194844 261.01187134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03194845 261.01190186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03194846 261.01190186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03194847 261.01190186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03194848 261.01190186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03194849 261.01193237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03194850 261.01193237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03194851 261.01196289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03194852 261.01196289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03194853 261.01199341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03194854 261.01199341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03194855 261.01202393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03194856 261.01202393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03194857 261.01205444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03194858 261.01205444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03194859 261.01208496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03194860 261.01208496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03194861 261.01208496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03194862 261.01208496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03194863 261.01211548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03194864 261.01211548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03194865 261.01214600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03194866 261.01217651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03194867 261.01217651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03194868 261.01220703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03194869 261.01223755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03194870 261.01223755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03194871 261.01223755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03194872 261.01223755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03194873 261.01226807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03194874 261.01226807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03194875 261.01229858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03194876 261.01229858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03194877 261.01232910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03194878 261.01232910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03194879 261.01235962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03194880 261.01235962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03194881 261.01239014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03194882 261.01239014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03194883 261.01239014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03194884 261.01239014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03194885 261.01242065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03194886 261.01242065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03194887 261.01245117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03194888 261.01245117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03194889 261.01248169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03194890 261.01248169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03194891 261.01251221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03194892 261.01251221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03194893 261.01254272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03194894 261.01254272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03194895 261.01254272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03194896 261.01254272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03194897 261.01257324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03194898 261.01257324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03194899 261.01260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03194900 261.01260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03194901 261.01263428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03194902 261.01263428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03194903 261.01266479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03194904 261.01269531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03194905 261.01269531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03194906 261.01269531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03194907 261.01272583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03194908 261.01272583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03194909 261.01275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03194910 261.01275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03194911 261.01278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03194912 261.01278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03194913 261.01281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03194914 261.01281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03194915 261.01284790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03194916 261.01284790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03194917 261.01287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03194918 261.01287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03194919 261.01287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03194920 261.01287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03194921 261.01290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03194922 261.01290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03194923 261.01293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03194924 261.01293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03194925 261.01296997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03194926 261.01296997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03194927 261.01300049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03194928 261.01300049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03194929 261.01303101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03194930 261.01303101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03194931 261.01306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03194932 261.01306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03194933 261.01309204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03194934 261.01309204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03194935 261.01312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03194936 261.01312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03194937 261.01315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03194938 261.01315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03194939 261.01318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03194940 261.01318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03194941 261.01318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03194942 261.01318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03194943 261.01321411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03194944 261.01321411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03194945 261.01324463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03194946 261.01324463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03194947 261.01330566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03194948 261.01330566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03194949 261.01333618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03194950 261.01333618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03194951 261.01336670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03194952 261.01336670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03194953 261.01339722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03194954 261.01339722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03194955 261.01345825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03194956 261.01345825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03194957 261.01348877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03194958 261.01348877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03194959 261.01351929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03194960 261.01351929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03194961 261.01354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03194962 261.01354980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03194963 261.01358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03194964 261.01358032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03194965 261.01361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03194966 261.01361084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03194967 261.01364136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03194968 261.01364136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03194969 261.01367188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03194970 261.01367188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03194971 261.01367188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03194972 261.01367188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03194973 261.01370239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03194974 261.01370239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03194975 261.01373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03194976 261.01373291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03194977 261.01376343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03194978 261.01376343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03194979 261.01379395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03194980 261.01379395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03194981 261.01382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03194982 261.01382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03194983 261.01382446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03194984 261.01385498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03194985 261.01388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03194986 261.01388550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03194987 261.01391602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03194988 261.01391602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03194989 261.01394653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03194990 261.01394653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03194991 261.01397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03194992 261.01397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03194993 261.01397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03194994 261.01397705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03194995 261.01400757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03194996 261.01400757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03194997 261.01403809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03194998 261.01403809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03194999 261.01406860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03195000 261.01406860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03195001 261.01409912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03195002 261.01412964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03195003 261.01412964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03195004 261.01412964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03195005 261.01416016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03195006 261.01416016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03195007 261.01419067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03195008 261.01419067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03195009 261.01422119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03195010 261.01422119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03195011 261.01425171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03195012 261.01425171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03195013 261.01428223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03195014 261.01428223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03195015 261.01431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03195016 261.01431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03195017 261.01431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03195018 261.01431274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03195019 261.01434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03195020 261.01434326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03195021 261.01437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03195022 261.01437378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03195023 261.01440430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03195024 261.01440430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03195025 261.01443481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03195026 261.01443481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03195027 261.01446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03195028 261.01446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03195029 261.01446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03195030 261.01446533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03195031 261.01449585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03195032 261.01449585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03195033 261.01452637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03195034 261.01452637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03195035 261.01455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03195036 261.01455688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03195037 261.01458740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03195038 261.01458740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03195039 261.01461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03195040 261.01461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03195041 261.01461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03195042 261.01461792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03195043 261.01464844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03195044 261.01467896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03195045 261.01467896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03195046 261.01470947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03195047 261.01473999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03195048 261.01473999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03195049 261.01477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03195050 261.01477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03195051 261.01477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03195052 261.01477051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03195053 261.01480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03195054 261.01480103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03195055 261.01483154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03195056 261.01483154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03195057 261.01486206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03195058 261.01486206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03195059 261.01489258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03195060 261.01489258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03195061 261.01492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03195062 261.01492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03195063 261.01492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03195064 261.01492310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03195065 261.01495361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03195066 261.01495361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03195067 261.01498413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03195068 261.01498413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03195069 261.01510620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03195070 261.01510620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03195071 261.01513672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03195072 261.01513672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03195073 261.01516724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03195074 261.01516724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03195075 261.01519775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03195076 261.01519775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03195077 261.01522827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03195078 261.01522827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03195079 261.01525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03195080 261.01525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03195081 261.01525879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03195082 261.01528931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03195083 261.01531982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03195084 261.01531982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03195085 261.01535034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03195086 261.01535034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03195087 261.01538086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03195088 261.01538086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03195089 261.01541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03195090 261.01541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03195091 261.01541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03195092 261.01541138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03195093 261.01544189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03195094 261.01544189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03195095 261.01547241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03195096 261.01547241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03195097 261.01550293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03195098 261.01550293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03195099 261.01553345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03195100 261.01553345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03195101 261.01556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03195102 261.01556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03195103 261.01556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03195104 261.01556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03195105 261.01559448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03195106 261.01562500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03195107 261.01565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03195108 261.01565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03195109 261.01568604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03195110 261.01568604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03195111 261.01571655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03195112 261.01571655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03195113 261.01571655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03195114 261.01571655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03195115 261.01574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03195116 261.01574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03195117 261.01577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03195118 261.01577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03195119 261.01580811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03195120 261.01580811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03195121 261.01583862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03195122 261.01583862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03195123 261.01586914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03195124 261.01586914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03195125 261.01589966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03195126 261.01589966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03195127 261.01593018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03195128 261.01593018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03195129 261.01596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03195130 261.01596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03195131 261.01599121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03195132 261.01599121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03195133 261.01602173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03195134 261.01602173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03195135 261.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03195136 261.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03195137 261.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03195138 261.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03195139 261.01608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03195140 261.01608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03195141 261.01611328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03195142 261.01614380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03195143 261.01617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03195144 261.01617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03195145 261.01620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03195146 261.01620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03195147 261.01620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03195148 261.01620483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03195149 261.01623535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03195150 261.01623535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03195151 261.01626587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03195152 261.01626587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03195153 261.01629639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03195154 261.01629639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03195155 261.01632690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03195156 261.01632690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03195157 261.01635742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03195158 261.01635742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03195159 261.01638794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03195160 261.01638794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03195161 261.01641846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03195162 261.01641846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03195163 261.01644897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03195164 261.01644897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03195165 261.01647949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03195166 261.01647949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03195167 261.01651001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03195168 261.01651001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03195169 261.01651001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03195170 261.01654053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03195171 261.01657104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03195172 261.01657104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03195173 261.01660156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03195174 261.01660156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03195175 261.01663208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03195176 261.01663208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03195177 261.01666260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03195178 261.01666260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03195179 261.01669312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03195180 261.01669312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03195181 261.01669312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03195182 261.01669312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03195183 261.01672363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03195184 261.01672363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03195185 261.01675415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03195186 261.01675415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03195187 261.01678467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03195188 261.01678467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03195189 261.01681519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03195190 261.01681519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03195191 261.01684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03195192 261.01684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03195193 261.01684570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03195194 261.01687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03195195 261.01687622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03195196 261.01690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03195197 261.01693726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03195198 261.01693726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03195199 261.01696777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03195200 261.01696777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03195201 261.01699829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03195202 261.01699829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03195203 261.01699829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03195204 261.01699829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03195205 261.01702881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03195206 261.01702881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03195207 261.01705933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03195208 261.01705933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03195209 261.01708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03195210 261.01708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03195211 261.01712036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03195212 261.01712036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03195213 261.01715088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03195214 261.01718140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03195215 261.01721191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03195216 261.01721191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03195217 261.01724243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03195218 261.01724243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03195219 261.01727295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03195220 261.01727295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03195221 261.01730347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03195222 261.01730347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03195223 261.01730347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03195224 261.01730347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03195225 261.01733398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03195226 261.01733398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03195227 261.01736450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03195228 261.01736450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03195229 261.01739502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03195230 261.01739502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03195231 261.01742554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03195232 261.01742554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03195233 261.01745605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03195234 261.01745605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03195235 261.01748657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03195236 261.01748657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03195237 261.01748657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03195238 261.01748657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03195239 261.01751709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03195240 261.01751709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03195241 261.01754761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03195242 261.01754761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03195243 261.01757813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03195244 261.01757813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03195245 261.01760864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03195246 261.01760864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03195247 261.01763916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03195248 261.01763916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03195249 261.01766968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03195250 261.01766968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03195251 261.01770020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03195252 261.01770020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03195253 261.01773071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03195254 261.01773071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03195255 261.01776123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03195256 261.01776123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03195257 261.01779175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03195258 261.01779175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03195259 261.01779175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03195260 261.01779175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03195261 261.01782227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03195262 261.01782227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03195263 261.01785278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03195264 261.01785278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03195265 261.01788330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03195266 261.01788330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03195267 261.01791382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03195268 261.01791382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03195269 261.01794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03195270 261.01794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03195271 261.01794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03195272 261.01794434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03195273 261.01797485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03195274 261.01797485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03195275 261.01800537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03195276 261.01803589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03195277 261.01803589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03195278 261.01806641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03195279 261.01809692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03195280 261.01809692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03195281 261.01809692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03195282 261.01809692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03195283 261.01812744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03195284 261.01812744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03195285 261.01815796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03195286 261.01815796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03195287 261.01818848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03195288 261.01818848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03195289 261.01821899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03195290 261.01821899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03195291 261.01824951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03195292 261.01824951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03195293 261.01828003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03195294 261.01828003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03195295 261.01828003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03195296 261.01828003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03195297 261.01831055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03195298 261.01831055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03195299 261.01834106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03195300 261.01837158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03195301 261.01840210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03195302 261.01840210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03195303 261.01843262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03195304 261.01843262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03195305 261.01843262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03195306 261.01843262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03195307 261.01846313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03195308 261.01846313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03195309 261.01849365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03195310 261.01849365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03195311 261.01852417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03195312 261.01852417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03195313 261.01855469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03195314 261.01855469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03195315 261.01858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03195316 261.01858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03195317 261.01858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03195318 261.01858521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03195319 261.01861572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03195320 261.01861572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03195321 261.01864624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03195322 261.01864624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03195323 261.01867676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03195324 261.01867676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03195325 261.01870728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03195326 261.01870728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03195327 261.01873779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03195328 261.01873779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03195329 261.01873779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03195330 261.01873779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03195331 261.01876831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03195332 261.01876831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03195333 261.01879883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03195334 261.01882935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03195335 261.01882935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03195336 261.01885986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03195337 261.01889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03195338 261.01889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03195339 261.01889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03195340 261.01889038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03195341 261.01892090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03195342 261.01892090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03195343 261.01895142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03195344 261.01895142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03195345 261.01898193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03195346 261.01898193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03195347 261.01901245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03195348 261.01901245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03195349 261.01904297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03195350 261.01904297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03195351 261.01907349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03195352 261.01907349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03195353 261.01907349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03195354 261.01907349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03195355 261.01910400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03195356 261.01910400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03195357 261.01913452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03195358 261.01913452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03195359 261.01919556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03195360 261.01919556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03195361 261.01922607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03195362 261.01922607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03195363 261.01922607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03195364 261.01922607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03195365 261.01925659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03195366 261.01925659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03195367 261.01928711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03195368 261.01928711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03195369 261.01931763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03195370 261.01931763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03195371 261.01934814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03195372 261.01934814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03195373 261.01937866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03195374 261.01937866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03195375 261.01937866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03195376 261.01937866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03195377 261.01940918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03195378 261.01940918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03195379 261.01947021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03195380 261.01947021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03195381 261.01950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03195382 261.01950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03195383 261.01953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03195384 261.01953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03195385 261.01953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03195386 261.01953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03195387 261.01956177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03195388 261.01956177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03195389 261.01959229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03195390 261.01959229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03195391 261.01962280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03195392 261.01962280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03195393 261.01965332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03195394 261.01968384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03195395 261.01971436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03195396 261.01971436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03195397 261.01971436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03195398 261.01971436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03195399 261.01974487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03195400 261.01974487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03195401 261.01977539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03195402 261.01977539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03195403 261.01980591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03195404 261.01980591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03195405 261.01983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03195406 261.01983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03195407 261.01986694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03195408 261.01986694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03195409 261.01986694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03195410 261.01986694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03195411 261.01989746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03195412 261.01989746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03195413 261.01992798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03195414 261.01995850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03195415 261.01998901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03195416 261.01998901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03195417 261.02001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03195418 261.02001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03195419 261.02001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03195420 261.02001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03195421 261.02005005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03195422 261.02005005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03195423 261.02008057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03195424 261.02008057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03195425 261.02011108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03195426 261.02011108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03195427 261.02014160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03195428 261.02014160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03195429 261.02017212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03195430 261.02017212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03195431 261.02017212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03195432 261.02017212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03195433 261.02020264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03195434 261.02020264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03195435 261.02026367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03195436 261.02026367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03195437 261.02029419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03195438 261.02029419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03195439 261.02032471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03195440 261.02032471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03195441 261.02032471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03195442 261.02032471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03195443 261.02035522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03195444 261.02035522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03195445 261.02038574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03195446 261.02038574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03195447 261.02041626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03195448 261.02041626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03195449 261.02044678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03195450 261.02044678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03195451 261.02047729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03195452 261.02047729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03195453 261.02050781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03195454 261.02050781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03195455 261.02050781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03195456 261.02050781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03195457 261.02053833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03195458 261.02056885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03195459 261.02059937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03195460 261.02059937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03195461 261.02062988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03195462 261.02062988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03195463 261.02066040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03195464 261.02066040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03195465 261.02066040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03195466 261.02066040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03195467 261.02069092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03195468 261.02069092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03195469 261.02072144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03195470 261.02072144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03195471 261.02075195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03195472 261.02075195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03195473 261.02078247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03195474 261.02078247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03195475 261.02081299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03195476 261.02081299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03195477 261.02081299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03195478 261.02081299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03195479 261.02084351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03195480 261.02084351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03195481 261.02087402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03195482 261.02087402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03195483 261.02090454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03195484 261.02090454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03195485 261.02093506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03195486 261.02093506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03195487 261.02096558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03195488 261.02096558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03195489 261.02096558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03195490 261.02099609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03195491 261.02099609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03195492 261.02102661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03195493 261.02105713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03195494 261.02105713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03195495 261.02108765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03195496 261.02108765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03195497 261.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03195498 261.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03195499 261.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03195500 261.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03195501 261.02114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03195502 261.02114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03195503 261.02117920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03195504 261.02117920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03195505 261.02120972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03195506 261.02120972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03195507 261.02124023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03195508 261.02124023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03195509 261.02127075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03195510 261.02127075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03195511 261.02130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03195512 261.02130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03195513 261.02130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03195514 261.02130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03195515 261.02133179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03195516 261.02133179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03195517 261.02136230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03195518 261.02139282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03195519 261.02142334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03195520 261.02142334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03195521 261.02145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03195522 261.02145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03195523 261.02148438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03195524 261.02148438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03195525 261.02151489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03195526 261.02151489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03195527 261.02154541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03195528 261.02154541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03195529 261.02157593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03195530 261.02157593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03195531 261.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03195532 261.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03195533 261.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03195534 261.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03195535 261.02163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03195536 261.02163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03195537 261.02166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03195538 261.02166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03195539 261.02169800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03195540 261.02169800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03195541 261.02172852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03195542 261.02172852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03195543 261.02175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03195544 261.02175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03195545 261.02175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03195546 261.02175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03195547 261.02178955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03195548 261.02178955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03195549 261.02182007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03195550 261.02182007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03195551 261.02185059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03195552 261.02185059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03195553 261.02188110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03195554 261.02191162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03195555 261.02191162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03195556 261.02191162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03195557 261.02194214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03195558 261.02194214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03195559 261.02197266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03195560 261.02197266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03195561 261.02200317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03195562 261.02200317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03195563 261.02203369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03195564 261.02203369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03195565 261.02206421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03195566 261.02206421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03195567 261.02209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03195568 261.02209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03195569 261.02209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03195570 261.02209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03195571 261.02212524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03195572 261.02212524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03195573 261.02215576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03195574 261.02215576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03195575 261.02218628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03195576 261.02218628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03195577 261.02221680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03195578 261.02224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03195579 261.02224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03195580 261.02224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03195581 261.02227783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03195582 261.02227783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03195583 261.02230835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03195584 261.02230835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03195585 261.02233887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03195586 261.02233887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03195587 261.02236938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03195588 261.02236938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03195589 261.02239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03195590 261.02239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03195591 261.02239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03195592 261.02239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03195593 261.02243042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03195594 261.02243042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03195595 261.02246094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03195596 261.02246094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03195597 261.02249146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03195598 261.02249146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03195599 261.02252197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03195600 261.02252197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03195601 261.02255249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03195602 261.02255249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03195603 261.02255249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03195604 261.02258301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03195605 261.02261353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03195606 261.02261353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03195607 261.02264404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03195608 261.02264404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03195609 261.02267456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03195610 261.02267456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03195611 261.02270508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03195612 261.02270508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03195613 261.02270508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03195614 261.02270508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03195615 261.02273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03195616 261.02273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03195617 261.02276611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03195618 261.02276611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03195619 261.02279663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03195620 261.02279663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03195621 261.02282715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03195622 261.02282715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03195623 261.02285767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03195624 261.02285767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03195625 261.02288818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03195626 261.02288818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03195627 261.02291870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03195628 261.02291870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03195629 261.02294922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03195630 261.02294922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03195631 261.02297974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03195632 261.02297974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03195633 261.02301025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03195634 261.02301025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03195635 261.02304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03195636 261.02304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03195637 261.02304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03195638 261.02304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03195639 261.02307129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03195640 261.02307129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03195641 261.02310181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03195642 261.02310181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03195643 261.02313232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03195644 261.02313232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03195645 261.02316284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03195646 261.02319336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03195647 261.02319336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03195648 261.02319336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03195649 261.02322388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03195650 261.02322388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03195651 261.02325439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03195652 261.02325439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03195653 261.02328491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03195654 261.02328491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03195655 261.02331543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03195656 261.02331543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03195657 261.02334595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03195658 261.02334595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03195659 261.02334595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03195660 261.02334595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03195661 261.02337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03195662 261.02337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03195663 261.02340698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03195664 261.02340698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03195665 261.02343750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03195666 261.02346802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03195667 261.02349854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03195668 261.02349854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03195669 261.02349854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03195670 261.02349854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03195671 261.02352905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03195672 261.02352905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03195673 261.02355957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03195674 261.02355957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03195675 261.02359009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03195676 261.02359009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03195677 261.02362061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03195678 261.02362061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03195679 261.02365112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03195680 261.02365112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03195681 261.02368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03195682 261.02368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03195683 261.02368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03195684 261.02371216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03195685 261.02374268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03195686 261.02374268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03195687 261.02377319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03195688 261.02377319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03195689 261.02380371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03195690 261.02380371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03195691 261.02383423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03195692 261.02383423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03195693 261.02383423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03195694 261.02383423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03195695 261.02386475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03195696 261.02386475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03195697 261.02389526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03195698 261.02389526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03195699 261.02392578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03195700 261.02392578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03195701 261.02395630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03195702 261.02395630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03195703 261.02398682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03195704 261.02398682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03195705 261.02401733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03195706 261.02401733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03195707 261.02404785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03195708 261.02404785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03195709 261.02407837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03195710 261.02407837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03195711 261.02410889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03195712 261.02410889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03195713 261.02413940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03195714 261.02413940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03195715 261.02413940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03195716 261.02413940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03195717 261.02416992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03195718 261.02416992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03195719 261.02420044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03195720 261.02423096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03195721 261.02426147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03195722 261.02426147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03195723 261.02429199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03195724 261.02429199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03195725 261.02429199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03195726 261.02429199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03195727 261.02432251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03195728 261.02432251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03195729 261.02435303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03195730 261.02435303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03195731 261.02438354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03195732 261.02438354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03195733 261.02441406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03195734 261.02441406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03195735 261.02444458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03195736 261.02444458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03195737 261.02447510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03195738 261.02447510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03195739 261.02450562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03195740 261.02450562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03195741 261.02453613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03195742 261.02453613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03195743 261.02456665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03195744 261.02456665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03195745 261.02459717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03195746 261.02459717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03195747 261.02462769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03195748 261.02462769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03195749 261.02462769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03195750 261.02462769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03195751 261.02465820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03195752 261.02465820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03195753 261.02468872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03195754 261.02468872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03195755 261.02471924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03195756 261.02471924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03195757 261.02474976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03195758 261.02474976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03195759 261.02478027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03195760 261.02478027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03195761 261.02478027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03195762 261.02478027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03195763 261.02481079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03195764 261.02481079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03195765 261.02484131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03195766 261.02484131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03195767 261.02487183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03195768 261.02487183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03195769 261.02490234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03195770 261.02490234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03195771 261.02493286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03195772 261.02493286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03195773 261.02493286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03195774 261.02493286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03195775 261.02496338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03195776 261.02496338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03195777 261.02499390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03195778 261.02499390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03195779 261.02505493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03195780 261.02505493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03195781 261.02508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03195782 261.02508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03195783 261.02511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03195784 261.02511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03195785 261.02511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03195786 261.02511597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03195787 261.02514648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03195788 261.02514648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03195789 261.02517700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03195790 261.02517700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03195791 261.02520752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03195792 261.02520752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03195793 261.02523804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03195794 261.02523804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03195795 261.02526855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03195796 261.02526855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03195797 261.02529907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03195798 261.02529907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03195799 261.02532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03195800 261.02532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03195801 261.02536011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03195802 261.02536011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03195803 261.02539063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03195804 261.02539063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03195805 261.02542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03195806 261.02542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03195807 261.02542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03195808 261.02542114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03195809 261.02545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03195810 261.02545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03195811 261.02548218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03195812 261.02548218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03195813 261.02551270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03195814 261.02551270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03195815 261.02554321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03195816 261.02557373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03195817 261.02557373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03195818 261.02557373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03195819 261.02560425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03195820 261.02560425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03195821 261.02563477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03195822 261.02563477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03195823 261.02566528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03195824 261.02566528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03195825 261.02569580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03195826 261.02569580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03195827 261.02572632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03195828 261.02572632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03195829 261.02572632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03195830 261.02572632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03195831 261.02575684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03195832 261.02578735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03195833 261.02581787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03195834 261.02581787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03195835 261.02584839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03195836 261.02584839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03195837 261.02587891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03195838 261.02587891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03195839 261.02590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03195840 261.02590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03195841 261.02590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03195842 261.02590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03195843 261.02593994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03195844 261.02593994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03195845 261.02597046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03195846 261.02597046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03195847 261.02600098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03195848 261.02600098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03195849 261.02603149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03195850 261.02606201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03195851 261.02606201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03195852 261.02606201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03195853 261.02609253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03195854 261.02609253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03195855 261.02612305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03195856 261.02612305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03195857 261.02615356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03195858 261.02615356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03195859 261.02618408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03195860 261.02618408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03195861 261.02621460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03195862 261.02621460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03195863 261.02621460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03195864 261.02621460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03195865 261.02624512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03195866 261.02624512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03195867 261.02627563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03195868 261.02627563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03195869 261.02630615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03195870 261.02630615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03195871 261.02633667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03195872 261.02633667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03195873 261.02636719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03195874 261.02636719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03195875 261.02636719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03195876 261.02636719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03195877 261.02639771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03195878 261.02639771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03195879 261.02642822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03195880 261.02642822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03195881 261.02645874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03195882 261.02645874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03195883 261.02648926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03195884 261.02648926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03195885 261.02651978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03195886 261.02651978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03195887 261.02651978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03195888 261.02651978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03195889 261.02655029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03195890 261.02658081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03195891 261.02658081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03195892 261.02661133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03195893 261.02664185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03195894 261.02664185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03195895 261.02667236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03195896 261.02667236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03195897 261.02670288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03195898 261.02670288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03195899 261.02670288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03195900 261.02670288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03195901 261.02673340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03195902 261.02673340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03195903 261.02676392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03195904 261.02676392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03195905 261.02679443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03195906 261.02679443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03195907 261.02682495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03195908 261.02682495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03195909 261.02685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03195910 261.02685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03195911 261.02685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03195912 261.02685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03195913 261.02688599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03195914 261.02688599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03195915 261.02691650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03195916 261.02691650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03195917 261.02694702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03195918 261.02694702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03195919 261.02697754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03195920 261.02697754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03195921 261.02700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03195922 261.02700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03195923 261.02700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03195924 261.02700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03195925 261.02703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03195926 261.02703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03195927 261.02706909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03195928 261.02706909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03195929 261.02709961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03195930 261.02713013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03195931 261.02713013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03195932 261.02716064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03195933 261.02716064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03195934 261.02716064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03195935 261.02719116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03195936 261.02719116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03195937 261.02722168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03195938 261.02722168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03195939 261.02725220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03195940 261.02725220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03195941 261.02728271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03195942 261.02731323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03195943 261.02731323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03195944 261.02731323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03195945 261.02734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03195946 261.02734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03195947 261.02737427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03195948 261.02737427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03195949 261.02740479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03195950 261.02740479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03195951 261.02743530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03195952 261.02743530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03195953 261.02746582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03195954 261.02746582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03195955 261.02749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03195956 261.02749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03195957 261.02749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03195958 261.02749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03195959 261.02752686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03195960 261.02752686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03195961 261.02755737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03195962 261.02755737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03195963 261.02758789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03195964 261.02758789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03195965 261.02761841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03195966 261.02761841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03195967 261.02764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03195968 261.02764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03195969 261.02764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03195970 261.02764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03195971 261.02767944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03195972 261.02770996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03195973 261.02774048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03195974 261.02774048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03195975 261.02777100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03195976 261.02777100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03195977 261.02780151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03195978 261.02780151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03195979 261.02780151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03195980 261.02780151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03195981 261.02783203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03195982 261.02783203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03195983 261.02786255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03195984 261.02786255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03195985 261.02789307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03195986 261.02789307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03195987 261.02792358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03195988 261.02792358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03195989 261.02795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03195990 261.02795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03195991 261.02795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03195992 261.02795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03195993 261.02798462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03195994 261.02798462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03195995 261.02801514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03195996 261.02801514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03195997 261.02804565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03195998 261.02807617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03195999 261.02810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03196000 261.02810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03196001 261.02810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03196002 261.02810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03196003 261.02813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03196004 261.02813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03196005 261.02816772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03196006 261.02816772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03196007 261.02819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03196008 261.02819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03196009 261.02822876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03196010 261.02822876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03196011 261.02825928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03196012 261.02825928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03196013 261.02828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03196014 261.02828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03196015 261.02828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03196016 261.02828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03196017 261.02832031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03196018 261.02835083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03196019 261.02838135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03196020 261.02838135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03196021 261.02841187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03196022 261.02841187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03196023 261.02844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03196024 261.02844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03196025 261.02853394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03196026 261.02856445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03196027 261.02859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03196028 261.02859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03196029 261.02859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03196030 261.02859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03196031 261.02862549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03196032 261.02862549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03196033 261.02865601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03196034 261.02865601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03196035 261.02868652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03196036 261.02868652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03196037 261.02871704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03196038 261.02871704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03196039 261.02874756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03196040 261.02874756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03196041 261.02874756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03196042 261.02874756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03196043 261.02877808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03196044 261.02877808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03196045 261.02880859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03196046 261.02880859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03196047 261.02883911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03196048 261.02883911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03196049 261.02886963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03196050 261.02886963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03196051 261.02890015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03196052 261.02890015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03196053 261.02893066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03196054 261.02893066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03196055 261.02896118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03196056 261.02896118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03196057 261.02899170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03196058 261.02899170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03196059 261.02902222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03196060 261.02902222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03196061 261.02905273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03196062 261.02905273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03196063 261.02908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03196064 261.02908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03196065 261.02908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03196066 261.02908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03196067 261.02911377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03196068 261.02911377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03196069 261.02914429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03196070 261.02914429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03196071 261.02917480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03196072 261.02917480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03196073 261.02920532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03196074 261.02923584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03196075 261.02923584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03196076 261.02923584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03196077 261.02926636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03196078 261.02926636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03196079 261.02929688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03196080 261.02929688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03196081 261.02932739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03196082 261.02932739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03196083 261.02935791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03196084 261.02935791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03196085 261.02938843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03196086 261.02938843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03196087 261.02938843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03196088 261.02938843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03196089 261.02954102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03196090 261.02954102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03196091 261.02957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03196092 261.02957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03196093 261.02960205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03196094 261.02960205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03196095 261.02963257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03196096 261.02963257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03196097 261.02966309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03196098 261.02966309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03196099 261.02969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03196100 261.02969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03196101 261.02969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03196102 261.02969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03196103 261.02972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03196104 261.02972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03196105 261.02975464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03196106 261.02975464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03196107 261.02978516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03196108 261.02978516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03196109 261.02981567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03196110 261.02984619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03196111 261.02987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03196112 261.02987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03196113 261.02987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03196114 261.02987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03196115 261.02990723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03196116 261.02990723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03196117 261.02993774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03196118 261.02993774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03196119 261.02996826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03196120 261.02996826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03196121 261.02999878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03196122 261.02999878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03196123 261.03002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03196124 261.03002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03196125 261.03002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03196126 261.03002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03196127 261.03005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03196128 261.03005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03196129 261.03009033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03196130 261.03009033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03196131 261.03012085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03196132 261.03012085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03196133 261.03015137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03196134 261.03015137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03196135 261.03018188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03196136 261.03018188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03196137 261.03018188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03196138 261.03021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03196139 261.03021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03196140 261.03024292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03196141 261.03027344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03196142 261.03027344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03196143 261.03030396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03196144 261.03030396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03196145 261.03033447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03196146 261.03033447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03196147 261.03033447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03196148 261.03033447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03196149 261.03036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03196150 261.03036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03196151 261.03039551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03196152 261.03039551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03196153 261.03042603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03196154 261.03042603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03196155 261.03045654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03196156 261.03045654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03196157 261.03048706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03196158 261.03048706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03196159 261.03051758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03196160 261.03051758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03196161 261.03051758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03196162 261.03051758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03196163 261.03054810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03196164 261.03054810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03196165 261.03057861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03196166 261.03057861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03196167 261.03060913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03196168 261.03063965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03196169 261.03067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03196170 261.03067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03196171 261.03067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03196172 261.03067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03196173 261.03070068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03196174 261.03070068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03196175 261.03073120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03196176 261.03073120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03196177 261.03076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03196178 261.03076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03196179 261.03079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03196180 261.03079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03196181 261.03082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03196182 261.03082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03196183 261.03082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03196184 261.03085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03196185 261.03085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03196186 261.03088379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03196187 261.03091431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03196188 261.03091431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03196189 261.03094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03196190 261.03094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03196191 261.03097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03196192 261.03097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03196193 261.03097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03196194 261.03097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03196195 261.03100586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03196196 261.03100586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03196197 261.03103638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03196198 261.03103638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03196199 261.03106689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03196200 261.03106689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03196201 261.03109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03196202 261.03109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03196203 261.03112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03196204 261.03112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03196205 261.03112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03196206 261.03112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03196207 261.03115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03196208 261.03118896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03196209 261.03118896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03196210 261.03121948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03196211 261.03125000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03196212 261.03125000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03196213 261.03128052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03196214 261.03128052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03196215 261.03131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03196216 261.03131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03196217 261.03131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03196218 261.03131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03196219 261.03134155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03196220 261.03134155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03196221 261.03137207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03196222 261.03137207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03196223 261.03140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03196224 261.03140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03196225 261.03143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03196226 261.03143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03196227 261.03146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03196228 261.03146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03196229 261.03146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03196230 261.03149414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03196231 261.03161621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03196232 261.03161621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03196233 261.03164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03196234 261.03164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03196235 261.03167725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03196236 261.03167725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03196237 261.03170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03196238 261.03170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03196239 261.03173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03196240 261.03173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03196241 261.03176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03196242 261.03176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03196243 261.03176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03196244 261.03176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03196245 261.03179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03196246 261.03182983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03196247 261.03186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03196248 261.03186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03196249 261.03189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03196250 261.03189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03196251 261.03192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03196252 261.03192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03196253 261.03192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03196254 261.03192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03196255 261.03195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03196256 261.03195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03196257 261.03198242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03196258 261.03198242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03196259 261.03201294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03196260 261.03201294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03196261 261.03204346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03196262 261.03204346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03196263 261.03207397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03196264 261.03207397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03196265 261.03210449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03196266 261.03210449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03196267 261.03213501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03196268 261.03213501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03196269 261.03216553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03196270 261.03216553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03196271 261.03219604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03196272 261.03219604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03196273 261.03222656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03196274 261.03222656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03196275 261.03225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03196276 261.03225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03196277 261.03225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03196278 261.03225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03196279 261.03228760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03196280 261.03228760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03196281 261.03231812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03196282 261.03231812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03196283 261.03234863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03196284 261.03234863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03196285 261.03237915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03196286 261.03237915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03196287 261.03240967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03196288 261.03240967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03196289 261.03240967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03196290 261.03240967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03196291 261.03253174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03196292 261.03253174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03196293 261.03256226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03196294 261.03256226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03196295 261.03256226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03196296 261.03256226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03196297 261.03259277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03196298 261.03259277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03196299 261.03262329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03196300 261.03265381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03196301 261.03265381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03196302 261.03268433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03196303 261.03271484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03196304 261.03271484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03196305 261.03271484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03196306 261.03271484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03196307 261.03274536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03196308 261.03274536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03196309 261.03277588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03196310 261.03277588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03196311 261.03280640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03196312 261.03280640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03196313 261.03283691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03196314 261.03283691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03196315 261.03286743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03196316 261.03286743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03196317 261.03289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03196318 261.03289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03196319 261.03289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03196320 261.03289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03196321 261.03292847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03196322 261.03292847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03196323 261.03295898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03196324 261.03295898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03196325 261.03298950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03196326 261.03298950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03196327 261.03302002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03196328 261.03302002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03196329 261.03305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03196330 261.03305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03196331 261.03305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03196332 261.03305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03196333 261.03308105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03196334 261.03308105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03196335 261.03311157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03196336 261.03311157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03196337 261.03314209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03196338 261.03314209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03196339 261.03317261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03196340 261.03317261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03196341 261.03320313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03196342 261.03320313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03196343 261.03320313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03196344 261.03323364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03196345 261.03326416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03196346 261.03326416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03196347 261.03329468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03196348 261.03329468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03196349 261.03332520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03196350 261.03332520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03196351 261.03335571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03196352 261.03335571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03196353 261.03344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03196354 261.03344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03196355 261.03347778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03196356 261.03347778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03196357 261.03350830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03196358 261.03350830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03196359 261.03350830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03196360 261.03350830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03196361 261.03353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03196362 261.03353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03196363 261.03356934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03196364 261.03356934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03196365 261.03359985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03196366 261.03363037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03196367 261.03366089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03196368 261.03366089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03196369 261.03369141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03196370 261.03369141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03196371 261.03369141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03196372 261.03369141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03196373 261.03372192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03196374 261.03372192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03196375 261.03375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03196376 261.03384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03196377 261.03384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03196378 261.03384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03196379 261.03387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03196380 261.03387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03196381 261.03390503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03196382 261.03390503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03196383 261.03393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03196384 261.03393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03196385 261.03396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03196386 261.03396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03196387 261.03399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03196388 261.03399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03196389 261.03402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03196390 261.03402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03196391 261.03405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03196392 261.03405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03196393 261.03408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03196394 261.03408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03196395 261.03411865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03196396 261.03411865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03196397 261.03414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03196398 261.03414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03196399 261.03414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03196400 261.03414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03196401 261.03417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03196402 261.03417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03196403 261.03421021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03196404 261.03421021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03196405 261.03424072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03196406 261.03424072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03196407 261.03427124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03196408 261.03427124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03196409 261.03430176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03196410 261.03430176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03196411 261.03433228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03196412 261.03433228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03196413 261.03436279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03196414 261.03436279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03196415 261.03439331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03196416 261.03439331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03196417 261.03442383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03196418 261.03442383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03196419 261.03445435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03196420 261.03445435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03196421 261.03448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03196422 261.03448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03196423 261.03448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03196424 261.03448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03196425 261.03451538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03196426 261.03451538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03196427 261.03454590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03196428 261.03454590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03196429 261.03457642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03196430 261.03460693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03196431 261.03463745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03196432 261.03463745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03196433 261.03463745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03196434 261.03463745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03196435 261.03466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03196436 261.03466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03196437 261.03469849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03196438 261.03469849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03196439 261.03472900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03196440 261.03472900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03196441 261.03475952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03196442 261.03475952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03196443 261.03479004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03196444 261.03479004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03196445 261.03479004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03196446 261.03479004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03196447 261.03482056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03196448 261.03482056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03196449 261.03485107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03196450 261.03485107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03196451 261.03488159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03196452 261.03491211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03196453 261.03494263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03196454 261.03494263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03196455 261.03494263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03196456 261.03494263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03196457 261.03497314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03196458 261.03497314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03196459 261.03500366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03196460 261.03500366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03196461 261.03503418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03196462 261.03503418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03196463 261.03506470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03196464 261.03506470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03196465 261.03509521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03196466 261.03509521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03196467 261.03509521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03196468 261.03509521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03196469 261.03512573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03196470 261.03512573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03196471 261.03515625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03196472 261.03518677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03196473 261.03521729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03196474 261.03521729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03196475 261.03524780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03196476 261.03524780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03196477 261.03527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03196478 261.03527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03196479 261.03527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03196480 261.03527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03196481 261.03530884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03196482 261.03530884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03196483 261.03533936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03196484 261.03533936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03196485 261.03536987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03196486 261.03536987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03196487 261.03540039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03196488 261.03540039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03196489 261.03543091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03196490 261.03543091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03196491 261.03543091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03196492 261.03543091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03196493 261.03546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03196494 261.03549194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03196495 261.03552246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03196496 261.03552246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03196497 261.03555298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03196498 261.03555298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03196499 261.03558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03196500 261.03558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03196501 261.03558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03196502 261.03558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03196503 261.03561401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03196504 261.03561401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03196505 261.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03196506 261.03564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03196507 261.03567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03196508 261.03567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03196509 261.03570557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03196510 261.03570557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03196511 261.03573608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03196512 261.03573608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03196513 261.03576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03196514 261.03576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03196515 261.03579712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03196516 261.03579712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03196517 261.03582764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03196518 261.03582764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03196519 261.03585815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03196520 261.03585815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03196521 261.03588867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03196522 261.03588867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03196523 261.03591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03196524 261.03591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03196525 261.03591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03196526 261.03591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03196527 261.03594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03196528 261.03594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03196529 261.03598022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03196530 261.03601074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03196531 261.03604126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03196532 261.03604126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03196533 261.03607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03196534 261.03607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03196535 261.03607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03196536 261.03607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03196537 261.03610229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03196538 261.03610229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03196539 261.03613281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03196540 261.03613281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03196541 261.03616333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03196542 261.03616333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03196543 261.03619385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03196544 261.03619385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03196545 261.03622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03196546 261.03622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03196547 261.03622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03196548 261.03622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03196549 261.03625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03196550 261.03625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03196551 261.03628540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03196552 261.03628540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03196553 261.03631592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03196554 261.03634644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03196555 261.03637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03196556 261.03637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03196557 261.03637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03196558 261.03637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03196559 261.03640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03196560 261.03640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03196561 261.03643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03196562 261.03643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03196563 261.03646851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03196564 261.03646851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03196565 261.03649902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03196566 261.03649902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03196567 261.03652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03196568 261.03652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03196569 261.03652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03196570 261.03652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03196571 261.03656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03196572 261.03656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03196573 261.03659058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03196574 261.03662109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03196575 261.03665161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03196576 261.03665161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03196577 261.03668213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03196578 261.03668213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03196579 261.03671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03196580 261.03671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03196581 261.03671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03196582 261.03671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03196583 261.03674316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03196584 261.03674316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03196585 261.03677368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03196586 261.03677368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03196587 261.03680420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03196588 261.03680420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03196589 261.03683472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03196590 261.03683472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03196591 261.03686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03196592 261.03686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03196593 261.03686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03196594 261.03686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03196595 261.03689575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03196596 261.03689575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03196597 261.03692627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03196598 261.03692627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03196599 261.03695679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03196600 261.03695679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03196601 261.03698730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03196602 261.03698730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03196603 261.03701782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03196604 261.03701782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03196605 261.03701782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03196606 261.03701782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03196607 261.03704834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03196608 261.03707886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03197517 261.05035400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -03197518 261.05035400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -03197519 261.05035400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -03197520 261.05035400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -03197521 261.05038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -03197522 261.05038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -03197523 261.05041504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -03197524 261.05041504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -03197525 261.05044556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -03197526 261.05044556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -03197527 261.05047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -03197528 261.05047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -03197529 261.05050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -03197530 261.05050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -03197531 261.05050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -03197532 261.05050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -03197533 261.05053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -03197534 261.05053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -03197535 261.05056763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -03197536 261.05059814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -03197537 261.05062866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -03197538 261.05062866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -03197539 261.05065918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -03197540 261.05065918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -03197541 261.05068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -03197542 261.05068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -03197543 261.05068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -03197544 261.05068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -03197545 261.05072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -03197546 261.05072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -03197547 261.05075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -03197548 261.05075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -03197549 261.05078125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -03197550 261.05078125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -03197551 261.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -03197552 261.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -03197553 261.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -03197554 261.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -03197555 261.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -03197556 261.05087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -03197557 261.05090332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -03197558 261.05090332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -03197559 261.05093384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -03197560 261.05093384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -03200161 261.08721924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf548 -03200162 261.08721924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf548 -03200163 261.08728027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf558 -03200164 261.08728027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf558 -03200165 261.08731079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf568 -03200166 261.08731079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf568 -03200167 261.08734131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf578 -03200168 261.08734131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf578 -03200169 261.08737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf588 -03200170 261.08737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf588 -03200171 261.08737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf598 -03200172 261.08737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf598 -03200173 261.08740234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5a8 -03200174 261.08740234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5a8 -03200175 261.08743286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5b8 -03200176 261.08743286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5b8 -03200177 261.08746338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c8 -03200178 261.08746338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c8 -03200179 261.08749390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d8 -03200180 261.08749390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d8 -03200181 261.08752441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e8 -03200182 261.08752441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e8 -03200183 261.08752441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -03200184 261.08752441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -03200185 261.08758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -03200186 261.08758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -03200187 261.08761597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -03200188 261.08761597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -03200189 261.08767700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -03200190 261.08770752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -03200191 261.08770752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -03200192 261.08770752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -03200193 261.08773804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -03200194 261.08776855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -03200195 261.08779907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -03200196 261.08779907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -03200197 261.08782959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -03200198 261.08782959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -03200199 261.08786011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -03200200 261.08786011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -03200201 261.08786011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -03200202 261.08789063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -03200203 261.08789063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -03200204 261.08792114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -03202354 261.11968994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c8 -03202355 261.11972046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d8 -03202356 261.11972046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d8 -03202357 261.11975098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -03202358 261.11975098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -03202359 261.11978149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -03202360 261.11978149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -03202361 261.11978149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -03202362 261.11978149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -03202363 261.11981201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -03202364 261.11981201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -03202365 261.11984253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -03202366 261.11987305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -03202367 261.11990356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a38 -03202368 261.11990356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a38 -03202369 261.11993408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a48 -03202370 261.11993408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a48 -03202371 261.11993408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a58 -03202372 261.11993408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a58 -03202373 261.11996460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a68 -03202374 261.11996460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a68 -03202375 261.11999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a78 -03202376 261.11999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a78 -03202377 261.12002563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a88 -03202378 261.12002563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a88 -03202379 261.12005615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a98 -03202380 261.12005615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a98 -03202381 261.12008667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -03202382 261.12008667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -03202383 261.12011719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -03202384 261.12011719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -03202385 261.12011719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -03202386 261.12011719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -03202387 261.12014771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -03202388 261.12017822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -03202389 261.12020874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -03202390 261.12020874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -03202391 261.12023926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -03202392 261.12023926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -03202393 261.12026978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -03202394 261.12026978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -03202395 261.12026978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -03202396 261.12026978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -03202397 261.12030029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b28 -03204833 261.15469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18748 -03204834 261.15469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18748 -03204835 261.15472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18758 -03204836 261.15472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18758 -03204837 261.15472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18768 -03204838 261.15472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18768 -03204839 261.15475464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18778 -03204840 261.15475464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18778 -03204841 261.15478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18788 -03204842 261.15478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18788 -03204843 261.15481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -03204844 261.15484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -03204845 261.15487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -03204846 261.15487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -03204847 261.15490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -03204848 261.15490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -03204849 261.15490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -03204850 261.15490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -03204851 261.15493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -03204852 261.15493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -03204853 261.15496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -03204854 261.15496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -03204855 261.15499878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -03204856 261.15499878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -03204857 261.15502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -03204858 261.15502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -03204859 261.15505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -03204860 261.15505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -03204861 261.15505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -03204862 261.15505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -03204863 261.15509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -03204864 261.15512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -03204865 261.15515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -03204866 261.15515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -03204867 261.15518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -03204868 261.15518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -03204869 261.15521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -03204870 261.15521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -03204871 261.15521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -03204872 261.15521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -03204873 261.15524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -03204874 261.15524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -03204875 261.15527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -03204876 261.15527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -03207323 261.18954468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d518 -03207324 261.18954468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d518 -03207325 261.18957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d528 -03207326 261.18957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d528 -03207327 261.18960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d538 -03207328 261.18960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d538 -03207329 261.18963623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d548 -03207330 261.18966675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d548 -03207331 261.18969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d558 -03207332 261.18969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d558 -03207333 261.18969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d568 -03207334 261.18969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d568 -03207335 261.18972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d578 -03207336 261.18972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d578 -03207337 261.18975830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d588 -03207338 261.18975830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d588 -03207339 261.18978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d598 -03207340 261.18978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d598 -03207341 261.18981934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a8 -03207342 261.18981934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a8 -03207343 261.18984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b8 -03207344 261.18984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b8 -03207345 261.18984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c8 -03207346 261.18984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c8 -03207347 261.18988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d8 -03207348 261.18988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d8 -03207349 261.18991089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e8 -03207350 261.18994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e8 -03207351 261.18997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f8 -03207352 261.18997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f8 -03207353 261.19000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d608 -03207354 261.19000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d608 -03207355 261.19000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d618 -03207356 261.19000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d618 -03207357 261.19003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d628 -03207358 261.19003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d628 -03207359 261.19006348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d638 -03207360 261.19006348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d638 -03207361 261.19009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d648 -03207362 261.19009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d648 -03207363 261.19012451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d658 -03207364 261.19012451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d658 -03207365 261.19015503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d668 -03207366 261.19015503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d668 -03209723 261.22308350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22018 -03209724 261.22308350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22018 -03209725 261.22311401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22028 -03209726 261.22311401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22028 -03209727 261.22314453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22038 -03209728 261.22314453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22038 -03209729 261.22317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22048 -03209730 261.22317505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22048 -03209731 261.22320557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22058 -03209732 261.22320557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22058 -03209733 261.22320557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22068 -03209734 261.22323608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22068 -03209735 261.22326660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22078 -03209736 261.22326660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22078 -03209737 261.22329712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22088 -03209738 261.22329712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22088 -03209739 261.22332764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22098 -03209740 261.22332764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22098 -03209741 261.22335815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a8 -03209742 261.22335815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a8 -03209743 261.22335815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b8 -03209744 261.22335815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b8 -03209745 261.22338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c8 -03209746 261.22338867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c8 -03209747 261.22341919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d8 -03209748 261.22341919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d8 -03209749 261.22344971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e8 -03209750 261.22344971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e8 -03209751 261.22348022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f8 -03209752 261.22348022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f8 -03209753 261.22351074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22108 -03209754 261.22351074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22108 -03209755 261.22354126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22118 -03209756 261.22354126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22118 -03209757 261.22354126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22128 -03209758 261.22354126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22128 -03209759 261.22357178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22138 -03209760 261.22360229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22138 -03209761 261.22363281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22148 -03209762 261.22363281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22148 -03209763 261.22366333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22158 -03209764 261.22366333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22158 -03209765 261.22369385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -03209766 261.22369385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -03212121 261.25689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b08 -03212122 261.25689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b08 -03212123 261.25689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b18 -03212124 261.25689697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b18 -03212125 261.25692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b28 -03212126 261.25692749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b28 -03212127 261.25695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b38 -03212128 261.25695801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b38 -03212129 261.25698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b48 -03212130 261.25698853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b48 -03212131 261.25701904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b58 -03212132 261.25701904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b58 -03212133 261.25704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b68 -03212134 261.25704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b68 -03212135 261.25704956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b78 -03212136 261.25708008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b78 -03212137 261.25711060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b88 -03212138 261.25711060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b88 -03212139 261.25714111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b98 -03212140 261.25714111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b98 -03212141 261.25717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ba8 -03212142 261.25717163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ba8 -03212143 261.25720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bb8 -03212144 261.25720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bb8 -03212145 261.25720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bc8 -03212146 261.25720215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bc8 -03212147 261.25723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bd8 -03212148 261.25723267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bd8 -03212149 261.25726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26be8 -03212150 261.25726318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26be8 -03212151 261.25729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bf8 -03212152 261.25729370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bf8 -03212153 261.25732422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c08 -03212154 261.25735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c08 -03212155 261.25735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c18 -03212156 261.25735474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c18 -03212157 261.25738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c28 -03212158 261.25738525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c28 -03212159 261.25741577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c38 -03212160 261.25741577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c38 -03212161 261.25744629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c48 -03212162 261.25744629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c48 -03212163 261.25747681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c58 -03212164 261.25747681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c58 -03234724 262.49099731 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234725 262.49102783 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234726 262.49105835 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234727 262.49105835 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03234728 262.49118042 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234729 262.49118042 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234730 262.49127197 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234731 262.49130249 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234732 263.81393433 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03234733 263.83071899 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234734 263.83071899 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234735 264.99755859 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234736 264.99761963 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234737 264.99761963 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234738 264.99761963 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03234739 264.99777222 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234740 264.99777222 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234741 264.99783325 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234742 264.99786377 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234743 265.83193970 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03234744 265.86148071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234745 265.86151123 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234746 266.57369995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03234747 266.57369995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03234748 266.57373047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03234749 266.57373047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03234750 266.57376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03234751 266.57376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03234752 266.57376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03234753 266.57376099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03234754 266.57379150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03234755 266.57379150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03234756 266.57382202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03234757 266.57382202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03234758 266.57385254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03234759 266.57385254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03234760 266.57388306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03234761 266.57388306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03234762 266.57391357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03234763 266.57391357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03234764 266.57391357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03234765 266.57391357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03234766 266.57394409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03234767 266.57394409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03234768 266.57397461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03234769 266.57397461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03234770 266.57400513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03234771 266.57403564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03234772 266.57403564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03234773 266.57406616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03234774 266.57406616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03234775 266.57406616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03234776 266.57409668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03234777 266.57409668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03234778 266.57412720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03234779 266.57412720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03234780 266.57415771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03234781 266.57415771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03234782 266.57418823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03234783 266.57418823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03234784 266.57421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03234785 266.57421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03234786 266.57421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03234787 266.57421875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03234788 266.57424927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03234789 266.57424927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03234790 266.57427979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03234791 266.57427979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03234792 266.57431030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03234793 266.57431030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03234794 266.57434082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03234795 266.57437134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03234796 266.57440186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03234797 266.57440186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03234798 266.57440186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03234799 266.57440186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03234800 266.57443237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03234801 266.57443237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03234802 266.57446289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03234803 266.57446289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03234804 266.57449341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03234805 266.57449341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03234806 266.57452393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03234807 266.57452393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03234808 266.57455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03234809 266.57455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03234810 266.57455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03234811 266.57455444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03234812 266.57458496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03234813 266.57458496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03234814 266.57461548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03234815 266.57461548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03234816 266.57464600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03234817 266.57464600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03234818 266.57467651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03234819 266.57467651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03234820 266.57470703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03234821 266.57470703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03234822 266.57470703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03234823 266.57470703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03234824 266.57473755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03234825 266.57473755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03234826 266.57476807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03234827 266.57476807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03234828 266.57479858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03234829 266.57482910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03234830 266.57485962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03234831 266.57485962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03234832 266.57485962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03234833 266.57485962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03234834 266.57489014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03234835 266.57489014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03234836 266.57492065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03234837 266.57492065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03234838 266.57495117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03234839 266.57495117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03234840 266.57498169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03234841 266.57498169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03234842 266.57501221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03234843 266.57501221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03234844 266.57501221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03234845 266.57501221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03234846 266.57504272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03234847 266.57504272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03234848 266.57507324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03234849 266.57507324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03234850 266.57510376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03234851 266.57510376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03234852 266.57513428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03234853 266.57513428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03234854 266.57516479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03234855 266.57516479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03234856 266.57519531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03234857 266.57519531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03234858 266.57519531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03234859 266.57519531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03234860 266.57522583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03234861 266.57522583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03234862 266.57525635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03234863 266.57528687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03234864 266.57528687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03234865 266.57531738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03234866 266.57534790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03234867 266.57534790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03234868 266.57534790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03234869 266.57534790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03234870 266.57537842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03234871 266.57537842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03234872 266.57540894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03234873 266.57540894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03234874 266.57546997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03234875 266.57546997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03234876 266.57550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03234877 266.57550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03234878 266.57550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03234879 266.57550049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03234880 266.57553101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03234881 266.57553101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03234882 266.57556152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03234883 266.57556152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03234884 266.57559204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03234885 266.57559204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03234886 266.57562256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03234887 266.57562256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03234888 266.57565308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03234889 266.57565308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03234890 266.57565308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03234891 266.57565308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03234892 266.57568359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03234893 266.57568359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03234894 266.57571411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03234895 266.57571411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03234896 266.57574463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03234897 266.57574463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03234898 266.57577515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03234899 266.57577515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03234900 266.57580566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03234901 266.57580566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03234902 266.57580566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03234903 266.57583618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03234904 266.57586670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03234905 266.57586670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03234906 266.57589722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03234907 266.57589722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03234908 266.57592773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03234909 266.57592773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03234910 266.57595825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03234911 266.57595825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03234912 266.57598877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03234913 266.57598877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03234914 266.57598877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03234915 266.57598877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03234916 266.57601929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03234917 266.57601929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03234918 266.57604980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03234919 266.57604980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03234920 266.57608032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03234921 266.57608032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03234922 266.57611084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03234923 266.57611084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03234924 266.57614136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03234925 266.57614136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03234926 266.57614136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03234927 266.57614136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03234928 266.57617188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03234929 266.57617188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03234930 266.57620239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03234931 266.57620239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03234932 266.57623291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03234933 266.57623291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03234934 266.57626343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03234935 266.57626343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03234936 266.57629395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03234937 266.57629395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03234938 266.57629395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03234939 266.57629395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03234940 266.57632446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03234941 266.57635498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03234942 266.57635498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03234943 266.57638550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03234944 266.57641602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03234945 266.57641602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03234946 266.57644653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03234947 266.57644653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03234948 266.57644653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03234949 266.57644653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03234950 266.57647705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03234951 266.57647705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03234952 266.57650757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03234953 266.57650757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03234954 266.57653809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03234955 266.57653809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03234956 266.57656860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03234957 266.57656860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03234958 266.57659912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03234959 266.57659912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03234960 266.57662964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03234961 266.57662964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03234962 266.57662964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03234963 266.57662964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03234964 266.57666016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03234965 266.57666016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03234966 266.57669067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03234967 266.57669067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03234968 266.57672119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03234969 266.57672119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03234970 266.57675171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03234971 266.57678223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03234972 266.57678223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03234973 266.57678223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03234974 266.57681274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03234975 266.57681274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03234976 266.57684326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03234977 266.57684326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03234978 266.57687378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03234979 266.57687378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03234980 266.57690430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03234981 266.57690430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03234982 266.57693481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03234983 266.57693481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03234984 266.57693481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03234985 266.57693481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03234986 266.57696533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03234987 266.57696533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03234988 266.57699585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03234989 266.57699585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03234990 266.57702637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03234991 266.57702637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03234992 266.57705688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03234993 266.57705688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03234994 266.57708740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03234995 266.57708740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03234996 266.57708740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03234997 266.57708740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03234998 266.57711792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03234999 266.57711792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03235000 266.57714844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03235001 266.57714844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03235002 266.57717896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03235003 266.57720947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03235004 266.57720947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03235005 266.57723999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03235006 266.57723999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03235007 266.57723999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03235008 266.57727051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03235009 266.57727051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03235010 266.57730103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03235011 266.57730103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03235012 266.57733154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03235013 266.57733154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03235014 266.57742310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03235015 266.57742310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03235016 266.57742310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03235017 266.57742310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03235018 266.57745361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03235019 266.57748413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03235020 266.57751465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03235021 266.57751465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03235022 266.57754517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03235023 266.57754517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03235024 266.57757568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03235025 266.57757568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03235026 266.57757568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03235027 266.57757568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03235028 266.57760620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03235029 266.57760620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03235030 266.57763672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03235031 266.57763672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03235032 266.57766724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03235033 266.57766724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03235034 266.57769775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03235035 266.57769775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03235036 266.57772827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03235037 266.57772827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03235038 266.57772827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03235039 266.57772827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03235040 266.57775879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03235041 266.57775879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03235042 266.57778931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03235043 266.57778931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03235044 266.57781982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03235045 266.57781982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03235046 266.57785034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03235047 266.57785034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03235048 266.57788086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03235049 266.57788086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03235050 266.57788086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03235051 266.57788086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03235052 266.57791138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03235053 266.57794189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03235054 266.57797241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03235055 266.57797241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03235056 266.57800293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03235057 266.57800293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03235058 266.57803345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03235059 266.57803345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03235060 266.57803345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03235061 266.57803345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03235062 266.57806396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03235063 266.57806396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03235064 266.57809448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03235065 266.57809448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03235066 266.57812500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03235067 266.57812500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03235068 266.57815552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03235069 266.57815552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03235070 266.57818604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03235071 266.57818604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03235072 266.57821655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03235073 266.57821655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03235074 266.57824707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03235075 266.57824707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03235076 266.57827759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03235077 266.57827759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03235078 266.57830811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03235079 266.57830811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03235080 266.57833862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03235081 266.57833862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03235082 266.57836914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03235083 266.57836914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03235084 266.57836914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03235085 266.57836914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03235086 266.57839966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03235087 266.57839966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03235088 266.57843018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03235089 266.57843018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03235090 266.57846069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03235091 266.57846069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03235092 266.57849121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03235093 266.57849121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03235094 266.57852173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03235095 266.57852173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03235096 266.57852173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03235097 266.57852173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03235098 266.57858276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03235099 266.57858276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03235100 266.57861328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03235101 266.57861328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03235102 266.57864380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03235103 266.57864380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03235104 266.57867432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03235105 266.57867432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03235106 266.57867432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03235107 266.57867432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03235108 266.57870483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03235109 266.57870483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03235110 266.57873535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03235111 266.57873535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03235112 266.57876587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03235113 266.57876587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03235114 266.57879639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03235115 266.57879639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03235116 266.57882690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03235117 266.57882690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03235118 266.57882690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03235119 266.57882690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03235120 266.57885742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03235121 266.57888794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03235122 266.57888794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03235123 266.57891846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03235124 266.57894897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03235125 266.57894897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03235126 266.57897949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03235127 266.57897949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03235128 266.57901001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03235129 266.57901001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03235130 266.57901001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03235131 266.57901001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03235132 266.57904053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03235133 266.57904053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03235134 266.57907104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03235135 266.57907104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03235136 266.57910156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03235137 266.57910156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03235138 266.57913208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03235139 266.57913208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03235140 266.57916260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03235141 266.57916260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03235142 266.57916260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03235143 266.57916260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03235144 266.57919312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03235145 266.57919312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03235146 266.57922363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03235147 266.57922363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03235148 266.57925415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03235149 266.57925415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03235150 266.57928467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03235151 266.57931519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03235152 266.57931519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03235153 266.57931519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03235154 266.57934570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03235155 266.57934570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03235156 266.57937622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03235157 266.57937622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03235158 266.57940674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03235159 266.57940674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03235160 266.57943726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03235161 266.57943726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03235162 266.57946777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03235163 266.57946777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03235164 266.57946777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03235165 266.57946777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03235166 266.57949829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03235167 266.57949829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03235168 266.57952881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03235169 266.57952881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03235170 266.57955933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03235171 266.57955933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03235172 266.57958984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03235173 266.57958984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03235174 266.57962036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03235175 266.57962036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03235176 266.57962036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03235177 266.57962036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03235178 266.57965088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03235179 266.57965088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03235180 266.57968140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03235181 266.57971191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03235182 266.57971191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03235183 266.57974243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03235184 266.57977295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03235185 266.57977295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03235186 266.57980347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03235187 266.57980347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03235188 266.57980347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03235189 266.57980347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03235190 266.57983398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03235191 266.57983398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03235192 266.57986450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03235193 266.57986450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03235194 266.57989502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03235195 266.57989502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03235196 266.57992554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03235197 266.57992554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03235198 266.57995605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03235199 266.57995605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03235200 266.57995605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03235201 266.57995605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03235202 266.57998657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03235203 266.58001709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03235204 266.58001709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03235205 266.58004761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03235206 266.58007813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03235207 266.58007813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03235208 266.58010864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03235209 266.58010864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03235210 266.58010864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03235211 266.58010864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03235212 266.58013916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03235213 266.58013916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03235214 266.58016968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03235215 266.58016968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03235216 266.58020020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03235217 266.58020020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03235218 266.58023071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03235219 266.58023071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03235220 266.58026123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03235221 266.58026123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03235222 266.58026123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03235223 266.58026123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03235224 266.58029175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03235225 266.58029175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03235226 266.58032227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03235227 266.58032227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03235228 266.58035278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03235229 266.58035278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03235230 266.58038330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03235231 266.58041382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03235232 266.58041382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03235233 266.58041382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03235234 266.58044434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03235235 266.58044434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03235236 266.58047485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03235237 266.58047485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03235238 266.58050537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03235239 266.58050537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03235240 266.58053589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03235241 266.58053589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03235242 266.58056641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03235243 266.58056641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03235244 266.58059692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03235245 266.58059692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03235246 266.58059692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03235247 266.58059692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03235248 266.58062744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03235249 266.58062744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03235250 266.58065796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03235251 266.58065796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03235252 266.58068848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03235253 266.58068848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03235254 266.58071899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03235255 266.58071899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03235256 266.58074951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03235257 266.58074951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03235258 266.58074951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03235259 266.58074951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03235260 266.58078003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03235261 266.58081055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03235262 266.58081055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03235263 266.58084106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03235264 266.58087158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03235265 266.58087158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03235266 266.58090210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03235267 266.58090210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03235268 266.58090210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03235269 266.58090210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03235270 266.58093262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03235271 266.58093262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03235272 266.58096313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03235273 266.58096313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03235274 266.58099365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03235275 266.58099365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03235276 266.58102417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03235277 266.58102417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03235278 266.58105469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03235279 266.58105469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03235280 266.58105469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03235281 266.58105469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03235282 266.58108521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03235283 266.58108521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03235284 266.58117676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03235285 266.58117676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03235286 266.58120728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03235287 266.58120728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03235288 266.58123779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03235289 266.58123779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03235290 266.58126831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03235291 266.58126831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03235292 266.58129883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03235293 266.58129883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03235294 266.58132935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03235295 266.58132935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03235296 266.58135986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03235297 266.58135986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03235298 266.58139038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03235299 266.58139038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03235300 266.58139038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03235301 266.58139038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03235302 266.58142090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03235303 266.58142090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03235304 266.58145142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03235305 266.58145142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03235306 266.58148193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03235307 266.58148193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03235308 266.58151245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03235309 266.58151245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03235310 266.58154297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03235311 266.58154297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03235312 266.58154297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03235313 266.58154297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03235314 266.58157349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03235315 266.58157349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03235316 266.58160400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03235317 266.58160400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03235318 266.58163452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03235319 266.58166504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03235320 266.58166504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03235321 266.58169556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03235322 266.58169556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03235323 266.58169556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03235324 266.58172607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03235325 266.58172607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03235326 266.58175659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03235327 266.58175659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03235328 266.58178711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03235329 266.58178711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03235330 266.58181763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03235331 266.58181763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03235332 266.58184814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03235333 266.58184814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03235334 266.58184814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03235335 266.58184814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03235336 266.58187866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03235337 266.58187866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03235338 266.58190918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03235339 266.58190918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03235340 266.58193970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03235341 266.58193970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03235342 266.58197021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03235343 266.58197021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03235344 266.58200073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03235345 266.58200073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03235346 266.58203125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03235347 266.58203125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03235348 266.58203125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03235349 266.58206177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03235350 266.58209229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03235351 266.58209229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03235352 266.58212280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03235353 266.58212280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03235354 266.58215332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03235355 266.58215332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03235356 266.58218384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03235357 266.58218384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03235358 266.58218384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03235359 266.58218384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03235360 266.58221436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03235361 266.58221436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03235362 266.58224487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03235363 266.58224487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03235364 266.58227539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03235365 266.58227539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03235366 266.58230591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03235367 266.58230591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03235368 266.58233643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03235369 266.58233643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03235370 266.58233643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03235371 266.58233643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03235372 266.58236694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03235373 266.58236694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03235374 266.58239746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03235375 266.58239746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03235376 266.58242798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03235377 266.58242798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03235378 266.58245850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03235379 266.58245850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03235380 266.58248901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03235381 266.58248901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03235382 266.58248901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03235383 266.58248901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03235384 266.58251953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03235385 266.58251953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03235386 266.58255005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03235387 266.58258057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03235388 266.58258057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03235389 266.58261108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03235390 266.58264160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03235391 266.58264160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03235392 266.58264160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03235393 266.58264160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03235394 266.58267212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03235395 266.58267212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03235396 266.58270264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03235397 266.58270264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03235398 266.58273315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03235399 266.58273315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03235400 266.58276367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03235401 266.58276367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03235402 266.58279419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03235403 266.58279419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03235404 266.58282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03235405 266.58282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03235406 266.58282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03235407 266.58282471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03235408 266.58285522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03235409 266.58285522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03235410 266.58288574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03235411 266.58288574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03235412 266.58291626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03235413 266.58291626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03235414 266.58294678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03235415 266.58294678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03235416 266.58297729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03235417 266.58297729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03235418 266.58297729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03235419 266.58297729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03235420 266.58300781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03235421 266.58300781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03235422 266.58303833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03235423 266.58303833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03235424 266.58306885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03235425 266.58306885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03235426 266.58309937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03235427 266.58309937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03235428 266.58312988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03235429 266.58312988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03235430 266.58312988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03235431 266.58316040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03235432 266.58319092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03235433 266.58319092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03235434 266.58322144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03235435 266.58322144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03235436 266.58325195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03235437 266.58325195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03235438 266.58328247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03235439 266.58328247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03235440 266.58328247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03235441 266.58328247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03235442 266.58331299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03235443 266.58331299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03235444 266.58334351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03235445 266.58334351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03235446 266.58337402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03235447 266.58337402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03235448 266.58340454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03235449 266.58340454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03235450 266.58343506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03235451 266.58343506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03235452 266.58343506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03235453 266.58343506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03235454 266.58346558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03235455 266.58346558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03235456 266.58349609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03235457 266.58349609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03235458 266.58352661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03235459 266.58352661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03235460 266.58355713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03235461 266.58355713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03235462 266.58358765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03235463 266.58361816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03235464 266.58361816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03235465 266.58361816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03235466 266.58364868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03235467 266.58364868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03235468 266.58367920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03235469 266.58367920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03235470 266.58370972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03235471 266.58370972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03235472 266.58374023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03235473 266.58374023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03235474 266.58377075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03235475 266.58377075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03235476 266.58377075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03235477 266.58377075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03235478 266.58380127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03235479 266.58380127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03235480 266.58383179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03235481 266.58383179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03235482 266.58386230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03235483 266.58386230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03235484 266.58389282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03235485 266.58389282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03235486 266.58392334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03235487 266.58392334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03235488 266.58392334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03235489 266.58392334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03235490 266.58395386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03235491 266.58395386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03235492 266.58398438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03235493 266.58398438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03235494 266.58401489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03235495 266.58401489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03235496 266.58404541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03235497 266.58404541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03235498 266.58407593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03235499 266.58407593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03235500 266.58410645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03235501 266.58410645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03235502 266.58413696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03235503 266.58413696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03235504 266.58416748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03235505 266.58416748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03235506 266.58419800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03235507 266.58419800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03235508 266.58422852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03235509 266.58422852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03235510 266.58422852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03235511 266.58422852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03235512 266.58425903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03235513 266.58425903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03235514 266.58428955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03235515 266.58428955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03235516 266.58432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03235517 266.58432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03235518 266.58435059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03235519 266.58435059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03235520 266.58438110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03235521 266.58441162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03235522 266.58441162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03235523 266.58441162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03235524 266.58444214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03235525 266.58444214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03235526 266.58447266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03235527 266.58447266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03235528 266.58450317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03235529 266.58450317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03235530 266.58453369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03235531 266.58453369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03235532 266.58456421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03235533 266.58456421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03235534 266.58456421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03235535 266.58456421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03235536 266.58459473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03235537 266.58459473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03235538 266.58462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03235539 266.58462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03235540 266.58465576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03235541 266.58465576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03235542 266.58468628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03235543 266.58468628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03235544 266.58471680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03235545 266.58471680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03235546 266.58471680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03235547 266.58471680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03235548 266.58474731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03235549 266.58474731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03235550 266.58483887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03235551 266.58483887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03235552 266.58486938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03235553 266.58486938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03235554 266.58486938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03235555 266.58489990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03235556 266.58493042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03235557 266.58493042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03235558 266.58496094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03235559 266.58496094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03235560 266.58499146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03235561 266.58499146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03235562 266.58502197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03235563 266.58502197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03235564 266.58502197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03235565 266.58502197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03235566 266.58505249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03235567 266.58505249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03235568 266.58508301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03235569 266.58508301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03235570 266.58511353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03235571 266.58511353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03235572 266.58514404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03235573 266.58514404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03235574 266.58517456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03235575 266.58520508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03235576 266.58520508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03235577 266.58520508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03235578 266.58523560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03235579 266.58523560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03235580 266.58526611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03235581 266.58526611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03235582 266.58529663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03235583 266.58529663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03235584 266.58532715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03235585 266.58532715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03235586 266.58535767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03235587 266.58535767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03235588 266.58535767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03235589 266.58535767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03235590 266.58538818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03235591 266.58541870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03235592 266.58544922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03235593 266.58544922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03235594 266.58547974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03235595 266.58547974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03235596 266.58551025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03235597 266.58551025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03235598 266.58551025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03235599 266.58551025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03235600 266.58554077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03235601 266.58554077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03235602 266.58557129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03235603 266.58557129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03235604 266.58560181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03235605 266.58560181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03235606 266.58563232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03235607 266.58563232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03235608 266.58566284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03235609 266.58566284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03235610 266.58566284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03235611 266.58569336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03235612 266.58572388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03235613 266.58572388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03235614 266.58575439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03235615 266.58575439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03235616 266.58578491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03235617 266.58578491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03235618 266.58581543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03235619 266.58581543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03235620 266.58581543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03235621 266.58581543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03235622 266.58584595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03235623 266.58584595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03235624 266.58587646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03235625 266.58587646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03235626 266.58590698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03235627 266.58590698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03235628 266.58593750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03235629 266.58596802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03235630 266.58596802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03235631 266.58599854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03235632 266.58599854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03235633 266.58599854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03235634 266.58602905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03235635 266.58602905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03235636 266.58605957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03235637 266.58605957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03235638 266.58609009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03235639 266.58609009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03235640 266.58612061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03235641 266.58612061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03235642 266.58615112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03235643 266.58615112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03235644 266.58615112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03235645 266.58615112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03235646 266.58618164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03235647 266.58618164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03235648 266.58621216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03235649 266.58621216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03235650 266.58624268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03235651 266.58624268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03235652 266.58627319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03235653 266.58627319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03235654 266.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03235655 266.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03235656 266.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03235657 266.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03235658 266.58633423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03235659 266.58633423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03235660 266.58636475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03235661 266.58636475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03235662 266.58639526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03235663 266.58639526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03235664 266.58642578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03235665 266.58642578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03235666 266.58645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03235667 266.58645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03235668 266.58645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03235669 266.58645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03235670 266.58648682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03235671 266.58651733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03235672 266.58651733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03235673 266.58654785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03235674 266.58657837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03235675 266.58657837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03235676 266.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03235677 266.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03235678 266.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03235679 266.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03235680 266.58663940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03235681 266.58663940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03235682 266.58666992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03235683 266.58666992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03235684 266.58670044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03235685 266.58670044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03235686 266.58673096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03235687 266.58673096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03235688 266.58676147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03235689 266.58676147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03235690 266.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03235691 266.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03235692 266.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03235693 266.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03235694 266.58682251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03235695 266.58682251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03235696 266.58685303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03235697 266.58685303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03235698 266.58688354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03235699 266.58688354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03235700 266.58691406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03235701 266.58691406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03235702 266.58694458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03235703 266.58694458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03235704 266.58694458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03235705 266.58694458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03235706 266.58697510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03235707 266.58697510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03235708 266.58700562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03235709 266.58700562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03235710 266.58703613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03235711 266.58706665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03235712 266.58706665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03235713 266.58709717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03235714 266.58709717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03235715 266.58709717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03235716 266.58712769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03235717 266.58712769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03235718 266.58715820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03235719 266.58715820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03235720 266.58718872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03235721 266.58718872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03235722 266.58721924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03235723 266.58721924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03235724 266.58724976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03235725 266.58724976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03235726 266.58724976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03235727 266.58724976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03235728 266.58728027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03235729 266.58728027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03235730 266.58731079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03235731 266.58731079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03235732 266.58734131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03235733 266.58734131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03235734 266.58737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03235735 266.58737183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03235736 266.58740234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03235737 266.58740234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03235738 266.58740234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03235739 266.58743286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03235740 266.58746338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03235741 266.58746338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03235742 266.58749390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03235743 266.58749390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03235744 266.58752441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03235745 266.58752441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03235746 266.58755493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03235747 266.58755493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03235748 266.58758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03235749 266.58758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03235750 266.58758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03235751 266.58758545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03235752 266.58761597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03235753 266.58761597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03235754 266.58764648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03235755 266.58764648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03235756 266.58767700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03235757 266.58767700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03235758 266.58770752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03235759 266.58770752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03235760 266.58773804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03235761 266.58773804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03235762 266.58776855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03235763 266.58776855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03235764 266.58779907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03235765 266.58779907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03235766 266.58782959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03235767 266.58782959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03235768 266.58786011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03235769 266.58786011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03235770 266.58789063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03235771 266.58789063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03235772 266.58789063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03235773 266.58789063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03235774 266.58792114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03235775 266.58792114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03235776 266.58795166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03235777 266.58795166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03235778 266.58798218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03235779 266.58798218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03235780 266.58801270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03235781 266.58804321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03235782 266.58804321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03235783 266.58804321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03235784 266.58807373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03235785 266.58807373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03235786 266.58810425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03235787 266.58810425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03235788 266.58813477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03235789 266.58813477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03235790 266.58816528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03235791 266.58816528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03235792 266.58819580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03235793 266.58819580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03235794 266.58822632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03235795 266.58822632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03235796 266.58822632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03235797 266.58822632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03235798 266.58825684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03235799 266.58825684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03235800 266.58828735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03235801 266.58828735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03235802 266.58831787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03235803 266.58831787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03235804 266.58834839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03235805 266.58834839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03235806 266.58837891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03235807 266.58837891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03235808 266.58837891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03235809 266.58837891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03235810 266.58840942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03235811 266.58840942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03235812 266.58847046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03235813 266.58847046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03235814 266.58850098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03235815 266.58850098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03235816 266.58853149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03235817 266.58853149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03235818 266.58853149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03235819 266.58853149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03235820 266.58856201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03235821 266.58859253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03235822 266.58862305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03235823 266.58862305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03235824 266.58865356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03235825 266.58865356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03235826 266.58868408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03235827 266.58868408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03235828 266.58868408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03235829 266.58868408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03235830 266.58871460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03235831 266.58871460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03235832 266.58874512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03235833 266.58874512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03235834 266.58877563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03235835 266.58877563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03235836 266.58880615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03235837 266.58880615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03235838 266.58883667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03235839 266.58883667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03235840 266.58883667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03235841 266.58883667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03235842 266.58886719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03235843 266.58886719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03235844 266.58889771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03235845 266.58889771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03235846 266.58892822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03235847 266.58892822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03235848 266.58895874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03235849 266.58898926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03235850 266.58898926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03235851 266.58901978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03235852 266.58901978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03235853 266.58901978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03235854 266.58905029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03235855 266.58905029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03235856 266.58908081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03235857 266.58908081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03235858 266.58911133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03235859 266.58911133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03235860 266.58914185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03235861 266.58914185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03235862 266.58917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03235863 266.58917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03235864 266.58917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03235865 266.58917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03235866 266.58920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03235867 266.58920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03235868 266.58923340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03235869 266.58923340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03235870 266.58926392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03235871 266.58926392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03235872 266.58929443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03235873 266.58929443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03235874 266.58932495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03235875 266.58932495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03235876 266.58935547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03235877 266.58935547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03235878 266.58938599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03235879 266.58938599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03235880 266.58941650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03235881 266.58941650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03235882 266.58944702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03235883 266.58944702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03235884 266.58947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03235885 266.58947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03235886 266.58947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03235887 266.58947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03235888 266.58950806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03235889 266.58950806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03235890 266.58953857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03235891 266.58953857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03235892 266.58956909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03235893 266.58956909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03235894 266.58959961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03235895 266.58959961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03235896 266.58963013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03235897 266.58963013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03235898 266.58963013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03235899 266.58963013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03235900 266.58966064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03235901 266.58966064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03235902 266.58969116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03235903 266.58969116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03235904 266.58972168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03235905 266.58972168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03235906 266.58975220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03235907 266.58975220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03235908 266.58978271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03235909 266.58978271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03235910 266.58981323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03235911 266.58981323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03235912 266.58984375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03235913 266.58984375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03235914 266.58987427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03235915 266.58987427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03235916 266.58990479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03235917 266.58990479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03235918 266.58993530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03235919 266.58993530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03235920 266.58996582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03235921 266.58996582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03235922 266.58996582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03235923 266.58996582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03235924 266.58999634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03235925 266.58999634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03235926 266.59002686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03235927 266.59002686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03235928 266.59005737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03235929 266.59005737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03235930 266.59008789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03235931 266.59008789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03235932 266.59011841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03235933 266.59011841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03235934 266.59011841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03235935 266.59014893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03235936 266.59017944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03235937 266.59017944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03235938 266.59020996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03235939 266.59020996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03235940 266.59024048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03235941 266.59024048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03235942 266.59027100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03235943 266.59027100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03235944 266.59027100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03235945 266.59027100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03235946 266.59030151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03235947 266.59030151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03235948 266.59033203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03235949 266.59033203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03235950 266.59036255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03235951 266.59036255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03235952 266.59039307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03235953 266.59039307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03235954 266.59042358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03235955 266.59042358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03235956 266.59042358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03235957 266.59042358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03235958 266.59045410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03235959 266.59045410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03235960 266.59048462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03235961 266.59048462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03235962 266.59051514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03235963 266.59051514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03235964 266.59054565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03235965 266.59054565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03235966 266.59057617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03235967 266.59057617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03235968 266.59060669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03235969 266.59060669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03235970 266.59060669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03235971 266.59060669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03235972 266.59063721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03235973 266.59063721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03235974 266.59066772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03235975 266.59069824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03235976 266.59069824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03235977 266.59072876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03235978 266.59075928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03235979 266.59075928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03235980 266.59075928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03235981 266.59075928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03235982 266.59078979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03235983 266.59078979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03235984 266.59082031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03235985 266.59082031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03235986 266.59085083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03235987 266.59085083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03235988 266.59088135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03235989 266.59088135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03235990 266.59091187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03235991 266.59091187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03235992 266.59091187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03235993 266.59091187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03235994 266.59094238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03235995 266.59094238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03235996 266.59097290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03235997 266.59097290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03235998 266.59100342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03235999 266.59100342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03236000 266.59103394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03236001 266.59103394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03236002 266.59106445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03236003 266.59106445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03236004 266.59106445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03236005 266.59106445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03236006 266.59109497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03236007 266.59109497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03236008 266.59112549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03236009 266.59112549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03236010 266.59115601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03236011 266.59115601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03236012 266.59118652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03236013 266.59118652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03236014 266.59121704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03236015 266.59121704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03236016 266.59121704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03236017 266.59121704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03236018 266.59124756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03236019 266.59127808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03236020 266.59127808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03236021 266.59130859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03236022 266.59133911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03236023 266.59133911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03236024 266.59136963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03236025 266.59136963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03236026 266.59140015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03236027 266.59140015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03236028 266.59140015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03236029 266.59140015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03236030 266.59143066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03236031 266.59143066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03236032 266.59146118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03236033 266.59146118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03236034 266.59149170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03236035 266.59149170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03236036 266.59152222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03236037 266.59152222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03236038 266.59155273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03236039 266.59155273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03236040 266.59155273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03236041 266.59155273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03236042 266.59158325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03236043 266.59158325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03236044 266.59161377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03236045 266.59161377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03236046 266.59164429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03236047 266.59164429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03236048 266.59167480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03236049 266.59167480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03236050 266.59170532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03236051 266.59170532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03236052 266.59170532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03236053 266.59173584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03236054 266.59176636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03236055 266.59176636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03236056 266.59179688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03236057 266.59179688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03236058 266.59182739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03236059 266.59182739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03236060 266.59185791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03236061 266.59185791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03236062 266.59185791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03236063 266.59185791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03236064 266.59188843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03236065 266.59188843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03236066 266.59191895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03236067 266.59191895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03236068 266.59194946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03236069 266.59194946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03236070 266.59197998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03236071 266.59197998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03236072 266.59201050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03236073 266.59201050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03236074 266.59201050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03236075 266.59204102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03236076 266.59207153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03236077 266.59207153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03236078 266.59210205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03236079 266.59210205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03236080 266.59213257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03236081 266.59213257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03236082 266.59216309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03236083 266.59216309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03236084 266.59219360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03236085 266.59219360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03236086 266.59219360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03236087 266.59219360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03236088 266.59222412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03236089 266.59222412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03236090 266.59225464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03236091 266.59225464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03236092 266.59228516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03236093 266.59228516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03236094 266.59231567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03236095 266.59234619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03236096 266.59234619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03236097 266.59234619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03236098 266.59237671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03236099 266.59237671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03236100 266.59240723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03236101 266.59240723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03236102 266.59243774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03236103 266.59243774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03236104 266.59246826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03236105 266.59246826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03236106 266.59249878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03236107 266.59249878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03236108 266.59249878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03236109 266.59249878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03236110 266.59252930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03236111 266.59252930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03236112 266.59255981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03236113 266.59255981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03236114 266.59259033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03236115 266.59262085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03236116 266.59265137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03236117 266.59265137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03236118 266.59265137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03236119 266.59265137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03236120 266.59268188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03236121 266.59268188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03236122 266.59271240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03236123 266.59271240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03236124 266.59274292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03236125 266.59274292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03236126 266.59277344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03236127 266.59277344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03236128 266.59280396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03236129 266.59280396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03236130 266.59280396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03236131 266.59280396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03236132 266.59283447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03236133 266.59283447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03236134 266.59286499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03236135 266.59286499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03236136 266.59289551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03236137 266.59292603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03236138 266.59295654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03236139 266.59295654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03236140 266.59298706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03236141 266.59298706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03236142 266.59298706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03236143 266.59298706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03236144 266.59301758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03236145 266.59301758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03236146 266.59304810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03236147 266.59304810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03236148 266.59307861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03236149 266.59307861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03236150 266.59310913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03236151 266.59310913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03236152 266.59313965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03236153 266.59313965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03236154 266.59317017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03236155 266.59317017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03236156 266.59320068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03236157 266.59320068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03236158 266.59323120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03236159 266.59323120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03236160 266.59326172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03236161 266.59326172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03236162 266.59329224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03236163 266.59329224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03236164 266.59329224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03236165 266.59329224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03236166 266.59332275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03236167 266.59332275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03236168 266.59335327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03236169 266.59335327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03236170 266.59338379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03236171 266.59338379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03236172 266.59341431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03236173 266.59344482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03236174 266.59344482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03236175 266.59344482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03236176 266.59347534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03236177 266.59347534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03236178 266.59350586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03236179 266.59350586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03236180 266.59353638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03236181 266.59353638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03236182 266.59356689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03236183 266.59356689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03236184 266.59359741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03236185 266.59359741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03236186 266.59362793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03236187 266.59362793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03236188 266.59362793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03236189 266.59362793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03236190 266.59368896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03236191 266.59368896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03236192 266.59371948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03236193 266.59371948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03236194 266.59375000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03236195 266.59375000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03236196 266.59378052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03236197 266.59378052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03236198 266.59378052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03236199 266.59378052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03236200 266.59381104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03236201 266.59381104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03236202 266.59384155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03236203 266.59384155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03236204 266.59387207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03236205 266.59387207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03236206 266.59390259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03236207 266.59390259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03236208 266.59393311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03236209 266.59393311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03236210 266.59393311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03236211 266.59393311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03236212 266.59396362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03236213 266.59396362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03236214 266.59399414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03236215 266.59399414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03236216 266.59402466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03236217 266.59402466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03236218 266.59405518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03236219 266.59405518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03236220 266.59408569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03236221 266.59408569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03236222 266.59408569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03236223 266.59408569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03236224 266.59411621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03236225 266.59411621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03236226 266.59414673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03236227 266.59414673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03236228 266.59420776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03236229 266.59420776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03236230 266.59423828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03236231 266.59423828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03236232 266.59423828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03236233 266.59423828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03236234 266.59426880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03236235 266.59426880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03236236 266.59429932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03236237 266.59429932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03236238 266.59432983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03236239 266.59432983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03236240 266.59436035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03236241 266.59436035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03236242 266.59439087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03236243 266.59439087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03236244 266.59442139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03236245 266.59442139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03236246 266.59442139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03236247 266.59442139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03236248 266.59445190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03236249 266.59445190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03236250 266.59448242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03236251 266.59448242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03236252 266.59451294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03236253 266.59451294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03236254 266.59454346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03236255 266.59457397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03236256 266.59457397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03236257 266.59457397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03236258 266.59460449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03236259 266.59460449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03236260 266.59463501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03236261 266.59463501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03236262 266.59466553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03236263 266.59466553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03236264 266.59469604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03236265 266.59469604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03236266 266.59472656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03236267 266.59472656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03236268 266.59472656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03236269 266.59472656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03236270 266.59475708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03236271 266.59475708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03236272 266.59478760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03236273 266.59478760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03236274 266.59481812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03236275 266.59481812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03236276 266.59484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03236277 266.59484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03236278 266.59487915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03236279 266.59487915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03236280 266.59487915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03236281 266.59487915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03236282 266.59490967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03236283 266.59490967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03236284 266.59494019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03236285 266.59494019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03236286 266.59497070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03236287 266.59497070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03236288 266.59500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03236289 266.59500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03236290 266.59503174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03236291 266.59503174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03236292 266.59503174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03236293 266.59503174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03236294 266.59506226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03236295 266.59506226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03236296 266.59509277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03236297 266.59512329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03236298 266.59515381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03236299 266.59515381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03236300 266.59518433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03236301 266.59518433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03236302 266.59521484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03236303 266.59521484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03236304 266.59521484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03236305 266.59521484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03236306 266.59524536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03236307 266.59524536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03236308 266.59527588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03236309 266.59527588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03236310 266.59530640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03236311 266.59530640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03236312 266.59533691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03236313 266.59533691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03236314 266.59536743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03236315 266.59536743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03236316 266.59536743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03236317 266.59536743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03236318 266.59539795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03236319 266.59539795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03236320 266.59542847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03236321 266.59542847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03236322 266.59545898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03236323 266.59545898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03236324 266.59548950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03236325 266.59548950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03236326 266.59552002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03236327 266.59552002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03236328 266.59555054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03236329 266.59555054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03236330 266.59558105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03236331 266.59558105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03236332 266.59561157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03236333 266.59561157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03236334 266.59564209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03236335 266.59564209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03236336 266.59567261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03236337 266.59567261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03236338 266.59567261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03236339 266.59567261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03236340 266.59570313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03236341 266.59570313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03236342 266.59573364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03236343 266.59573364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03236344 266.59576416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03236345 266.59576416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03236346 266.59579468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03236347 266.59579468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03236348 266.59582520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03236349 266.59582520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03236350 266.59582520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03236351 266.59582520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03236352 266.59594727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03236353 266.59594727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03236354 266.59597778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03236355 266.59597778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03236356 266.59600830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03236357 266.59600830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03236358 266.59600830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03236359 266.59600830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03236360 266.59603882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03236361 266.59603882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03236362 266.59606934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03236363 266.59606934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03236364 266.59609985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03236365 266.59609985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03236366 266.59613037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03236367 266.59616089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03236368 266.59616089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03236369 266.59616089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03236370 266.59619141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03236371 266.59619141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03236372 266.59622192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03236373 266.59622192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03236374 266.59625244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03236375 266.59625244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03236376 266.59628296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03236377 266.59628296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03236378 266.59634399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03236379 266.59634399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03236380 266.59637451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03236381 266.59637451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03236382 266.59640503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03236383 266.59640503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03236384 266.59643555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03236385 266.59643555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03236386 266.59646606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03236387 266.59646606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03236388 266.59646606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03236389 266.59649658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03236390 266.59649658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03236391 266.59652710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03236392 266.59655762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03236393 266.59655762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03236394 266.59658813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03236395 266.59658813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03236396 266.59661865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03236397 266.59661865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03236398 266.59661865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03236399 266.59661865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03236400 266.59677124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03236401 266.59677124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03236402 266.59680176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03236403 266.59680176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03236404 266.59680176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03236405 266.59680176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03236406 266.59683228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03236407 266.59683228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03236408 266.59686279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03236409 266.59686279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03236410 266.59689331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03236411 266.59689331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03236412 266.59692383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03236413 266.59692383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03236414 266.59695435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03236415 266.59695435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03236416 266.59695435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03236417 266.59695435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03236418 266.59698486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03236419 266.59698486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03236420 266.59701538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03236421 266.59704590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03236422 266.59704590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03236423 266.59707642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03236424 266.59710693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03236425 266.59710693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03236426 266.59710693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03236427 266.59710693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03236428 266.59713745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03236429 266.59713745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03236430 266.59716797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03236431 266.59716797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03236432 266.59719849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03236433 266.59719849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03236434 266.59722900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03236435 266.59722900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03236436 266.59725952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03236437 266.59725952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03236438 266.59725952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03236439 266.59725952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03236440 266.59729004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03236441 266.59729004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03236442 266.59732056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03236443 266.59732056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03236444 266.59735107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03236445 266.59735107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03236446 266.59738159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03236447 266.59738159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03236448 266.59741211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03236449 266.59741211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03236450 266.59744263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03236451 266.59744263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03236452 266.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03236453 266.59747314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03236454 266.59750366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03236455 266.59750366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03236456 266.59753418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03236457 266.59753418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03236458 266.59756470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03236459 266.59756470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03236460 266.59759521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03236461 266.59759521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03236462 266.59759521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03236463 266.59759521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03236464 266.59762573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03236465 266.59762573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03236466 266.59765625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03236467 266.59765625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03236468 266.59768677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03236469 266.59768677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03236470 266.59771729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03236471 266.59774780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03236472 266.59774780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03236473 266.59774780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03236474 266.59777832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03236475 266.59777832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03236476 266.59780884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03236477 266.59780884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03236478 266.59783936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03236479 266.59783936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03236480 266.59786987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03236481 266.59786987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03236482 266.59790039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03236483 266.59790039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03236484 266.59790039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03236485 266.59790039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03236486 266.59793091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03236487 266.59793091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03236488 266.59796143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03236489 266.59796143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03236490 266.59799194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03236491 266.59802246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03236492 266.59805298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03236493 266.59805298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03236494 266.59805298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03236495 266.59805298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03236496 266.59808350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03236497 266.59808350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03236498 266.59811401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03236499 266.59811401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03236500 266.59814453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03236501 266.59814453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03236502 266.59817505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03236503 266.59817505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03236504 266.59820557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03236505 266.59820557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03236506 266.59820557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03236507 266.59820557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03236508 266.59823608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03236509 266.59823608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03236510 266.59826660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03236511 266.59826660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03236512 266.59829712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03236513 266.59832764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03236514 266.59835815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03236515 266.59835815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03236516 266.59838867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03236517 266.59838867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03236518 266.59838867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03236519 266.59838867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03236520 266.59841919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03236521 266.59841919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03236522 266.59844971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03236523 266.59844971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03236524 266.59848022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03236525 266.59848022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03236526 266.59851074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03236527 266.59851074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03236528 266.59854126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03236529 266.59854126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03236530 266.59854126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03236531 266.59854126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03236532 266.59857178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03236533 266.59860229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03236534 266.59863281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03236535 266.59863281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03236536 266.59866333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03236537 266.59866333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03236538 266.59869385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03236539 266.59869385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03236540 266.59869385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03236541 266.59869385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03236542 266.59872437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03236543 266.59872437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03236544 266.59875488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03236545 266.59875488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03236546 266.59878540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03236547 266.59878540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03236548 266.59881592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03236549 266.59881592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03236550 266.59884644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03236551 266.59884644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03236552 266.59884644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03236553 266.59884644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03236554 266.59887695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03236555 266.59890747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03236556 266.59893799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03236557 266.59893799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03236558 266.59896851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03236559 266.59896851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03236560 266.59899902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03236561 266.59899902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03236562 266.59902954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03236563 266.59902954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03236564 266.59902954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03236565 266.59902954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03236566 266.59906006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03236567 266.59906006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03236568 266.59909058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03236569 266.59909058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03236570 266.59912109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03236571 266.59912109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03236572 266.59915161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03236573 266.59915161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03236574 266.59918213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03236575 266.59918213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03236576 266.59921265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03236577 266.59921265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03236578 266.59924316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03236579 266.59924316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03236580 266.59927368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03236581 266.59927368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03236582 266.59930420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03236583 266.59930420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03236584 266.59933472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03236585 266.59933472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03236586 266.59933472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03236587 266.59933472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03236588 266.59936523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03236589 266.59936523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03236590 266.59939575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03236591 266.59939575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03236592 266.59942627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03236593 266.59942627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03236594 266.59945679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03236595 266.59945679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03236596 266.59948730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03236597 266.59948730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03236598 266.59951782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03236599 266.59951782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03236600 266.59954834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03236601 266.59954834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03236602 266.59957886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03236603 266.59957886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03236604 266.59960938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03236605 266.59960938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03236606 266.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03236607 266.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03236608 266.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03236609 266.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03236610 266.59967041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03236611 266.59967041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03236612 266.59970093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03236613 266.59970093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03236614 266.59973145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03236615 266.59973145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03236616 266.59976196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03236617 266.59979248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03236618 266.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03236619 266.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03236620 266.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03236621 266.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03236622 266.59985352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03236623 266.59985352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03236624 266.59988403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03236625 266.59988403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03236626 266.59991455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03236627 266.59991455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03236628 266.59994507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03236629 266.59994507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03236630 266.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03236631 266.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03236632 266.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03236633 266.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03236634 266.60000610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03236635 266.60000610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03236636 266.60003662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03236637 266.60003662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03236638 266.60006714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03236639 266.60006714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03236640 266.60012817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03236641 266.60012817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03236642 266.60015869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03236643 266.60015869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03236644 266.60018921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03236645 266.60018921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03236646 266.60021973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03236647 266.60021973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03236648 266.60025024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03236649 266.60025024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03236650 266.60028076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03236651 266.60028076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03236652 266.60028076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03236653 266.60028076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03236654 266.60031128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03236655 266.60031128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03236656 266.60034180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03236657 266.60034180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03236658 266.60037231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03236659 266.60037231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03236660 266.60040283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03236661 266.60040283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03236662 266.60043335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03236663 266.60043335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03236664 266.60043335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03236665 266.60043335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03236666 266.60046387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03236667 266.60046387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03236668 266.60049438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03236669 266.60049438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03236670 266.60052490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03236671 266.60052490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03236672 266.60055542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03236673 266.60055542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03236674 266.60058594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03236675 266.60061646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03236676 266.60061646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03236677 266.60061646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03236678 266.60064697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03236679 266.60064697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03236680 266.60067749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03236681 266.60067749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03236682 266.60070801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03236683 266.60070801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03236684 266.60073853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03236685 266.60073853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03236686 266.60076904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03236687 266.60076904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03236688 266.60076904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03236689 266.60076904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03236690 266.60079956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03236691 266.60079956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03236692 266.60083008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03236693 266.60083008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03236694 266.60086060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03236695 266.60086060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03236696 266.60089111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03236697 266.60089111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03236698 266.60092163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03236699 266.60092163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03236700 266.60092163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03236701 266.60092163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03236702 266.60095215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03236703 266.60095215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03236704 266.60098267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03236705 266.60098267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03236706 266.60101318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03236707 266.60101318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03236708 266.60104370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03236709 266.60104370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03236710 266.60107422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03236711 266.60107422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03236712 266.60107422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03236713 266.60110474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03236714 266.60110474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03236715 266.60113525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03236716 266.60116577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03236717 266.60116577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03236718 266.60119629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03236719 266.60119629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03236720 266.60122681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03236721 266.60122681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03236722 266.60122681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03236723 266.60122681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03236724 266.60125732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03236725 266.60125732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03236726 266.60128784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03236727 266.60128784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03236728 266.60131836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03236729 266.60131836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03236730 266.60134888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03236731 266.60134888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03236732 266.60137939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03236733 266.60137939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03236734 266.60140991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03236735 266.60140991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03236736 266.60140991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03236737 266.60140991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03236738 266.60144043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03236739 266.60144043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03236740 266.60147095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03236741 266.60147095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03236742 266.60150146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03236743 266.60150146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03236744 266.60153198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03236745 266.60153198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03236746 266.60156250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03236747 266.60156250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03236748 266.60156250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03236749 266.60156250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03236750 266.60159302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03236751 266.60159302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03236752 266.60162354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03236753 266.60165405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03236754 266.60168457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03236755 266.60168457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03236756 266.60171509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03236757 266.60171509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03236758 266.60171509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03236759 266.60171509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03236760 266.60174561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03236761 266.60174561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03236762 266.60177612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03236763 266.60177612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03236764 266.60180664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03236765 266.60180664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03236766 266.60183716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03236767 266.60183716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03236768 266.60186768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03236769 266.60186768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03236770 266.60186768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03236771 266.60186768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03236772 266.60189819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03236773 266.60189819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03236774 266.60192871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03236775 266.60192871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03236776 266.60195923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03236777 266.60198975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03236778 266.60198975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03236779 266.60202026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03236780 266.60202026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03236781 266.60202026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03236782 266.60205078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03236783 266.60205078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03236784 266.60208130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03236785 266.60208130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03236786 266.60211182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03236787 266.60211182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03236788 266.60214233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03236789 266.60214233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03236790 266.60217285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03236791 266.60217285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03236792 266.60220337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03236793 266.60220337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03236794 266.60220337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03236795 266.60220337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03236796 266.60223389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03236797 266.60223389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03236798 266.60226440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03236799 266.60226440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03236800 266.60229492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03236801 266.60229492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03236802 266.60232544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03236803 266.60232544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03236804 266.60235596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03236805 266.60235596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03236806 266.60235596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03236807 266.60235596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03236808 266.60238647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03236809 266.60238647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03236810 266.60241699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03236811 266.60241699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03236812 266.60244751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03236813 266.60244751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03236814 266.60247803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03236815 266.60247803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03236816 266.60250854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03236817 266.60250854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03236818 266.60250854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03236819 266.60253906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03236820 266.60253906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03236821 266.60256958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03236822 266.60260010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03236823 266.60260010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03236824 266.60263062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03236825 266.60263062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03236826 266.60266113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03236827 266.60266113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03236828 266.60266113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03236829 266.60266113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03236830 266.60269165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03236831 266.60269165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03236832 266.60272217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03236833 266.60272217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03236834 266.60275269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03236835 266.60275269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03236836 266.60278320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03236837 266.60278320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03236838 266.60281372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03236839 266.60281372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03236840 266.60281372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03236841 266.60281372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03236842 266.60284424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03236843 266.60284424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03236844 266.60287476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03236845 266.60287476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03236846 266.60290527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03236847 266.60290527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03236848 266.60293579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03236849 266.60293579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03236850 266.60296631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03236851 266.60296631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03236852 266.60299683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03236853 266.60299683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03236854 266.60302734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03236855 266.60302734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03236856 266.60305786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03236857 266.60305786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03236858 266.60308838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03236859 266.60308838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03236860 266.60311890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03236861 266.60311890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03236862 266.60314941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03236863 266.60314941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03236864 266.60314941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03236865 266.60314941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03236866 266.60317993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03236867 266.60317993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03236868 266.60324097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03236869 266.60324097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03236870 266.60327148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03236871 266.60327148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03236872 266.60330200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03236873 266.60330200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03236874 266.60330200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03236875 266.60333252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03236876 266.60333252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03236877 266.60336304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03236878 266.60339355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03236879 266.60339355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03236880 266.60342407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03236881 266.60342407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03236882 266.60345459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03236883 266.60345459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03236884 266.60345459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03236885 266.60345459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03236886 266.60348511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03236887 266.60348511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03236888 266.60351563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03236889 266.60351563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03236890 266.60354614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03236891 266.60354614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03236892 266.60357666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03236893 266.60357666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03236894 266.60360718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03236895 266.60360718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03236896 266.60360718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03236897 266.60360718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03236898 266.60363770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03236899 266.60363770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03236900 266.60366821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03236901 266.60369873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03236902 266.60372925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03236903 266.60372925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03236904 266.60375977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03236905 266.60375977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03236906 266.60379028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03236907 266.60379028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03236908 266.60379028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03236909 266.60379028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03236910 266.60382080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03236911 266.60382080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03236912 266.60385132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03236913 266.60385132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03236914 266.60388184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03236915 266.60388184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03236916 266.60391235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03236917 266.60391235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03236918 266.60394287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03236919 266.60394287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03236920 266.60394287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03236921 266.60394287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03236922 266.60397339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03236923 266.60397339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03236924 266.60409546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03236925 266.60409546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03236926 266.60409546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03236927 266.60409546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03236928 266.60412598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03236929 266.60412598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03236930 266.60415649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03236931 266.60415649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03236932 266.60418701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03236933 266.60418701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03236934 266.60421753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03236935 266.60421753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03236936 266.60424805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03236937 266.60424805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03236938 266.60424805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03236939 266.60424805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03236940 266.60427856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03236941 266.60427856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03236942 266.60430908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03236943 266.60433960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03236944 266.60437012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03236945 266.60437012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03236946 266.60440063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03236947 266.60440063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03236948 266.60443115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03236949 266.60443115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03236950 266.60443115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03236951 266.60443115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03236952 266.60446167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03236953 266.60446167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03236954 266.60449219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03236955 266.60449219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03236956 266.60452271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03236957 266.60452271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03236958 266.60455322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03236959 266.60455322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03236960 266.60458374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03236961 266.60458374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03236962 266.60458374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03236963 266.60461426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03236964 266.60464478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03236965 266.60464478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03236966 266.60467529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03236967 266.60467529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03236968 266.60470581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03236969 266.60470581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03236970 266.60473633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03236971 266.60473633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03236972 266.60473633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03236973 266.60473633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03236974 266.60476685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03236975 266.60476685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03236976 266.60479736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03236977 266.60479736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03236978 266.60482788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03236979 266.60482788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03236980 266.60485840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03236981 266.60485840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03236982 266.60488892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03236983 266.60488892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03236984 266.60488892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03236985 266.60491943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03236986 266.60491943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03236987 266.60494995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03236988 266.60498047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03236989 266.60498047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03236990 266.60501099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03236991 266.60501099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03236992 266.60504150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03236993 266.60504150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03236994 266.60504150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03236995 266.60504150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03236996 266.60507202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03236997 266.60507202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03236998 266.60510254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03236999 266.60510254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03237000 266.60513306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03237001 266.60513306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03237002 266.60516357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03237003 266.60516357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03237004 266.60519409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03237005 266.60519409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03237006 266.60522461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03237007 266.60522461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03237008 266.60522461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03237009 266.60522461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03237010 266.60525513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03237011 266.60525513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03237012 266.60528564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03237013 266.60528564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03237014 266.60531616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03237015 266.60531616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03237016 266.60534668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03237017 266.60534668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03237018 266.60537720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03237019 266.60537720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03237020 266.60537720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03237021 266.60537720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03237022 266.60540771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03237023 266.60543823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03237024 266.60546875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03237025 266.60546875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03237026 266.60549927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03237027 266.60549927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03237028 266.60552979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03237029 266.60552979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03237030 266.60552979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03237031 266.60552979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03237032 266.60556030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03237033 266.60556030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03237034 266.60559082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03237035 266.60559082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03237036 266.60562134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03237037 266.60562134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03237038 266.60565186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03237039 266.60565186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03237040 266.60568237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03237041 266.60568237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03237042 266.60571289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03237043 266.60571289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03237044 266.60574341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03237045 266.60574341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03237046 266.60577393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03237047 266.60577393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03237048 266.60580444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03237049 266.60580444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03237050 266.60583496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03237051 266.60583496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03237052 266.60583496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03237053 266.60583496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03237054 266.60586548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03237055 266.60586548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03237056 266.60589600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03237057 266.60589600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03237058 266.60592651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03237059 266.60592651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03237060 266.60595703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03237061 266.60598755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03237062 266.60601807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03237063 266.60601807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03237064 266.60601807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03237065 266.60601807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03237066 266.60604858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03237067 266.60604858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03237068 266.60607910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03237069 266.60607910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03237070 266.60610962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03237071 266.60610962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03237072 266.60614014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03237073 266.60614014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03237074 266.60617065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03237075 266.60617065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03237076 266.60617065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03237077 266.60617065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03237078 266.60620117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03237079 266.60620117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03237080 266.60623169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03237081 266.60623169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03237082 266.60629272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03237083 266.60629272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03237084 266.60632324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03237085 266.60632324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03237086 266.60632324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03237087 266.60632324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03237088 266.60635376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03237089 266.60635376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03237090 266.60638428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03237091 266.60638428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03237092 266.60641479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03237093 266.60641479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03237094 266.60644531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03237095 266.60644531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03237096 266.60647583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03237097 266.60647583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03237098 266.60647583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03237099 266.60647583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03237100 266.60650635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03237101 266.60650635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03237102 266.60653687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03237103 266.60653687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03237104 266.60656738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03237105 266.60656738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03237106 266.60659790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03237107 266.60659790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03237108 266.60662842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03237109 266.60662842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03237110 266.60662842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03237111 266.60665894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03237112 266.60668945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03237113 266.60668945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03237114 266.60671997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03237115 266.60671997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03237116 266.60675049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03237117 266.60675049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03237118 266.60678101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03237119 266.60678101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03237120 266.60681152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03237121 266.60681152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03237122 266.60681152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03237123 266.60681152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03237124 266.60684204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03237125 266.60684204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03237126 266.60687256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03237127 266.60687256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03237128 266.60690308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03237129 266.60690308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03237130 266.60693359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03237131 266.60693359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03237132 266.60696411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03237133 266.60696411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03237134 266.60696411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03237135 266.60696411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03237136 266.60699463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03237137 266.60699463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03237138 266.60702515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03237139 266.60702515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03237140 266.60705566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03237141 266.60705566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03237142 266.60708618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03237143 266.60708618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03237144 266.60711670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03237145 266.60711670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03237146 266.60711670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03237147 266.60711670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03237148 266.60714722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03237149 266.60714722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03237150 266.60717773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03237151 266.60720825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03237152 266.60720825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03237153 266.60723877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03237154 266.60726929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03237155 266.60726929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03237156 266.60726929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03237157 266.60726929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03237158 266.60729980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03237159 266.60729980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03237160 266.60733032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03237161 266.60733032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03237162 266.60736084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03237163 266.60736084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03237164 266.60739136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03237165 266.60739136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03237166 266.60742188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03237167 266.60742188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03237168 266.60742188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03237169 266.60742188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03237170 266.60745239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03237171 266.60745239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03237172 266.60748291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03237173 266.60748291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03237174 266.60751343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03237175 266.60754395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03237176 266.60757446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03237177 266.60757446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03237178 266.60760498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03237179 266.60760498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03237180 266.60760498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03237181 266.60760498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03237182 266.60763550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03237183 266.60763550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03237184 266.60766602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03237185 266.60766602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03237186 266.60769653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03237187 266.60769653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03237188 266.60772705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03237189 266.60772705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03237190 266.60775757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03237191 266.60775757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03237192 266.60775757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03237193 266.60775757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03237194 266.60778809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03237195 266.60781860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03237196 266.60784912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03237197 266.60784912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03237198 266.60787964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03237199 266.60787964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03237200 266.60791016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03237201 266.60791016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03237202 266.60791016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03237203 266.60791016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03237204 266.60794067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03237205 266.60794067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03237206 266.60797119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03237207 266.60797119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03237208 266.60800171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03237209 266.60800171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03237210 266.60803223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03237211 266.60803223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03237212 266.60806274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03237213 266.60806274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03237214 266.60809326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03237215 266.60809326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03237216 266.60812378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03237217 266.60812378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03237218 266.60815430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03237219 266.60815430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03237220 266.60818481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03237221 266.60818481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03237222 266.60821533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03237223 266.60821533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03237224 266.60821533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03237225 266.60821533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03237226 266.60824585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03237227 266.60824585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03237228 266.60827637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03237229 266.60827637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03237230 266.60830688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03237231 266.60830688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03237232 266.60833740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03237233 266.60833740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03237234 266.60836792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03237235 266.60836792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03237236 266.60839844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03237237 266.60839844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03237238 266.60839844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03237239 266.60839844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03237240 266.60842896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03237241 266.60842896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03237242 266.60845947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03237243 266.60845947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03237244 266.60848999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03237245 266.60848999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03237246 266.60852051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03237247 266.60852051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03237248 266.60855103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03237249 266.60855103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03237250 266.60858154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03237251 266.60858154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03237252 266.60861206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03237253 266.60861206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03237254 266.60864258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03237255 266.60864258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03237256 266.60867310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03237257 266.60867310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03237258 266.60870361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03237259 266.60870361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03237260 266.60870361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03237261 266.60870361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03237262 266.60873413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03237263 266.60873413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03237264 266.60876465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03237265 266.60876465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03237266 266.60879517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03237267 266.60879517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03237268 266.60882568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03237269 266.60882568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03237270 266.60885620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03237271 266.60885620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03237272 266.60885620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03237273 266.60888672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03237274 266.60891724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03237275 266.60891724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03237276 266.60894775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03237277 266.60894775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03237278 266.60897827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03237279 266.60897827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03237280 266.60900879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03237281 266.60900879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03237282 266.60900879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03237283 266.60900879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03237284 266.60903931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03237285 266.60903931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03237286 266.60906982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03237287 266.60913086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03237288 266.60916138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03237289 266.60916138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03237290 266.60919189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03237291 266.60919189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03237292 266.60922241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03237293 266.60922241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03237294 266.60925293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03237295 266.60925293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03237296 266.60928345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03237297 266.60928345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03237298 266.60931396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03237299 266.60931396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03237300 266.60934448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03237301 266.60934448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03237302 266.60934448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03237303 266.60934448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03237304 266.60937500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03237305 266.60937500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03237306 266.60940552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03237307 266.60940552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03237308 266.60946655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03237309 266.60946655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03237310 266.60949707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03237311 266.60949707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03237312 266.60955811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03237313 266.60955811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03237314 266.60958862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03237315 266.60958862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03237316 266.60961914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03237317 266.60961914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03237318 266.60964966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03237319 266.60964966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03237320 266.60964966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03237321 266.60964966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03237322 266.60968018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03237323 266.60968018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03237324 266.60971069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03237325 266.60971069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03237326 266.60974121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03237327 266.60974121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03237328 266.60977173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03237329 266.60977173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03237330 266.60980225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03237331 266.60980225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03237332 266.60983276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03237333 266.60983276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03237334 266.60983276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03237335 266.60986328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03237336 266.60989380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03237337 266.60989380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03237338 266.60992432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03237339 266.60992432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03237340 266.60998535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03237341 266.60998535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03237342 266.61001587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03237343 266.61001587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03237344 266.61004639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03237345 266.61007690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03237346 266.61007690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03237347 266.61010742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03237348 266.61013794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03237349 266.61013794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03237350 266.61013794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03237351 266.61013794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03237352 266.61016846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03237353 266.61016846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03237354 266.61019897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03237355 266.61019897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03237356 266.61022949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03237357 266.61022949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03237358 266.61026001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03237359 266.61026001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03237360 266.61029053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03237361 266.61029053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03237362 266.61029053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03237363 266.61029053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03237364 266.61032104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03237365 266.61032104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03237366 266.61035156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03237367 266.61035156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03237368 266.61038208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03237369 266.61038208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03237370 266.61041260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03237371 266.61041260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03237372 266.61044312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03237373 266.61044312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03237374 266.61044312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03237375 266.61044312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03237376 266.61047363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03237377 266.61047363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03237378 266.61050415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03237379 266.61050415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03237380 266.61053467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03237381 266.61053467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03237382 266.61056519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03237383 266.61059570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03237384 266.61059570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03237385 266.61062622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03237386 266.61062622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03237387 266.61062622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03237388 266.61065674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03237389 266.61065674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03237390 266.61068726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03237391 266.61068726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03237392 266.61071777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03237393 266.61071777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03237394 266.61074829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03237395 266.61074829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03237396 266.61077881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03237397 266.61077881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03237398 266.61077881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03237399 266.61077881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03237400 266.61080933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03237401 266.61080933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03237402 266.61083984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03237403 266.61083984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03237404 266.61087036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03237405 266.61087036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03237406 266.61090088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03237407 266.61090088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03237408 266.61093140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03237409 266.61093140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03237410 266.61093140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03237411 266.61093140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03237412 266.61096191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03237413 266.61096191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03237414 266.61099243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03237415 266.61099243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03237416 266.61102295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03237417 266.61102295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03237418 266.61105347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03237419 266.61105347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03237420 266.61108398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03237421 266.61108398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03237422 266.61108398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03237423 266.61108398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03237424 266.61111450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03237425 266.61114502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03237426 266.61114502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03237427 266.61117554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03237428 266.61120605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03237429 266.61120605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03237430 266.61123657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03237431 266.61123657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03237432 266.61123657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03237433 266.61123657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03237434 266.61126709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03237435 266.61126709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03237436 266.61129761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03237437 266.61129761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03237438 266.61132813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03237439 266.61132813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03237440 266.61135864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03237441 266.61135864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03237442 266.61138916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03237443 266.61138916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03237444 266.61141968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03237445 266.61141968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03237446 266.61141968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03237447 266.61141968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03237448 266.61145020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03237449 266.61145020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03237450 266.61148071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03237451 266.61148071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03237452 266.61151123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03237453 266.61151123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03237454 266.61154175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03237455 266.61154175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03237456 266.61157227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03237457 266.61157227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03237458 266.61157227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03237459 266.61157227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03237460 266.61160278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03237461 266.61160278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03237462 266.61163330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03237463 266.61163330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03237464 266.61166382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03237465 266.61166382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03237466 266.61172485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03237467 266.61172485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03237468 266.61172485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03237469 266.61172485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03237470 266.61175537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03237471 266.61175537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03237472 266.61178589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03237473 266.61178589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03237474 266.61181641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03237475 266.61181641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03237476 266.61184692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03237477 266.61184692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03237478 266.61187744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03237479 266.61187744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03237480 266.61187744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03237481 266.61187744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03237482 266.61190796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03237483 266.61190796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03237484 266.61193848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03237485 266.61193848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03237486 266.61196899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03237487 266.61196899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03237488 266.61199951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03237489 266.61203003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03237490 266.61203003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03237491 266.61203003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03237492 266.61206055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03237493 266.61206055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03237494 266.61209106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03237495 266.61209106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03237496 266.61212158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03237497 266.61212158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03237498 266.61215210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03237499 266.61215210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03237500 266.61218262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03237501 266.61218262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03237502 266.61221313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03237503 266.61221313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03237504 266.61221313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03237505 266.61221313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03237506 266.61224365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03237507 266.61224365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03237508 266.61227417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03237509 266.61227417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03237510 266.61230469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03237511 266.61230469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03237512 266.61233521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03237513 266.61233521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03237514 266.61236572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03237515 266.61236572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03237516 266.61236572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03237517 266.61236572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03237518 266.61239624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03237519 266.61239624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03237520 266.61242676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03237521 266.61242676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03237522 266.61245728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03237523 266.61245728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03237524 266.61248779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03237525 266.61248779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03237526 266.61251831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03237527 266.61251831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03237528 266.61251831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03237529 266.61251831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03237530 266.61254883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03237531 266.61257935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03237532 266.61257935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03237533 266.61260986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03237534 266.61264038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03237535 266.61264038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03237536 266.61267090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03237537 266.61267090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03237538 266.61267090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03237539 266.61267090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03237540 266.61270142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03237541 266.61270142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03237542 266.61273193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03237543 266.61273193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03237544 266.61276245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03237545 266.61276245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03237546 266.61279297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03237547 266.61279297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03237548 266.61282349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03237549 266.61282349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03237550 266.61282349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03237551 266.61285400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03237552 266.61288452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03237553 266.61288452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03237554 266.61291504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03237555 266.61291504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03237556 266.61294556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03237557 266.61294556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03237558 266.61297607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03237559 266.61297607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03237560 266.61300659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03237561 266.61300659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03237562 266.61300659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03237563 266.61300659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03237564 266.61303711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03237565 266.61303711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03237566 266.61306763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03237567 266.61306763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03237568 266.61309814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03237569 266.61309814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03237570 266.61312866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03237571 266.61315918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03237572 266.61315918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03237573 266.61315918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03237574 266.61318970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03237575 266.61318970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03237576 266.61322021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03237577 266.61322021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03237578 266.61325073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03237579 266.61325073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03237580 266.61328125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03237581 266.61328125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03237582 266.61331177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03237583 266.61331177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03237584 266.61331177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03237585 266.61331177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03237586 266.61334229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03237587 266.61334229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03237588 266.61337280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03237589 266.61337280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03237590 266.61340332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03237591 266.61340332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03237592 266.61343384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03237593 266.61343384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03237594 266.61346436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03237595 266.61346436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03237596 266.61346436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03237597 266.61346436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03237598 266.61349487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03237599 266.61349487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03237600 266.61352539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03237601 266.61352539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03237602 266.61355591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03237603 266.61355591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03237604 266.61358643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03237605 266.61361694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03237606 266.61361694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03237607 266.61361694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03237608 266.61364746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03237609 266.61364746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03237610 266.61367798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03237611 266.61367798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03237612 266.61370850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03237613 266.61370850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03237614 266.61373901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03237615 266.61373901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03237616 266.61376953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03237617 266.61376953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03237618 266.61380005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03237619 266.61380005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03237620 266.61380005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03237621 266.61380005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03237622 266.61383057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03237623 266.61383057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03237624 266.61386108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03237625 266.61386108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03237626 266.61389160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03237627 266.61389160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03237628 266.61392212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03237629 266.61392212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03237630 266.61395264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03237631 266.61395264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03237632 266.61395264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03237633 266.61395264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03237634 266.61398315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03237635 266.61401367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03237636 266.61401367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03237637 266.61404419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03237638 266.61407471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03237639 266.61407471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03237640 266.61410522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03237641 266.61410522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03237642 266.61410522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03237643 266.61410522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03237644 266.61413574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03237645 266.61413574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03237646 266.61416626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03237647 266.61416626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03237648 266.61419678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03237649 266.61419678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03237650 266.61422729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03237651 266.61422729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03237652 266.61425781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03237653 266.61425781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03237654 266.61425781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03237655 266.61425781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03237656 266.61428833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03237657 266.61428833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03237658 266.61431885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03237659 266.61434937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03237660 266.61437988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03237661 266.61437988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03237662 266.61441040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03237663 266.61441040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03237664 266.61441040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03237665 266.61441040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03237666 266.61444092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03237667 266.61444092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03237668 266.61447144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03237669 266.61447144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03237670 266.61450195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03237671 266.61450195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03237672 266.61453247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03237673 266.61453247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03237674 266.61456299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03237675 266.61456299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03237676 266.61459351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03237677 266.61459351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03237678 266.61459351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03237679 266.61459351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03237680 266.61462402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03237681 266.61462402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03237682 266.61465454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03237683 266.61465454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03237684 266.61468506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03237685 266.61468506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03237686 266.61471558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03237687 266.61471558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03237688 266.61474609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03237689 266.61474609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03237690 266.61474609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03237691 266.61474609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03237692 266.61477661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03237693 266.61477661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03237694 266.61480713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03237695 266.61480713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03237696 266.61483765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03237697 266.61486816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03237698 266.61486816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03237699 266.61489868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03237700 266.61489868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03237701 266.61489868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03237702 266.61492920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03237703 266.61492920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03237704 266.61495972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03237705 266.61495972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03237706 266.61499023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03237707 266.61499023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03237708 266.61502075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03237709 266.61502075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03237710 266.61505127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03237711 266.61505127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03237712 266.61505127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03237713 266.61505127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03237714 266.61508179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03237715 266.61508179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03237716 266.61511230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03237717 266.61511230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03237718 266.61514282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03237719 266.61514282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03237720 266.61517334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03237721 266.61517334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03237722 266.61520386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03237723 266.61520386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03237724 266.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03237725 266.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03237726 266.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03237727 266.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03237728 266.61526489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03237729 266.61526489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03237730 266.61529541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03237731 266.61529541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03237732 266.61532593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03237733 266.61532593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03237734 266.61535645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03237735 266.61535645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03237736 266.61538696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03237737 266.61538696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03237738 266.61538696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03237739 266.61538696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03237740 266.61544800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03237741 266.61544800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03237742 266.61547852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03237743 266.61547852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03237744 266.61550903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03237745 266.61550903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03237746 266.61553955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03237747 266.61553955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03237748 266.61553955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03237749 266.61553955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03237750 266.61557007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03237751 266.61557007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03237752 266.61560059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03237753 266.61560059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03237754 266.61563110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03237755 266.61563110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03237756 266.61566162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03237757 266.61566162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03237758 266.61569214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03237759 266.61569214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03237760 266.61569214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03237761 266.61569214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03237762 266.61572266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03237763 266.61572266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03237764 266.61575317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03237765 266.61578369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03237766 266.61581421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03237767 266.61581421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03237768 266.61584473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03237769 266.61584473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03237770 266.61584473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03237771 266.61584473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03237772 266.61587524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03237773 266.61587524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03237774 266.61590576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03237775 266.61590576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03237776 266.61593628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03237777 266.61593628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03237778 266.61596680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03237779 266.61596680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03237780 266.61599731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03237781 266.61599731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03237782 266.61602783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03237783 266.61602783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03237784 266.61602783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03237785 266.61602783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03237786 266.61605835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03237787 266.61605835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03237788 266.61608887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03237789 266.61608887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03237790 266.61611938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03237791 266.61611938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03237792 266.61614990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03237793 266.61614990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03237794 266.61618042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03237795 266.61618042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03237796 266.61618042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03237797 266.61618042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03237798 266.61621094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03237799 266.61621094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03237800 266.61624146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03237801 266.61624146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03237802 266.61627197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03237803 266.61627197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03237804 266.61630249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03237805 266.61630249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03237806 266.61633301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03237807 266.61633301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03237808 266.61636353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03237809 266.61636353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03237810 266.61639404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03237811 266.61639404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03237812 266.61642456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03237813 266.61642456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03237814 266.61645508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03237815 266.61645508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03237816 266.61648560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03237817 266.61648560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03237818 266.61648560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03237819 266.61648560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03237820 266.61651611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03237821 266.61651611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03237822 266.61654663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03237823 266.61654663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03237824 266.61657715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03237825 266.61657715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03237826 266.61660767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03237827 266.61660767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03237828 266.61663818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03237829 266.61663818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03237830 266.61663818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03237831 266.61663818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03237832 266.61666870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03237833 266.61666870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03237834 266.61669922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03237835 266.61669922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03237836 266.61672974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03237837 266.61672974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03237838 266.61679077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03237839 266.61679077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03237840 266.61682129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03237841 266.61682129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03237842 266.61682129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03237843 266.61682129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03237844 266.61685181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03237845 266.61685181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03237846 266.61688232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03237847 266.61688232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03237848 266.61694336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03237849 266.61694336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03237850 266.61697388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03237851 266.61697388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03237852 266.61697388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03237853 266.61697388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03237854 266.61700439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03237855 266.61700439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03237856 266.61703491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03237857 266.61703491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03237858 266.61706543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03237859 266.61706543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03237860 266.61709595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03237861 266.61709595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03237862 266.61712646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03237863 266.61712646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03237864 266.61712646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03237865 266.61712646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03237866 266.61715698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03237867 266.61715698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03237868 266.61718750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03237869 266.61718750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03237870 266.61721802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03237871 266.61721802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03237872 266.61724854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03237873 266.61724854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03237874 266.61727905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03237875 266.61727905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03237876 266.61727905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03237877 266.61727905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03237878 266.61734009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03237879 266.61734009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03237880 266.61737061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03237881 266.61737061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03237882 266.61740112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03237883 266.61740112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03237884 266.61743164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03237885 266.61743164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03237886 266.61743164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03237887 266.61743164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03237888 266.61749268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03237889 266.61749268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03237890 266.61752319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03237891 266.61752319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03237892 266.61758423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03237893 266.61758423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03237894 266.61761475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03237895 266.61761475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03237896 266.61764526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03237897 266.61764526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03237898 266.61767578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03237899 266.61767578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03237900 266.61773682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03237901 266.61773682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03237902 266.61776733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03237903 266.61776733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03237904 266.61779785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03237905 266.61779785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03237906 266.61782837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03237907 266.61782837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03237908 266.61788940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03237909 266.61788940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03237910 266.61791992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03237911 266.61791992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03237912 266.61795044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03237913 266.61795044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03237914 266.61798096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03237915 266.61798096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03237916 266.61804199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03237917 266.61804199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03237918 266.61807251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03237919 266.61816406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03237920 266.61822510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03237921 266.61822510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03237922 266.61822510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03237923 266.61822510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03237924 266.61828613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03237925 266.61828613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03237926 266.61831665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03237927 266.61831665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03237928 266.61837769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03237929 266.61837769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03237930 266.61840820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03237931 266.61840820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03237932 266.61843872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03237933 266.61843872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03237934 266.61846924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03237935 266.61846924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03237936 266.61853027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03237937 266.61853027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03237938 266.61856079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03237939 266.61856079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03237940 266.61859131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03237941 266.61859131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03237942 266.61862183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03237943 266.61862183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03237944 266.61868286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03237945 266.61868286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03237946 266.61871338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03237947 266.61871338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03237948 266.61883545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03237949 266.61883545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03237950 266.61886597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03237951 266.61886597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03237952 266.61889648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03237953 266.61889648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03237954 266.61892700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03237955 266.61892700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03237956 266.61895752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03237957 266.61895752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03237958 266.61898804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03237959 266.61898804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03237960 266.61901855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03237961 266.61901855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03237962 266.61901855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03237963 266.61901855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03237964 266.61904907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03237965 266.61904907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03237966 266.61907959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03237967 266.61907959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03237968 266.61911011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03237969 266.61914063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03237970 266.61917114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03237971 266.61917114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03237972 266.61923218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03237973 266.61923218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03237974 266.61926270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03237975 266.61926270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03237976 266.61929321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03237977 266.61929321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03237978 266.61932373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03237979 266.61932373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03237980 266.61935425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03237981 266.61935425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03237982 266.61935425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03237983 266.61935425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03237984 266.61938477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03237985 266.61941528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03237986 266.61944580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03237987 266.61944580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03237988 266.61947632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03237989 266.61947632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03237990 266.61950684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03237991 266.61950684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03237992 266.61950684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03237993 266.61950684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03237994 266.61953735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03237995 266.61953735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03237996 266.61956787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03237997 266.61956787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03237998 266.61975098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03237999 266.61975098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03238000 266.61978149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03238001 266.61978149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03238002 266.61981201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03238003 266.61981201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03238004 266.61981201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03238005 266.61984253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03238006 266.61984253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03238007 266.61987305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03238008 266.61990356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03238009 266.61990356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03238010 266.61993408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03238011 266.61993408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03238012 266.61996460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03238013 266.61996460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03238014 266.61999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03238015 266.61999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03238016 266.61999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03238017 266.61999512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03238018 266.62002563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03238019 266.62002563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03238020 266.62005615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03238021 266.62005615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03238022 266.62008667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03238023 266.62011719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03238024 266.62014771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03238025 266.62014771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03238026 266.62030029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03238027 266.62030029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03238028 266.62033081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03238029 266.62033081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03238030 266.62036133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03238031 266.62036133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03238032 266.62039185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03238033 266.62039185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03238034 266.62042236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03238035 266.62042236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03238036 266.62045288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03238037 266.62045288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03238038 266.62048340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03238039 266.62048340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03238040 266.62051392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03238041 266.62051392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03238042 266.62054443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03238043 266.62054443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03238044 266.62057495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03238045 266.62057495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03238046 266.62060547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03238047 266.62060547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03238048 266.62063599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03238049 266.62063599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03238050 266.62063599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03238051 266.62063599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03238052 266.62066650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03238053 266.62066650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03238054 266.62069702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03238055 266.62069702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03238056 266.62072754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03238057 266.62075806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03238058 266.62078857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03238059 266.62078857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03238060 266.62078857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03238061 266.62078857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03238062 266.62081909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03238063 266.62081909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03238064 266.62084961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03238065 266.62084961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03238066 266.62088013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03238067 266.62088013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03238068 266.62091064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03238069 266.62091064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03238070 266.62094116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03238071 266.62094116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03238072 266.62094116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03238073 266.62097168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03238074 266.62100220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03238075 266.62100220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03238076 266.62103271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03238077 266.62106323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03238078 266.62109375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03238079 266.62109375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03238080 266.62109375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03238081 266.62109375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03238082 266.62112427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03238083 266.62112427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03238084 266.62115479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03238085 266.62115479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03238086 266.62118530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03238087 266.62118530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03238088 266.62121582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03238089 266.62121582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03238090 266.62124634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03238091 266.62124634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03238092 266.62124634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03238093 266.62124634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03238094 266.62130737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03238095 266.62130737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03238096 266.62133789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03238097 266.62133789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03238098 266.62136841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03238099 266.62136841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03238100 266.62139893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03238101 266.62139893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03238102 266.62142944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03238103 266.62142944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03238104 266.62142944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03238105 266.62142944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03238106 266.62145996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03238107 266.62145996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03238108 266.62149048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03238109 266.62149048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03238110 266.62152100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03238111 266.62152100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03238112 266.62155151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03238113 266.62158203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03238114 266.62158203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03238115 266.62158203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03238116 266.62161255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03238117 266.62161255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03238118 266.62164307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03238119 266.62164307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03238120 266.62167358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03238121 266.62167358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03238122 266.62170410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03238123 266.62170410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03238124 266.62173462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03238125 266.62173462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03238126 266.62173462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03238127 266.62173462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03238128 266.62176514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03238129 266.62176514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03238130 266.62179565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03238131 266.62179565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03238132 266.62182617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03238133 266.62185669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03238134 266.62188721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03238135 266.62188721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03238136 266.62188721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03238137 266.62188721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03238138 266.62191772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03238139 266.62191772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03238140 266.62194824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03238141 266.62194824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03238142 266.62197876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03238143 266.62197876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03238144 266.62200928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03238145 266.62200928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03238146 266.62203979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03238147 266.62203979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03238148 266.62203979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03238149 266.62203979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03238150 266.62207031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03238151 266.62207031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03238152 266.62210083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03238153 266.62213135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03238154 266.62216187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03238155 266.62216187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03238156 266.62219238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03238157 266.62219238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03238158 266.62222290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03238159 266.62222290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03238160 266.62222290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03238161 266.62222290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03238162 266.62225342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03238163 266.62225342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03238164 266.62228394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03238165 266.62228394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03238166 266.62231445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03238167 266.62231445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03238168 266.62234497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03238169 266.62234497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03238170 266.62237549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03238171 266.62237549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03238172 266.62237549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03238173 266.62240601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03238174 266.62243652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03238175 266.62243652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03238176 266.62246704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03238177 266.62246704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03238178 266.62249756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03238179 266.62249756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03238180 266.62252808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03238181 266.62252808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03238182 266.62252808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03238183 266.62252808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03238184 266.62255859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03238185 266.62255859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03238186 266.62258911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03238187 266.62258911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03238188 266.62261963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03238189 266.62261963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03238190 266.62265015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03238191 266.62265015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03238192 266.62268066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03238193 266.62268066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03238194 266.62268066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03238195 266.62271118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03238196 266.62274170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03238197 266.62274170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03238198 266.62277222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03238199 266.62277222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03238200 266.62280273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03238201 266.62280273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03238202 266.62283325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03238203 266.62283325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03238204 266.62283325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03238205 266.62283325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03238206 266.62286377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03238207 266.62286377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03238208 266.62289429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03238209 266.62289429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03238210 266.62292480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03238211 266.62292480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03238212 266.62295532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03238213 266.62298584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03238214 266.62301636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03238215 266.62301636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03238216 266.62301636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03238217 266.62301636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03238218 266.62304688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03238219 266.62304688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03238220 266.62307739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03238221 266.62307739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03238222 266.62310791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03238223 266.62310791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03238224 266.62313843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03238225 266.62313843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03238226 266.62316895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03238227 266.62316895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03238228 266.62316895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03238229 266.62316895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03238230 266.62319946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03238231 266.62319946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03238232 266.62322998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03238233 266.62322998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03238234 266.62326050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03238235 266.62329102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03238236 266.62332153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03238237 266.62332153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03238238 266.62332153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03238239 266.62332153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03238240 266.62335205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03238241 266.62335205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03238242 266.62338257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03238243 266.62338257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03238244 266.62341309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03238245 266.62341309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03238246 266.62344360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03238247 266.62344360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03238248 266.62347412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03238249 266.62347412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03238250 266.62347412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03238251 266.62347412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03238252 266.62350464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03238253 266.62350464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03238254 266.62353516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03238255 266.62356567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03238256 266.62359619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03238257 266.62359619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03238258 266.62362671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03238259 266.62362671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03238260 266.62362671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03238261 266.62362671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03238262 266.62365723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03238263 266.62365723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03238264 266.62368774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03238265 266.62368774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03238266 266.62371826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03238267 266.62371826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03238268 266.62374878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03238269 266.62374878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03238270 266.62377930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03238271 266.62377930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03238272 266.62380981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03238273 266.62380981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03238274 266.62380981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03238275 266.62384033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03238276 266.62387085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03238277 266.62387085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03238278 266.62390137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03238279 266.62390137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03238280 266.62393188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03238281 266.62393188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03238282 266.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03238283 266.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03238284 266.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03238285 266.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03238286 266.62399292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03238287 266.62399292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03238288 266.62402344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03238289 266.62402344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03238290 266.62405396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03238291 266.62405396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03238292 266.62408447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03238293 266.62408447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03238294 266.62411499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03238295 266.62411499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03238296 266.62411499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03238297 266.62414551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03238298 266.62417603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03238299 266.62417603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03238300 266.62420654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03238301 266.62420654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03238302 266.62423706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03238303 266.62423706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03238304 266.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03238305 266.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03238306 266.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03238307 266.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03238308 266.62429810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03238309 266.62429810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03238310 266.62432861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03238311 266.62432861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03238312 266.62435913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03238313 266.62435913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03238314 266.62438965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03238315 266.62438965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03238316 266.62442017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03238317 266.62442017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03238318 266.62445068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03238319 266.62445068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03238320 266.62448120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03238321 266.62448120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03238322 266.62451172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03238323 266.62451172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03238324 266.62454224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03238325 266.62454224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03238326 266.62457275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03238327 266.62457275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03238328 266.62460327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03238329 266.62460327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03238330 266.62460327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03238331 266.62460327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03238332 266.62463379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03238333 266.62463379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03238334 266.62466431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03238335 266.62466431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03238336 266.62469482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03238337 266.62472534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03238338 266.62475586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03238339 266.62475586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03238340 266.62475586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03238341 266.62475586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03238342 266.62478638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03238343 266.62478638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03238344 266.62481689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03238345 266.62481689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03238346 266.62484741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03238347 266.62484741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03238348 266.62487793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03238349 266.62487793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03238350 266.62490845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03238351 266.62490845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03238352 266.62490845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03238353 266.62490845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03238354 266.62493896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03238355 266.62493896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03238356 266.62496948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03238357 266.62500000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03238358 266.62503052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03238359 266.62503052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03238360 266.62506104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03238361 266.62506104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03238362 266.62506104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03238363 266.62506104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03238364 266.62509155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03238365 266.62509155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03238366 266.62512207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03238367 266.62512207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03238368 266.62515259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03238369 266.62515259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03238370 266.62518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03238371 266.62518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03238372 266.62521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03238373 266.62521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03238374 266.62521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03238375 266.62521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03238376 266.62524414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03238377 266.62527466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03238378 266.62530518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03238379 266.62530518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03238380 266.62533569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03238381 266.62533569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03238382 266.62536621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03238383 266.62536621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03238384 266.62539673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03238385 266.62539673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03238386 266.62542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03238387 266.62542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03238388 266.62545776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03238389 266.62545776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03238390 266.62548828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03238391 266.62548828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03238392 266.62551880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03238393 266.62551880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03238394 266.62554932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03238395 266.62554932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03238396 266.62554932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03238397 266.62554932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03238398 266.62557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03238399 266.62557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03238400 266.62561035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03238401 266.62561035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03238402 266.62564087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03238403 266.62567139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03238404 266.62567139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03238405 266.62570190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03238406 266.62570190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03238407 266.62570190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03238408 266.62573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03238409 266.62573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03238410 266.62576294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03238411 266.62576294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03238412 266.62579346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03238413 266.62579346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03238414 266.62582397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03238415 266.62582397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03238416 266.62585449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03238417 266.62585449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03238418 266.62585449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03238419 266.62585449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03238420 266.62588501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03238421 266.62588501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03238422 266.62591553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03238423 266.62591553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03238424 266.62594604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03238425 266.62594604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03238426 266.62597656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03238427 266.62600708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03238428 266.62603760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03238429 266.62603760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03238430 266.62603760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03238431 266.62603760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03238432 266.62606812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03238433 266.62606812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03238434 266.62609863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03238435 266.62609863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03238436 266.62612915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03238437 266.62612915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03238438 266.62615967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03238439 266.62615967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03238440 266.62619019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03238441 266.62619019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03238442 266.62619019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03238443 266.62619019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03238444 266.62622070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03238445 266.62622070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03238446 266.62625122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03238447 266.62625122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03238448 266.62628174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03238449 266.62628174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03238450 266.62631226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03238451 266.62631226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03238452 266.62634277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03238453 266.62634277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03238454 266.62634277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03238455 266.62634277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03238456 266.62637329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03238457 266.62640381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03238458 266.62640381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03238459 266.62643433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03238460 266.62646484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03238461 266.62646484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03238462 266.62649536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03238463 266.62649536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03238464 266.62649536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03238465 266.62649536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03238466 266.62652588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03238467 266.62652588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03238468 266.62655640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03238469 266.62655640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03238470 266.62658691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03238471 266.62658691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03238472 266.62661743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03238473 266.62661743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03238474 266.62664795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03238475 266.62664795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03238476 266.62664795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03238477 266.62664795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03238478 266.62667847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03238479 266.62667847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03238480 266.62670898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03238481 266.62673950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03238482 266.62677002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03238483 266.62677002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03238484 266.62680054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03238485 266.62680054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03238486 266.62683105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03238487 266.62683105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03238488 266.62683105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03238489 266.62683105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03238490 266.62686157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03238491 266.62686157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03238492 266.62689209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03238493 266.62689209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03238494 266.62692261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03238495 266.62692261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03238496 266.62695313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03238497 266.62695313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03238498 266.62698364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03238499 266.62698364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03238500 266.62698364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03238501 266.62701416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03238502 266.62701416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03238503 266.62704468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03238504 266.62707520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03238505 266.62707520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03238506 266.62710571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03238507 266.62710571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03238508 266.62713623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03238509 266.62713623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03238510 266.62713623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03238511 266.62713623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03238512 266.62716675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03238513 266.62716675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03238514 266.62719727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03238515 266.62719727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03238516 266.62722778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03238517 266.62722778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03238518 266.62725830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03238519 266.62725830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03238520 266.62728882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03238521 266.62728882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03238522 266.62731934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03238523 266.62731934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03238524 266.62734985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03238525 266.62734985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03238526 266.62738037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03238527 266.62738037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03238528 266.62741089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03238529 266.62741089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03238530 266.62744141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03238531 266.62744141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03238532 266.62744141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03238533 266.62744141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03238534 266.62747192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03238535 266.62747192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03238536 266.62750244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03238537 266.62750244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03238538 266.62753296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03238539 266.62753296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03238540 266.62756348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03238541 266.62759399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03238542 266.62762451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03238543 266.62762451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03238544 266.62762451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03238545 266.62762451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03238546 266.62765503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03238547 266.62765503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03238548 266.62768555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03238549 266.62768555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03238550 266.62771606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03238551 266.62771606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03238552 266.62774658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03238553 266.62774658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03238554 266.62777710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03238555 266.62777710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03238556 266.62777710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03238557 266.62777710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03238558 266.62783813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03238559 266.62783813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03238560 266.62786865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03238561 266.62786865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03238562 266.62789917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03238563 266.62789917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03238564 266.62792969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03238565 266.62792969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03238566 266.62792969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03238567 266.62792969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03238568 266.62796021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03238569 266.62796021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03238570 266.62799072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03238571 266.62799072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03238572 266.62802124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03238573 266.62802124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03238574 266.62805176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03238575 266.62805176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03238576 266.62808228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03238577 266.62808228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03238578 266.62811279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03238579 266.62811279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03238580 266.62814331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03238581 266.62814331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03238582 266.62817383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03238583 266.62817383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03238584 266.62820435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03238585 266.62820435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03238586 266.62823486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03238587 266.62823486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03238588 266.62823486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03238589 266.62823486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03238590 266.62826538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03238591 266.62826538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03238592 266.62829590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03238593 266.62829590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03238594 266.62832642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03238595 266.62832642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03238596 266.62835693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03238597 266.62835693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03238598 266.62838745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03238599 266.62838745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03238600 266.62841797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03238601 266.62841797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03238602 266.62841797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03238603 266.62844849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03238604 266.62844849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03238605 266.62847900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03238606 266.62850952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03238607 266.62850952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03238608 266.62854004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03238609 266.62854004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03238610 266.62857056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03238611 266.62857056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03238612 266.62857056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03238613 266.62857056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03238614 266.62860107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03238615 266.62860107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03238616 266.62863159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03238617 266.62863159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03238618 266.62866211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03238619 266.62866211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03238620 266.62869263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03238621 266.62869263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03238622 266.62872314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03238623 266.62872314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03238624 266.62875366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03238625 266.62875366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03238626 266.62878418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03238627 266.62878418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03238628 266.62881470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03238629 266.62881470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03238630 266.62884521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03238631 266.62884521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03238632 266.62887573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03238633 266.62887573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03238634 266.62887573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03238635 266.62887573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03238636 266.62890625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03238637 266.62890625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03238638 266.62893677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03238639 266.62893677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03238640 266.62896729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03238641 266.62896729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03238642 266.62899780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03238643 266.62899780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03238644 266.62902832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03238645 266.62902832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03238646 266.62902832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03238647 266.62902832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03238648 266.62905884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03238649 266.62908936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03238650 266.62908936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03238651 266.62911987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03238652 266.62915039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03238653 266.62915039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03238654 266.62918091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03238655 266.62918091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03238656 266.62921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03238657 266.62921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03238658 266.62921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03238659 266.62921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03238660 266.62924194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03238661 266.62924194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03238662 266.62927246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03238663 266.62927246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03238664 266.62930298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03238665 266.62930298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03238666 266.62933350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03238667 266.62933350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03238668 266.62936401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03238669 266.62936401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03238670 266.62936401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03238671 266.62939453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03238672 266.62942505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03238673 266.62942505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03238674 266.62945557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03238675 266.62945557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03238676 266.62948608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03238677 266.62948608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03238678 266.62951660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03238679 266.62951660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03238680 266.62951660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03238681 266.62951660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03238682 266.62954712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03238683 266.62954712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03238684 266.62957764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03238685 266.62957764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03238686 266.62960815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03238687 266.62960815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03238688 266.62963867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03238689 266.62963867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03238690 266.62966919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03238691 266.62966919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03238692 266.62966919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03238693 266.62966919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03238694 266.62969971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03238695 266.62973022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03238696 266.62973022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03238697 266.62976074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03238698 266.62979126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03238699 266.62979126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03238700 266.62982178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03238701 266.62982178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03238702 266.62982178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03238703 266.62982178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03238704 266.62985229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03238705 266.62985229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03238706 266.62988281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03238707 266.62988281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03238708 266.62991333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03238709 266.62991333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03238710 266.62994385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03238711 266.62994385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03238712 266.62997437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03238713 266.62997437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03238714 266.63000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03238715 266.63000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03238716 266.63000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03238717 266.63000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03238718 266.63003540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03238719 266.63003540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03238720 266.63006592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03238721 266.63009644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03238722 266.63009644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03238723 266.63012695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03238724 266.63015747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03238725 266.63015747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03238726 266.63015747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03238727 266.63015747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03238728 266.63018799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03238729 266.63018799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03238730 266.63021851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03238731 266.63021851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03238732 266.63024902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03238733 266.63024902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03238734 266.63027954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03238735 266.63027954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03238736 266.63031006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03238737 266.63031006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03238738 266.63031006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03238739 266.63031006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03238740 266.63034058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03238741 266.63034058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03238742 266.63037109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03238743 266.63037109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03238744 266.63040161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03238745 266.63040161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03238746 266.63043213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03238747 266.63043213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03238748 266.63046265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03238749 266.63046265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03238750 266.63046265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03238751 266.63046265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03238752 266.63049316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03238753 266.63052368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03238754 266.63055420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03238755 266.63055420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03238756 266.63058472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03238757 266.63058472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03238758 266.63061523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03238759 266.63061523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03238760 266.63061523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03238761 266.63061523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03238762 266.63064575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03238763 266.63064575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03238764 266.63067627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03238765 266.63067627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03238766 266.63070679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03238767 266.63070679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03238768 266.63073730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03238769 266.63073730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03238770 266.63076782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03238771 266.63076782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03238772 266.63079834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03238773 266.63079834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03238774 266.63082886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03238775 266.63082886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03238776 266.63085938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03238777 266.63085938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03238778 266.63088989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03238779 266.63088989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03238780 266.63092041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03238781 266.63092041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03238782 266.63095093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03238783 266.63095093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03238784 266.63095093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03238785 266.63095093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03238786 266.63098145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03238787 266.63098145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03238788 266.63101196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03238789 266.63101196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03238790 266.63104248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03238791 266.63104248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03238792 266.63107300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03238793 266.63107300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03238794 266.63110352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03238795 266.63110352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03238796 266.63110352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03238797 266.63113403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03238798 266.63116455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03238799 266.63116455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03238800 266.63119507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03238801 266.63119507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03238802 266.63122559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03238803 266.63122559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03238804 266.63125610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03238805 266.63125610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03238806 266.63125610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03238807 266.63125610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03238808 266.63128662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03238809 266.63128662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03238810 266.63131714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03238811 266.63131714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03238812 266.63134766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03238813 266.63134766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03238814 266.63137817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03238815 266.63137817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03238816 266.63140869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03238817 266.63140869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03238818 266.63143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03238819 266.63143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03238820 266.63143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03238821 266.63143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03238822 266.63146973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03238823 266.63146973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03238824 266.63150024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03238825 266.63150024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03238826 266.63153076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -03238827 266.63153076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -03238828 266.63156128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -03238829 266.63159180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -03238830 266.63159180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -03238831 266.63159180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -03238832 266.63162231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -03238833 266.63162231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -03238834 266.63165283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -03238835 266.63165283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -03238836 266.63168335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -03238837 266.63168335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -03238838 266.63171387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -03238839 266.63171387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -03238840 266.63174438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -03238841 266.63174438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -03238842 266.63174438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -03238843 266.63174438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -03238844 266.63177490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -03238845 266.63177490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -03238846 266.63180542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -03238847 266.63180542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -03238848 266.63183594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -03238849 266.63183594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -03238850 266.63189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -03238851 266.63189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -03238852 266.63189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -03238853 266.63189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -03238854 266.63192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -03238855 266.63192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -03238856 266.63195801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03238857 266.63195801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03238858 266.63198853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03238859 266.63198853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03238860 266.63201904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03238861 266.63201904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03238862 266.63204956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03238863 266.63204956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03238864 266.63204956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03238865 266.63204956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03238866 266.63208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03238867 266.63208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03238868 266.63211060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03238869 266.63211060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03238870 266.63217163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03238871 266.63217163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03238872 266.63220215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03238873 266.63223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03238874 266.63223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03238875 266.63223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03238876 266.63226318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03238877 266.63226318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03238878 266.63229370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03238879 266.63229370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03238880 266.63232422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -03238881 266.63232422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -03238882 266.63235474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -03238883 266.63235474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -03238884 266.63238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -03238885 266.63238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -03238886 266.63238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -03238887 266.63238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -03238888 266.63241577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -03238889 266.63241577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -03238890 266.63244629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -03238891 266.63244629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -03238892 266.63247681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -03238893 266.63247681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -03238894 266.63250732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -03238895 266.63250732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -03238896 266.63253784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -03238897 266.63253784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -03238898 266.63253784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -03238899 266.63253784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -03238900 266.63256836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -03238901 266.63256836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -03238902 266.63259888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -03238903 266.63259888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -03238904 266.63262939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -03238905 266.63262939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -03238906 266.63265991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -03238907 266.63265991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -03238908 266.63269043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -03238909 266.63269043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -03238910 266.63269043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -03238911 266.63272095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -03238912 266.63272095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -03238913 266.63275146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -03238914 266.63278198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -03238915 266.63278198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -03238916 266.63281250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -03238917 266.63281250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -03238918 266.63284302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -03238919 266.63284302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -03238920 266.63284302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -03238921 266.63284302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -03238922 266.63287354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -03238923 266.63287354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -03238924 266.63290405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -03238925 266.63290405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -03238926 266.63293457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -03238927 266.63293457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -03238928 266.63296509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -03238929 266.63296509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -03238930 266.63299561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -03238931 266.63299561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -03238932 266.63302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -03238933 266.63302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -03238934 266.63302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -03238935 266.63302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -03238936 266.63305664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -03238937 266.63305664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -03238938 266.63308716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -03238939 266.63308716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -03238940 266.63311768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -03238941 266.63311768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -03238942 266.63320923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -03238943 266.63320923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -03238944 266.63323975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -03238945 266.63323975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -03238946 266.63327026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -03238947 266.63327026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -03238948 266.63330078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -03238949 266.63330078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -03238950 266.63333130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -03238951 266.63333130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -03238952 266.63333130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -03238953 266.63333130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -03238954 266.63336182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -03238955 266.63336182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -03238956 266.63339233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -03238957 266.63339233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -03238958 266.63342285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -03238959 266.63345337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -03238960 266.63345337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -03238961 266.63348389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -03238962 266.63348389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -03238963 266.63348389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -03238964 266.63351440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -03238965 266.63351440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -03238966 266.63354492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -03238967 266.63354492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -03238968 266.63357544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -03238969 266.63357544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -03238970 266.63360596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -03238971 266.63360596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -03238972 266.63363647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -03238973 266.63363647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -03238974 266.63363647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -03238975 266.63363647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -03238976 266.63366699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -03238977 266.63366699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -03238978 266.63369751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -03238979 266.63372803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -03238980 266.63375854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -03238981 266.63375854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -03238982 266.63378906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -03238983 266.63378906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -03238984 266.63381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -03238985 266.63381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -03238986 266.63381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -03238987 266.63381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -03238988 266.63385010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -03238989 266.63385010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -03238990 266.63388062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -03238991 266.63388062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -03238992 266.63391113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -03238993 266.63391113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -03238994 266.63394165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -03238995 266.63394165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -03238996 266.63397217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -03238997 266.63397217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -03238998 266.63397217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -03238999 266.63400269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -03239000 266.63400269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -03239001 266.63403320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -03239002 266.63406372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -03239003 266.63406372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -03239004 266.63409424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -03239005 266.63409424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -03239006 266.63412476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -03239007 266.63412476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -03239008 266.63421631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -03239009 266.63421631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -03239010 266.63424683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -03239011 266.63424683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -03239012 266.63427734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -03239013 266.63427734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -03239014 266.63427734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -03239015 266.63427734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -03239016 266.63430786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -03239017 266.63430786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -03239018 266.63433838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -03239019 266.63433838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -03239020 266.63436890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -03239021 266.63436890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -03239022 266.63439941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -03239023 266.63442993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -03239024 266.63452148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -03239025 266.63452148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -03239026 266.63455200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -03239027 266.63455200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -03239028 266.63458252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -03239029 266.63458252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -03239030 266.63461304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -03239031 266.63461304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -03239032 266.63461304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -03239033 266.63461304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -03239034 266.63464355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -03239035 266.63464355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -03239036 266.63467407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -03239037 266.63467407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -03239038 266.63473511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -03239039 266.63473511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -03239040 266.63476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -03239041 266.63476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -03239042 266.63476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -03239043 266.63476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -03239044 266.63494873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -03239045 266.63494873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -03239046 266.63497925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -03239047 266.63497925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -03239048 266.63500977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -03239049 266.63500977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -03239050 266.63504028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -03239051 266.63504028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -03239052 266.63507080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -03239053 266.63507080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -03239054 266.63510132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -03239055 266.63510132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -03239056 266.63513184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -03239057 266.63513184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -03239058 266.63516235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -03239059 266.63516235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -03239060 266.63519287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -03239061 266.63519287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -03239062 266.63522339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -03239063 266.63522339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -03239064 266.63522339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -03239065 266.63522339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -03239066 266.63525391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -03239067 266.63525391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -03239068 266.63528442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -03239069 266.63528442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -03239070 266.63540649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -03239071 266.63540649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -03239072 266.63543701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -03239073 266.63543701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -03239074 266.63546753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -03239075 266.63546753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -03239076 266.63549805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -03239077 266.63552856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -03239078 266.63555908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -03239079 266.63555908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -03239080 266.63555908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -03239081 266.63555908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -03239082 266.63558960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -03239083 266.63558960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -03239084 266.63562012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -03239085 266.63562012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -03239086 266.63565063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -03239087 266.63565063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -03239088 266.63568115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -03239089 266.63568115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -03239090 266.63571167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -03239091 266.63571167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -03239092 266.63571167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -03239093 266.63571167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -03239094 266.63574219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -03239095 266.63574219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -03239096 266.63577271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -03239097 266.63580322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -03239098 266.63583374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -03239099 266.63583374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -03239100 266.63586426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -03239101 266.63586426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -03239102 266.63586426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -03239103 266.63586426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -03239104 266.63589478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -03239105 266.63589478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -03239106 266.63592529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -03239107 266.63592529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -03239108 266.63595581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -03239109 266.63595581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -03239110 266.63598633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -03239111 266.63598633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -03239112 266.63601685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -03239113 266.63601685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -03239114 266.63601685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -03239115 266.63601685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -03239116 266.63604736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -03239117 266.63604736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -03239118 266.63607788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -03239119 266.63607788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -03239120 266.63610840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -03239121 266.63610840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -03239122 266.63613892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -03239123 266.63616943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -03239124 266.63616943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -03239125 266.63619995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -03239126 266.63619995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -03239127 266.63619995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -03239128 266.63623047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -03239129 266.63623047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -03239130 266.63626099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -03239131 266.63626099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -03239132 266.63629150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -03239133 266.63629150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -03239134 266.63632202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -03239135 266.63632202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -03239136 266.63635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -03239137 266.63635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -03239138 266.63635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -03239139 266.63635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -03239140 266.63638306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -03239141 266.63638306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -03239142 266.63641357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -03239143 266.63641357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -03239144 266.63644409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -03239145 266.63644409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -03239146 266.63647461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -03239147 266.63647461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -03239148 266.63650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -03239149 266.63650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -03239150 266.63650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -03239151 266.63650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -03239152 266.63653564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -03239153 266.63653564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -03239154 266.63656616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -03239155 266.63656616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -03239156 266.63659668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -03239157 266.63659668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -03239158 266.63662720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -03239159 266.63662720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -03239160 266.63665771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -03239161 266.63665771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -03239162 266.63665771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -03239163 266.63668823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -03239164 266.63671875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -03239165 266.63671875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -03239166 266.63674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -03239167 266.63674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -03239168 266.63677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -03239169 266.63677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -03239170 266.63681030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -03239171 266.63681030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -03239172 266.63684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -03239173 266.63684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -03239174 266.63684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -03239175 266.63684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -03239176 266.63687134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -03239177 266.63687134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -03239178 266.63690186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -03239179 266.63690186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -03239180 266.63693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -03239181 266.63693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -03239182 266.63696289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -03239183 266.63696289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -03239184 266.63699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -03239185 266.63699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -03239186 266.63699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -03239187 266.63699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -03239188 266.63702393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -03239189 266.63702393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -03239190 266.63705444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -03239191 266.63705444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -03239192 266.63708496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -03239193 266.63708496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -03239194 266.63711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -03239195 266.63711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -03239196 266.63714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -03239197 266.63714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -03239198 266.63714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -03239199 266.63714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -03239200 266.63717651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -03239201 266.63717651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -03239202 266.63720703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -03239203 266.63723755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -03239204 266.63723755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -03239205 266.63726807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -03239206 266.63729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -03239207 266.63729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -03239208 266.63729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -03239209 266.63729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -03239210 266.63732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -03239211 266.63732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -03239212 266.63735962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -03239213 266.63735962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -03239214 266.63739014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -03239215 266.63739014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -03239216 266.63742065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -03239217 266.63742065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -03239218 266.63745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -03239219 266.63745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -03239220 266.63745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -03239221 266.63745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -03239222 266.63748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -03239223 266.63748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -03239224 266.63751221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -03239225 266.63751221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -03239226 266.63754272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -03239227 266.63754272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -03239228 266.63757324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -03239229 266.63760376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -03239230 266.63760376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -03239231 266.63763428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -03239232 266.63763428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -03239233 266.63763428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -03239234 266.63766479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -03239235 266.63766479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -03239236 266.63769531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -03239237 266.63769531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -03239238 266.63772583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -03239239 266.63772583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -03239240 266.63775635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -03239241 266.63775635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -03239242 266.63778687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -03239243 266.63778687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -03239244 266.63778687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -03239245 266.63778687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -03239246 266.63787842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -03239247 266.63790894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -03239248 266.63793945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -03239249 266.63793945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -03239250 266.63793945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -03239251 266.63793945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -03239252 266.63796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -03239253 266.63796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -03239254 266.63800049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -03239255 266.63800049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -03239256 266.63803101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -03239257 266.63803101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -03239258 266.63806152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -03239259 266.63806152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -03239260 266.63809204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -03239261 266.63809204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -03239262 266.63809204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -03239263 266.63812256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -03239264 266.63815308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -03239265 266.63815308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -03239266 266.63818359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -03239267 266.63818359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -03239268 266.63821411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -03239269 266.63821411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -03239270 266.63824463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -03239271 266.63824463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -03239272 266.63824463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -03239273 266.63824463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -03239274 266.63827515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -03239275 266.63827515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -03239276 266.63830566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -03239277 266.63830566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -03239278 266.63833618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -03239279 266.63833618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -03239280 266.63836670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -03239281 266.63836670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -03239282 266.63839722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -03239283 266.63839722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -03239284 266.63842773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -03239285 266.63842773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -03239286 266.63842773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -03239287 266.63842773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -03239288 266.63845825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -03239289 266.63845825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -03239290 266.63848877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -03239291 266.63851929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -03239292 266.63854980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -03239293 266.63854980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -03239294 266.63858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -03239295 266.63858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -03239296 266.63858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -03239297 266.63858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -03239298 266.63861084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -03239299 266.63861084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -03239300 266.63864136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -03239301 266.63864136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -03239302 266.63867188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -03239303 266.63867188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -03239304 266.63870239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -03239305 266.63870239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -03239306 266.63873291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -03239307 266.63873291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -03239308 266.63873291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -03239309 266.63873291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -03239310 266.63876343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -03239311 266.63876343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -03239312 266.63879395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -03239313 266.63879395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -03239314 266.63882446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -03239315 266.63885498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -03239316 266.63885498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -03239317 266.63888550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -03239318 266.63888550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -03239319 266.63888550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -03239320 266.63891602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -03239321 266.63891602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -03239322 266.63894653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -03239323 266.63894653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -03239324 266.63897705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -03239325 266.63897705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -03239326 266.63900757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -03239327 266.63900757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -03239328 266.63903809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -03239329 266.63903809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -03239330 266.63903809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -03239331 266.63903809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -03239332 266.63906860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -03239333 266.63906860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -03239334 266.63909912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -03239335 266.63909912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -03239336 266.63912964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -03239337 266.63912964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -03239338 266.63916016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -03239339 266.63916016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -03239340 266.63919067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -03239341 266.63919067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -03239342 266.63922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -03239343 266.63922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -03239344 266.63922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -03239345 266.63922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -03239346 266.63925171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -03239347 266.63928223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -03239348 266.63931274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -03239349 266.63931274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -03239350 266.63934326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -03239351 266.63934326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -03239352 266.63937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -03239353 266.63937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -03239354 266.63937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -03239355 266.63937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -03239356 266.63940430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -03239357 266.63940430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -03239358 266.63943481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -03239359 266.63943481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -03239360 266.63946533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -03239361 266.63946533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -03239362 266.63949585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -03239363 266.63949585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -03239364 266.63952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -03239365 266.63952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -03239366 266.63952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -03239367 266.63952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -03239368 266.63955688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -03239369 266.63955688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -03239370 266.63958740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -03239371 266.63958740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -03239372 266.63961792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -03239373 266.63964844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -03239374 266.63964844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -03239375 266.63967896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -03239376 266.63967896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -03239377 266.63967896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -03239378 266.63970947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -03239379 266.63970947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -03239380 266.63973999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -03239381 266.63973999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -03239382 266.63977051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -03239383 266.63977051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -03239384 266.63980103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -03239385 266.63980103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -03239386 266.63983154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -03239387 266.63983154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -03239388 266.63983154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -03239389 266.63986206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -03239390 266.63989258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -03239391 266.63989258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -03239392 266.63992310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -03239393 266.63992310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -03239394 266.63995361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -03239395 266.63995361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -03239396 266.63998413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -03239397 266.64001465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -03239398 266.64001465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -03239399 266.64001465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -03239400 266.64007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -03239401 266.64007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -03239402 266.64010620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -03239403 266.64010620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -03239404 266.64013672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -03239405 266.64013672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -03239406 266.64016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -03239407 266.64016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -03239408 266.64016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -03239409 266.64016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -03239410 266.64019775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -03239411 266.64019775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -03239412 266.64022827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -03239413 266.64022827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -03239414 266.64025879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -03239415 266.64025879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -03239416 266.64028931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -03239417 266.64028931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -03239418 266.64031982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -03239419 266.64031982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -03239420 266.64031982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -03239421 266.64031982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -03239422 266.64035034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -03239423 266.64035034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -03239424 266.64038086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -03239425 266.64038086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -03239426 266.64041138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -03239427 266.64044189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -03239428 266.64047241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -03239429 266.64047241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -03239430 266.64047241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -03239431 266.64047241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -03239432 266.64050293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -03239433 266.64050293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -03239434 266.64053345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -03239435 266.64053345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -03239436 266.64056396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -03239437 266.64056396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -03239438 266.64059448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -03239439 266.64059448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -03239440 266.64062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -03239441 266.64062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -03239442 266.64062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -03239443 266.64062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -03239444 266.64065552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -03239445 266.64065552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -03239446 266.64068604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -03239447 266.64071655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -03239448 266.64074707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -03239449 266.64074707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -03239450 266.64077759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -03239451 266.64077759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -03239452 266.64080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -03239453 266.64080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -03239454 266.64080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -03239455 266.64080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -03239456 266.64083862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -03239457 266.64083862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -03239458 266.64086914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -03239459 266.64086914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -03239460 266.64089966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -03239461 266.64089966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -03239462 266.64093018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -03239463 266.64093018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -03239464 266.64096069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -03239465 266.64096069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -03239466 266.64096069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -03239467 266.64096069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -03239468 266.64099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -03239469 266.64099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -03239470 266.64102173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -03239471 266.64102173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -03239472 266.64105225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -03239473 266.64105225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -03239474 266.64108276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -03239475 266.64108276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -03239476 266.64111328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -03239477 266.64111328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -03239478 266.64111328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -03239479 266.64114380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -03239480 266.64117432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -03239481 266.64117432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -03239482 266.64120483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -03239483 266.64120483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -03239484 266.64123535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -03239485 266.64123535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -03239486 266.64126587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -03239487 266.64126587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -03239488 266.64126587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -03239489 266.64126587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -03239490 266.64129639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -03239491 266.64129639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -03239492 266.64132690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -03239493 266.64132690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -03239494 266.64135742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -03239495 266.64135742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -03239496 266.64138794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -03239497 266.64138794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -03239498 266.64141846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -03239499 266.64141846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -03239500 266.64141846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -03239501 266.64141846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -03239502 266.64144897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -03239503 266.64144897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -03239504 266.64147949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -03239505 266.64147949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -03239506 266.64151001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -03239507 266.64151001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -03239508 266.64154053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -03239509 266.64154053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -03239510 266.64157104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -03239511 266.64157104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -03239512 266.64160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -03239513 266.64160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -03239514 266.64160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -03239515 266.64160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -03239516 266.64163208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -03239517 266.64163208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -03239518 266.64166260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -03239519 266.64169312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -03239520 266.64172363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -03239521 266.64172363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -03239522 266.64175415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -03239523 266.64175415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -03239524 266.64175415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -03239525 266.64175415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -03239526 266.64178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -03239527 266.64178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -03239528 266.64181519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -03239529 266.64181519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -03239530 266.64184570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -03239531 266.64184570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -03239532 266.64187622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -03239533 266.64187622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -03239534 266.64190674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -03239535 266.64190674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -03239536 266.64190674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -03239537 266.64190674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -03239538 266.64193726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -03239539 266.64193726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -03239540 266.64196777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -03239541 266.64199829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -03239542 266.64199829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -03239543 266.64202881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -03239544 266.64205933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -03239545 266.64205933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -03239546 266.64205933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -03239547 266.64205933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -03239548 266.64208984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -03239549 266.64208984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -03239550 266.64212036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -03239551 266.64212036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -03239552 266.64215088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -03239553 266.64215088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -03239554 266.64218140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -03239555 266.64218140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -03239556 266.64221191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -03239557 266.64221191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -03239558 266.64224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -03239559 266.64224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -03239560 266.64224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -03239561 266.64224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -03239562 266.64227295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -03239563 266.64227295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -03239564 266.64230347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -03239565 266.64230347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -03239566 266.64233398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -03239567 266.64233398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -03239568 266.64236450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -03239569 266.64236450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -03239570 266.64239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -03239571 266.64239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -03239572 266.64239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -03239573 266.64239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -03239574 266.64242554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -03239575 266.64242554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -03239576 266.64245605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -03239577 266.64245605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -03239578 266.64248657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -03239579 266.64248657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -03239580 266.64251709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -03239581 266.64251709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -03239582 266.64254761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -03239583 266.64254761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -03239584 266.64254761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -03239585 266.64257813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -03239586 266.64260864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -03239587 266.64260864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -03239588 266.64263916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -03239589 266.64263916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -03239590 266.64266968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -03239591 266.64266968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -03239592 266.64270020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -03239593 266.64270020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -03239594 266.64270020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -03239595 266.64270020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -03239596 266.64273071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -03239597 266.64273071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -03239598 266.64276123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -03239599 266.64276123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -03239600 266.64279175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -03239601 266.64279175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -03239602 266.64282227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -03239603 266.64282227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -03239604 266.64285278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -03239605 266.64285278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -03239606 266.64285278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -03239607 266.64285278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -03239608 266.64288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -03239609 266.64288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -03239610 266.64291382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -03239611 266.64291382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -03239612 266.64300537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -03239613 266.64300537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -03239614 266.64303589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -03239615 266.64303589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -03239616 266.64303589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -03239617 266.64303589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -03239618 266.64306641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -03239619 266.64306641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -03239620 266.64309692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -03239621 266.64309692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -03239622 266.64312744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -03239623 266.64312744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -03239624 266.64315796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -03239625 266.64315796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -03239626 266.64318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -03239627 266.64318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -03239628 266.64318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -03239629 266.64318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -03239630 266.64321899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -03239631 266.64321899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -03239632 266.64324951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -03239633 266.64324951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -03239634 266.64328003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -03239635 266.64334106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -03239636 266.64334106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -03239637 266.64334106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -03239638 266.64337158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -03239639 266.64337158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -03239640 266.64340210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -03239641 266.64340210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -03239642 266.64343262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -03239643 266.64343262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -03239644 266.64346313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -03239645 266.64346313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -03239646 266.64349365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -03239647 266.64349365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -03239648 266.64349365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -03239649 266.64349365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -03239650 266.64352417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -03239651 266.64352417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -03239652 266.64355469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -03239653 266.64355469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -03239654 266.64358521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -03239655 266.64358521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -03239656 266.64361572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -03239657 266.64361572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -03239658 266.64364624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -03239659 266.64364624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -03239660 266.64367676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -03239661 266.64367676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -03239662 266.64370728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -03239663 266.64370728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -03239664 266.64373779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -03239665 266.64373779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -03239666 266.64376831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -03239667 266.64376831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -03239668 266.64379883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -03239669 266.64379883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -03239670 266.64382935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -03239671 266.64382935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -03239672 266.64382935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -03239673 266.64382935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -03239674 266.64385986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -03239675 266.64385986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -03239676 266.64389038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -03239677 266.64389038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -03239678 266.64392090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -03239679 266.64392090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -03239680 266.64395142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -03239681 266.64395142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -03239682 266.64398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -03239683 266.64398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -03239684 266.64398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -03239685 266.64398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -03239686 266.64401245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -03239687 266.64401245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -03239688 266.64404297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -03239689 266.64404297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -03239690 266.64407349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -03239691 266.64407349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -03239692 266.64410400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -03239693 266.64410400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -03239694 266.64413452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -03239695 266.64413452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -03239696 266.64413452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -03239697 266.64413452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -03239698 266.64419556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -03239699 266.64419556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -03239700 266.64422607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -03239701 266.64422607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -03239702 266.64425659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -03239703 266.64425659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -03239704 266.64428711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -03239705 266.64428711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -03239706 266.64428711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -03239707 266.64428711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -03239708 266.64431763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -03239709 266.64431763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -03239710 266.64434814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -03239711 266.64434814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -03239712 266.64437866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -03239713 266.64437866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -03239714 266.64440918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -03239715 266.64440918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -03239716 266.64443970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -03239717 266.64443970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -03239718 266.64443970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -03239719 266.64447021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -03239720 266.64447021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -03239721 266.64450073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -03239722 266.64453125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -03239723 266.64453125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -03239724 266.64456177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -03239725 266.64456177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -03239726 266.64459229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -03239727 266.64459229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -03239728 266.64462280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -03239729 266.64462280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -03239730 266.64462280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -03239731 266.64462280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -03239732 266.64465332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -03239733 266.64465332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -03239734 266.64468384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -03239735 266.64468384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -03239736 266.64471436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -03239737 266.64471436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -03239738 266.64474487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -03239739 266.64474487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -03239740 266.64477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -03239741 266.64477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -03239742 266.64477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -03239743 266.64477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -03239744 266.64480591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -03239745 266.64480591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -03239746 266.64483643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -03239747 266.64483643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -03239748 266.64486694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -03239749 266.64486694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -03239750 266.64489746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -03239751 266.64492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -03239752 266.64492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -03239753 266.64492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -03239754 266.64495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -03239755 266.64495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -03239756 266.64498901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -03239757 266.64498901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -03239758 266.64501953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -03239759 266.64501953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -03239760 266.64505005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -03239761 266.64505005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -03239762 266.64508057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -03239763 266.64508057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -03239764 266.64508057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -03239765 266.64508057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -03239766 266.64511108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -03239767 266.64511108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -03239768 266.64514160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -03239769 266.64514160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -03239770 266.64517212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -03239771 266.64517212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -03239772 266.64520264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -03239773 266.64523315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -03239774 266.64523315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -03239775 266.64523315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -03239776 266.64526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -03239777 266.64526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -03239778 266.64529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -03239779 266.64529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -03239780 266.64532471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -03239781 266.64532471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -03239782 266.64535522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -03239783 266.64535522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -03239784 266.64538574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -03239785 266.64538574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -03239786 266.64541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -03239787 266.64541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -03239788 266.64541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -03239789 266.64541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -03239790 266.64544678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -03239791 266.64544678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -03239792 266.64547729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -03239793 266.64547729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -03239794 266.64550781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -03239795 266.64553833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -03239796 266.64556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -03239797 266.64556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -03239798 266.64556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -03239799 266.64556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -03239800 266.64559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -03239801 266.64559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -03239802 266.64562988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -03239803 266.64562988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -03239804 266.64566040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -03239805 266.64566040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -03239806 266.64569092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -03239807 266.64569092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -03239808 266.64572144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -03239809 266.64572144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -03239810 266.64572144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -03239811 266.64572144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -03239812 266.64575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -03239813 266.64575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -03239814 266.64578247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -03239815 266.64581299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -03239816 266.64581299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -03239817 266.64584351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -03239818 266.64587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -03239819 266.64587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -03239820 266.64587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -03239821 266.64587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -03239822 266.64590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -03239823 266.64590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -03239824 266.64593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -03239825 266.64593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -03239826 266.64596558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -03239827 266.64596558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -03239828 266.64599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -03239829 266.64599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -03239830 266.64602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -03239831 266.64602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -03239832 266.64602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -03239833 266.64602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -03239834 266.64605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -03239835 266.64605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -03239836 266.64608765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -03239837 266.64608765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -03239838 266.64611816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -03239839 266.64611816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -03239840 266.64614868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -03239841 266.64614868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -03239842 266.64617920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -03239843 266.64617920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -03239844 266.64620972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -03239845 266.64620972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -03239846 266.64620972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -03239847 266.64620972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -03239848 266.64624023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -03239849 266.64624023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -03239850 266.64627075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -03239851 266.64627075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -03239852 266.64630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -03239853 266.64630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -03239854 266.64633179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -03239855 266.64633179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -03239856 266.64636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -03239857 266.64636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -03239858 266.64636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -03239859 266.64639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -03239860 266.64639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -03239861 266.64642334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -03239862 266.64645386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -03239863 266.64645386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -03239864 266.64648438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -03239865 266.64648438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -03239866 266.64651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -03239867 266.64651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -03239868 266.64651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -03239869 266.64651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -03239870 266.64654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -03239871 266.64654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -03239872 266.64657593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -03239873 266.64657593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -03239874 266.64660645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -03239875 266.64660645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -03239876 266.64663696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -03239877 266.64663696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -03239878 266.64666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -03239879 266.64666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -03239880 266.64666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -03239881 266.64666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -03239882 266.64669800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -03239883 266.64669800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -03239884 266.64672852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -03239885 266.64672852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -03239886 266.64675903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -03239887 266.64675903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -03239888 266.64678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -03239889 266.64678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -03239890 266.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -03239891 266.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -03239892 266.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -03239893 266.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -03239894 266.64685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -03239895 266.64685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -03239896 266.64688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -03239897 266.64688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -03239898 266.64691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -03239899 266.64691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -03239900 266.64694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -03239901 266.64694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -03239902 266.64697266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -03239903 266.64700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -03239904 266.64700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -03239905 266.64700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -03239906 266.64703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -03239907 266.64703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -03239908 266.64706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -03239909 266.64706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -03239910 266.64709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -03239911 266.64709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -03239912 266.64712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -03239913 266.64712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -03239914 266.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -03239915 266.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -03239916 266.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -03239917 266.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -03239918 266.64718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -03239919 266.64718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -03239920 266.64721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -03239921 266.64721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -03239922 266.64724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -03239923 266.64724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -03239924 266.64727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -03239925 266.64727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -03239926 266.64730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -03239927 266.64730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -03239928 266.64730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -03239929 266.64730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -03239930 266.64733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -03239931 266.64733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -03239932 266.64736938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -03239933 266.64739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -03239934 266.64743042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -03239935 266.64743042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -03239936 266.64746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -03239937 266.64746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -03239938 266.64746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -03239939 266.64746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -03239940 266.64749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -03239941 266.64749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -03239942 266.64752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -03239943 266.64752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -03239944 266.64755249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -03239945 266.64755249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -03239946 266.64758301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -03239947 266.64758301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -03239948 266.64761353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -03239949 266.64761353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -03239950 266.64764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -03239951 266.64764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -03239952 266.64764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -03239953 266.64767456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -03239954 266.64770508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -03239955 266.64770508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -03239956 266.64773560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -03239957 266.64773560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -03239958 266.64776611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -03239959 266.64776611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -03239960 266.64779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -03239961 266.64779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -03239962 266.64779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -03239963 266.64779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -03239964 266.64782715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -03239965 266.64782715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -03239966 266.64785767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -03239967 266.64785767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -03239968 266.64788818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -03239969 266.64788818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -03239970 266.64791870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -03239971 266.64791870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -03239972 266.64794922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -03239973 266.64794922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -03239974 266.64797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -03239975 266.64797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -03239976 266.64801025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -03239977 266.64801025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -03239978 266.64804077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -03239979 266.64804077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -03239980 266.64807129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -03239981 266.64807129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -03239982 266.64810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -03239983 266.64810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -03239984 266.64810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -03239985 266.64810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -03239986 266.64813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -03239987 266.64813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -03239988 266.64816284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -03239989 266.64816284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -03239990 266.64819336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -03239991 266.64819336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -03239992 266.64822388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -03239993 266.64822388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -03239994 266.64825439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -03239995 266.64825439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -03239996 266.64828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -03239997 266.64828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -03239998 266.64831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -03239999 266.64831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -03240000 266.64834595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -03240001 266.64834595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -03240002 266.64837646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -03240003 266.64837646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -03240004 266.64840698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -03240005 266.64840698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -03240006 266.64843750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -03240007 266.64843750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -03240008 266.64843750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -03240009 266.64843750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -03240010 266.64846802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -03240011 266.64846802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -03240012 266.64849854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -03240013 266.64849854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -03240014 266.64852905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -03240015 266.64855957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -03240016 266.64859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -03240017 266.64859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -03240018 266.64859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -03240019 266.64859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -03240020 266.64862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -03240021 266.64862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -03240022 266.64865112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -03240023 266.64865112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -03240024 266.64868164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -03240025 266.64868164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -03240026 266.64871216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -03240027 266.64871216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -03240028 266.64874268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -03240029 266.64874268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -03240030 266.64874268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -03240031 266.64874268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -03240032 266.64877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -03240033 266.64877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -03240034 266.64880371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -03240035 266.64880371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -03240036 266.64886475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -03240037 266.64886475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -03240038 266.64889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -03240039 266.64889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -03240040 266.64889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -03240041 266.64889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -03240042 266.64892578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -03240043 266.64892578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -03240044 266.64895630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -03240045 266.64895630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -03240046 266.64898682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -03240047 266.64898682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -03240048 266.64901733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -03240049 266.64901733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -03240050 266.64904785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -03240051 266.64904785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -03240052 266.64904785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -03240053 266.64904785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -03240054 266.64907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -03240055 266.64907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -03240056 266.64910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -03240057 266.64910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -03240058 266.64913940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -03240059 266.64913940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -03240060 266.64916992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -03240061 266.64916992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -03240062 266.64920044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -03240063 266.64920044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -03240064 266.64923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -03240065 266.64923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -03240066 266.64926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -03240067 266.64926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -03240068 266.64929199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -03240069 266.64929199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -03240070 266.64932251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -03240071 266.64932251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -03240072 266.64935303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -03240073 266.64935303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -03240074 266.64938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -03240075 266.64938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -03240076 266.64938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -03240077 266.64938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -03240078 266.64941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -03240079 266.64941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -03240080 266.64944458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -03240081 266.64944458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -03240082 266.64947510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -03240083 266.64947510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -03240084 266.64953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -03240085 266.64953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -03240086 266.64953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -03240087 266.64953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -03240088 266.64956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -03240089 266.64956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -03240090 266.64959717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -03240091 266.64959717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -03240092 266.64962769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -03240093 266.64962769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -03240094 266.64965820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -03240095 266.64965820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -03240096 266.64968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -03240097 266.64968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -03240098 266.64968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -03240099 266.64968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -03240100 266.64971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -03240101 266.64971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -03240102 266.64974976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -03240103 266.64974976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -03240104 266.64978027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -03240105 266.64978027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -03240106 266.64981079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -03240107 266.64981079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -03240108 266.64984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -03240109 266.64984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -03240110 266.64984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -03240111 266.64984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -03240112 266.64987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -03240113 266.64990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -03240114 266.64993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -03240115 266.64993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -03240116 266.64996338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -03240117 266.64996338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -03240118 266.64999390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -03240119 266.64999390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -03240120 266.65002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -03240121 266.65002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -03240122 266.65002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -03240123 266.65002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -03240124 266.65005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -03240125 266.65005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -03240126 266.65008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -03240127 266.65008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -03240128 266.65011597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -03240129 266.65011597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -03240130 266.65014648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -03240131 266.65014648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -03240132 266.65017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -03240133 266.65017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -03240134 266.65017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -03240135 266.65017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -03240136 266.65020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -03240137 266.65020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -03240138 266.65023804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -03240139 266.65023804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -03240140 266.65026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -03240141 266.65029907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -03240142 266.65029907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -03240143 266.65032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -03240144 266.65032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -03240145 266.65032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -03240146 266.65036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -03240147 266.65036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -03240148 266.65039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -03240149 266.65039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -03240150 266.65042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -03240151 266.65042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -03240152 266.65045166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -03240153 266.65045166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -03240154 266.65048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -03240155 266.65048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -03240156 266.65048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -03240157 266.65048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -03240158 266.65051270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -03240159 266.65051270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -03240160 266.65054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -03240161 266.65054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -03240162 266.65057373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -03240163 266.65057373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -03240164 266.65060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -03240165 266.65060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -03240166 266.65063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -03240167 266.65063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -03240168 266.65063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -03240169 266.65063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -03240170 266.65066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -03240171 266.65069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -03240172 266.65072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -03240173 266.65072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -03240174 266.65075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -03240175 266.65075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -03240176 266.65078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -03240177 266.65078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -03240178 266.65081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -03240179 266.65081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -03240180 266.65081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -03240181 266.65081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -03240182 266.65084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -03240183 266.65084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -03240184 266.65087891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -03240185 266.65087891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -03240186 266.65090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -03240187 266.65090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -03240188 266.65093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -03240189 266.65093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -03240190 266.65097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -03240191 266.65097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -03240192 266.65100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -03240193 266.65100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -03240194 266.65103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -03240195 266.65103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -03240196 266.65106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -03240197 266.65106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -03240198 266.65109253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -03240199 266.65109253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -03240200 266.65112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -03240201 266.65112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -03240202 266.65112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -03240203 266.65112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -03240204 266.65115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -03240205 266.65115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -03240206 266.65118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -03240207 266.65118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -03240208 266.65121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -03240209 266.65121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -03240210 266.65124512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -03240211 266.65124512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -03240212 266.65127563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -03240213 266.65127563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -03240214 266.65130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -03240215 266.65130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -03240216 266.65133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -03240217 266.65133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -03240218 266.65136719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -03240219 266.65136719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -03240220 266.65139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -03240221 266.65139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -03240222 266.65142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -03240223 266.65142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -03240224 266.65142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -03240225 266.65142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -03240226 266.65145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -03240227 266.65145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -03240228 266.65148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -03240229 266.65148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -03240230 266.65151978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -03240231 266.65151978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -03240232 266.65155029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -03240233 266.65158081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -03240234 266.65161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -03240235 266.65161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -03240236 266.65161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -03240237 266.65161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -03240238 266.65164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -03240239 266.65164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -03240240 266.65167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -03240241 266.65167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -03240242 266.65170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -03240243 266.65170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -03240244 266.65173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -03240245 266.65173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -03240246 266.65176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -03240247 266.65176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -03240248 266.65176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -03240249 266.65176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -03240250 266.65179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -03240251 266.65179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -03240252 266.65182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -03240253 266.65182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -03240254 266.65185547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -03240255 266.65188599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -03240256 266.65191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -03240257 266.65191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -03240258 266.65191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -03240259 266.65191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -03240260 266.65194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -03240261 266.65194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -03240262 266.65197754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -03240263 266.65197754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -03240264 266.65200806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -03240265 266.65200806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -03240266 266.65203857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -03240267 266.65203857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -03240268 266.65206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -03240269 266.65206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -03240270 266.65206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -03240271 266.65206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -03240272 266.65209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -03240273 266.65209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -03240274 266.65213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -03240275 266.65216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -03240276 266.65219116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -03240277 266.65219116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -03240278 266.65222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -03240279 266.65222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -03240280 266.65222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -03240281 266.65222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -03240282 266.65225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -03240283 266.65225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -03240284 266.65228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -03240285 266.65228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -03240286 266.65231323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -03240287 266.65231323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -03240288 266.65234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -03240289 266.65234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -03240290 266.65237427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -03240291 266.65237427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -03240292 266.65240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -03240293 266.65240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -03240294 266.65240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -03240295 266.65240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -03240296 266.65243530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -03240297 266.65246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -03240298 266.65249634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -03240299 266.65249634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -03240300 266.65252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -03240301 266.65252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -03240302 266.65255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -03240303 266.65255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -03240304 266.65255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -03240305 266.65255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -03240306 266.65258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -03240307 266.65258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -03240308 266.65261841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -03240309 266.65261841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -03240310 266.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -03240311 266.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -03240312 266.65267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -03240313 266.65267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -03240314 266.65270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -03240315 266.65270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -03240316 266.65270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -03240317 266.65274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -03240318 266.65277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -03240319 266.65277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -03240320 266.65280151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -03240321 266.65280151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -03240322 266.65283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -03240323 266.65283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -03240324 266.65286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -03240325 266.65286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -03240326 266.65286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -03240327 266.65286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -03240328 266.65289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -03240329 266.65289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -03240330 266.65292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -03240331 266.65292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -03240332 266.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -03240333 266.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -03240334 266.65298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -03240335 266.65298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -03240336 266.65301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -03240337 266.65301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -03240338 266.65304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -03240339 266.65304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -03240340 266.65307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -03240341 266.65307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -03240342 266.65310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -03240343 266.65310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -03240344 266.65313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -03240345 266.65313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -03240346 266.65316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -03240347 266.65316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -03240348 266.65319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -03240349 266.65319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -03240350 266.65319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -03240351 266.65319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -03240352 266.65322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -03240353 266.65322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -03240354 266.65325928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -03240355 266.65325928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -03240356 266.65328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -03240357 266.65328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -03240358 266.65332031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -03240359 266.65335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -03240360 266.65335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -03240361 266.65335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -03240362 266.65338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -03240363 266.65338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -03240364 266.65341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -03240365 266.65341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -03240366 266.65344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -03240367 266.65344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -03240368 266.65347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -03240369 266.65347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -03240370 266.65350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -03240371 266.65350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -03240372 266.65350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -03240373 266.65350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -03240374 266.65353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -03240375 266.65353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -03240376 266.65356445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -03240377 266.65356445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -03240378 266.65359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -03240379 266.65359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -03240380 266.65362549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -03240381 266.65365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -03240382 266.65365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -03240383 266.65365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -03240384 266.65368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -03240385 266.65368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -03240386 266.65371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -03240387 266.65371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -03240388 266.65374756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -03240389 266.65374756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -03240390 266.65377808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -03240391 266.65377808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -03240392 266.65380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -03240393 266.65380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -03240394 266.65383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -03240395 266.65383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -03240396 266.65383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -03240397 266.65383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -03240398 266.65386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -03240399 266.65386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -03240400 266.65390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -03240401 266.65393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -03240402 266.65396118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -03240403 266.65396118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -03240404 266.65399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -03240405 266.65399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -03240406 266.65399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -03240407 266.65399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -03240408 266.65402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -03240409 266.65402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -03240410 266.65405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -03240411 266.65405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -03240412 266.65408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -03240413 266.65408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -03240414 266.65411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -03240415 266.65411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -03240416 266.65414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -03240417 266.65414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -03240418 266.65414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -03240419 266.65414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -03240420 266.65417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -03240421 266.65420532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -03240422 266.65420532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -03240423 266.65423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -03240424 266.65426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -03240425 266.65426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -03240426 266.65429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -03240427 266.65429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -03240428 266.65429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -03240429 266.65429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -03240430 266.65432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -03240431 266.65432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -03240432 266.65435791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -03240433 266.65435791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -03240434 266.65438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -03240435 266.65438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -03240436 266.65441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -03240437 266.65441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -03240438 266.65444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -03240439 266.65444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -03240440 266.65444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -03240441 266.65444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -03240442 266.65460205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -03240443 266.65460205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -03240444 266.65463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -03240445 266.65463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -03240446 266.65463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -03240447 266.65463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -03240448 266.65466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -03240449 266.65466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -03240450 266.65478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -03240451 266.65478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -03240452 266.65478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -03240453 266.65478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -03240454 266.65481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -03240455 266.65481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -03240456 266.65484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -03240457 266.65484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -03240458 266.65487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -03240459 266.65487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -03240460 266.65490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -03240461 266.65493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -03240462 266.65493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -03240463 266.65493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -03240464 266.65505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -03240465 266.65505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -03240466 266.65509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -03240467 266.65509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -03240468 266.65530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -03240469 266.65533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -03240470 266.65536499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -03240471 266.65539551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -03240472 266.65542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -03240473 266.65542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -03240474 266.65542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -03240475 266.65542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -03240476 266.65545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -03240477 266.65545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -03240478 266.65548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -03240479 266.65548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -03240480 266.65551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -03240481 266.65551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -03240482 266.65560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -03240483 266.65560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -03240484 266.65563965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -03240485 266.65567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -03240486 266.65570068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -03240487 266.65570068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -03240488 266.65573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -03240489 266.65573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -03240490 266.65573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -03240491 266.65573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -03240492 266.65576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -03240493 266.65576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -03240494 266.65579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -03240495 266.65579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -03240496 266.65582275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -03240497 266.65588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -03240498 266.65588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -03240499 266.65588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -03240500 266.65591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -03240501 266.65591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -03240502 266.65594482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -03240503 266.65597534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -03240504 266.65600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -03240505 266.65600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -03240506 266.65603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -03240507 266.65603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -03240508 266.65603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -03240509 266.65603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -03240510 266.65606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -03240511 266.65606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -03240512 266.65609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -03240513 266.65609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -03240514 266.65612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -03240515 266.65612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -03240516 266.65621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -03240517 266.65621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -03240518 266.65625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -03240519 266.65625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -03240520 266.65628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -03240521 266.65628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -03240522 266.65631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -03240523 266.65634155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -03240524 266.65637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -03240525 266.65637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -03240526 266.65637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -03240527 266.65637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -03240528 266.65640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -03240529 266.65640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -03240530 266.65643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -03240531 266.65643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -03240532 266.65652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -03240533 266.65652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -03240534 266.65655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -03240535 266.65655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -03240536 266.65658569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -03240537 266.65658569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -03240538 266.65661621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -03240539 266.65661621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -03240540 266.65664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -03240541 266.65664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -03240542 266.65667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -03240543 266.65667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -03240544 266.65667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -03240545 266.65667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -03240546 266.65670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -03240547 266.65670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -03240548 266.65673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -03240549 266.65673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -03240550 266.65676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -03240551 266.65679932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -03240552 266.65682983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -03240553 266.65682983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -03240554 266.65682983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -03240555 266.65682983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -03240556 266.65686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -03240557 266.65686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -03240558 266.65689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -03240559 266.65689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -03240560 266.65692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -03240561 266.65692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -03240562 266.65695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -03240563 266.65695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -03240564 266.65698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -03240565 266.65698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -03240566 266.65701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -03240567 266.65701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -03240568 266.65701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -03240569 266.65701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -03240570 266.65704346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -03240571 266.65707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -03240572 266.65710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -03240573 266.65710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -03240574 266.65713501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -03240575 266.65713501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -03240576 266.65716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -03240577 266.65716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -03240578 266.65716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -03240579 266.65716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -03240580 266.65719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -03240581 266.65719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -03240582 266.65722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -03240583 266.65722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -03240584 266.65725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -03240585 266.65725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -03240586 266.65728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -03240587 266.65728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -03240588 266.65731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -03240589 266.65731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -03240590 266.65731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -03240591 266.65734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -03240592 266.65737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -03240593 266.65737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -03240594 266.65740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -03240595 266.65740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -03240596 266.65744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -03240597 266.65744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -03240598 266.65747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -03240599 266.65747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -03240600 266.65747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -03240601 266.65747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -03240602 266.65750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -03240603 266.65750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -03240604 266.65753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -03240605 266.65753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -03240606 266.65756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -03240607 266.65756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -03240608 266.65759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -03240609 266.65759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -03240610 266.65762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -03240611 266.65762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -03240612 266.65762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -03240613 266.65765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -03240614 266.65768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -03240615 266.65768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -03240616 266.65771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -03240617 266.65771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -03240618 266.65774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -03240619 266.65774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -03240620 266.65777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -03240621 266.65777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -03240622 266.65780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -03240623 266.65780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -03240624 266.65780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -03240625 266.65780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -03240626 266.65783691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -03240627 266.65783691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -03240628 266.65786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -03240629 266.65786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -03240630 266.65789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -03240631 266.65789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -03240632 266.65792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -03240633 266.65795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -03240634 266.65795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -03240635 266.65795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -03240636 266.65798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -03240637 266.65798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -03240638 266.65802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -03240639 266.65802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -03240640 266.65805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -03240641 266.65805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -03240642 266.65808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -03240643 266.65808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -03240644 266.65811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -03240645 266.65811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -03240646 266.65811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -03240647 266.65811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -03240648 266.65814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -03240649 266.65814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -03240650 266.65817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -03240651 266.65817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -03240652 266.65820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -03240653 266.65820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -03240654 266.65823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -03240655 266.65823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -03240656 266.65826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -03240657 266.65826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -03240658 266.65826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -03240659 266.65829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -03240660 266.65832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -03240661 266.65832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -03240662 266.65835571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -03240663 266.65835571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -03240664 266.65838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -03240665 266.65838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -03240666 266.65841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -03240667 266.65841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -03240668 266.65841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -03240669 266.65841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -03240670 266.65844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -03240671 266.65844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -03240672 266.65847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -03240673 266.65847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -03240674 266.65850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -03240675 266.65850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -03240676 266.65853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -03240677 266.65856934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -03240678 266.65859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -03240679 266.65859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -03240680 266.65859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -03240681 266.65859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -03240682 266.65863037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -03240683 266.65863037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -03240684 266.65866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -03240685 266.65866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -03240686 266.65869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -03240687 266.65869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -03240688 266.65872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -03240689 266.65872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -03240690 266.65875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -03240691 266.65875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -03240692 266.65875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -03240693 266.65875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -03240694 266.65878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -03240695 266.65878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -03240696 266.65881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -03240697 266.65881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -03240698 266.65884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -03240699 266.65884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -03240700 266.65887451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -03240701 266.65887451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -03240702 266.65890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -03240703 266.65890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -03240704 266.65890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -03240705 266.65890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -03240706 266.65893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -03240707 266.65893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -03240708 266.65896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -03240709 266.65896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -03240710 266.65899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -03240711 266.65899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -03240712 266.65902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -03240713 266.65902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -03240714 266.65905762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -03240715 266.65905762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -03240716 266.65905762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -03240717 266.65908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -03240718 266.65908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -03240719 266.65911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -03240720 266.65914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -03240721 266.65914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -03240722 266.65917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -03240723 266.65917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -03240724 266.65921021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -03240725 266.65921021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -03240726 266.65924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -03240727 266.65924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -03240728 266.65924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -03240729 266.65924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -03240730 266.65927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -03240731 266.65927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -03240732 266.65930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -03240733 266.65930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -03240734 266.65933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -03240735 266.65933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -03240736 266.65936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -03240737 266.65936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -03240738 266.65939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -03240739 266.65939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -03240740 266.65942383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -03240741 266.65942383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -03240742 266.65945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -03240743 266.65945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -03240744 266.65948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -03240745 266.65948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -03240746 266.65951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -03240747 266.65951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -03240748 266.65954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -03240749 266.65954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -03240750 266.65954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -03240751 266.65954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -03240752 266.65957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -03240753 266.65957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -03240754 266.65960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -03240755 266.65960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -03240756 266.65963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -03240757 266.65963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -03240758 266.65966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -03240759 266.65966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -03240760 266.65969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -03240761 266.65969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -03240762 266.65969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -03240763 266.65969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -03240764 266.65972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -03240765 266.65972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -03240766 266.65975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -03240767 266.65975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -03240768 266.65979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -03240769 266.65979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -03240770 266.65982056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -03240771 266.65985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -03240772 266.65985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -03240773 266.65985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -03240774 266.65988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -03240775 266.65988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -03240776 266.65991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -03240777 266.65991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -03240778 266.65994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -03240779 266.65994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -03240780 266.65997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -03240781 266.65997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -03240782 266.66000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -03240783 266.66000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -03240784 266.66003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -03240785 266.66003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -03240786 266.66003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -03240787 266.66003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -03240788 266.66006470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -03240789 266.66006470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -03240790 266.66009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -03240791 266.66009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -03240792 266.66012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -03240793 266.66012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -03240794 266.66015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -03240795 266.66015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -03240796 266.66018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -03240797 266.66018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -03240798 266.66018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -03240799 266.66021729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -03240800 266.66021729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -03240801 266.66024780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -03240802 266.66027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -03240803 266.66027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -03240804 266.66030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -03240805 266.66030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -03240806 266.66033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -03240807 266.66033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -03240808 266.66033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -03240809 266.66033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -03240810 266.66036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -03240811 266.66036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -03240812 266.66040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -03240813 266.66040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -03240814 266.66043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -03240815 266.66043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -03240816 266.66046143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -03240817 266.66046143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -03240818 266.66049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -03240819 266.66049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -03240820 266.66049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -03240821 266.66049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -03240822 266.66052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -03240823 266.66052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -03240824 266.66055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -03240825 266.66058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -03240826 266.66061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -03240827 266.66061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -03240828 266.66064453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -03240829 266.66064453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -03240830 266.66064453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -03240831 266.66064453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -03240832 266.66067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce78 -03240833 266.66067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce78 -03240834 266.66070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce88 -03240835 266.66070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce88 -03240836 266.66073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce98 -03240837 266.66073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xce98 -03240838 266.66076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea8 -03240839 266.66076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea8 -03240840 266.66079712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb8 -03240841 266.66079712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb8 -03240842 266.66082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec8 -03240843 266.66082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec8 -03240844 266.66082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xced8 -03240845 266.66082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xced8 -03240846 266.66085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee8 -03240847 266.66085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee8 -03240848 266.66088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef8 -03240849 266.66088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef8 -03240850 266.66091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf08 -03240851 266.66091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf08 -03240852 266.66094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf18 -03240853 266.66094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf18 -03240854 266.66098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf28 -03240855 266.66098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf28 -03240856 266.66098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf38 -03240857 266.66098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf38 -03240858 266.66101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf48 -03240859 266.66101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf48 -03240860 266.66104126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf58 -03240861 266.66107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf58 -03240862 266.66107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf68 -03240863 266.66110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf68 -03240864 266.66113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf78 -03240865 266.66113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf78 -03240866 266.66113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf88 -03240867 266.66113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf88 -03240868 266.66116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf98 -03240869 266.66116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf98 -03240870 266.66119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa8 -03240871 266.66119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa8 -03240872 266.66122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb8 -03240873 266.66122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb8 -03240874 266.66125488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc8 -03240875 266.66125488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc8 -03240876 266.66128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd8 -03240877 266.66128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd8 -03240878 266.66128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe8 -03240879 266.66128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe8 -03240880 266.66131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff8 -03240881 266.66131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff8 -03240882 266.66134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd008 -03240883 266.66134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd008 -03240884 266.66137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd018 -03240885 266.66137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd018 -03240886 266.66140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd028 -03240887 266.66143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd028 -03240888 266.66143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd038 -03240889 266.66143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd038 -03240890 266.66146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd048 -03240891 266.66146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd048 -03240892 266.66149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd058 -03240893 266.66149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd058 -03240894 266.66152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd068 -03240895 266.66152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd068 -03240896 266.66156006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd078 -03240897 266.66156006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd078 -03240898 266.66159058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd088 -03240899 266.66159058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd088 -03240900 266.66162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd098 -03240901 266.66162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd098 -03240902 266.66162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a8 -03240903 266.66162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a8 -03240904 266.66165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b8 -03240905 266.66165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b8 -03240906 266.66168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -03240907 266.66168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -03240908 266.66171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -03240909 266.66174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -03240910 266.66177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -03240911 266.66177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -03240912 266.66177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -03240913 266.66177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -03240914 266.66180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -03240915 266.66180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -03240916 266.66183472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -03240917 266.66183472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -03240918 266.66186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -03240919 266.66186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -03240920 266.66189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -03240921 266.66189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -03240922 266.66192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -03240923 266.66192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -03240924 266.66192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -03240925 266.66192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -03240926 266.66195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -03240927 266.66195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -03240928 266.66198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -03240929 266.66201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -03240930 266.66204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -03240931 266.66204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -03240932 266.66207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -03240933 266.66207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -03240934 266.66207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -03240935 266.66207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -03240936 266.66210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -03240937 266.66210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -03240938 266.66213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -03240939 266.66213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -03240940 266.66217041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -03240941 266.66217041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -03240942 266.66220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -03240943 266.66220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -03240944 266.66223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -03240945 266.66223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -03240946 266.66223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -03240947 266.66223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -03240948 266.66226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -03240949 266.66226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -03240950 266.66229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -03240951 266.66232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -03240952 266.66235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -03240953 266.66235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -03240954 266.66238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -03240955 266.66238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -03240956 266.66241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -03240957 266.66241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -03240958 266.66241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -03240959 266.66241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -03240960 266.66244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -03240961 266.66244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -03240962 266.66247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -03240963 266.66247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -03240964 266.66250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -03240965 266.66250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -03240966 266.66253662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -03240967 266.66253662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -03240968 266.66256714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -03240969 266.66256714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -03240970 266.66256714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -03240971 266.66259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -03240972 266.66262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -03240973 266.66262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -03240974 266.66265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -03240975 266.66265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -03240976 266.66268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -03240977 266.66268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -03240978 266.66271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -03240979 266.66271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -03240980 266.66271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -03240981 266.66271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -03240982 266.66275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -03240983 266.66275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -03240984 266.66278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -03240985 266.66278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -03240986 266.66281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -03240987 266.66281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -03240988 266.66284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -03240989 266.66287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -03240990 266.66287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -03240991 266.66287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -03240992 266.66290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -03240993 266.66290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -03240994 266.66293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -03240995 266.66293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -03240996 266.66296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -03240997 266.66296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -03240998 266.66299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -03240999 266.66299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -03241000 266.66302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -03241001 266.66302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -03241002 266.66302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -03241003 266.66302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -03241004 266.66305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -03241005 266.66305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -03241006 266.66308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e8 -03241007 266.66308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e8 -03241008 266.66311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f8 -03241009 266.66314697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f8 -03241010 266.66317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd408 -03241011 266.66317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd408 -03241012 266.66320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd418 -03241013 266.66320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd418 -03241014 266.66320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd428 -03241015 266.66320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd428 -03241016 266.66323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd438 -03241017 266.66323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd438 -03241018 266.66326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd448 -03241019 266.66326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd448 -03241020 266.66329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd458 -03241021 266.66329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd458 -03241022 266.66333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd468 -03241023 266.66333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd468 -03241024 266.66336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd478 -03241025 266.66336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd478 -03241026 266.66336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd488 -03241027 266.66336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd488 -03241028 266.66339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd498 -03241029 266.66339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd498 -03241030 266.66342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a8 -03241031 266.66342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a8 -03241032 266.66345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b8 -03241033 266.66345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b8 -03241034 266.66348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c8 -03241035 266.66348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c8 -03241036 266.66351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d8 -03241037 266.66351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d8 -03241038 266.66351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e8 -03241039 266.66351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e8 -03241040 266.66354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f8 -03241041 266.66357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f8 -03241042 266.66360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd508 -03241043 266.66360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd508 -03241044 266.66363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd518 -03241045 266.66363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd518 -03241046 266.66366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd528 -03241047 266.66366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd528 -03241048 266.66366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd538 -03241049 266.66366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd538 -03241050 266.66369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd548 -03241051 266.66369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd548 -03241052 266.66372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd558 -03241053 266.66372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd558 -03241054 266.66375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd568 -03241055 266.66375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd568 -03241056 266.66378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd578 -03241057 266.66378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd578 -03241058 266.66381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd588 -03241059 266.66381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd588 -03241060 266.66381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd598 -03241061 266.66381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd598 -03241062 266.66384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a8 -03241063 266.66384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a8 -03241064 266.66387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b8 -03241065 266.66390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b8 -03241066 266.66394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c8 -03241067 266.66394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c8 -03241068 266.66397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d8 -03241069 266.66397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d8 -03241070 266.66400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e8 -03241071 266.66400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e8 -03241072 266.66400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f8 -03241073 266.66400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f8 -03241074 266.66403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd608 -03241075 266.66403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd608 -03241076 266.66406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd618 -03241077 266.66406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd618 -03241078 266.66409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd628 -03241079 266.66409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd628 -03241080 266.66412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd638 -03241081 266.66412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd638 -03241082 266.66415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd648 -03241083 266.66415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd648 -03241084 266.66415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd658 -03241085 266.66418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd658 -03241086 266.66421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd668 -03241087 266.66421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd668 -03241088 266.66424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd678 -03241089 266.66424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd678 -03241090 266.66427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd688 -03241091 266.66427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd688 -03241092 266.66430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -03241093 266.66430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -03241094 266.66430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -03241095 266.66430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -03241096 266.66433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -03241097 266.66433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -03241098 266.66436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -03241099 266.66436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -03241100 266.66439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -03241101 266.66439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -03241102 266.66442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -03241103 266.66442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -03241104 266.66445923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -03241105 266.66445923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -03241106 266.66448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -03241107 266.66448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -03241108 266.66452026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -03241109 266.66452026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -03241110 266.66455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -03241111 266.66455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -03241112 266.66458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -03241113 266.66458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -03241114 266.66461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -03241115 266.66461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -03241116 266.66464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -03241117 266.66464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -03241118 266.66464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -03241119 266.66464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -03241120 266.66467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -03241121 266.66467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -03241122 266.66470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -03241123 266.66470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -03241124 266.66473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -03241125 266.66473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -03241126 266.66476440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -03241127 266.66479492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -03241128 266.66479492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -03241129 266.66479492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -03241130 266.66482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -03241131 266.66482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -03241132 266.66485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -03241133 266.66485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -03241134 266.66488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e8 -03241135 266.66488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e8 -03241136 266.66491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f8 -03241137 266.66491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f8 -03241138 266.66494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd808 -03241139 266.66494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd808 -03241140 266.66494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd818 -03241141 266.66494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd818 -03241142 266.66497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd828 -03241143 266.66497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd828 -03241144 266.66500854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd838 -03241145 266.66503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd838 -03241146 266.66506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd848 -03241147 266.66506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd848 -03241148 266.66510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd858 -03241149 266.66510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd858 -03241150 266.66510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd868 -03241151 266.66510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd868 -03241152 266.66513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd878 -03241153 266.66513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd878 -03241154 266.66516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd888 -03241155 266.66516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd888 -03241156 266.66519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd898 -03241157 266.66519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd898 -03241158 266.66522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a8 -03241159 266.66522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a8 -03241160 266.66525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -03241161 266.66525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -03241162 266.66525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -03241163 266.66525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -03241164 266.66528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -03241165 266.66531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -03241166 266.66534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -03241167 266.66534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -03241168 266.66537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -03241169 266.66537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -03241170 266.66540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -03241171 266.66540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -03241172 266.66543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -03241173 266.66543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -03241174 266.66543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -03241175 266.66543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -03241176 266.66546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -03241177 266.66546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -03241178 266.66549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -03241179 266.66549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -03241180 266.66552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -03241181 266.66552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -03241182 266.66555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -03241183 266.66555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -03241184 266.66558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -03241185 266.66558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -03241186 266.66561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -03241187 266.66561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -03241188 266.66564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -03241189 266.66564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -03241190 266.66567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -03241191 266.66567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -03241192 266.66571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -03241193 266.66571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -03241194 266.66574097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -03241195 266.66574097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -03241196 266.66574097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -03241197 266.66574097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -03241198 266.66577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -03241199 266.66577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -03241200 266.66580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -03241201 266.66580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -03241202 266.66583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -03241203 266.66583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -03241204 266.66586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -03241205 266.66586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -03241206 266.66589355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -03241207 266.66589355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -03241208 266.66592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -03241209 266.66592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -03241210 266.66595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -03241211 266.66595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -03241212 266.66598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -03241213 266.66598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -03241214 266.66601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -03241215 266.66601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -03241216 266.66604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -03241217 266.66604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -03241218 266.66604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -03241219 266.66604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -03241220 266.66607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -03241221 266.66607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -03241222 266.66610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -03241223 266.66610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -03241224 266.66613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -03241225 266.66616821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -03241226 266.66619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -03241227 266.66619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -03241228 266.66622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad8 -03241229 266.66622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad8 -03241230 266.66622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -03241231 266.66622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -03241232 266.66625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -03241233 266.66625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -03241234 266.66629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -03241235 266.66629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -03241236 266.66632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -03241237 266.66632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -03241238 266.66635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -03241239 266.66635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -03241240 266.66638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -03241241 266.66638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -03241242 266.66638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -03241243 266.66638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -03241244 266.66641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -03241245 266.66641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -03241246 266.66644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -03241247 266.66647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -03241248 266.66650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -03241249 266.66650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -03241250 266.66653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -03241251 266.66653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -03241252 266.66653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -03241253 266.66653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -03241254 266.66656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -03241255 266.66656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -03241256 266.66659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -03241257 266.66659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -03241258 266.66662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -03241259 266.66662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -03241260 266.66665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -03241261 266.66665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -03241262 266.66668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -03241263 266.66668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -03241264 266.66668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -03241265 266.66668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -03241266 266.66671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -03241267 266.66674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -03241268 266.66677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -03241269 266.66677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -03241270 266.66680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -03241271 266.66680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -03241272 266.66683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -03241273 266.66683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -03241274 266.66683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -03241275 266.66683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -03241276 266.66687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -03241277 266.66687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -03241278 266.66690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc68 -03241279 266.66690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc68 -03241280 266.66693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc78 -03241281 266.66693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc78 -03241282 266.66696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc88 -03241283 266.66696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc88 -03241284 266.66699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc98 -03241285 266.66699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc98 -03241286 266.66702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca8 -03241287 266.66702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca8 -03241288 266.66702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb8 -03241289 266.66705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb8 -03241290 266.66708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc8 -03241291 266.66708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc8 -03241292 266.66711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -03241293 266.66711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -03241294 266.66714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -03241295 266.66714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -03241296 266.66717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -03241297 266.66717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -03241298 266.66717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -03241299 266.66717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -03241300 266.66720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -03241301 266.66720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -03241302 266.66723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -03241303 266.66723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -03241304 266.66726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -03241305 266.66726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -03241306 266.66729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -03241307 266.66729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -03241308 266.66732788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -03241309 266.66732788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -03241310 266.66735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -03241311 266.66735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -03241312 266.66738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -03241313 266.66738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -03241314 266.66741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -03241315 266.66741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -03241316 266.66744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd98 -03241317 266.66744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd98 -03241318 266.66748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda8 -03241319 266.66748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda8 -03241320 266.66748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -03241321 266.66748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -03241322 266.66751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -03241323 266.66751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -03241324 266.66754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -03241325 266.66754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -03241326 266.66757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -03241327 266.66757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -03241328 266.66760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -03241329 266.66763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -03241330 266.66763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -03241331 266.66763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -03241332 266.66766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -03241333 266.66766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -03241334 266.66769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -03241335 266.66769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -03241336 266.66772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde38 -03241337 266.66772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde38 -03241338 266.66775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde48 -03241339 266.66775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde48 -03241340 266.66778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde58 -03241341 266.66778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde58 -03241342 266.66781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde68 -03241343 266.66781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde68 -03241344 266.66781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde78 -03241345 266.66781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde78 -03241346 266.66784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde88 -03241347 266.66784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde88 -03241348 266.66787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde98 -03241349 266.66790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde98 -03241350 266.66793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea8 -03241351 266.66793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea8 -03241352 266.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb8 -03241353 266.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb8 -03241354 266.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec8 -03241355 266.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec8 -03241356 266.66799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xded8 -03241357 266.66799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xded8 -03241358 266.66802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee8 -03241359 266.66802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee8 -03241360 266.66806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef8 -03241361 266.66806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef8 -03241362 266.66809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf08 -03241363 266.66809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf08 -03241364 266.66812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf18 -03241365 266.66812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf18 -03241366 266.66812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf28 -03241367 266.66812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf28 -03241368 266.66824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf38 -03241369 266.66827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf38 -03241370 266.66827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf48 -03241371 266.66827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf48 -03241372 266.66830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf58 -03241373 266.66830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf58 -03241374 266.66833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf68 -03241375 266.66833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf68 -03241376 266.66836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf78 -03241377 266.66836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf78 -03241378 266.66839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf88 -03241379 266.66839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf88 -03241380 266.66842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf98 -03241381 266.66842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf98 -03241382 266.66842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa8 -03241383 266.66842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa8 -03241384 266.66857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb8 -03241385 266.66857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb8 -03241386 266.66860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc8 -03241387 266.66860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc8 -03241388 266.66860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -03241389 266.66860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -03241390 266.66864014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -03241391 266.66864014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -03241392 266.66867065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -03241393 266.66870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -03241394 266.66873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -03241395 266.66873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -03241396 266.66876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -03241397 266.66876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -03241398 266.66876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -03241399 266.66876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -03241400 266.66888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -03241401 266.66888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -03241402 266.66891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -03241403 266.66891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -03241404 266.66891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -03241405 266.66891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -03241406 266.66900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -03241407 266.66900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -03241408 266.66903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -03241409 266.66903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -03241410 266.66906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -03241411 266.66906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -03241412 266.66906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -03241413 266.66906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -03241414 266.66909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -03241415 266.66909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -03241416 266.66912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -03241417 266.66912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -03241418 266.66915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -03241419 266.66915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -03241420 266.66918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d8 -03241421 266.66918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d8 -03241422 266.66921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e8 -03241423 266.66921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e8 -03241424 266.66925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f8 -03241425 266.66925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f8 -03241426 266.66928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe108 -03241427 266.66928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe108 -03241428 266.66931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe118 -03241429 266.66931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe118 -03241430 266.66934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe128 -03241431 266.66934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe128 -03241432 266.66937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe138 -03241433 266.66937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe138 -03241434 266.66940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe148 -03241435 266.66940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe148 -03241436 266.66940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe158 -03241437 266.66940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe158 -03241438 266.66943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe168 -03241439 266.66943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe168 -03241440 266.66946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe178 -03241441 266.66946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe178 -03241442 266.66949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe188 -03241443 266.66952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe188 -03241444 266.66955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe198 -03241445 266.66955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe198 -03241446 266.66955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a8 -03241447 266.66955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a8 -03241448 266.66958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b8 -03241449 266.66958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b8 -03241450 266.66961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -03241451 266.66961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -03241452 266.66964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -03241453 266.66964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -03241454 266.66967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e8 -03241455 266.66967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e8 -03241456 266.66970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f8 -03241457 266.66970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f8 -03241458 266.66970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe208 -03241459 266.66970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe208 -03241460 266.66973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -03241461 266.66973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -03241462 266.66976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -03241463 266.66976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -03241464 266.66983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -03241465 266.66983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -03241466 266.66986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -03241467 266.66986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -03241468 266.66986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -03241469 266.66986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -03241470 266.66989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -03241471 266.66989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -03241472 266.66992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -03241473 266.66992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -03241474 266.66995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -03241475 266.66995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -03241476 266.66998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -03241477 266.66998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -03241478 266.67001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -03241479 266.67001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -03241480 266.67004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -03241481 266.67004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -03241482 266.67004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c8 -03241483 266.67004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c8 -03241484 266.67007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d8 -03241485 266.67010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d8 -03241486 266.67013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e8 -03241487 266.67013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e8 -03241488 266.67016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f8 -03241489 266.67016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f8 -03241490 266.67019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe308 -03241491 266.67019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe308 -03241492 266.67019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe318 -03241493 266.67019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe318 -03241494 266.67022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe328 -03241495 266.67022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe328 -03241496 266.67025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe338 -03241497 266.67025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe338 -03241498 266.67028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe348 -03241499 266.67028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe348 -03241500 266.67031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe358 -03241501 266.67031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe358 -03241502 266.67034912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe368 -03241503 266.67034912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe368 -03241504 266.67034912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe378 -03241505 266.67037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe378 -03241506 266.67037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe388 -03241507 266.67041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe388 -03241508 266.67044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe398 -03241509 266.67044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe398 -03241510 266.67047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a8 -03241511 266.67047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a8 -03241512 266.67050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b8 -03241513 266.67050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b8 -03241514 266.67050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c8 -03241515 266.67050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c8 -03241516 266.67053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d8 -03241517 266.67053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d8 -03241518 266.67056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e8 -03241519 266.67056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e8 -03241520 266.67059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f8 -03241521 266.67059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f8 -03241522 266.67062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe408 -03241523 266.67062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe408 -03241524 266.67065430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe418 -03241525 266.67065430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe418 -03241526 266.67065430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe428 -03241527 266.67068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe428 -03241528 266.67071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe438 -03241529 266.67071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe438 -03241530 266.67074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe448 -03241531 266.67074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe448 -03241532 266.67077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe458 -03241533 266.67077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe458 -03241534 266.67080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe468 -03241535 266.67080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe468 -03241536 266.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe478 -03241537 266.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe478 -03241538 266.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe488 -03241539 266.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe488 -03241540 266.67086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe498 -03241541 266.67086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe498 -03241542 266.67089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a8 -03241543 266.67089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a8 -03241544 266.67092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b8 -03241545 266.67092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b8 -03241546 266.67095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c8 -03241547 266.67098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c8 -03241548 266.67098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d8 -03241549 266.67098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d8 -03241550 266.67102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e8 -03241551 266.67102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e8 -03241552 266.67105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f8 -03241553 266.67105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f8 -03241554 266.67108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe508 -03241555 266.67108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe508 -03241556 266.67111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe518 -03241557 266.67111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe518 -03241558 266.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe528 -03241559 266.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe528 -03241560 266.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe538 -03241561 266.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe538 -03241562 266.67117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe548 -03241563 266.67117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe548 -03241564 266.67120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe558 -03241565 266.67120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe558 -03241566 266.67123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe568 -03241567 266.67123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe568 -03241568 266.67126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe578 -03241569 266.67129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe578 -03241570 266.67129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe588 -03241571 266.67129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe588 -03241572 266.67132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe598 -03241573 266.67132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe598 -03241574 266.67135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a8 -03241575 266.67135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a8 -03241576 266.67138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b8 -03241577 266.67138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b8 -03241578 266.67141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c8 -03241579 266.67141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c8 -03241580 266.67144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d8 -03241581 266.67144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d8 -03241582 266.67144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e8 -03241583 266.67144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e8 -03241584 266.67147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f8 -03241585 266.67147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f8 -03241586 266.67150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -03241587 266.67150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -03241588 266.67153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -03241589 266.67156982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -03241590 266.67160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -03241591 266.67160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -03241592 266.67163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -03241593 266.67163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -03241594 266.67163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -03241595 266.67163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -03241596 266.67166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe658 -03241597 266.67166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe658 -03241598 266.67169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe668 -03241599 266.67169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe668 -03241600 266.67172241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe678 -03241601 266.67172241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe678 -03241602 266.67175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe688 -03241603 266.67175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe688 -03241604 266.67178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -03241605 266.67178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -03241606 266.67178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -03241607 266.67178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -03241608 266.67181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -03241609 266.67181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -03241610 266.67184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -03241611 266.67187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -03241612 266.67190552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -03241613 266.67190552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -03241614 266.67193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -03241615 266.67193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -03241616 266.67193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -03241617 266.67193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -03241618 266.67196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -03241619 266.67196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -03241620 266.67199707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe718 -03241621 266.67199707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe718 -03241622 266.67202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe728 -03241623 266.67202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe728 -03241624 266.67205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe738 -03241625 266.67205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe738 -03241626 266.67208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe748 -03241627 266.67208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe748 -03241628 266.67208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe758 -03241629 266.67208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe758 -03241630 266.67211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe768 -03241631 266.67214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe768 -03241632 266.67218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe778 -03241633 266.67218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe778 -03241634 266.67221069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe788 -03241635 266.67221069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe788 -03241636 266.67224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe798 -03241637 266.67224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe798 -03241638 266.67224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a8 -03241639 266.67224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a8 -03241640 266.67227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b8 -03241641 266.67227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b8 -03241642 266.67230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c8 -03241643 266.67230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c8 -03241644 266.67233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d8 -03241645 266.67233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d8 -03241646 266.67236328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e8 -03241647 266.67236328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e8 -03241648 266.67239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7f8 -03241649 266.67239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7f8 -03241650 266.67242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe808 -03241651 266.67242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe808 -03241652 266.67245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe818 -03241653 266.67245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe818 -03241654 266.67248535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe828 -03241655 266.67248535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe828 -03241656 266.67251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe838 -03241657 266.67251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe838 -03241658 266.67254639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe848 -03241659 266.67254639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe848 -03241660 266.67257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe858 -03241661 266.67257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe858 -03241662 266.67257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe868 -03241663 266.67257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe868 -03241664 266.67260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe878 -03241665 266.67260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe878 -03241666 266.67263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe888 -03241667 266.67263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe888 -03241668 266.67266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe898 -03241669 266.67266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe898 -03241670 266.67269897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a8 -03241671 266.67269897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a8 -03241672 266.67272949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b8 -03241673 266.67272949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b8 -03241674 266.67276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c8 -03241675 266.67276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c8 -03241676 266.67279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d8 -03241677 266.67279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d8 -03241678 266.67282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e8 -03241679 266.67282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e8 -03241680 266.67285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f8 -03241681 266.67285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f8 -03241682 266.67288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe908 -03241683 266.67288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe908 -03241684 266.67288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe918 -03241685 266.67288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe918 -03241686 266.67291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe928 -03241687 266.67291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe928 -03241688 266.67294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe938 -03241689 266.67294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe938 -03241690 266.67297363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe948 -03241691 266.67297363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe948 -03241692 266.67300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe958 -03241693 266.67303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe958 -03241694 266.67303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe968 -03241695 266.67303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe968 -03241696 266.67306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe978 -03241697 266.67306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe978 -03241698 266.67309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe988 -03241699 266.67309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe988 -03241700 266.67312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe998 -03241701 266.67312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe998 -03241702 266.67315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a8 -03241703 266.67315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a8 -03241704 266.67318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b8 -03241705 266.67318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b8 -03241706 266.67321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c8 -03241707 266.67321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c8 -03241708 266.67321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d8 -03241709 266.67321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d8 -03241710 266.67324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e8 -03241711 266.67324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e8 -03241712 266.67327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f8 -03241713 266.67327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f8 -03241714 266.67330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -03241715 266.67333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -03241716 266.67337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -03241717 266.67337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -03241718 266.67337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -03241719 266.67337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -03241720 266.67340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -03241721 266.67340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -03241722 266.67343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -03241723 266.67343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -03241724 266.67346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -03241725 266.67346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -03241726 266.67349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -03241727 266.67349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -03241728 266.67352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -03241729 266.67352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -03241730 266.67352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -03241731 266.67352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -03241732 266.67355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -03241733 266.67355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -03241734 266.67358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -03241735 266.67361450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -03241736 266.67364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -03241737 266.67364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -03241738 266.67367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -03241739 266.67367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -03241740 266.67367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -03241741 266.67367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -03241742 266.67370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -03241743 266.67370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -03241744 266.67373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -03241745 266.67373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -03241746 266.67376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb08 -03241747 266.67376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb08 -03241748 266.67379761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb18 -03241749 266.67379761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb18 -03241750 266.67382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb28 -03241751 266.67382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb28 -03241752 266.67382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb38 -03241753 266.67382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb38 -03241754 266.67385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb48 -03241755 266.67385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb48 -03241756 266.67388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb58 -03241757 266.67391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb58 -03241758 266.67395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb68 -03241759 266.67395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb68 -03241760 266.67398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb78 -03241761 266.67398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb78 -03241762 266.67401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb88 -03241763 266.67401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb88 -03241764 266.67401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb98 -03241765 266.67401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb98 -03241766 266.67404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba8 -03241767 266.67404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba8 -03241768 266.67407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb8 -03241769 266.67407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb8 -03241770 266.67410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc8 -03241771 266.67410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc8 -03241772 266.67413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd8 -03241773 266.67413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd8 -03241774 266.67416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe8 -03241775 266.67416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe8 -03241776 266.67416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf8 -03241777 266.67416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf8 -03241778 266.67419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec08 -03241779 266.67422485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec08 -03241780 266.67425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec18 -03241781 266.67425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec18 -03241782 266.67428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -03241783 266.67428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -03241784 266.67431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -03241785 266.67431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -03241786 266.67431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -03241787 266.67431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -03241788 266.67434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -03241789 266.67434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -03241790 266.67437744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec68 -03241791 266.67437744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec68 -03241792 266.67440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec78 -03241793 266.67440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec78 -03241794 266.67443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec88 -03241795 266.67443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec88 -03241796 266.67446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec98 -03241797 266.67446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xec98 -03241798 266.67446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca8 -03241799 266.67449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca8 -03241800 266.67453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb8 -03241801 266.67453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb8 -03241802 266.67456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc8 -03241803 266.67456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc8 -03241804 266.67459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd8 -03241805 266.67459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd8 -03241806 266.67462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xece8 -03241807 266.67462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xece8 -03241808 266.67462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf8 -03241809 266.67462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf8 -03241810 266.67465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed08 -03241811 266.67465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed08 -03241812 266.67468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed18 -03241813 266.67468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed18 -03241814 266.67471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed28 -03241815 266.67471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed28 -03241816 266.67474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed38 -03241817 266.67474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed38 -03241818 266.67477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed48 -03241819 266.67477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed48 -03241820 266.67480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed58 -03241821 266.67480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed58 -03241822 266.67483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed68 -03241823 266.67483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed68 -03241824 266.67486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -03241825 266.67486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -03241826 266.67489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed88 -03241827 266.67489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed88 -03241828 266.67492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed98 -03241829 266.67492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xed98 -03241830 266.67495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda8 -03241831 266.67495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda8 -03241832 266.67495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb8 -03241833 266.67495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb8 -03241834 266.67498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc8 -03241835 266.67498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc8 -03241836 266.67501831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd8 -03241837 266.67501831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd8 -03241838 266.67504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xede8 -03241839 266.67504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xede8 -03241840 266.67507935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf8 -03241841 266.67510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf8 -03241842 266.67510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee08 -03241843 266.67510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee08 -03241844 266.67514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee18 -03241845 266.67514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee18 -03241846 266.67517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee28 -03241847 266.67517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee28 -03241848 266.67520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -03241849 266.67520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -03241850 266.67523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -03241851 266.67523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -03241852 266.67526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -03241853 266.67526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -03241854 266.67535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee68 -03241855 266.67535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee68 -03241856 266.67538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee78 -03241857 266.67538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee78 -03241858 266.67541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee88 -03241859 266.67541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee88 -03241860 266.67544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee98 -03241861 266.67544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xee98 -03241862 266.67544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea8 -03241863 266.67544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea8 -03241864 266.67547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb8 -03241865 266.67547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb8 -03241866 266.67550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec8 -03241867 266.67550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec8 -03241868 266.67553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed8 -03241869 266.67556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed8 -03241870 266.67559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee8 -03241871 266.67559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee8 -03241872 266.67559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef8 -03241873 266.67559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef8 -03241874 266.67562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef08 -03241875 266.67562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef08 -03241876 266.67565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef18 -03241877 266.67565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef18 -03241878 266.67568970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef28 -03241879 266.67568970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef28 -03241880 266.67572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef38 -03241881 266.67572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef38 -03241882 266.67575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -03241883 266.67575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -03241884 266.67575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -03241885 266.67575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -03241886 266.67578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -03241887 266.67578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -03241888 266.67581177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -03241889 266.67584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -03241890 266.67587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -03241891 266.67587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -03241892 266.67590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef98 -03241893 266.67590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xef98 -03241894 266.67590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa8 -03241895 266.67590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa8 -03241896 266.67593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb8 -03241897 266.67593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb8 -03241898 266.67596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc8 -03241899 266.67596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc8 -03241900 266.67599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd8 -03241901 266.67599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd8 -03241902 266.67602539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe8 -03241903 266.67602539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe8 -03241904 266.67605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff8 -03241905 266.67605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff8 -03241906 266.67605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf008 -03241907 266.67605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf008 -03241908 266.67608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf018 -03241909 266.67611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf018 -03241910 266.67614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf028 -03241911 266.67614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf028 -03241912 266.67617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf038 -03241913 266.67617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf038 -03241914 266.67620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf048 -03241915 266.67620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf048 -03241916 266.67623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf058 -03241917 266.67623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf058 -03241918 266.67623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf068 -03241919 266.67623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf068 -03241920 266.67626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf078 -03241921 266.67626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf078 -03241922 266.67630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf088 -03241923 266.67630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf088 -03241924 266.67633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf098 -03241925 266.67633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf098 -03241926 266.67636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a8 -03241927 266.67636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a8 -03241928 266.67639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b8 -03241929 266.67639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b8 -03241930 266.67639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c8 -03241931 266.67642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c8 -03241932 266.67645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d8 -03241933 266.67645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d8 -03241934 266.67648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e8 -03241935 266.67648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e8 -03241936 266.67651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f8 -03241937 266.67651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f8 -03241938 266.67654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf108 -03241939 266.67654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf108 -03241940 266.67654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf118 -03241941 266.67654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf118 -03241942 266.67657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf128 -03241943 266.67657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf128 -03241944 266.67660522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf138 -03241945 266.67660522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf138 -03241946 266.67663574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf148 -03241947 266.67663574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf148 -03241948 266.67666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf158 -03241949 266.67666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf158 -03241950 266.67669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf168 -03241951 266.67669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf168 -03241952 266.67672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf178 -03241953 266.67672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf178 -03241954 266.67675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf188 -03241955 266.67675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf188 -03241956 266.67678833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf198 -03241957 266.67678833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf198 -03241958 266.67681885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a8 -03241959 266.67681885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a8 -03241960 266.67684937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b8 -03241961 266.67684937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b8 -03241962 266.67684937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c8 -03241963 266.67684937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c8 -03242854 266.68957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da8 -03242855 266.68957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da8 -03242856 266.68957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db8 -03242857 266.68957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db8 -03242858 266.68960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc8 -03242859 266.68960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc8 -03242860 266.68963623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd8 -03242861 266.68963623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd8 -03242862 266.68966675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de8 -03242863 266.68966675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de8 -03242864 266.68969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df8 -03242865 266.68969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df8 -03242866 266.68972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e08 -03242867 266.68972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e08 -03242868 266.68972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e18 -03242869 266.68975830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e18 -03242870 266.68978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e28 -03242871 266.68978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e28 -03242872 266.68981934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e38 -03242873 266.68981934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e38 -03242874 266.68984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e48 -03242875 266.68984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e48 -03242876 266.68988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e58 -03242877 266.68988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e58 -03242878 266.68988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e68 -03242879 266.68988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e68 -03242880 266.68991089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e78 -03242881 266.68991089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e78 -03242882 266.68994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e88 -03242883 266.68994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e88 -03242884 266.68997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e98 -03242885 266.68997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e98 -03242886 266.69000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ea8 -03242887 266.69000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ea8 -03242888 266.69003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10eb8 -03242889 266.69003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10eb8 -03242890 266.69006348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec8 -03242891 266.69006348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec8 -03242892 266.69009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed8 -03242893 266.69009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed8 -03242894 266.69012451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee8 -03242895 266.69012451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee8 -03242896 266.69015503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef8 -03242897 266.69015503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef8 -03245674 266.73071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c8 -03245675 266.73071289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c8 -03245676 266.73074341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d8 -03245677 266.73077393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d8 -03245678 266.73080444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e8 -03245679 266.73080444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e8 -03245680 266.73083496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f8 -03245681 266.73083496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f8 -03245682 266.73086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16608 -03245683 266.73086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16608 -03245684 266.73086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16618 -03245685 266.73086548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16618 -03245686 266.73089600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16628 -03245687 266.73089600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16628 -03245688 266.73092651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16638 -03245689 266.73092651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16638 -03245690 266.73095703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16648 -03245691 266.73095703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16648 -03245692 266.73098755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16658 -03245693 266.73098755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16658 -03245694 266.73101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16668 -03245695 266.73101807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16668 -03245696 266.73104858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -03245697 266.73104858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -03245698 266.73107910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -03245699 266.73107910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -03245700 266.73110962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -03245701 266.73110962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -03245702 266.73114014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -03245703 266.73114014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -03245704 266.73117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -03245705 266.73117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -03245706 266.73120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -03245707 266.73120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -03245708 266.73120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -03245709 266.73120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -03245710 266.73123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e8 -03245711 266.73123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e8 -03245712 266.73126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f8 -03245713 266.73126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f8 -03245714 266.73129272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16708 -03245715 266.73129272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16708 -03245716 266.73132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16718 -03245717 266.73135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16718 -03249204 266.78140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d418 -03249205 266.78140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d418 -03249206 266.78140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d428 -03249207 266.78140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d428 -03249208 266.78143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d438 -03249209 266.78143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d438 -03249210 266.78146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d448 -03249211 266.78146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d448 -03249212 266.78149414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d458 -03249213 266.78152466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d458 -03249214 266.78155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d468 -03249215 266.78155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d468 -03249216 266.78155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d478 -03249217 266.78155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d478 -03249218 266.78158569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d488 -03249219 266.78158569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d488 -03249220 266.78161621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d498 -03249221 266.78161621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d498 -03249222 266.78164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a8 -03249223 266.78164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a8 -03249224 266.78167725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b8 -03249225 266.78167725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b8 -03249226 266.78170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c8 -03249227 266.78170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c8 -03249228 266.78170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d8 -03249229 266.78170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d8 -03249230 266.78173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4e8 -03249231 266.78173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4e8 -03249232 266.78176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4f8 -03249233 266.78179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4f8 -03249234 266.78182983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d508 -03249235 266.78182983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d508 -03249236 266.78186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d518 -03249237 266.78186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d518 -03249238 266.78186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d528 -03249239 266.78186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d528 -03249240 266.78189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d538 -03249241 266.78189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d538 -03249242 266.78192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d548 -03249243 266.78192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d548 -03249244 266.78195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d558 -03249245 266.78195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d558 -03249246 266.78198242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d568 -03249247 266.78198242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d568 -03263334 266.98315430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38da8 -03263335 266.98315430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38da8 -03263336 266.98315430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38db8 -03263337 266.98315430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38db8 -03263338 266.98318481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dc8 -03263339 266.98318481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dc8 -03263340 266.98321533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd8 -03263341 266.98324585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd8 -03263342 266.98327637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de8 -03263343 266.98327637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de8 -03263344 266.98330688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df8 -03263345 266.98330688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df8 -03263346 266.98330688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e08 -03263347 266.98330688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e08 -03263348 266.98333740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e18 -03263349 266.98333740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e18 -03263350 266.98345947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e28 -03263351 266.98345947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e28 -03263352 266.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e38 -03263353 266.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e38 -03263354 266.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e48 -03263355 266.98348999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e48 -03263356 266.98352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -03263357 266.98352051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -03263358 266.98355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -03263359 266.98355103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -03263360 266.98361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -03263361 266.98361206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -03263362 266.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -03263363 266.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -03263364 266.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -03263365 266.98364258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -03263366 266.98367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea8 -03263367 266.98367310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea8 -03263368 266.98370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb8 -03263369 266.98370361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb8 -03263370 266.98373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec8 -03263371 266.98373413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec8 -03263372 266.98376465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed8 -03263373 266.98376465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed8 -03263374 266.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee8 -03263375 266.98379517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee8 -03263376 266.98382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef8 -03263377 266.98382568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef8 -03265920 267.02105713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de78 -03265921 267.02105713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de78 -03265922 267.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de88 -03265923 267.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de88 -03265924 267.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de98 -03265925 267.02111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de98 -03265926 267.02114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea8 -03265927 267.02114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea8 -03265928 267.02117920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -03265929 267.02117920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -03265930 267.02120972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -03265931 267.02120972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -03265932 267.02124023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -03265933 267.02124023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -03265934 267.02127075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -03265935 267.02127075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -03265936 267.02130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -03265937 267.02130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -03265938 267.02130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -03265939 267.02133179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -03265940 267.02136230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -03265941 267.02136230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -03265942 267.02139282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -03265943 267.02139282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -03265944 267.02145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -03265945 267.02145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -03265946 267.02145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -03265947 267.02148438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -03265948 267.02148438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -03265949 267.02151489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -03265950 267.02154541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -03265951 267.02154541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -03265952 267.02157593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -03265953 267.02157593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -03265954 267.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -03265955 267.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -03265956 267.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -03265957 267.02160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -03265958 267.02163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -03265959 267.02163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -03265960 267.02166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -03265961 267.02166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -03265962 267.02169800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -03265963 267.02169800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -03268542 267.05834961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43068 -03268543 267.05834961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43068 -03268544 267.05838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43078 -03268545 267.05838013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43078 -03268546 267.05841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43088 -03268547 267.05841064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43088 -03268548 267.05844116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43098 -03268549 267.05844116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43098 -03268550 267.05847168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a8 -03268551 267.05847168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a8 -03268552 267.05850220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b8 -03268553 267.05850220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b8 -03268554 267.05853271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c8 -03268555 267.05853271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c8 -03268556 267.05856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d8 -03268557 267.05856323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d8 -03268558 267.05859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e8 -03268559 267.05859375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e8 -03268560 267.05862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f8 -03268561 267.05862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f8 -03268562 267.05862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43108 -03268563 267.05862427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43108 -03268564 267.05865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43118 -03268565 267.05865479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43118 -03268566 267.05868530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43128 -03268567 267.05868530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43128 -03268568 267.05871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43138 -03268569 267.05871582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43138 -03268570 267.05874634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43148 -03268571 267.05877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43148 -03268572 267.05877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43158 -03268573 267.05877686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43158 -03268574 267.05880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43168 -03268575 267.05880737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43168 -03268576 267.05883789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43178 -03268577 267.05883789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43178 -03268578 267.05886841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43188 -03268579 267.05886841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43188 -03268580 267.05889893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43198 -03268581 267.05889893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43198 -03268582 267.05892944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a8 -03268583 267.05892944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a8 -03268584 267.05892944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x431b8 -03268585 267.05892944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x431b8 -03271112 267.09442139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -03271113 267.09442139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -03271114 267.09448242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -03271115 267.09448242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -03271116 267.09451294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -03271117 267.09451294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -03271118 267.09451294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -03271119 267.09451294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -03271120 267.09454346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -03271121 267.09454346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -03271122 267.09457397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -03271123 267.09457397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -03271124 267.09460449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -03271125 267.09460449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -03271126 267.09463501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -03271127 267.09463501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -03271128 267.09466553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -03271129 267.09466553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -03271130 267.09469604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -03271131 267.09469604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -03271132 267.09469604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48158 -03271133 267.09469604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48158 -03271134 267.09472656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48168 -03271135 267.09472656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48168 -03271136 267.09475708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48178 -03271137 267.09475708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48178 -03271138 267.09478760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48188 -03271139 267.09478760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48188 -03271140 267.09481812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48198 -03271141 267.09481812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48198 -03271142 267.09484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a8 -03271143 267.09484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a8 -03271144 267.09484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b8 -03271145 267.09484863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b8 -03271146 267.09494019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c8 -03271147 267.09494019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c8 -03271148 267.09497070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d8 -03271149 267.09497070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d8 -03271150 267.09500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e8 -03271151 267.09500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e8 -03271152 267.09500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f8 -03271153 267.09500122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f8 -03271154 267.09503174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48208 -03271155 267.09503174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48208 -03274038 267.13674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc28 -03274039 267.13674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc28 -03274040 267.13677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc38 -03274041 267.13677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc38 -03274042 267.13677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc48 -03274043 267.13677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc48 -03274044 267.13681030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc58 -03274045 267.13681030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc58 -03274046 267.13684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc68 -03274047 267.13684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc68 -03274048 267.13687134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc78 -03274049 267.13687134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc78 -03274050 267.13690186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc88 -03274051 267.13690186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc88 -03274052 267.13693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc98 -03274053 267.13693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc98 -03274054 267.13693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca8 -03274055 267.13693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca8 -03274056 267.13696289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb8 -03274057 267.13699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb8 -03274058 267.13702393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc8 -03274059 267.13702393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc8 -03274060 267.13705444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -03274061 267.13705444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -03274062 267.13708496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -03274063 267.13708496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -03274064 267.13711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -03274065 267.13711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -03274066 267.13711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -03274067 267.13711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -03274068 267.13714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -03274069 267.13714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -03274070 267.13717651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -03274071 267.13717651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -03274072 267.13720703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -03274073 267.13720703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -03274074 267.13723755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -03274075 267.13723755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -03274076 267.13726807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -03274077 267.13726807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -03274078 267.13729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -03274079 267.13729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -03274080 267.13732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -03274081 267.13732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -03276558 267.17269897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae8 -03276559 267.17276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae8 -03276560 267.17279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af8 -03276561 267.17279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af8 -03276562 267.17282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b08 -03276563 267.17282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b08 -03276564 267.17285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b18 -03276565 267.17285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b18 -03276566 267.17285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b28 -03276567 267.17285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b28 -03276568 267.17288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b38 -03276569 267.17288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b38 -03276570 267.17291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b48 -03276571 267.17291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b48 -03276572 267.17294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -03276573 267.17294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -03276574 267.17297363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b68 -03276575 267.17300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b68 -03276576 267.17300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b78 -03276577 267.17300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b78 -03276578 267.17303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b88 -03276579 267.17303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b88 -03276580 267.17306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b98 -03276581 267.17306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b98 -03276582 267.17309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba8 -03276583 267.17309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba8 -03276584 267.17312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb8 -03276585 267.17312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb8 -03276586 267.17315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc8 -03276587 267.17315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc8 -03276588 267.17315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd8 -03276589 267.17315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd8 -03276590 267.17318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be8 -03276591 267.17318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be8 -03276592 267.17321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf8 -03276593 267.17321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf8 -03276594 267.17324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c08 -03276595 267.17324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c08 -03276596 267.17327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c18 -03276597 267.17327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c18 -03276598 267.17330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c28 -03276599 267.17330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c28 -03276600 267.17333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c38 -03276601 267.17333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c38 -03276632 267.50439453 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276633 267.50442505 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276634 267.50442505 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276635 267.50445557 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03276636 267.50457764 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276637 267.50457764 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03276638 267.50463867 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276639 267.50466919 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03276640 267.86328125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03276641 267.88220215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276642 267.88220215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276643 269.88323975 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03276644 269.90093994 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276645 269.90093994 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276646 270.01071167 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276647 270.01074219 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276648 270.01077271 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276649 270.01077271 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03276650 270.01089478 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276651 270.01089478 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03276652 270.01095581 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276653 270.01098633 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03276654 270.14456177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03276655 270.14456177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03276656 270.14459229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03276657 270.14459229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03276658 270.14462280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03276659 270.14462280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03276660 270.14465332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03276661 270.14465332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03276662 270.14465332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03276663 270.14468384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03276664 270.14471436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03276665 270.14471436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03276666 270.14474487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03276667 270.14474487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03276668 270.14477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03276669 270.14477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03276670 270.14483643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03276671 270.14483643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03276672 270.14486694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03276673 270.14486694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03276674 270.14489746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03276675 270.14489746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03276676 270.14492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03276677 270.14492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03276678 270.14495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03276679 270.14495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03276680 270.14495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03276681 270.14495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03276682 270.14498901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03276683 270.14498901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03276684 270.14501953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03276685 270.14501953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03276686 270.14514160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03276687 270.14514160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03276688 270.14517212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03276689 270.14517212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03276690 270.14520264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03276691 270.14520264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03276692 270.14523315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03276693 270.14523315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03276694 270.14526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03276695 270.14526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03276696 270.14529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03276697 270.14529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03276698 270.14529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03276699 270.14529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03276700 270.14532471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03276701 270.14532471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03276702 270.14535522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03276703 270.14535522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03276704 270.14538574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03276705 270.14538574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03276706 270.14541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03276707 270.14541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03276708 270.14544678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03276709 270.14544678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03276710 270.14544678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03276711 270.14547729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03276712 270.14547729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03276713 270.14550781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03276714 270.14553833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03276715 270.14553833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03276716 270.14556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03276717 270.14556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03276718 270.14559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03276719 270.14559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03276720 270.14559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03276721 270.14559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03276722 270.14562988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03276723 270.14562988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03276724 270.14566040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03276725 270.14566040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03276726 270.14569092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03276727 270.14569092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03276728 270.14572144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03276729 270.14572144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03276730 270.14575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03276731 270.14575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03276732 270.14575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03276733 270.14575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03276734 270.14578247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03276735 270.14581299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03276736 270.14584351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03276737 270.14584351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03276738 270.14587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03276739 270.14587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03276740 270.14590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03276741 270.14590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03276742 270.14593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03276743 270.14593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03276744 270.14593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03276745 270.14593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03276746 270.14596558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03276747 270.14596558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03276748 270.14599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03276749 270.14599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03276750 270.14602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03276751 270.14602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03276752 270.14605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03276753 270.14605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03276754 270.14608765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03276755 270.14608765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03276756 270.14608765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03276757 270.14611816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03276758 270.14614868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03276759 270.14614868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03276760 270.14617920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03276761 270.14617920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03276762 270.14620972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03276763 270.14620972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03276764 270.14624023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03276765 270.14624023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03276766 270.14624023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03276767 270.14624023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03276768 270.14627075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03276769 270.14627075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03276770 270.14630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03276771 270.14630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03276772 270.14633179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03276773 270.14633179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03276774 270.14636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03276775 270.14636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03276776 270.14639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03276777 270.14639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03276778 270.14642334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03276779 270.14642334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03276780 270.14645386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03276781 270.14645386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03276782 270.14648438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03276783 270.14648438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03276784 270.14651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03276785 270.14651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03276786 270.14654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03276787 270.14654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03276788 270.14654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03276789 270.14654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03276790 270.14657593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03276791 270.14657593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03276792 270.14660645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03276793 270.14660645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03276794 270.14663696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03276795 270.14666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03276796 270.14666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03276797 270.14669800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03276798 270.14672852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03276799 270.14672852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03276800 270.14672852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03276801 270.14672852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03276802 270.14675903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03276803 270.14675903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03276804 270.14678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03276805 270.14678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03276806 270.14682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03276807 270.14682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03276808 270.14685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03276809 270.14685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03276810 270.14688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03276811 270.14688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03276812 270.14688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03276813 270.14688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03276814 270.14691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03276815 270.14691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03276816 270.14694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03276817 270.14694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03276818 270.14697266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03276819 270.14697266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03276820 270.14700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03276821 270.14700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03276822 270.14703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03276823 270.14703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03276824 270.14703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03276825 270.14703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03276826 270.14706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03276827 270.14706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03276828 270.14709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03276829 270.14709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03276830 270.14712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03276831 270.14712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03276832 270.14715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03276833 270.14715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03276834 270.14718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03276835 270.14718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03276836 270.14718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03276837 270.14721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03276838 270.14721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03276839 270.14724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03276840 270.14727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03276841 270.14727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03276842 270.14730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03276843 270.14730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03276844 270.14733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03276845 270.14733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03276846 270.14733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03276847 270.14733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03276848 270.14736938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03276849 270.14736938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03276850 270.14739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03276851 270.14739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03276852 270.14743042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03276853 270.14743042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03276854 270.14746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03276855 270.14746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03276856 270.14749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03276857 270.14749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03276858 270.14752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03276859 270.14752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03276860 270.14752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03276861 270.14752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03276862 270.14755249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03276863 270.14755249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03276864 270.14758301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03276865 270.14761353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03276866 270.14764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03276867 270.14764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03276868 270.14767456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03276869 270.14767456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03276870 270.14767456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03276871 270.14767456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03276872 270.14770508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03276873 270.14770508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03276874 270.14773560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03276875 270.14773560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03276876 270.14776611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03276877 270.14776611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03276878 270.14779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03276879 270.14779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03276880 270.14782715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03276881 270.14782715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03276882 270.14785767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03276883 270.14785767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03276884 270.14788818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03276885 270.14788818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03276886 270.14791870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03276887 270.14791870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03276888 270.14794922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03276889 270.14794922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03276890 270.14797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03276891 270.14797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03276892 270.14797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03276893 270.14797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03276894 270.14801025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03276895 270.14801025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03276896 270.14804077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03276897 270.14804077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03276898 270.14807129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03276899 270.14807129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03276900 270.14810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03276901 270.14810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03276902 270.14813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03276903 270.14813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03276904 270.14813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03276905 270.14816284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03276906 270.14819336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03276907 270.14819336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03276908 270.14822388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03276909 270.14822388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03276910 270.14825439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03276911 270.14825439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03276912 270.14828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03276913 270.14828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03276914 270.14831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03276915 270.14831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03276916 270.14831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03276917 270.14831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03276918 270.14834595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03276919 270.14834595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03276920 270.14837646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03276921 270.14837646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03276922 270.14840698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03276923 270.14840698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03276924 270.14843750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03276925 270.14846802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03276926 270.14846802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03276927 270.14846802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03276928 270.14849854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03276929 270.14849854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03276930 270.14852905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03276931 270.14852905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03276932 270.14855957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03276933 270.14855957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03276934 270.14859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03276935 270.14859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03276936 270.14862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03276937 270.14862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03276938 270.14862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03276939 270.14862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03276940 270.14865112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03276941 270.14865112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03276942 270.14868164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03276943 270.14868164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03276944 270.14871216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03276945 270.14871216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03276946 270.14874268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03276947 270.14877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03276948 270.14877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03276949 270.14877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03276950 270.14880371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03276951 270.14880371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03276952 270.14883423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03276953 270.14883423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03276954 270.14886475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03276955 270.14886475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03276956 270.14889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03276957 270.14889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03276958 270.14892578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03276959 270.14892578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03276960 270.14892578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03276961 270.14892578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03276962 270.14895630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03276963 270.14895630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03276964 270.14898682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03276965 270.14898682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03276966 270.14901733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03276967 270.14901733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03276968 270.14904785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03276969 270.14907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03276970 270.14907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03276971 270.14910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03276972 270.14910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03276973 270.14910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03276974 270.14913940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03276975 270.14913940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03276976 270.14916992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03276977 270.14916992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03276978 270.14920044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03276979 270.14920044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03276980 270.14923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03276981 270.14923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03276982 270.14926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03276983 270.14926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03276984 270.14926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03276985 270.14926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03276986 270.14929199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03276987 270.14929199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03276988 270.14932251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03276989 270.14932251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03276990 270.14935303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03276991 270.14935303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03276992 270.14938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03276993 270.14938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03276994 270.14941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03276995 270.14941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03276996 270.14941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03276997 270.14941406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03276998 270.14944458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03276999 270.14944458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03277000 270.14947510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03277001 270.14950562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03277002 270.14953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03277003 270.14953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03277004 270.14956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03277005 270.14956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03277006 270.14956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03277007 270.14956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03277008 270.14959717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03277009 270.14959717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03277010 270.14962769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03277011 270.14962769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03277012 270.14965820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03277013 270.14965820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03277014 270.14968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03277015 270.14968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03277016 270.14971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03277017 270.14971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03277018 270.14971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03277019 270.14971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03277020 270.14974976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03277021 270.14974976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03277022 270.14978027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03277023 270.14978027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03277024 270.14981079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03277025 270.14981079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03277026 270.14984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03277027 270.14984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03277028 270.14987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03277029 270.14987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03277030 270.14990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03277031 270.14990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03277032 270.14990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03277033 270.14993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03277034 270.14996338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03277035 270.14996338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03277036 270.14999390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03277037 270.14999390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03277038 270.15002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03277039 270.15002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03277040 270.15005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03277041 270.15005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03277042 270.15005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03277043 270.15005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03277044 270.15008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03277045 270.15008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03277046 270.15011597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03277047 270.15011597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03277048 270.15014648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03277049 270.15014648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03277050 270.15017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03277051 270.15017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03277052 270.15020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03277053 270.15020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03277054 270.15020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03277055 270.15020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03277056 270.15023804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03277057 270.15026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03277058 270.15026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03277059 270.15029907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03277060 270.15032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03277061 270.15032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03277062 270.15036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03277063 270.15036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03277064 270.15036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03277065 270.15036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03277066 270.15039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03277067 270.15039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03277068 270.15042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03277069 270.15042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03277070 270.15045166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03277071 270.15045166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03277072 270.15048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03277073 270.15048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03277074 270.15051270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03277075 270.15051270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03277076 270.15054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03277077 270.15054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03277078 270.15054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03277079 270.15054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03277080 270.15057373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03277081 270.15057373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03277082 270.15060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03277083 270.15060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03277084 270.15063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03277085 270.15063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03277086 270.15066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03277087 270.15066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03277088 270.15069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03277089 270.15069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03277090 270.15069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03277091 270.15069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03277092 270.15072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03277093 270.15072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03277094 270.15075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03277095 270.15075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03277096 270.15078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03277097 270.15078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03277098 270.15081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03277099 270.15084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03277100 270.15084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03277101 270.15084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03277102 270.15087891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03277103 270.15087891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03277104 270.15090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03277105 270.15090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03277106 270.15093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03277107 270.15093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03277108 270.15097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03277109 270.15097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03277110 270.15100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03277111 270.15100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03277112 270.15100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03277113 270.15100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03277114 270.15103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03277115 270.15103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03277116 270.15106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03277117 270.15106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03277118 270.15109253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03277119 270.15109253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03277120 270.15112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03277121 270.15112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03277122 270.15115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03277123 270.15115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03277124 270.15115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03277125 270.15115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03277126 270.15118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03277127 270.15118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03277128 270.15121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03277129 270.15121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03277130 270.15124512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03277131 270.15124512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03277132 270.15127563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03277133 270.15127563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03277134 270.15130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03277135 270.15130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03277136 270.15133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03277137 270.15133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03277138 270.15133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03277139 270.15133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03277140 270.15136719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03277141 270.15139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03277142 270.15139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03277143 270.15142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03277144 270.15145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03277145 270.15145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03277146 270.15148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03277147 270.15148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03277148 270.15148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03277149 270.15148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03277150 270.15151978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03277151 270.15151978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03277152 270.15155029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03277153 270.15155029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03277154 270.15158081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03277155 270.15158081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03277156 270.15161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03277157 270.15161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03277158 270.15164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03277159 270.15164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03277160 270.15164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03277161 270.15164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03277162 270.15167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03277163 270.15167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03277164 270.15170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03277165 270.15170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03277166 270.15173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03277167 270.15173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03277168 270.15176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03277169 270.15176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03277170 270.15179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03277171 270.15179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03277172 270.15182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03277173 270.15182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03277174 270.15185547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03277175 270.15185547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03277176 270.15188599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03277177 270.15188599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03277178 270.15191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03277179 270.15191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03277180 270.15194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03277181 270.15194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03277182 270.15194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03277183 270.15194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03277184 270.15197754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03277185 270.15197754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03277186 270.15200806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03277187 270.15200806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03277188 270.15206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03277189 270.15206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03277190 270.15209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03277191 270.15209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03277192 270.15213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03277193 270.15213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03277194 270.15213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03277195 270.15213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03277196 270.15216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03277197 270.15216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03277198 270.15219116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03277199 270.15219116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03277200 270.15222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03277201 270.15222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03277202 270.15225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03277203 270.15225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03277204 270.15228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03277205 270.15228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03277206 270.15228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03277207 270.15228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03277208 270.15231323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03277209 270.15231323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03277210 270.15234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03277211 270.15234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03277212 270.15237427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03277213 270.15237427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03277214 270.15240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03277215 270.15240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03277216 270.15243530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03277217 270.15243530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03277218 270.15243530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03277219 270.15246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03277220 270.15252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03277221 270.15255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03277222 270.15258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03277223 270.15258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03277224 270.15258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03277225 270.15258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03277226 270.15261841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03277227 270.15261841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03277228 270.15264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03277229 270.15264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03277230 270.15267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03277231 270.15267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03277232 270.15270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03277233 270.15270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03277234 270.15274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03277235 270.15274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03277236 270.15274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03277237 270.15274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03277238 270.15277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03277239 270.15277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03277240 270.15280151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03277241 270.15280151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03277242 270.15283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03277243 270.15283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03277244 270.15286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03277245 270.15289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03277246 270.15289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03277247 270.15292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03277248 270.15292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03277249 270.15292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03277250 270.15295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03277251 270.15295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03277252 270.15298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03277253 270.15298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03277254 270.15301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03277255 270.15301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03277256 270.15304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03277257 270.15304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03277258 270.15307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03277259 270.15307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03277260 270.15307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03277261 270.15307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03277262 270.15310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03277263 270.15310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03277264 270.15313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03277265 270.15313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03277266 270.15316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03277267 270.15316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03277268 270.15319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03277269 270.15319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03277270 270.15322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03277271 270.15322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03277272 270.15322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03277273 270.15322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03277274 270.15328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03277275 270.15328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03277276 270.15332031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03277277 270.15332031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03277278 270.15335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03277279 270.15335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03277280 270.15338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03277281 270.15338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03277282 270.15338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03277283 270.15338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03277284 270.15341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03277285 270.15341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03277286 270.15344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03277287 270.15344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03277288 270.15347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03277289 270.15347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03277290 270.15350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03277291 270.15353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03277292 270.15353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03277293 270.15353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03277294 270.15356445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03277295 270.15356445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03277296 270.15359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03277297 270.15359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03277298 270.15362549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03277299 270.15362549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03277300 270.15365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03277301 270.15365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03277302 270.15368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03277303 270.15368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03277304 270.15371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03277305 270.15371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03277306 270.15371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03277307 270.15371704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03277308 270.15374756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03277309 270.15377808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03277310 270.15380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03277311 270.15380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03277312 270.15383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03277313 270.15383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03277314 270.15386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03277315 270.15386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03277316 270.15386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03277317 270.15386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03277318 270.15390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03277319 270.15390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03277320 270.15393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03277321 270.15393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03277322 270.15396118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03277323 270.15396118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03277324 270.15399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03277325 270.15399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03277326 270.15402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03277327 270.15402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03277328 270.15405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03277329 270.15405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03277330 270.15408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03277331 270.15408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03277332 270.15411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03277333 270.15411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03277334 270.15414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03277335 270.15414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03277336 270.15417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03277337 270.15417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03277338 270.15417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03277339 270.15417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03277340 270.15420532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03277341 270.15420532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03277342 270.15423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03277343 270.15423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03277344 270.15426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03277345 270.15426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03277346 270.15429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03277347 270.15429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03277348 270.15432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03277349 270.15432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03277350 270.15432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03277351 270.15432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03277352 270.15435791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03277353 270.15435791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03277354 270.15438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03277355 270.15438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03277356 270.15441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03277357 270.15441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03277358 270.15444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03277359 270.15444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03277360 270.15451050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03277361 270.15451050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03277362 270.15451050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03277363 270.15451050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03277364 270.15454102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03277365 270.15454102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03277366 270.15457153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03277367 270.15457153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03277368 270.15460205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03277369 270.15460205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03277370 270.15463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03277371 270.15463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03277372 270.15466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03277373 270.15466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03277374 270.15466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03277375 270.15466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03277376 270.15469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03277377 270.15469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03277378 270.15472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03277379 270.15472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03277380 270.15478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03277381 270.15478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03277382 270.15481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03277383 270.15481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03277384 270.15481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03277385 270.15481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03277386 270.15484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03277387 270.15484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03277388 270.15487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03277389 270.15487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03277390 270.15490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03277391 270.15490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03277392 270.15493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03277393 270.15493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03277394 270.15496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03277395 270.15496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03277396 270.15496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03277397 270.15496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03277398 270.15499878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03277399 270.15499878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03277400 270.15502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03277401 270.15502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03277402 270.15505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03277403 270.15505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03277404 270.15509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03277405 270.15509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03277406 270.15512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03277407 270.15512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03277408 270.15512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03277409 270.15512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03277410 270.15515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03277411 270.15515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03277412 270.15518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03277413 270.15518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03277414 270.15521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03277415 270.15524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03277416 270.15524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03277417 270.15527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03277418 270.15530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03277419 270.15530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03277420 270.15530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03277421 270.15530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03277422 270.15533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03277423 270.15533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03277424 270.15536499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03277425 270.15536499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03277426 270.15539551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03277427 270.15539551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03277428 270.15542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03277429 270.15542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03277430 270.15545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03277431 270.15545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03277432 270.15545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03277433 270.15545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03277434 270.15548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03277435 270.15548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03277436 270.15551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03277437 270.15551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03277438 270.15554810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03277439 270.15554810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03277440 270.15557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03277441 270.15557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03277442 270.15560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03277443 270.15560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03277444 270.15560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03277445 270.15560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03277446 270.15563965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03277447 270.15563965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03277448 270.15567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03277449 270.15570068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03277450 270.15573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03277451 270.15573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03277452 270.15576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03277453 270.15576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03277454 270.15576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03277455 270.15576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03277456 270.15579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03277457 270.15579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03277458 270.15582275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03277459 270.15582275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03277460 270.15585327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03277461 270.15585327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03277462 270.15588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03277463 270.15588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03277464 270.15591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03277465 270.15591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03277466 270.15594482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03277467 270.15594482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03277468 270.15594482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03277469 270.15594482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03277470 270.15597534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03277471 270.15597534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03277472 270.15600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03277473 270.15600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03277474 270.15603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03277475 270.15603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03277476 270.15606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03277477 270.15606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03277478 270.15609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03277479 270.15609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03277480 270.15609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03277481 270.15609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03277482 270.15612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03277483 270.15615845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03277484 270.15615845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03277485 270.15618896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03277486 270.15621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03277487 270.15621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03277488 270.15625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03277489 270.15625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03277490 270.15625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03277491 270.15625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03277492 270.15628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03277493 270.15628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03277494 270.15631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03277495 270.15631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03277496 270.15634155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03277497 270.15634155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03277498 270.15637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03277499 270.15637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03277500 270.15640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03277501 270.15640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03277502 270.15640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03277503 270.15643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03277504 270.15643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03277505 270.15646362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03277506 270.15649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03277507 270.15649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03277508 270.15652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03277509 270.15652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03277510 270.15655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03277511 270.15655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03277512 270.15655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03277513 270.15655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03277514 270.15658569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03277515 270.15658569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03277516 270.15661621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03277517 270.15661621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03277518 270.15664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03277519 270.15664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03277520 270.15667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03277521 270.15667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03277522 270.15670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03277523 270.15670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03277524 270.15673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03277525 270.15673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03277526 270.15673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03277527 270.15673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03277528 270.15676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03277529 270.15676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03277530 270.15679932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03277531 270.15679932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03277532 270.15682983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03277533 270.15682983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03277534 270.15686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03277535 270.15686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03277536 270.15689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03277537 270.15689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03277538 270.15689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03277539 270.15689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03277540 270.15692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03277541 270.15692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03277542 270.15695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03277543 270.15695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03277544 270.15698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03277545 270.15701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03277546 270.15701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03277547 270.15704346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03277548 270.15704346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03277549 270.15704346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03277550 270.15707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03277551 270.15707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03277552 270.15710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03277553 270.15710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03277554 270.15713501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03277555 270.15713501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03277556 270.15716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03277557 270.15716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03277558 270.15719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03277559 270.15719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03277560 270.15719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03277561 270.15719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03277562 270.15722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03277563 270.15722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03277564 270.15725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03277565 270.15725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03277566 270.15728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03277567 270.15728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03277568 270.15731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03277569 270.15731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03277570 270.15734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03277571 270.15734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03277572 270.15734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03277573 270.15734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03277574 270.15737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03277575 270.15737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03277576 270.15740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03277577 270.15740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03277578 270.15744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03277579 270.15744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03277580 270.15747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03277581 270.15747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03277582 270.15750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03277583 270.15750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03277584 270.15753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03277585 270.15753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03277586 270.15756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03277587 270.15756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03277588 270.15759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03277589 270.15759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03277590 270.15762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03277591 270.15762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03277592 270.15765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03277593 270.15765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03277594 270.15768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03277595 270.15768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03277596 270.15768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03277597 270.15768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03277598 270.15771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03277599 270.15771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03277600 270.15774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03277601 270.15774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03277602 270.15777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03277603 270.15780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03277604 270.15780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03277605 270.15783691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03277606 270.15783691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03277607 270.15783691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03277608 270.15786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03277609 270.15786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03277610 270.15789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03277611 270.15789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03277612 270.15792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03277613 270.15792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03277614 270.15795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03277615 270.15795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03277616 270.15798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03277617 270.15798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03277618 270.15798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03277619 270.15798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03277620 270.15802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03277621 270.15802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03277622 270.15805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03277623 270.15805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03277624 270.15808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03277625 270.15808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03277626 270.15811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03277627 270.15811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03277628 270.15814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03277629 270.15814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03277630 270.15817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03277631 270.15817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03277632 270.15820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03277633 270.15820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03277634 270.15823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03277635 270.15823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03277636 270.15826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03277637 270.15826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03277638 270.15829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03277639 270.15829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03277640 270.15832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03277641 270.15832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03277642 270.15838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03277643 270.15841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03277644 270.15841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03277645 270.15844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03277646 270.15847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03277647 270.15847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03277648 270.15847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03277649 270.15847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03277650 270.15850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03277651 270.15850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03277652 270.15853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03277653 270.15853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03277654 270.15856934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03277655 270.15856934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03277656 270.15859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03277657 270.15859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03277658 270.15869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03277659 270.15869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03277660 270.15872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03277661 270.15872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03277662 270.15875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03277663 270.15875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03277664 270.15878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03277665 270.15878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03277666 270.15878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03277667 270.15878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03277668 270.15881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03277669 270.15881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03277670 270.15884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03277671 270.15884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03277672 270.15890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03277673 270.15890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03277674 270.15893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03277675 270.15893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03277676 270.15893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03277677 270.15893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03277678 270.15896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03277679 270.15896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03277680 270.15899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03277681 270.15899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03277682 270.15911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03277683 270.15911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03277684 270.15911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03277685 270.15911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03277686 270.15914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03277687 270.15914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03277688 270.15917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03277689 270.15917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03277690 270.15921021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03277691 270.15921021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03277692 270.15924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03277693 270.15924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03277694 270.15927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03277695 270.15927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03277696 270.15927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03277697 270.15927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03277698 270.15930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03277699 270.15930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03277700 270.15933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03277701 270.15933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03277702 270.15936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03277703 270.15936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03277704 270.15939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03277705 270.15939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03277706 270.15942383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03277707 270.15942383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03277708 270.15945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03277709 270.15945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03277710 270.15948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03277711 270.15948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03277712 270.15951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03277713 270.15951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03277714 270.15954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03277715 270.15954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03277716 270.15957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03277717 270.15957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03277718 270.15957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03277719 270.15957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03277720 270.15960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03277721 270.15960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03277722 270.15963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03277723 270.15963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03277724 270.15966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03277725 270.15966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03277726 270.15969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03277727 270.15972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03277728 270.15972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03277729 270.15972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03277730 270.15975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03277731 270.15975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03277732 270.15979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03277733 270.15979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03277734 270.15982056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03277735 270.15982056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03277736 270.15985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03277737 270.15985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03277738 270.15988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03277739 270.15988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03277740 270.15991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03277741 270.15991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03277742 270.15991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03277743 270.15991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03277744 270.15994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03277745 270.15994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03277746 270.15997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03277747 270.15997314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03277748 270.16000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03277749 270.16000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03277750 270.16003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03277751 270.16003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03277752 270.16015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03277753 270.16015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03277754 270.16018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03277755 270.16018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03277756 270.16021729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03277757 270.16021729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03277758 270.16030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03277759 270.16030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03277760 270.16033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03277761 270.16033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03277762 270.16036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03277763 270.16036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03277764 270.16036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03277765 270.16036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03277766 270.16040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03277767 270.16040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03277768 270.16043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03277769 270.16043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03277770 270.16046143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03277771 270.16046143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03277772 270.16049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03277773 270.16049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03277774 270.16052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03277775 270.16052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03277776 270.16052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03277777 270.16052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03277778 270.16055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03277779 270.16055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03277780 270.16058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03277781 270.16058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03277782 270.16061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03277783 270.16061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03277784 270.16067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03277785 270.16067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03277786 270.16070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03277787 270.16070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03277788 270.16070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03277789 270.16070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03277790 270.16073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03277791 270.16073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03277792 270.16076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03277793 270.16076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03277794 270.16079712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03277795 270.16079712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03277796 270.16082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03277797 270.16082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03277798 270.16085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03277799 270.16085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03277800 270.16085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03277801 270.16085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03277802 270.16088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03277803 270.16091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03277804 270.16094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03277805 270.16094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03277806 270.16098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03277807 270.16098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03277808 270.16101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03277809 270.16101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03277810 270.16101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03277811 270.16101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03277812 270.16104126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03277813 270.16104126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03277814 270.16107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03277815 270.16107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03277816 270.16110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03277817 270.16110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03277818 270.16113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03277819 270.16113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03277820 270.16116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03277821 270.16116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03277822 270.16116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03277823 270.16122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03277824 270.16125488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03277825 270.16128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03277826 270.16131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03277827 270.16131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03277828 270.16134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03277829 270.16134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03277830 270.16134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03277831 270.16134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03277832 270.16137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03277833 270.16137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03277834 270.16140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03277835 270.16140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03277836 270.16143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03277837 270.16143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03277838 270.16146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03277839 270.16146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03277840 270.16149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03277841 270.16149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03277842 270.16149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03277843 270.16149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03277844 270.16152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03277845 270.16152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03277846 270.16156006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03277847 270.16159058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03277848 270.16162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03277849 270.16162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03277850 270.16165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03277851 270.16165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03277852 270.16165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03277853 270.16165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03277854 270.16168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03277855 270.16168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03277856 270.16171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03277857 270.16171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03277858 270.16174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03277859 270.16174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03277860 270.16177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03277861 270.16177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03277862 270.16180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03277863 270.16180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03277864 270.16180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03277865 270.16180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03277866 270.16183472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03277867 270.16183472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03277868 270.16186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03277869 270.16186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03277870 270.16189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03277871 270.16192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03277872 270.16195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03277873 270.16195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03277874 270.16195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03277875 270.16195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03277876 270.16198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03277877 270.16198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03277878 270.16201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03277879 270.16201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03277880 270.16204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03277881 270.16204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03277882 270.16207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03277883 270.16207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03277884 270.16210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03277885 270.16210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03277886 270.16213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03277887 270.16213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03277888 270.16223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03277889 270.16223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03277890 270.16226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03277891 270.16226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03277892 270.16229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03277893 270.16229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03277894 270.16229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03277895 270.16229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03277896 270.16232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03277897 270.16232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03277898 270.16235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03277899 270.16235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03277900 270.16238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03277901 270.16238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03277902 270.16241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03277903 270.16241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03277904 270.16244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03277905 270.16244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03277906 270.16256714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03277907 270.16256714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03277908 270.16259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03277909 270.16259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03277910 270.16262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03277911 270.16262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03277912 270.16265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03277913 270.16265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03277914 270.16268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03277915 270.16271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03277916 270.16275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03277917 270.16275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03277918 270.16275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03277919 270.16275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03277920 270.16278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03277921 270.16278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03277922 270.16281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03277923 270.16281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03277924 270.16284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03277925 270.16284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03277926 270.16287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03277927 270.16287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03277928 270.16290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03277929 270.16290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03277930 270.16293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03277931 270.16293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03277932 270.16293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03277933 270.16293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03277934 270.16296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03277935 270.16296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03277936 270.16299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03277937 270.16299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03277938 270.16302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03277939 270.16302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03277940 270.16305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03277941 270.16308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03277942 270.16308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03277943 270.16308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03277944 270.16311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03277945 270.16311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03277946 270.16314697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03277947 270.16314697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03277948 270.16317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03277949 270.16317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03277950 270.16320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03277951 270.16320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03277952 270.16323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03277953 270.16323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03277954 270.16323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03277955 270.16323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03277956 270.16326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03277957 270.16326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03277958 270.16329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03277959 270.16329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03277960 270.16333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03277961 270.16333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03277962 270.16336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03277963 270.16336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03277964 270.16339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03277965 270.16339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03277966 270.16339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03277967 270.16339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03277968 270.16342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03277969 270.16342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03277970 270.16345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03277971 270.16345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03277972 270.16348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03277973 270.16348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03277974 270.16351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03277975 270.16351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03277976 270.16354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03277977 270.16354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03277978 270.16354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03277979 270.16354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03277980 270.16357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03277981 270.16357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03277982 270.16360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03277983 270.16363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03277984 270.16363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03277985 270.16366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03277986 270.16369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03277987 270.16369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03277988 270.16372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03277989 270.16372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03277990 270.16372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03277991 270.16372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03277992 270.16375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03277993 270.16375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03277994 270.16378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03277995 270.16378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03277996 270.16381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03277997 270.16381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03277998 270.16384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03277999 270.16384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03278000 270.16387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03278001 270.16387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03278002 270.16387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03278003 270.16390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03278004 270.16394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03278005 270.16394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03278006 270.16397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03278007 270.16397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03278008 270.16400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03278009 270.16400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03278010 270.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03278011 270.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03278012 270.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03278013 270.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03278014 270.16406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03278015 270.16406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03278016 270.16409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03278017 270.16409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03278018 270.16412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03278019 270.16412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03278020 270.16415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03278021 270.16415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03278022 270.16418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03278023 270.16418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03278024 270.16418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03278025 270.16421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03278026 270.16424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03278027 270.16424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03278028 270.16427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03278029 270.16427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03278030 270.16430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03278031 270.16430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03278032 270.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03278033 270.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03278034 270.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03278035 270.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03278036 270.16436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03278037 270.16436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03278038 270.16439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03278039 270.16439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03278040 270.16442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03278041 270.16442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03278042 270.16445923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03278043 270.16445923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03278044 270.16448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03278045 270.16452026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03278046 270.16452026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03278047 270.16452026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03278048 270.16455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03278049 270.16455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03278050 270.16458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03278051 270.16458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03278052 270.16461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03278053 270.16461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03278054 270.16464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03278055 270.16464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03278056 270.16467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03278057 270.16467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03278058 270.16467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03278059 270.16467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03278060 270.16470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03278061 270.16470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03278062 270.16473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03278063 270.16473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03278064 270.16476440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03278065 270.16476440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03278066 270.16479492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03278067 270.16482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03278068 270.16482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03278069 270.16482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03278070 270.16485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03278071 270.16485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03278072 270.16488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03278073 270.16488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03278074 270.16491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03278075 270.16491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03278076 270.16494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03278077 270.16494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03278078 270.16497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03278079 270.16497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03278080 270.16497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03278081 270.16497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03278082 270.16500854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03278083 270.16500854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03278084 270.16503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03278085 270.16503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03278086 270.16506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03278087 270.16510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03278088 270.16513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03278089 270.16513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03278090 270.16513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03278091 270.16513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03278092 270.16516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03278093 270.16516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03278094 270.16519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03278095 270.16519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03278096 270.16522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03278097 270.16522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03278098 270.16525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03278099 270.16525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03278100 270.16528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03278101 270.16528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03278102 270.16531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03278103 270.16531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03278104 270.16531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03278105 270.16531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03278106 270.16534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03278107 270.16534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03278108 270.16537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03278109 270.16540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03278110 270.16543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03278111 270.16543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03278112 270.16546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03278113 270.16546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03278114 270.16546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03278115 270.16546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03278116 270.16549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03278117 270.16549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03278118 270.16552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03278119 270.16552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03278120 270.16555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03278121 270.16555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03278122 270.16558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03278123 270.16558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03278124 270.16561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03278125 270.16561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03278126 270.16561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03278127 270.16561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03278128 270.16564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03278129 270.16567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03278130 270.16571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03278131 270.16571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03278132 270.16574097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03278133 270.16574097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03278134 270.16577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03278135 270.16577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03278136 270.16577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03278137 270.16577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03278138 270.16580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03278139 270.16580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03278140 270.16583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03278141 270.16583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03278142 270.16586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03278143 270.16586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03278144 270.16589355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03278145 270.16589355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03278146 270.16592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03278147 270.16592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03278148 270.16592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03278149 270.16592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03278150 270.16595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03278151 270.16598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03278152 270.16601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03278153 270.16601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03278154 270.16604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03278155 270.16604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03278156 270.16607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03278157 270.16607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03278158 270.16610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03278159 270.16610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03278160 270.16610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03278161 270.16610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03278162 270.16613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03278163 270.16613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03278164 270.16616821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03278165 270.16616821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03278166 270.16619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03278167 270.16619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03278168 270.16622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03278169 270.16622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03278170 270.16625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03278171 270.16625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03278172 270.16629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03278173 270.16629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03278174 270.16632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03278175 270.16632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03278176 270.16635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03278177 270.16635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03278178 270.16638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03278179 270.16638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03278180 270.16641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03278181 270.16641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03278182 270.16641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03278183 270.16641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03278184 270.16644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03278185 270.16644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03278186 270.16647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03278187 270.16647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03278188 270.16650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03278189 270.16650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03278190 270.16653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03278191 270.16653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03278192 270.16656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03278193 270.16656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03278194 270.16659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03278195 270.16659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03278196 270.16662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03278197 270.16662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03278198 270.16665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03278199 270.16665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03278200 270.16668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03278201 270.16668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03278202 270.16671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03278203 270.16671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03278204 270.16674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03278205 270.16674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03278206 270.16674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03278207 270.16674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03278208 270.16677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03278209 270.16677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03278210 270.16680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03278211 270.16680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03278212 270.16683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03278213 270.16687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03278214 270.16690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03278215 270.16690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03278216 270.16690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03278217 270.16690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03278218 270.16693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03278219 270.16693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03278220 270.16696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03278221 270.16696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03278222 270.16699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03278223 270.16699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03278224 270.16702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03278225 270.16702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03278226 270.16705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03278227 270.16705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03278228 270.16705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03278229 270.16705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03278230 270.16708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03278231 270.16708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03278232 270.16711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03278233 270.16711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03278234 270.16714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03278235 270.16717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03278236 270.16720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03278237 270.16720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03278238 270.16720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03278239 270.16720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03278240 270.16723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03278241 270.16723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03278242 270.16726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03278243 270.16726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03278244 270.16729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03278245 270.16729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03278246 270.16732788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03278247 270.16732788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03278248 270.16735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03278249 270.16735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03278250 270.16735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03278251 270.16735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03278252 270.16738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03278253 270.16738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03278254 270.16741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03278255 270.16741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03278256 270.16744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03278257 270.16748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03278258 270.16751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03278259 270.16751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03278260 270.16754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03278261 270.16754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03278262 270.16754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03278263 270.16754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03278264 270.16757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03278265 270.16757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03278266 270.16760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03278267 270.16760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03278268 270.16763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03278269 270.16763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03278270 270.16766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03278271 270.16766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03278272 270.16769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03278273 270.16769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03278274 270.16769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03278275 270.16769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03278276 270.16772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03278277 270.16775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03278278 270.16778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03278279 270.16778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03278280 270.16781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03278281 270.16781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03278282 270.16784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03278283 270.16784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03278284 270.16784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03278285 270.16784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03278286 270.16787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03278287 270.16787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03278288 270.16790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03278289 270.16790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03278290 270.16793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03278291 270.16793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03278292 270.16796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03278293 270.16796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03278294 270.16799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03278295 270.16799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03278296 270.16799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03278297 270.16802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03278298 270.16806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03278299 270.16806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03278300 270.16809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03278301 270.16809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03278302 270.16812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03278303 270.16812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03278304 270.16815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03278305 270.16815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03278306 270.16815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03278307 270.16815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03278308 270.16818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03278309 270.16818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03278310 270.16821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03278311 270.16821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03278312 270.16824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03278313 270.16824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03278314 270.16827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03278315 270.16827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03278316 270.16830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03278317 270.16830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03278318 270.16833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03278319 270.16833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03278320 270.16836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03278321 270.16836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03278322 270.16839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03278323 270.16839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03278324 270.16842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03278325 270.16842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03278326 270.16845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03278327 270.16845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03278328 270.16848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03278329 270.16848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03278330 270.16848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03278331 270.16848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03278332 270.16851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03278333 270.16851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03278334 270.16854858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03278335 270.16854858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03278336 270.16857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03278337 270.16857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03278338 270.16860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03278339 270.16864014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03278340 270.16879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03278341 270.16879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03278342 270.16882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03278343 270.16882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03278344 270.16885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03278345 270.16885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03278346 270.16888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03278347 270.16888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03278348 270.16891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03278349 270.16891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03278350 270.16894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03278351 270.16894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03278352 270.16894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03278353 270.16894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03278354 270.16897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03278355 270.16900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03278356 270.16903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03278357 270.16903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03278358 270.16912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03278359 270.16912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03278360 270.16912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03278361 270.16912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03278362 270.16915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03278363 270.16915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03278364 270.16918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03278365 270.16918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03278366 270.16921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03278367 270.16921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03278368 270.16925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03278369 270.16925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03278370 270.16928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03278371 270.16928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03278372 270.16928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03278373 270.16931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03278374 270.16934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03278375 270.16934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03278376 270.16937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03278377 270.16937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03278378 270.16940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03278379 270.16940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03278380 270.16943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03278381 270.16943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03278382 270.16943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03278383 270.16943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03278384 270.16946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03278385 270.16946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03278386 270.16949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03278387 270.16949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03278388 270.16952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03278389 270.16952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03278390 270.16955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03278391 270.16955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03278392 270.16958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03278393 270.16958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03278394 270.16961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03278395 270.16961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03278396 270.16964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03278397 270.16964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03278398 270.16973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03278399 270.16976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03278400 270.16979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03278401 270.16979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03278402 270.16983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03278403 270.16983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03278404 270.16986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03278405 270.16986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03278406 270.16989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03278407 270.16989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03278408 270.16992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03278409 270.16992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03278410 270.16992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03278411 270.16992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03278412 270.16995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03278413 270.16995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03278414 270.16998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03278415 270.16998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03278416 270.17001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03278417 270.17001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03278418 270.17004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03278419 270.17007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03278420 270.17007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03278421 270.17007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03278422 270.17010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03278423 270.17010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03278424 270.17013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03278425 270.17013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03278426 270.17016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03278427 270.17016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03278428 270.17019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03278429 270.17019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03278430 270.17022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03278431 270.17022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03278432 270.17022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03278433 270.17022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03278434 270.17025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03278435 270.17025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03278436 270.17028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03278437 270.17028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03278438 270.17031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03278439 270.17031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03278440 270.17037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03278441 270.17037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03278442 270.17037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03278443 270.17037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03278444 270.17041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03278445 270.17041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03278446 270.17044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03278447 270.17044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03278448 270.17047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03278449 270.17047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03278450 270.17050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03278451 270.17050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03278452 270.17053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03278453 270.17053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03278454 270.17053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03278455 270.17053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03278456 270.17056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03278457 270.17056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03278458 270.17059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03278459 270.17059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03278460 270.17062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03278461 270.17065430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03278462 270.17068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03278463 270.17068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03278464 270.17071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03278465 270.17071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03278466 270.17071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03278467 270.17071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03278468 270.17074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03278469 270.17074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03278470 270.17077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03278471 270.17077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03278472 270.17080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03278473 270.17080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03278474 270.17083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03278475 270.17083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03278476 270.17086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03278477 270.17086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03278478 270.17086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03278479 270.17086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03278480 270.17089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03278481 270.17092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03278482 270.17095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03278483 270.17095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03278484 270.17098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03278485 270.17098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03278486 270.17102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03278487 270.17102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03278488 270.17102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03278489 270.17102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03278490 270.17105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03278491 270.17105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03278492 270.17108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03278493 270.17108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03278494 270.17111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03278495 270.17111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03278496 270.17114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03278497 270.17114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03278498 270.17117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03278499 270.17117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03278500 270.17117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03278501 270.17117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03278502 270.17120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03278503 270.17123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03278504 270.17126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03278505 270.17126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03278506 270.17129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03278507 270.17129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03278508 270.17132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03278509 270.17132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03278510 270.17132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03278511 270.17132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03278512 270.17135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03278513 270.17135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03278514 270.17138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03278515 270.17138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03278516 270.17141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03278517 270.17141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03278518 270.17144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03278519 270.17144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03278520 270.17147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03278521 270.17150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03278522 270.17150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03278523 270.17150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03278524 270.17153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03278525 270.17153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03278526 270.17156982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03278527 270.17156982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03278528 270.17160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03278529 270.17160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03278530 270.17163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03278531 270.17163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03278532 270.17166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03278533 270.17166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03278534 270.17166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03278535 270.17166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03278536 270.17169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03278537 270.17169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03278538 270.17172241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03278539 270.17172241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03278540 270.17175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03278541 270.17175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03278542 270.17178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03278543 270.17181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03278544 270.17181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03278545 270.17181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03278546 270.17184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03278547 270.17184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03278548 270.17187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03278549 270.17187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03278550 270.17190552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03278551 270.17190552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03278552 270.17193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03278553 270.17193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03278554 270.17196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03278555 270.17196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03278556 270.17196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03278557 270.17196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03278558 270.17199707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03278559 270.17199707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03278560 270.17202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03278561 270.17202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03278562 270.17205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03278563 270.17208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03278564 270.17211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03278565 270.17211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03278566 270.17214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03278567 270.17214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03278568 270.17214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03278569 270.17214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03278570 270.17218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03278571 270.17218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03278572 270.17221069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03278573 270.17221069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03278574 270.17224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03278575 270.17224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03278576 270.17227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03278577 270.17227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03278578 270.17230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03278579 270.17230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03278580 270.17230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03278581 270.17230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03278582 270.17233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03278583 270.17233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03278584 270.17236328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03278585 270.17239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03278586 270.17242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03278587 270.17242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03278588 270.17245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03278589 270.17245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03278590 270.17245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03278591 270.17245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03278592 270.17248535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03278593 270.17248535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03278594 270.17251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03278595 270.17251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03278596 270.17254639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03278597 270.17254639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03278598 270.17257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03278599 270.17257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03278600 270.17260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03278601 270.17260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03278602 270.17260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03278603 270.17263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03278604 270.17266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03278605 270.17266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03278606 270.17269897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03278607 270.17269897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03278608 270.17272949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03278609 270.17272949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03278610 270.17276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03278611 270.17276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03278612 270.17276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03278613 270.17276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03278614 270.17279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03278615 270.17279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03278616 270.17282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03278617 270.17282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03278618 270.17285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03278619 270.17285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03278620 270.17288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03278621 270.17288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03278622 270.17291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03278623 270.17291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03278624 270.17294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03278625 270.17294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03278626 270.17297363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03278627 270.17297363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03278628 270.17300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03278629 270.17300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03278630 270.17303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03278631 270.17303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03278632 270.17306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03278633 270.17306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03278634 270.17309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03278635 270.17309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03278636 270.17309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03278637 270.17309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03278638 270.17312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03278639 270.17312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03278640 270.17315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03278641 270.17315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03278642 270.17318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03278643 270.17318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03278644 270.17321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03278645 270.17324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03278646 270.17324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03278647 270.17324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03278648 270.17327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03278649 270.17327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03278650 270.17330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03278651 270.17330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03278652 270.17333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03278653 270.17333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03278654 270.17337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03278655 270.17337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03278656 270.17340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03278657 270.17340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03278658 270.17340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03278659 270.17340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03278660 270.17343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03278661 270.17343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03278662 270.17346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03278663 270.17346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03278664 270.17349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03278665 270.17349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03278666 270.17355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03278667 270.17355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03278668 270.17355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03278669 270.17355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03278670 270.17358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03278671 270.17358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03278672 270.17361450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03278673 270.17361450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03278674 270.17364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03278675 270.17364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03278676 270.17367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03278677 270.17367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03278678 270.17370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03278679 270.17370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03278680 270.17373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03278681 270.17373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03278682 270.17373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03278683 270.17373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03278684 270.17376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03278685 270.17376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03278686 270.17379761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03278687 270.17382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03278688 270.17385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03278689 270.17385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03278690 270.17388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03278691 270.17388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03278692 270.17388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03278693 270.17388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03278694 270.17391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03278695 270.17391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03278696 270.17395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03278697 270.17395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03278698 270.17398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03278699 270.17398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03278700 270.17401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03278701 270.17401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03278702 270.17404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03278703 270.17404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03278704 270.17404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03278705 270.17404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03278706 270.17407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03278707 270.17410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03278708 270.17413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03278709 270.17413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03278710 270.17416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03278711 270.17416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03278712 270.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03278713 270.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03278714 270.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03278715 270.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03278716 270.17422485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03278717 270.17422485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03278718 270.17425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03278719 270.17425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03278720 270.17428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03278721 270.17428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03278722 270.17431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03278723 270.17431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03278724 270.17434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03278725 270.17434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03278726 270.17434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03278727 270.17437744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03278728 270.17440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03278729 270.17440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03278730 270.17443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03278731 270.17443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03278732 270.17446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03278733 270.17446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03278734 270.17449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03278735 270.17449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03278736 270.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03278737 270.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03278738 270.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03278739 270.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03278740 270.17456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03278741 270.17456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03278742 270.17459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03278743 270.17459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03278744 270.17462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03278745 270.17462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03278746 270.17465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03278747 270.17465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03278748 270.17468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03278749 270.17468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03278750 270.17471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03278751 270.17471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03278752 270.17474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03278753 270.17474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03278754 270.17477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03278755 270.17477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03278756 270.17480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03278757 270.17480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03278758 270.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03278759 270.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03278760 270.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03278761 270.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03278762 270.17486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03278763 270.17486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03278764 270.17489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03278765 270.17489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03278766 270.17492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03278767 270.17492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03278768 270.17495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03278769 270.17498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03278770 270.17498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03278771 270.17498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03278772 270.17507935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03278773 270.17507935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03278774 270.17510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03278775 270.17510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03278776 270.17514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03278777 270.17514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03278778 270.17517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03278779 270.17517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03278780 270.17523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03278781 270.17523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03278782 270.17526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03278783 270.17526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03278784 270.17529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03278785 270.17529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03278786 270.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03278787 270.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03278788 270.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03278789 270.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03278790 270.17535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03278791 270.17535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03278792 270.17538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03278793 270.17538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03278794 270.17541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03278795 270.17544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03278796 270.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03278797 270.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03278798 270.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03278799 270.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03278800 270.17550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03278801 270.17550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03278802 270.17553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03278803 270.17553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03278804 270.17556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03278805 270.17556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03278806 270.17559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03278807 270.17559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03278808 270.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03278809 270.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03278810 270.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03278811 270.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03278812 270.17565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03278813 270.17565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03278814 270.17568970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03278815 270.17572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03278816 270.17575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03278817 270.17575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03278818 270.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03278819 270.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03278820 270.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03278821 270.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03278822 270.17581177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03278823 270.17581177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03278824 270.17584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03278825 270.17590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03278826 270.17593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03278827 270.17593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03278828 270.17593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03278829 270.17593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03278830 270.17596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03278831 270.17596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03278832 270.17599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03278833 270.17602539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03278834 270.17605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03278835 270.17605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03278836 270.17608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03278837 270.17608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03278838 270.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03278839 270.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03278840 270.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03278841 270.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03278842 270.17614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03278843 270.17614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03278844 270.17617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03278845 270.17617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03278846 270.17620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03278847 270.17620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03278848 270.17623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03278849 270.17623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03278850 270.17626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03278851 270.17626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03278852 270.17626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03278853 270.17630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03278854 270.17633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03278855 270.17633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03278856 270.17636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03278857 270.17636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03278858 270.17639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03278859 270.17639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03280915 270.20565796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -03280916 270.20574951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -03280917 270.20578003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -03280918 270.20581055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -03280919 270.20581055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -03280920 270.20581055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -03280921 270.20581055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -03280922 270.20584106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -03280923 270.20584106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -03280924 270.20587158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -03280925 270.20587158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -03280926 270.20590210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -03280927 270.20590210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -03280928 270.20593262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -03280929 270.20593262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -03280930 270.20596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -03280931 270.20596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -03280932 270.20596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -03280933 270.20596313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -03280934 270.20599365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -03280935 270.20599365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -03280936 270.20602417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -03280937 270.20602417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -03280938 270.20605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -03280939 270.20605469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -03280940 270.20608521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -03280941 270.20608521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -03280942 270.20611572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -03280943 270.20614624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -03280944 270.20614624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -03280945 270.20614624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -03280946 270.20617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -03280947 270.20617676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -03280948 270.20620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -03280949 270.20620728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -03280950 270.20623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -03280951 270.20623779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -03280952 270.20626831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -03280953 270.20626831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -03280954 270.20629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -03280955 270.20629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -03280956 270.20629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -03280957 270.20629883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -03280958 270.20632935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -03283138 270.23730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -03283139 270.23730469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -03283140 270.23733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -03283141 270.23733521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -03283142 270.23736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -03283143 270.23736572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -03283144 270.23739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -03283145 270.23739624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -03283146 270.23742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -03283147 270.23742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -03283148 270.23742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -03283149 270.23742676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -03283150 270.23745728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -03283151 270.23748779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -03283152 270.23751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -03283153 270.23751831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -03283154 270.23754883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -03283155 270.23754883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -03283156 270.23757935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -03283157 270.23757935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -03283158 270.23757935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -03283159 270.23757935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -03283160 270.23760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -03283161 270.23760986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -03283162 270.23764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -03283163 270.23764038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -03283164 270.23767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -03283165 270.23767090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -03283166 270.23770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -03283167 270.23770142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -03283168 270.23773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -03283169 270.23773193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -03283170 270.23776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -03283171 270.23776245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -03283172 270.23779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -03283173 270.23779297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -03283174 270.23782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -03283175 270.23782349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -03283176 270.23785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -03283177 270.23785400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -03283178 270.23788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -03283179 270.23788452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -03283180 270.23791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -03283181 270.23791504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -03286178 270.28076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -03286179 270.28079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -03286180 270.28079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -03286181 270.28079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -03286182 270.28082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -03286183 270.28082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -03286184 270.28085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -03286185 270.28085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -03286186 270.28088379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -03286187 270.28088379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -03286188 270.28091431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a38 -03286189 270.28091431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a38 -03286190 270.28094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a48 -03286191 270.28094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a48 -03286192 270.28094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a58 -03286193 270.28094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a58 -03286194 270.28097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a68 -03286195 270.28097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a68 -03286196 270.28100586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a78 -03286197 270.28100586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a78 -03286198 270.28103638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a88 -03286199 270.28103638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a88 -03286200 270.28106689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a98 -03286201 270.28106689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a98 -03286202 270.28109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -03286203 270.28109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -03286204 270.28112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -03286205 270.28112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -03286206 270.28112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -03286207 270.28112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -03286208 270.28115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -03286209 270.28115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -03286210 270.28118896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -03286211 270.28118896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -03286212 270.28121948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -03286213 270.28121948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -03286214 270.28125000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -03286215 270.28128052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -03286216 270.28128052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -03286217 270.28128052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -03286218 270.28131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b28 -03286219 270.28131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b28 -03286220 270.28134155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b38 -03286221 270.28134155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b38 -03301109 270.49182129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c78 -03301110 270.49185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c88 -03301111 270.49185181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c88 -03301112 270.49188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c98 -03301113 270.49188232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c98 -03301114 270.49191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca8 -03301115 270.49191284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca8 -03301116 270.49194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb8 -03301117 270.49194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb8 -03301118 270.49194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc8 -03301119 270.49194336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc8 -03301120 270.49197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd8 -03301121 270.49197388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd8 -03301122 270.49200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce8 -03301123 270.49200439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce8 -03301124 270.49203491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf8 -03301125 270.49206543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf8 -03301126 270.49209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -03301127 270.49209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -03301128 270.49209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -03301129 270.49209595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -03301130 270.49212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -03301131 270.49212646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -03301132 270.49215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -03301133 270.49215698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -03301134 270.49218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -03301135 270.49218750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -03301136 270.49221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -03301137 270.49221802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -03301138 270.49224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -03301139 270.49224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -03301140 270.49224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -03301141 270.49224854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -03301142 270.49227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -03301143 270.49227905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -03301144 270.49230957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -03301145 270.49230957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -03301146 270.49237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -03301147 270.49237061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -03301148 270.49240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -03301149 270.49240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -03301150 270.49240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -03301151 270.49240112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -03301152 270.49243164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -03304261 270.53610229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ef8 -03304262 270.53613281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f08 -03304263 270.53613281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f08 -03304264 270.53616333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f18 -03304265 270.53616333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f18 -03304266 270.53619385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f28 -03304267 270.53622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f28 -03304268 270.53622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f38 -03304269 270.53625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f38 -03304270 270.53625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f48 -03304271 270.53625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f48 -03304272 270.53628540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f58 -03304273 270.53628540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f58 -03304274 270.53631592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f68 -03304275 270.53631592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f68 -03304276 270.53634644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f78 -03304277 270.53634644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f78 -03304278 270.53637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f88 -03304279 270.53637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f88 -03304280 270.53640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f98 -03304281 270.53640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f98 -03304282 270.53640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fa8 -03304283 270.53640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fa8 -03304284 270.53643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fb8 -03304285 270.53643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fb8 -03304286 270.53646851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc8 -03304287 270.53646851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc8 -03304288 270.53649902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd8 -03304289 270.53649902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd8 -03304290 270.53652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe8 -03304291 270.53652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe8 -03304292 270.53656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff8 -03304293 270.53659058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff8 -03304294 270.53659058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37008 -03304295 270.53659058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37008 -03304296 270.53662109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37018 -03304297 270.53662109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37018 -03304298 270.53665161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37028 -03304299 270.53665161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37028 -03304300 270.53668213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37038 -03304301 270.53668213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37038 -03304302 270.53671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37048 -03304303 270.53671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37048 -03304304 270.53674316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37058 -03308772 270.59933472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -03308773 270.59933472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -03308774 270.59936523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -03308775 270.59939575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -03308776 270.59942627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -03308777 270.59942627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -03308778 270.59945679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc28 -03308779 270.59945679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc28 -03308780 270.59948730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc38 -03308781 270.59948730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc38 -03308782 270.59948730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc48 -03308783 270.59948730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc48 -03308784 270.59951782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc58 -03308785 270.59951782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc58 -03308786 270.59954834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc68 -03308787 270.59954834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc68 -03308788 270.59957886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc78 -03308789 270.59957886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc78 -03308790 270.59960938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc88 -03308791 270.59960938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc88 -03308792 270.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc98 -03308793 270.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc98 -03308794 270.59963989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca8 -03308795 270.59967041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca8 -03308796 270.59970093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb8 -03308797 270.59970093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb8 -03308798 270.59973145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc8 -03308799 270.59973145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc8 -03308800 270.59976196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd8 -03308801 270.59976196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd8 -03308802 270.59979248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce8 -03308803 270.59979248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce8 -03308804 270.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf8 -03308805 270.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf8 -03308806 270.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd08 -03308807 270.59982300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd08 -03308808 270.59988403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd18 -03308809 270.59988403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd18 -03308810 270.59991455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd28 -03308811 270.59991455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd28 -03308812 270.59994507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd38 -03308813 270.59994507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd38 -03308814 270.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd48 -03308815 270.59997559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd48 -03313516 270.66748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49038 -03313517 270.66751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49038 -03313518 270.66754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49048 -03313519 270.66754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49048 -03313520 270.66757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49058 -03313521 270.66757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49058 -03313522 270.66760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49068 -03313523 270.66760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49068 -03313524 270.66763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49078 -03313525 270.66763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49078 -03313526 270.66763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49088 -03313527 270.66763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49088 -03313528 270.66766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49098 -03313529 270.66766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49098 -03313530 270.66769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a8 -03313531 270.66769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a8 -03313532 270.66772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b8 -03313533 270.66772461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b8 -03313534 270.66775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c8 -03313535 270.66775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c8 -03313536 270.66778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d8 -03313537 270.66781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d8 -03313538 270.66781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e8 -03313539 270.66781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e8 -03313540 270.66784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f8 -03313541 270.66784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f8 -03313542 270.66787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49108 -03313543 270.66787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49108 -03313544 270.66790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49118 -03313545 270.66790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49118 -03313546 270.66793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -03313547 270.66793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -03313548 270.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -03313549 270.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -03313550 270.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -03313551 270.66796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -03313552 270.66799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -03313553 270.66799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -03313554 270.66802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -03313555 270.66802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -03313556 270.66806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -03313557 270.66809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -03313558 270.66812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -03313559 270.66812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -03316286 270.70648193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c8 -03316287 270.70648193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c8 -03316288 270.70651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d8 -03316289 270.70651245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d8 -03316290 270.70654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e8 -03316291 270.70654297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e8 -03316292 270.70657349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f8 -03316293 270.70657349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f8 -03316294 270.70657349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e708 -03316295 270.70657349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e708 -03316296 270.70660400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e718 -03316297 270.70660400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e718 -03316298 270.70663452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e728 -03316299 270.70666504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e728 -03316300 270.70669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e738 -03316301 270.70669556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e738 -03316302 270.70672607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e748 -03316303 270.70672607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e748 -03316304 270.70672607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e758 -03316305 270.70672607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e758 -03316306 270.70675659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e768 -03316307 270.70675659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e768 -03316308 270.70678711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e778 -03316309 270.70678711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e778 -03316310 270.70681763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e788 -03316311 270.70681763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e788 -03316312 270.70684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e798 -03316313 270.70684814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e798 -03316314 270.70687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7a8 -03316315 270.70687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7a8 -03316316 270.70687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7b8 -03316317 270.70687866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7b8 -03316318 270.70690918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7c8 -03316319 270.70690918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7c8 -03316320 270.70693970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7d8 -03316321 270.70697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7d8 -03316322 270.70697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7e8 -03316323 270.70700073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7e8 -03316324 270.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7f8 -03316325 270.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7f8 -03316326 270.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e808 -03316327 270.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e808 -03316328 270.70706177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e818 -03316329 270.70706177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e818 -03318540 270.85144043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -03318541 271.90203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03318542 271.92169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03318543 271.92172241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03318544 272.17395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03318545 272.17395020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03318546 272.17398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03318547 272.17398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03318548 272.17401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03318549 272.17401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03318550 272.17404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03318551 272.17404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03318552 272.17404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03318553 272.17407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03318554 272.17410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03318555 272.17410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03318556 272.17413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03318557 272.17413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03318558 272.17416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03318559 272.17416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03318560 272.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03318561 272.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03318562 272.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03318563 272.17419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03318564 272.17422485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03318565 272.17422485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03318566 272.17425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03318567 272.17425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03318568 272.17428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03318569 272.17428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03318570 272.17431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03318571 272.17431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03318572 272.17434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03318573 272.17434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03318574 272.17434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03318575 272.17437744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03318576 272.17440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03318577 272.17440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03318578 272.17443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03318579 272.17443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03318580 272.17446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03318581 272.17446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03318582 272.17449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03318583 272.17449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03318584 272.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03318585 272.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03318586 272.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03318587 272.17453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03318588 272.17456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03318589 272.17456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03318590 272.17459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03318591 272.17459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03318592 272.17462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03318593 272.17462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03318594 272.17465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03318595 272.17468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03318596 272.17468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03318597 272.17468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03318598 272.17471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03318599 272.17471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03318600 272.17474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03318601 272.17474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03318602 272.17477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03318603 272.17477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03318604 272.17480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03318605 272.17480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03318606 272.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03318607 272.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03318608 272.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03318609 272.17483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03318610 272.17486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03318611 272.17486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03318612 272.17489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03318613 272.17489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03318614 272.17492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03318615 272.17492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03318616 272.17495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03318617 272.17498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03318618 272.17498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03318619 272.17498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03318620 272.17501831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03318621 272.17501831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03318622 272.17504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03318623 272.17504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03318624 272.17507935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03318625 272.17507935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03318626 272.17510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03318627 272.17510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03318628 272.17514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03318629 272.17514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03318630 272.17514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03318631 272.17514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03318632 272.17517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03318633 272.17517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03318634 272.17520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03318635 272.17520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03318636 272.17523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03318637 272.17526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03318638 272.17529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03318639 272.17529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03318640 272.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03318641 272.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03318642 272.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03318643 272.17532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03318644 272.17535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03318645 272.17535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03318646 272.17538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03318647 272.17538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03318648 272.17541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03318649 272.17541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03318650 272.17544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03318651 272.17544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03318652 272.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03318653 272.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03318654 272.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03318655 272.17547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03318656 272.17550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03318657 272.17553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03318658 272.17556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03318659 272.17556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03318660 272.17559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03318661 272.17559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03318662 272.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03318663 272.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03318664 272.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03318665 272.17562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03318666 272.17565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03318667 272.17565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03318668 272.17572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03318669 272.17572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03318670 272.17575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03318671 272.17575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03318672 272.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03318673 272.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03318674 272.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03318675 272.17578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03318676 272.17581177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03318677 272.17581177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03318678 272.17584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03318679 272.17584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03318680 272.17587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03318681 272.17587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03318682 272.17590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03318683 272.17590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03318684 272.17593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03318685 272.17593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03318686 272.17596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03318687 272.17596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03318688 272.17599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03318689 272.17599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03318690 272.17602539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03318691 272.17602539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03318692 272.17605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03318693 272.17605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03318694 272.17608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03318695 272.17608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03318696 272.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03318697 272.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03318698 272.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03318699 272.17611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03318700 272.17614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03318701 272.17614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03318702 272.17617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03318703 272.17617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03318704 272.17620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03318705 272.17623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03318706 272.17623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03318707 272.17626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03318708 272.17626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03318709 272.17626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03318710 272.17630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03318711 272.17630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03318712 272.17633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03318713 272.17633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03318714 272.17636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03318715 272.17636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03318716 272.17639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03318717 272.17639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03318718 272.17642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03318719 272.17642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03318720 272.17642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03318721 272.17642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03318722 272.17645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03318723 272.17645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03318724 272.17648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03318725 272.17648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03318726 272.17651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03318727 272.17654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03318728 272.17657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03318729 272.17657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03318730 272.17657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03318731 272.17657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03318732 272.17660522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03318733 272.17660522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03318734 272.17663574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03318735 272.17663574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03318736 272.17666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03318737 272.17666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03318738 272.17669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03318739 272.17669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03318740 272.17672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03318741 272.17672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03318742 272.17672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03318743 272.17672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03318744 272.17675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03318745 272.17675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03318746 272.17678833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03318747 272.17678833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03318748 272.17681885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03318749 272.17684937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03318750 272.17687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03318751 272.17687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03318752 272.17691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03318753 272.17691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03318754 272.17691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03318755 272.17691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03318756 272.17694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03318757 272.17694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03318758 272.17697144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03318759 272.17697144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03318760 272.17700195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03318761 272.17700195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03318762 272.17703247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03318763 272.17703247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03318764 272.17706299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03318765 272.17706299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03318766 272.17706299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03318767 272.17706299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03318768 272.17709351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03318769 272.17712402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03318770 272.17715454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03318771 272.17715454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03318772 272.17718506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03318773 272.17718506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03318774 272.17721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03318775 272.17721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03318776 272.17721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03318777 272.17721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03318778 272.17724609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03318779 272.17724609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03318780 272.17727661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03318781 272.17727661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03318782 272.17730713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03318783 272.17730713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03318784 272.17733765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03318785 272.17733765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03318786 272.17736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03318787 272.17736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03318788 272.17736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03318789 272.17736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03318790 272.17739868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03318791 272.17742920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03318792 272.17745972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03318793 272.17745972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03318794 272.17749023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03318795 272.17749023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03318796 272.17752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03318797 272.17752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03318798 272.17752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03318799 272.17752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03318800 272.17755127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03318801 272.17755127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03318802 272.17758179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03318803 272.17758179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03318804 272.17761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03318805 272.17761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03318806 272.17764282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03318807 272.17764282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03318808 272.17767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03318809 272.17767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03318810 272.17770386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03318811 272.17770386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03318812 272.17770386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03318813 272.17773438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03318814 272.17776489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03318815 272.17776489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03318816 272.17779541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03318817 272.17779541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03318818 272.17782593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03318819 272.17782593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03318820 272.17785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03318821 272.17785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03318822 272.17785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03318823 272.17785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03318824 272.17788696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03318825 272.17788696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03318826 272.17791748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03318827 272.17791748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03318828 272.17794800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03318829 272.17794800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03318830 272.17797852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03318831 272.17797852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03318832 272.17800903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03318833 272.17800903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03318834 272.17800903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03318835 272.17803955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03318836 272.17807007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03318837 272.17807007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03318838 272.17810059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03318839 272.17810059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03318840 272.17813110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03318841 272.17813110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03318842 272.17816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03318843 272.17816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03318844 272.17816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03318845 272.17816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03318846 272.17819214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03318847 272.17819214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03318848 272.17822266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03318849 272.17822266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03318850 272.17825317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03318851 272.17825317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03318852 272.17828369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03318853 272.17828369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03318854 272.17831421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03318855 272.17834473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03318856 272.17834473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03318857 272.17834473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03318858 272.17837524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03318859 272.17837524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03318860 272.17840576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03318861 272.17840576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03318862 272.17843628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03318863 272.17843628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03318864 272.17846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03318865 272.17846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03318866 272.17849731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03318867 272.17849731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03318868 272.17849731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03318869 272.17849731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03318870 272.17852783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03318871 272.17852783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03318872 272.17855835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03318873 272.17855835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03318874 272.17858887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03318875 272.17858887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03318876 272.17861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03318877 272.17864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03318878 272.17864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03318879 272.17864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03318880 272.17868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03318881 272.17868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03318882 272.17871094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03318883 272.17871094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03318884 272.17874146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03318885 272.17874146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03318886 272.17877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03318887 272.17877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03318888 272.17880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03318889 272.17880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03318890 272.17880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03318891 272.17880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03318892 272.17883301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03318893 272.17883301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03318894 272.17886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03318895 272.17886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03318896 272.17889404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03318897 272.17892456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03318898 272.17895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03318899 272.17895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03318900 272.17895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03318901 272.17895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03318902 272.17898560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03318903 272.17898560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03318904 272.17901611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03318905 272.17901611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03318906 272.17904663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03318907 272.17904663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03318908 272.17907715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03318909 272.17907715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03318910 272.17910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03318911 272.17910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03318912 272.17913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03318913 272.17913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03318914 272.17913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03318915 272.17913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03318916 272.17916870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03318917 272.17916870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03318918 272.17919922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03318919 272.17922974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03318920 272.17926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03318921 272.17926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03318922 272.17929077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03318923 272.17929077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03318924 272.17932129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03318925 272.17932129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03318926 272.17935181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03318927 272.17935181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03318928 272.17938232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03318929 272.17938232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03318930 272.17941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03318931 272.17941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03318932 272.17944336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03318933 272.17944336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03318934 272.17944336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03318935 272.17944336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03318936 272.17947388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03318937 272.17947388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03318938 272.17950439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03318939 272.17950439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03318940 272.17953491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03318941 272.17956543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03318942 272.17959595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03318943 272.17959595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03318944 272.17959595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03318945 272.17959595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03318946 272.17962646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03318947 272.17962646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03318948 272.17965698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03318949 272.17965698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03318950 272.17968750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03318951 272.17968750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03318952 272.17980957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03318953 272.17980957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03318954 272.17984009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03318955 272.17984009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03318956 272.17987061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03318957 272.17987061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03318958 272.17990112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03318959 272.17990112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03318960 272.17993164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03318961 272.18005371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03318962 272.18008423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03318963 272.18008423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03318964 272.18008423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03318965 272.18008423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03318966 272.18011475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03318967 272.18011475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03318968 272.18014526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03318969 272.18014526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03318970 272.18017578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03318971 272.18017578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03318972 272.18020630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03318973 272.18020630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03318974 272.18023682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03318975 272.18023682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03318976 272.18023682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03318977 272.18023682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03318978 272.18026733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03318979 272.18029785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03318980 272.18032837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03318981 272.18032837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03318982 272.18035889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03318983 272.18035889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03318984 272.18041992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03318985 272.18045044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03318986 272.18048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03318987 272.18048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03318988 272.18051147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03318989 272.18051147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03318990 272.18054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03318991 272.18054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03318992 272.18054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03318993 272.18054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03318994 272.18057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03318995 272.18057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03318996 272.18060303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03318997 272.18060303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03318998 272.18063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03318999 272.18063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03319000 272.18066406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03319001 272.18066406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03319002 272.18069458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03319003 272.18072510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03319004 272.18072510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03319005 272.18072510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03319006 272.18075562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03319007 272.18075562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03319008 272.18078613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03319009 272.18078613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03319010 272.18081665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03319011 272.18081665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03319012 272.18084717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03319013 272.18084717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03319014 272.18087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03319015 272.18087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03319016 272.18087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03319017 272.18087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03319018 272.18090820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03319019 272.18090820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03319020 272.18093872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03319021 272.18093872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03319022 272.18096924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03319023 272.18096924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03319024 272.18099976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03319025 272.18103027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03319026 272.18103027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03319027 272.18103027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03319028 272.18106079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03319029 272.18106079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03319030 272.18109131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03319031 272.18109131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03319032 272.18112183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03319033 272.18112183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03319034 272.18115234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03319035 272.18115234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03319036 272.18118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03319037 272.18118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03319038 272.18118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03319039 272.18118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03319040 272.18121338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03319041 272.18121338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03319042 272.18124390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03319043 272.18124390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03319044 272.18127441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03319045 272.18127441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03319046 272.18130493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03319047 272.18133545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03319048 272.18133545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03319049 272.18133545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03319050 272.18136597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03319051 272.18136597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03319052 272.18139648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03319053 272.18139648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03319054 272.18142700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03319055 272.18142700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03319056 272.18145752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03319057 272.18145752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03319058 272.18148804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03319059 272.18148804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03319060 272.18151855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03319061 272.18151855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03319062 272.18151855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03319063 272.18151855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03319064 272.18154907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03319065 272.18154907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03319066 272.18157959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03319067 272.18161011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03319068 272.18161011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03319069 272.18164063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03319070 272.18167114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03319071 272.18167114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03319072 272.18167114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03319073 272.18167114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03319074 272.18170166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03319075 272.18170166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03319076 272.18173218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03319077 272.18173218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03319078 272.18176270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03319079 272.18176270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03319080 272.18179321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03319081 272.18179321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03319082 272.18182373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03319083 272.18182373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03319084 272.18182373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03319085 272.18182373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03319086 272.18185425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03319087 272.18185425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03319088 272.18188477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03319089 272.18191528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03319090 272.18194580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03319091 272.18194580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03319092 272.18197632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03319093 272.18197632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03319094 272.18197632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03319095 272.18197632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03319096 272.18200684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03319097 272.18200684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03319098 272.18203735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03319099 272.18203735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03319100 272.18206787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03319101 272.18206787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03319102 272.18209839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03319103 272.18209839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03319104 272.18212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03319105 272.18212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03319106 272.18212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03319107 272.18212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03319108 272.18215942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03319109 272.18218994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03319110 272.18222046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03319111 272.18222046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03319112 272.18225098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03319113 272.18225098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03319114 272.18228149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03319115 272.18228149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03319116 272.18231201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03319117 272.18231201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03319118 272.18231201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03319119 272.18231201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03319120 272.18234253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03319121 272.18234253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03319122 272.18237305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03319123 272.18237305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03319124 272.18240356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03319125 272.18240356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03319126 272.18243408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03319127 272.18243408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03319128 272.18246460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03319129 272.18246460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03319130 272.18249512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03319131 272.18249512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03319132 272.18252563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03319133 272.18252563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03319134 272.18255615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03319135 272.18255615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03319136 272.18258667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03319137 272.18258667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03319138 272.18261719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03319139 272.18261719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03319140 272.18261719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03319141 272.18261719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03319142 272.18264771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03319143 272.18264771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03319144 272.18267822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03319145 272.18267822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03319146 272.18270874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03319147 272.18270874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03319148 272.18273926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03319149 272.18276978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03319150 272.18276978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03319151 272.18276978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03319152 272.18280029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03319153 272.18280029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03319154 272.18283081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03319155 272.18283081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03319156 272.18286133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03319157 272.18286133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03319158 272.18289185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03319159 272.18289185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03319160 272.18292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03319161 272.18292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03319162 272.18292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03319163 272.18292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03319164 272.18295288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03319165 272.18295288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03319166 272.18298340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03319167 272.18298340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03319168 272.18301392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03319169 272.18301392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03319170 272.18304443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03319171 272.18304443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03319172 272.18307495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03319173 272.18307495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03319174 272.18310547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03319175 272.18310547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03319176 272.18310547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03319177 272.18310547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03319178 272.18313599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03319179 272.18313599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03319180 272.18316650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03319181 272.18316650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03319182 272.18319702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03319183 272.18319702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03319184 272.18322754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03319185 272.18322754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03319186 272.18325806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03319187 272.18325806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03319188 272.18325806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03319189 272.18325806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03319190 272.18328857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03319191 272.18331909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03319192 272.18331909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03319193 272.18334961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03319194 272.18338013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03319195 272.18338013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03319196 272.18341064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03319197 272.18341064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03319198 272.18341064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03319199 272.18341064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03319200 272.18344116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03319201 272.18344116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03319202 272.18347168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03319203 272.18347168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03319204 272.18350220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03319205 272.18350220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03319206 272.18353271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03319207 272.18353271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03319208 272.18356323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03319209 272.18356323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03319210 272.18359375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03319211 272.18359375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03319212 272.18362427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03319213 272.18362427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03319214 272.18365479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03319215 272.18365479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03319216 272.18368530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03319217 272.18368530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03319218 272.18371582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03319219 272.18371582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03319220 272.18374634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03319221 272.18374634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03319222 272.18374634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03319223 272.18374634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03319224 272.18377686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03319225 272.18377686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03319226 272.18380737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03319227 272.18380737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03319228 272.18383789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03319229 272.18383789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03319230 272.18386841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03319231 272.18386841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03319232 272.18389893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03319233 272.18389893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03319234 272.18389893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03319235 272.18389893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03319236 272.18392944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03319237 272.18395996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03319238 272.18399048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03319239 272.18399048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03319240 272.18402100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03319241 272.18402100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03319242 272.18405151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03319243 272.18405151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03319244 272.18405151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03319245 272.18405151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03319246 272.18408203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03319247 272.18408203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03319248 272.18411255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03319249 272.18411255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03319250 272.18414307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03319251 272.18414307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03319252 272.18417358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03319253 272.18417358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03319254 272.18420410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03319255 272.18420410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03319256 272.18420410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03319257 272.18420410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03319258 272.18423462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03319259 272.18426514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03319260 272.18429565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03319261 272.18429565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03319262 272.18432617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03319263 272.18432617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03319264 272.18435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03319265 272.18435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03319266 272.18435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03319267 272.18435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03319268 272.18438721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03319269 272.18438721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03319270 272.18441772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03319271 272.18441772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03319272 272.18444824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03319273 272.18444824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03319274 272.18447876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03319275 272.18447876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03319276 272.18450928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03319277 272.18450928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03319278 272.18453979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03319279 272.18453979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03319280 272.18453979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03319281 272.18457031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03319282 272.18460083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03319283 272.18460083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03319284 272.18463135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03319285 272.18463135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03319286 272.18466187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03319287 272.18466187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03319288 272.18469238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03319289 272.18469238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03319290 272.18469238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03319291 272.18469238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03319292 272.18472290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03319293 272.18472290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03319294 272.18475342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03319295 272.18475342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03319296 272.18478394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03319297 272.18478394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03319298 272.18481445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03319299 272.18481445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03319300 272.18484497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03319301 272.18484497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03319302 272.18487549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03319303 272.18487549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03319304 272.18490601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03319305 272.18490601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03319306 272.18493652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03319307 272.18493652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03319308 272.18499756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03319309 272.18499756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03319310 272.18502808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03319311 272.18505859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03319312 272.18508911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03319313 272.18508911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03319314 272.18511963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03319315 272.18511963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03319316 272.18515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03319317 272.18515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03319318 272.18515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03319319 272.18515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03319320 272.18518066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03319321 272.18518066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03319322 272.18521118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03319323 272.18521118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03319324 272.18524170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03319325 272.18524170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03319326 272.18527222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03319327 272.18527222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03319328 272.18530273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03319329 272.18530273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03319330 272.18533325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03319331 272.18533325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03319332 272.18536377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03319333 272.18536377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03319334 272.18539429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03319335 272.18539429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03319336 272.18542480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03319337 272.18542480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03319338 272.18545532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03319339 272.18545532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03319340 272.18548584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03319341 272.18548584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03319342 272.18548584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03319343 272.18548584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03319344 272.18551636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03319345 272.18551636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03319346 272.18554688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03319347 272.18554688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03319348 272.18557739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03319349 272.18557739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03319350 272.18560791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03319351 272.18563843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03319352 272.18563843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03319353 272.18563843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03319354 272.18566895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03319355 272.18566895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03319356 272.18569946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03319357 272.18569946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03319358 272.18572998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03319359 272.18572998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03319360 272.18576050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03319361 272.18576050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03319362 272.18579102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03319363 272.18579102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03319364 272.18582153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03319365 272.18582153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03319366 272.18585205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03319367 272.18585205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03319368 272.18588257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03319369 272.18588257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03319370 272.18591309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03319371 272.18591309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03319372 272.18594360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03319373 272.18594360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03319374 272.18594360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03319375 272.18597412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03319376 272.18600464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03319377 272.18600464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03319378 272.18603516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03319379 272.18603516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03319380 272.18606567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03319381 272.18606567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03319382 272.18609619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03319383 272.18609619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03319384 272.18612671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03319385 272.18612671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03319386 272.18612671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03319387 272.18612671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03319388 272.18615723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03319389 272.18615723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03319390 272.18618774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03319391 272.18618774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03319392 272.18621826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03319393 272.18621826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03319394 272.18624878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03319395 272.18627930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03319396 272.18627930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03319397 272.18627930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03319398 272.18630981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03319399 272.18630981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03319400 272.18634033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03319401 272.18634033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03319402 272.18637085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03319403 272.18637085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03319404 272.18640137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03319405 272.18640137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03319406 272.18643188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03319407 272.18643188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03319408 272.18643188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03319409 272.18643188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03319410 272.18646240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03319411 272.18646240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03319412 272.18649292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03319413 272.18649292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03319414 272.18652344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03319415 272.18652344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03319416 272.18655396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03319417 272.18658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03319418 272.18658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03319419 272.18658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03319420 272.18661499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03319421 272.18661499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03319422 272.18664551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03319423 272.18664551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03319424 272.18667603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03319425 272.18667603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03319426 272.18670654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03319427 272.18670654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03319428 272.18673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03319429 272.18673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03319430 272.18673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03319431 272.18673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03319432 272.18676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03319433 272.18676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03319434 272.18679810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03319435 272.18679810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03319436 272.18682861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03319437 272.18685913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03319438 272.18688965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03319439 272.18688965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03319440 272.18692017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03319441 272.18692017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03319442 272.18692017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03319443 272.18692017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03319444 272.18695068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03319445 272.18695068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03319446 272.18698120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03319447 272.18698120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03319448 272.18701172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03319449 272.18701172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03319450 272.18704224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03319451 272.18704224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03319452 272.18707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03319453 272.18707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03319454 272.18707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03319455 272.18707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03319456 272.18710327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03319457 272.18713379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03319458 272.18716431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03319459 272.18716431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03319460 272.18719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03319461 272.18719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03319462 272.18722534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03319463 272.18722534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03319464 272.18722534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03319465 272.18722534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03319466 272.18725586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03319467 272.18725586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03319468 272.18728638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03319469 272.18728638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03319470 272.18731689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03319471 272.18731689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03319472 272.18734741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03319473 272.18734741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03319474 272.18737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03319475 272.18737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03319476 272.18737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03319477 272.18737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03319478 272.18740845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03319479 272.18743896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03319480 272.18746948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03319481 272.18746948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03319482 272.18750000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03319483 272.18750000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03319484 272.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03319485 272.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03319486 272.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03319487 272.18753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03319488 272.18756104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03319489 272.18756104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03319490 272.18759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03319491 272.18759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03319492 272.18762207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03319493 272.18762207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03319494 272.18765259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03319495 272.18765259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03319496 272.18771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03319497 272.18771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03319498 272.18771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03319499 272.18771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03319500 272.18774414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03319501 272.18774414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03319502 272.18777466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03319503 272.18780518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03319504 272.18783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03319505 272.18783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03319506 272.18786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03319507 272.18786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03319508 272.18786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03319509 272.18786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03319510 272.18798828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03319511 272.18798828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03319512 272.18801880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03319513 272.18801880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03319514 272.18801880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03319515 272.18801880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03319516 272.18804932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03319517 272.18804932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03319518 272.18807983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03319519 272.18811035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03319520 272.18814087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03319521 272.18814087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03319522 272.18817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03319523 272.18817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03319524 272.18820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03319525 272.18820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03319526 272.18823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03319527 272.18823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03319528 272.18826294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03319529 272.18826294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03319530 272.18829346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03319531 272.18829346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03319532 272.18832397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03319533 272.18832397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03319534 272.18832397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03319535 272.18832397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03319536 272.18835449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03319537 272.18835449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03319538 272.18838501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03319539 272.18838501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03319540 272.18841553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03319541 272.18841553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03319542 272.18844604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03319543 272.18847656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03319544 272.18847656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03319545 272.18850708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03319546 272.18850708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03319547 272.18850708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03319548 272.18853760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03319549 272.18853760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03319550 272.18856812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03319551 272.18856812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03319552 272.18859863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03319553 272.18859863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03319554 272.18862915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03319555 272.18862915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03319556 272.18865967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03319557 272.18865967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03319558 272.18865967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03319559 272.18865967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03319560 272.18869019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03319561 272.18869019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03319562 272.18872070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03319563 272.18872070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03319564 272.18875122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03319565 272.18875122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03319566 272.18878174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03319567 272.18878174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03319568 272.18881226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03319569 272.18881226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03319570 272.18881226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03319571 272.18884277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03319572 272.18887329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03319573 272.18887329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03319574 272.18890381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03319575 272.18890381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03319576 272.18893433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03319577 272.18893433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03319578 272.18896484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03319579 272.18896484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03319580 272.18896484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03319581 272.18896484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03319582 272.18899536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03319583 272.18899536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03319584 272.18902588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03319585 272.18902588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03319586 272.18905640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03319587 272.18905640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03319588 272.18908691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03319589 272.18908691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03319590 272.18911743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03319591 272.18911743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03319592 272.18914795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03319593 272.18914795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03319594 272.18914795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03319595 272.18914795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03319596 272.18917847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03319597 272.18917847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03319598 272.18930054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03319599 272.18930054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03319600 272.18933105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03319601 272.18933105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03319602 272.18936157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03319603 272.18936157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03319604 272.18939209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03319605 272.18939209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03319606 272.18942261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03319607 272.18942261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03319608 272.18945313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03319609 272.18945313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03319610 272.18945313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03319611 272.18945313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03319612 272.18948364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03319613 272.18951416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03319614 272.18954468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03319615 272.18954468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03319616 272.18957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03319617 272.18957520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03319618 272.18960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03319619 272.18960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03319620 272.18960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03319621 272.18960571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03319622 272.18963623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03319623 272.18963623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03319624 272.18966675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03319625 272.18966675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03319626 272.18969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03319627 272.18969727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03319628 272.18972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03319629 272.18972778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03319630 272.18975830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03319631 272.18975830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03319632 272.18978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03319633 272.18978882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03319634 272.18981934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03319635 272.18981934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03319636 272.18984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03319637 272.18984985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03319638 272.18988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03319639 272.18988037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03319640 272.18991089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03319641 272.18991089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03319642 272.18994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03319643 272.18994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03319644 272.18994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03319645 272.18994141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03319646 272.18997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03319647 272.18997192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03319648 272.19000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03319649 272.19000244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03319650 272.19003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03319651 272.19003296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03319652 272.19006348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03319653 272.19006348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03319654 272.19009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03319655 272.19009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03319656 272.19009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03319657 272.19009399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03319658 272.19012451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03319659 272.19012451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03319660 272.19015503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03319661 272.19015503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03319662 272.19018555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03319663 272.19018555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03319664 272.19021606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03319665 272.19021606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03319666 272.19024658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03319667 272.19024658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03319668 272.19024658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03319669 272.19027710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03319670 272.19027710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03319671 272.19030762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03319672 272.19033813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03319673 272.19033813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03319674 272.19036865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03319675 272.19036865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03319676 272.19039917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03319677 272.19039917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03319678 272.19039917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03319679 272.19039917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03319680 272.19042969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03319681 272.19042969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03319682 272.19046021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03319683 272.19046021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03319684 272.19049072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03319685 272.19049072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03319686 272.19052124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03319687 272.19052124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03319688 272.19055176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03319689 272.19055176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03319690 272.19055176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03319691 272.19055176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03319692 272.19058228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03319693 272.19058228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03319694 272.19061279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03319695 272.19061279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03319696 272.19064331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03319697 272.19064331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03319698 272.19067383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03319699 272.19067383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03319700 272.19070435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03319701 272.19070435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03319702 272.19073486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03319703 272.19073486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03319704 272.19073486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03319705 272.19076538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03319706 272.19079590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03319707 272.19079590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03319708 272.19082642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03319709 272.19082642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03319710 272.19085693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03319711 272.19085693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03319712 272.19088745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03319713 272.19088745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03319714 272.19088745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03319715 272.19088745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03319716 272.19091797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03319717 272.19091797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03319718 272.19094849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03319719 272.19094849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03319720 272.19097900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03319721 272.19097900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03319722 272.19100952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03319723 272.19100952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03319724 272.19104004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03319725 272.19104004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03319726 272.19104004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03319727 272.19104004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03319728 272.19107056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03319729 272.19107056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03319730 272.19110107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03319731 272.19110107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03319732 272.19113159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03319733 272.19113159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03319734 272.19116211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03319735 272.19116211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03319736 272.19119263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03319737 272.19119263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03319738 272.19119263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03319739 272.19119263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03319740 272.19122314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03319741 272.19125366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03319742 272.19125366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03319743 272.19128418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03319744 272.19131470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03319745 272.19131470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03319746 272.19134521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03319747 272.19134521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03319748 272.19134521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03319749 272.19134521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03319750 272.19137573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03319751 272.19137573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03319752 272.19140625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03319753 272.19140625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03319754 272.19143677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03319755 272.19143677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03319756 272.19146729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03319757 272.19146729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03319758 272.19149780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03319759 272.19149780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03319760 272.19152832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03319761 272.19152832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03319762 272.19152832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03319763 272.19152832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03319764 272.19155884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03319765 272.19158936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03319766 272.19161987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03319767 272.19161987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03319768 272.19165039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03319769 272.19165039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03319770 272.19168091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03319771 272.19168091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03319772 272.19168091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03319773 272.19168091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03319774 272.19171143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03319775 272.19171143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03319776 272.19174194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03319777 272.19174194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03319778 272.19177246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03319779 272.19177246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03319780 272.19180298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03319781 272.19180298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03319782 272.19183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03319783 272.19183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03319784 272.19183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03319785 272.19183350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03319786 272.19186401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03319787 272.19186401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03319788 272.19189453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03319789 272.19189453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03319790 272.19192505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03319791 272.19192505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03319792 272.19195557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03319793 272.19195557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03319794 272.19198608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03319795 272.19198608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03319796 272.19201660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03319797 272.19201660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03319798 272.19204712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03319799 272.19204712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03319800 272.19207764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03319801 272.19207764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03319802 272.19210815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03319803 272.19210815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03319804 272.19213867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03319805 272.19213867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03319806 272.19213867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03319807 272.19213867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03319808 272.19216919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03319809 272.19216919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03319810 272.19219971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03319811 272.19219971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03319812 272.19223022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03319813 272.19223022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03319814 272.19226074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03319815 272.19226074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03319816 272.19229126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03319817 272.19229126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03319818 272.19232178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03319819 272.19232178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03319820 272.19232178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03319821 272.19232178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03319822 272.19235229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03319823 272.19238281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03319824 272.19238281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03319825 272.19241333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03319826 272.19244385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03319827 272.19244385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03319828 272.19247437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03319829 272.19247437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03319830 272.19247437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03319831 272.19247437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03319832 272.19250488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03319833 272.19250488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03319834 272.19253540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03319835 272.19253540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03319836 272.19256592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03319837 272.19256592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03319838 272.19259644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03319839 272.19259644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03319840 272.19262695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03319841 272.19262695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03319842 272.19262695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03319843 272.19262695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03319844 272.19265747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03319845 272.19265747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03319846 272.19268799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03319847 272.19268799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03319848 272.19271851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03319849 272.19271851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03319850 272.19274902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03319851 272.19274902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03319852 272.19277954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03319853 272.19277954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03319854 272.19277954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03319855 272.19277954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03319856 272.19281006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03319857 272.19281006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03319858 272.19284058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03319859 272.19284058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03319860 272.19287109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03319861 272.19287109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03322118 272.22543335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03322119 272.22543335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03322120 272.22546387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03322121 272.22546387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03322122 272.22549438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03322123 272.22552490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03322124 272.22552490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03322125 272.22552490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03322126 272.22555542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03322127 272.22555542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03322128 272.22558594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03322129 272.22558594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03322130 272.22561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03322131 272.22561646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03322132 272.22564697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03322133 272.22564697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03322134 272.22567749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03322135 272.22567749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03322136 272.22567749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03322137 272.22567749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03322138 272.22570801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03322139 272.22570801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03322140 272.22573853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03322141 272.22573853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03322142 272.22576904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03322143 272.22576904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03322144 272.22579956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03322145 272.22583008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03322146 272.22583008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03322147 272.22583008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03322148 272.22586060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03322149 272.22586060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03322150 272.22589111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03322151 272.22589111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03322152 272.22598267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03322153 272.22598267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03322154 272.22601318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03322155 272.22604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03322156 272.22604370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03322157 272.22607422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03322158 272.22610474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03322159 272.22610474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03322160 272.22613525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03322161 272.22613525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03325128 272.26950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -03325129 272.26950073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -03325130 272.26953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -03325131 272.26953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -03325132 272.26953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -03325133 272.26953125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -03325134 272.26956177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde38 -03325135 272.26956177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde38 -03325136 272.26959229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde48 -03325137 272.26959229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde48 -03325138 272.26962280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde58 -03325139 272.26962280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde58 -03325140 272.26965332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde68 -03325141 272.26965332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde68 -03325142 272.26968384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde78 -03325143 272.26968384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde78 -03325144 272.26968384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde88 -03325145 272.26971436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde88 -03325146 272.26974487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde98 -03325147 272.26974487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xde98 -03325148 272.26977539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea8 -03325149 272.26977539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea8 -03325150 272.26980591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb8 -03325151 272.26980591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb8 -03325152 272.26983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec8 -03325153 272.26983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec8 -03325154 272.26983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xded8 -03325155 272.26983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xded8 -03325156 272.26986694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee8 -03325157 272.26986694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee8 -03325158 272.26989746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef8 -03325159 272.26989746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef8 -03325160 272.26992798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf08 -03325161 272.26992798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf08 -03325162 272.26995850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf18 -03325163 272.26995850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf18 -03325164 272.26998901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf28 -03325165 272.26998901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf28 -03325166 272.26998901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf38 -03325167 272.27001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf38 -03325168 272.27005005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf48 -03325169 272.27005005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf48 -03325170 272.27008057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf58 -03325171 272.27008057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf58 -03327560 272.30355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a08 -03327561 272.30355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a08 -03327562 272.30358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a18 -03327563 272.30358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a18 -03327564 272.30361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a28 -03327565 272.30361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a28 -03327566 272.30364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a38 -03327567 272.30364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a38 -03327568 272.30368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a48 -03327569 272.30368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a48 -03327570 272.30368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a58 -03327571 272.30368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a58 -03327572 272.30371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a68 -03327573 272.30371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a68 -03327574 272.30374146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a78 -03327575 272.30374146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a78 -03327576 272.30377197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a88 -03327577 272.30377197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a88 -03327578 272.30380249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a98 -03327579 272.30380249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a98 -03327580 272.30383301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa8 -03327581 272.30383301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa8 -03327582 272.30386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab8 -03327583 272.30386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab8 -03327584 272.30389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac8 -03327585 272.30389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac8 -03327586 272.30392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad8 -03327587 272.30392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad8 -03327588 272.30395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae8 -03327589 272.30395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae8 -03327590 272.30398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af8 -03327591 272.30398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af8 -03327592 272.30398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b08 -03327593 272.30398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b08 -03327594 272.30401611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b18 -03327595 272.30401611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b18 -03327596 272.30404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b28 -03327597 272.30404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b28 -03327598 272.30407715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b38 -03327599 272.30410767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b38 -03327600 272.30413818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b48 -03327601 272.30413818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b48 -03327602 272.30416870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b58 -03327603 272.30416870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b58 -03339754 272.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a718 -03339755 272.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a718 -03339756 272.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a728 -03339757 272.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a728 -03339758 272.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a738 -03339759 272.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a738 -03339760 272.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a748 -03339761 272.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a748 -03339762 272.47662354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a758 -03339763 272.47662354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a758 -03339764 272.47665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a768 -03339765 272.47665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a768 -03339766 272.47668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a778 -03339767 272.47668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a778 -03339768 272.47668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a788 -03339769 272.47671509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a788 -03339770 272.47674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a798 -03339771 272.47674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a798 -03339772 272.47677612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a8 -03339773 272.47677612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a8 -03339774 272.47680664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b8 -03339775 272.47680664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b8 -03339776 272.47683716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c8 -03339777 272.47683716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c8 -03339778 272.47683716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d8 -03339779 272.47683716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d8 -03339780 272.47686768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e8 -03339781 272.47686768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e8 -03339782 272.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f8 -03339783 272.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f8 -03339784 272.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a808 -03339785 272.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a808 -03339786 272.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a818 -03339787 272.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a818 -03339788 272.47698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a828 -03339789 272.47698975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a828 -03339790 272.47702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a838 -03339791 272.47702026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a838 -03339792 272.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a848 -03339793 272.47705078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a848 -03339794 272.47708130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -03339795 272.47708130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -03339796 272.47711182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -03339797 272.47711182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -03342333 272.51254272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a8 -03342334 272.51257324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b8 -03342335 272.51257324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b8 -03342336 272.51260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c8 -03342337 272.51260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c8 -03342338 272.51260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d8 -03342339 272.51260376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d8 -03342340 272.51263428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e8 -03342341 272.51263428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e8 -03342342 272.51266479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f8 -03342343 272.51269531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f8 -03342344 272.51272583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f808 -03342345 272.51275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f808 -03342346 272.51275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -03342347 272.51275635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -03342348 272.51278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -03342349 272.51278687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -03342350 272.51281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -03342351 272.51281738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -03342352 272.51284790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -03342353 272.51284790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -03342354 272.51287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -03342355 272.51287842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -03342356 272.51290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -03342357 272.51290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -03342358 272.51290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -03342359 272.51290894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -03342360 272.51293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -03342361 272.51293945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -03342362 272.51296997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -03342363 272.51300049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -03342364 272.51303101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -03342365 272.51303101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -03342366 272.51306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -03342367 272.51306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -03342368 272.51306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -03342369 272.51306152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -03342370 272.51309204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -03342371 272.51309204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -03342372 272.51312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -03342373 272.51312256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -03342374 272.51315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -03342375 272.51315308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -03342376 272.51318359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f908 -03344858 272.54864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -03344859 272.54864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -03344860 272.54864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -03344861 272.54864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -03344862 272.54867554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -03344863 272.54870605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -03344864 272.54873657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -03344865 272.54873657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -03344866 272.54876709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -03344867 272.54876709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -03344868 272.54879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -03344869 272.54879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -03344870 272.54879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -03344871 272.54879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -03344872 272.54882813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -03344873 272.54882813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -03344874 272.54885864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -03344875 272.54885864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -03344876 272.54888916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -03344877 272.54888916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -03344878 272.54891968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -03344879 272.54891968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -03344880 272.54895020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -03344881 272.54895020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -03344882 272.54898071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -03344883 272.54898071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -03344884 272.54901123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -03344885 272.54901123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -03344886 272.54904175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -03344887 272.54904175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -03344888 272.54907227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -03344889 272.54907227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -03344890 272.54910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -03344891 272.54910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -03344892 272.54913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -03344893 272.54913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -03344894 272.54913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -03344895 272.54913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -03344896 272.54916382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -03344897 272.54916382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -03344898 272.54919434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -03344899 272.54919434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -03344900 272.54922485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -03344901 272.54922485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -03347514 272.58618164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -03347515 272.58618164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -03347516 272.58621216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39968 -03347517 272.58621216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39968 -03347518 272.58624268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39978 -03347519 272.58624268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39978 -03347520 272.58627319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39988 -03347521 272.58627319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39988 -03347522 272.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -03347523 272.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -03347524 272.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -03347525 272.58630371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -03347526 272.58633423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -03347527 272.58633423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -03347528 272.58642578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -03347529 272.58645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -03347530 272.58645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -03347531 272.58645630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -03347532 272.58648682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e8 -03347533 272.58648682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e8 -03347534 272.58651733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f8 -03347535 272.58651733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f8 -03347536 272.58654785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a08 -03347537 272.58654785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a08 -03347538 272.58657837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a18 -03347539 272.58657837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a18 -03347540 272.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a28 -03347541 272.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a28 -03347542 272.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a38 -03347543 272.58660889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a38 -03347544 272.58663940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a48 -03347545 272.58666992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a48 -03347546 272.58670044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a58 -03347547 272.58670044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a58 -03347548 272.58673096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a68 -03347549 272.58673096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a68 -03347550 272.58676147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a78 -03347551 272.58676147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a78 -03347552 272.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a88 -03347553 272.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a88 -03347554 272.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a98 -03347555 272.58679199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a98 -03347556 272.58682251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa8 -03347557 272.58682251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa8 -03350144 272.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb88 -03350145 272.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb88 -03350146 272.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb98 -03350147 272.62396240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb98 -03350148 272.62399292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba8 -03350149 272.62399292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba8 -03350150 272.62402344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb8 -03350151 272.62402344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb8 -03350152 272.62405396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc8 -03350153 272.62405396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc8 -03350154 272.62408447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd8 -03350155 272.62411499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd8 -03350156 272.62411499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe8 -03350157 272.62411499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe8 -03350158 272.62414551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf8 -03350159 272.62414551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf8 -03350160 272.62417603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec08 -03350161 272.62417603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec08 -03350162 272.62420654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec18 -03350163 272.62420654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec18 -03350164 272.62423706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec28 -03350165 272.62423706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec28 -03350166 272.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec38 -03350167 272.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec38 -03350168 272.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec48 -03350169 272.62426758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec48 -03350170 272.62429810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec58 -03350171 272.62429810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec58 -03350172 272.62432861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec68 -03350173 272.62432861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec68 -03350174 272.62435913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec78 -03350175 272.62438965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec78 -03350176 272.62442017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec88 -03350177 272.62442017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec88 -03350178 272.62442017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec98 -03350179 272.62442017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec98 -03350180 272.62445068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca8 -03350181 272.62445068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca8 -03350182 272.62454224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb8 -03350183 272.62454224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb8 -03350184 272.62457275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecc8 -03350185 272.62457275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecc8 -03350186 272.62460327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd8 -03350187 272.62460327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd8 -03353414 272.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451b8 -03353415 272.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451b8 -03353416 272.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451c8 -03353417 272.67083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451c8 -03353418 272.67086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451d8 -03353419 272.67086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451d8 -03353420 272.67089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451e8 -03353421 272.67089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451e8 -03353422 272.67092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451f8 -03353423 272.67092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x451f8 -03353424 272.67095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45208 -03353425 272.67095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45208 -03353426 272.67098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45218 -03353427 272.67098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45218 -03353428 272.67098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45228 -03353429 272.67102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45228 -03353430 272.67102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45238 -03353431 272.67105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45238 -03353432 272.67108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45248 -03353433 272.67108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45248 -03353434 272.67111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45258 -03353435 272.67111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45258 -03353436 272.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45268 -03353437 272.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45268 -03353438 272.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45278 -03353439 272.67114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45278 -03353440 272.67117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45288 -03353441 272.67117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45288 -03353442 272.67120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45298 -03353443 272.67120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45298 -03353444 272.67123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452a8 -03353445 272.67123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452a8 -03353446 272.67126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452b8 -03353447 272.67126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452b8 -03353448 272.67129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452c8 -03353449 272.67129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452c8 -03353450 272.67129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452d8 -03353451 272.67129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452d8 -03353452 272.67132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452e8 -03353453 272.67132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452e8 -03353454 272.67135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452f8 -03353455 272.67135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x452f8 -03353456 272.67138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45308 -03353457 272.67138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45308 -03355954 272.70697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a118 -03355955 272.70697021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a118 -03355956 272.70700073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a128 -03355957 272.70700073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a128 -03355958 272.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a138 -03355959 272.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a138 -03355960 272.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a148 -03355961 272.70703125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a148 -03355962 272.70706177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a158 -03355963 272.70706177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a158 -03355964 272.70709229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a168 -03355965 272.70709229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a168 -03355966 272.70712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a178 -03355967 272.70712280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a178 -03355968 272.70715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a188 -03355969 272.70715332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a188 -03355970 272.70718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a198 -03355971 272.70718384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a198 -03355972 272.70721436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1a8 -03355973 272.70721436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1a8 -03355974 272.70724487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1b8 -03355975 272.70724487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1b8 -03355976 272.70727539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1c8 -03355977 272.70727539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1c8 -03355978 272.70730591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1d8 -03355979 272.70730591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1d8 -03355980 272.70733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1e8 -03355981 272.70733643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1e8 -03355982 272.70736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1f8 -03355983 272.70736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1f8 -03355984 272.70736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a208 -03355985 272.70736694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a208 -03355986 272.70739746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a218 -03355987 272.70739746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a218 -03355988 272.70742798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a228 -03355989 272.70742798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a228 -03355990 272.70745850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a238 -03355991 272.70745850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a238 -03355992 272.70748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a248 -03355993 272.70748901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a248 -03355994 272.70751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a258 -03355995 272.70751953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a258 -03355996 272.70755005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a268 -03355997 272.70755005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a268 -03359178 272.75332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d8 -03359179 272.75332642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d8 -03359180 272.75335693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e8 -03359181 272.75335693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e8 -03359182 272.75338745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f8 -03359183 272.75338745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f8 -03359184 272.75341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50608 -03359185 272.75341797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50608 -03359186 272.75344849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50618 -03359187 272.75344849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50618 -03359188 272.75344849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50628 -03359189 272.75344849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50628 -03359190 272.75347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50638 -03359191 272.75347900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50638 -03359192 272.75350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50648 -03359193 272.75350952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50648 -03359194 272.75354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50658 -03359195 272.75354004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50658 -03359196 272.75360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50668 -03359197 272.75360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50668 -03359198 272.75360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50678 -03359199 272.75360107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50678 -03359200 272.75363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50688 -03359201 272.75363159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50688 -03359202 272.75366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50698 -03359203 272.75366211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50698 -03359204 272.75369263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a8 -03359205 272.75369263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a8 -03359206 272.75372314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b8 -03359207 272.75372314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b8 -03359208 272.75375366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c8 -03359209 272.75375366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c8 -03359210 272.75375366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d8 -03359211 272.75375366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d8 -03359212 272.75378418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e8 -03359213 272.75378418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e8 -03359214 272.75381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f8 -03359215 272.75381470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f8 -03359216 272.75390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50708 -03359217 272.75390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50708 -03359218 272.75390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50718 -03359219 272.75390625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50718 -03359220 272.75393677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50728 -03359221 272.75393677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50728 -03360438 273.79052734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03360439 273.79052734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03360440 273.79058838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03360441 273.79058838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03360442 273.79061890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03360443 273.79061890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03360444 273.79064941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03360445 273.79064941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03360446 273.79067993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03360447 273.79067993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03360448 273.79067993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03360449 273.79067993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03360450 273.79071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03360451 273.79071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03360452 273.79074097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03360453 273.79074097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03360454 273.79077148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03360455 273.79077148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03360456 273.79080200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03360457 273.79083252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03360458 273.79086304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03360459 273.79086304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03360460 273.79086304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03360461 273.79086304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03360462 273.79089355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03360463 273.79089355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03360464 273.79092407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03360465 273.79092407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03360466 273.79095459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03360467 273.79095459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03360468 273.79098511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03360469 273.79098511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03360470 273.79101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03360471 273.79101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03360472 273.79101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03360473 273.79101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03360474 273.79104614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03360475 273.79107666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03360476 273.79110718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03360477 273.79110718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03360478 273.79113770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03360479 273.79113770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03360480 273.79116821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03360481 273.79116821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03360482 273.79116821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03360483 273.79116821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03360484 273.79119873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03360485 273.79119873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03360486 273.79122925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03360487 273.79122925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03360488 273.79125977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03360489 273.79125977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03360490 273.79129028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03360491 273.79129028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03360492 273.79132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03360493 273.79132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03360494 273.79135132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03360495 273.79135132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03360496 273.79138184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03360497 273.79138184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03360498 273.79141235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03360499 273.79141235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03360500 273.79144287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03360501 273.79144287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03360502 273.79147339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03360503 273.79147339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03360504 273.79147339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03360505 273.79147339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03360506 273.79150391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03360507 273.79150391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03360508 273.79153442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03360509 273.79153442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03360510 273.79156494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03360511 273.79159546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03360512 273.79162598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03360513 273.79162598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03360514 273.79165649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03360515 273.79165649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03360516 273.79165649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03360517 273.79165649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03360518 273.79168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03360519 273.79168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03360520 273.79171753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03360521 273.79171753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03360522 273.79174805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03360523 273.79174805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03360524 273.79177856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03360525 273.79177856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03360526 273.79180908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03360527 273.79180908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03360528 273.79180908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03360529 273.79183960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03360530 273.79187012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03360531 273.79187012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03360532 273.79190063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03360533 273.79190063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03360534 273.79193115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03360535 273.79193115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03360536 273.79196167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03360537 273.79196167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03360538 273.79196167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03360539 273.79196167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03360540 273.79199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03360541 273.79199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03360542 273.79202271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03360543 273.79202271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03360544 273.79205322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03360545 273.79205322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03360546 273.79208374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03360547 273.79211426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03360548 273.79211426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03360549 273.79211426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03360550 273.79214478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03360551 273.79214478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03360552 273.79217529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03360553 273.79217529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03360554 273.79220581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03360555 273.79220581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03360556 273.79223633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03360557 273.79223633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03360558 273.79226685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03360559 273.79226685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03360560 273.79226685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03360561 273.79226685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03360562 273.79232788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03360563 273.79232788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03360564 273.79235840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03360565 273.79235840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03360566 273.79238892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03360567 273.79238892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03360568 273.79241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03360569 273.79241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03360570 273.79244995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03360571 273.79244995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03360572 273.79248047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03360573 273.79248047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03360574 273.79251099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03360575 273.79251099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03360576 273.79254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03360577 273.79254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03360578 273.79257202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03360579 273.79257202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03360580 273.79260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03360581 273.79260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03360582 273.79260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03360583 273.79260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03360584 273.79263306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03360585 273.79263306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03360586 273.79266357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03360587 273.79266357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03360588 273.79272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03360589 273.79272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03360590 273.79275513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03360591 273.79275513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03360592 273.79275513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03360593 273.79275513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03360594 273.79278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03360595 273.79278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03360596 273.79281616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03360597 273.79281616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03360598 273.79284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03360599 273.79284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03360600 273.79287720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03360601 273.79287720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03360602 273.79290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03360603 273.79290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03360604 273.79290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03360605 273.79290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03360606 273.79293823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03360607 273.79296875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03360608 273.79299927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03360609 273.79299927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03360610 273.79302979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03360611 273.79302979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03360612 273.79306030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03360613 273.79306030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03360614 273.79306030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03360615 273.79306030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03360616 273.79309082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03360617 273.79309082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03360618 273.79312134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03360619 273.79312134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03360620 273.79315186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03360621 273.79315186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03360622 273.79318237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03360623 273.79321289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03360624 273.79324341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03360625 273.79324341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03360626 273.79324341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03360627 273.79324341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03360628 273.79327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03360629 273.79327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03360630 273.79330444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03360631 273.79330444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03360632 273.79333496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03360633 273.79333496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03360634 273.79336548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03360635 273.79336548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03360636 273.79339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03360637 273.79339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03360638 273.79339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03360639 273.79339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03360640 273.79342651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03360641 273.79342651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03360642 273.79345703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03360643 273.79348755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03360644 273.79351807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03360645 273.79351807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03360646 273.79354858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03360647 273.79354858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03360648 273.79354858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03360649 273.79354858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03360650 273.79357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03360651 273.79357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03360652 273.79360962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03360653 273.79360962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03360654 273.79364014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03360655 273.79364014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03360656 273.79367065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03360657 273.79367065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03360658 273.79370117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03360659 273.79370117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03360660 273.79373169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03360661 273.79373169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03360662 273.79376221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03360663 273.79376221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03360664 273.79379272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03360665 273.79379272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03360666 273.79382324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03360667 273.79382324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03360668 273.79385376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03360669 273.79385376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03360670 273.79385376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03360671 273.79385376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03360672 273.79388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03360673 273.79388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03360674 273.79391479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03360675 273.79391479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03360676 273.79394531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03360677 273.79394531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03360678 273.79397583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03360679 273.79400635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03360680 273.79403687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03360681 273.79403687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03360682 273.79403687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03360683 273.79403687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03360684 273.79406738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03360685 273.79406738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03360686 273.79409790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03360687 273.79409790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03360688 273.79412842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03360689 273.79412842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03360690 273.79415894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03360691 273.79415894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03360692 273.79418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03360693 273.79418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03360694 273.79418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03360695 273.79418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03360696 273.79421997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03360697 273.79425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03360698 273.79428101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03360699 273.79428101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03360700 273.79431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03360701 273.79431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03360702 273.79434204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03360703 273.79434204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03360704 273.79434204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03360705 273.79434204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03360706 273.79437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03360707 273.79437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03360708 273.79440308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03360709 273.79440308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03360710 273.79443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03360711 273.79443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03360712 273.79446411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03360713 273.79446411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03360714 273.79449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03360715 273.79449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03360716 273.79452515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03360717 273.79452515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03360718 273.79455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03360719 273.79455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03360720 273.79458618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03360721 273.79458618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03360722 273.79461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03360723 273.79461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03360724 273.79464722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03360725 273.79464722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03360726 273.79464722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03360727 273.79464722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03360728 273.79467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03360729 273.79467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03360730 273.79470825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03360731 273.79470825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03360732 273.79473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03360733 273.79476929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03360734 273.79479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03360735 273.79479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03360736 273.79483032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03360737 273.79483032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03360738 273.79483032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03360739 273.79483032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03360740 273.79486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03360741 273.79486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03360742 273.79489136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03360743 273.79489136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03360744 273.79492188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03360745 273.79492188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03360746 273.79495239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03360747 273.79495239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03360748 273.79498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03360749 273.79498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03360750 273.79498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03360751 273.79501343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03360752 273.79504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03360753 273.79504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03360754 273.79507446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03360755 273.79507446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03360756 273.79510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03360757 273.79510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03360758 273.79513550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03360759 273.79513550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03360760 273.79513550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03360761 273.79513550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03360762 273.79516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03360763 273.79516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03360764 273.79519653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03360765 273.79519653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03360766 273.79522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03360767 273.79522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03360768 273.79525757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03360769 273.79528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03360770 273.79528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03360771 273.79528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03360772 273.79531860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03360773 273.79531860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03360774 273.79534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03360775 273.79534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03360776 273.79537964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03360777 273.79537964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03360778 273.79541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03360779 273.79541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03360780 273.79544067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03360781 273.79544067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03360782 273.79547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03360783 273.79547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03360784 273.79547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03360785 273.79547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03360786 273.79550171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03360787 273.79553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03360788 273.79556274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03360789 273.79556274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03360790 273.79559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03360791 273.79559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03360792 273.79562378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03360793 273.79562378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03360794 273.79562378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03360795 273.79562378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03360796 273.79565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03360797 273.79565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03360798 273.79568481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03360799 273.79568481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03360800 273.79571533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03360801 273.79571533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03360802 273.79574585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03360803 273.79574585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03360804 273.79577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03360805 273.79577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03360806 273.79580688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03360807 273.79580688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03360808 273.79583740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03360809 273.79583740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03360810 273.79586792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03360811 273.79586792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03360812 273.79589844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03360813 273.79589844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03360814 273.79592896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03360815 273.79592896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03360816 273.79592896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03360817 273.79592896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03360818 273.79595947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03360819 273.79595947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03360820 273.79598999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03360821 273.79598999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03360822 273.79602051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03360823 273.79605103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03360824 273.79608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03360825 273.79608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03360826 273.79608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03360827 273.79608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03360828 273.79611206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03360829 273.79611206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03360830 273.79614258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03360831 273.79614258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03360832 273.79617310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03360833 273.79617310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03360834 273.79620361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03360835 273.79620361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03360836 273.79623413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03360837 273.79623413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03360838 273.79626465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03360839 273.79626465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03360840 273.79626465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03360841 273.79629517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03360842 273.79632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03360843 273.79632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03360844 273.79635620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03360845 273.79635620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03360846 273.79638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03360847 273.79638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03360848 273.79641724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03360849 273.79641724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03360850 273.79641724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03360851 273.79641724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03360852 273.79644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03360853 273.79644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03360854 273.79647827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03360855 273.79647827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03360856 273.79650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03360857 273.79650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03360858 273.79653931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03360859 273.79656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03360860 273.79656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03360861 273.79656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03360862 273.79660034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03360863 273.79660034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03360864 273.79663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03360865 273.79663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03360866 273.79666138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03360867 273.79666138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03360868 273.79669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03360869 273.79669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03360870 273.79672241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03360871 273.79672241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03360872 273.79672241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03360873 273.79672241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03360874 273.79675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03360875 273.79675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03360876 273.79678345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03360877 273.79681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03360878 273.79684448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03360879 273.79684448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03360880 273.79687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03360881 273.79687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03360882 273.79687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03360883 273.79687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03360884 273.79690552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03360885 273.79690552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03360886 273.79693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03360887 273.79693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03360888 273.79696655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03360889 273.79696655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03360890 273.79699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03360891 273.79702759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03360892 273.79705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03360893 273.79705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03360894 273.79705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03360895 273.79705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03360896 273.79708862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03360897 273.79708862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03360898 273.79711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03360899 273.79711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03360900 273.79714966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03360901 273.79714966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03360902 273.79718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03360903 273.79718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03360904 273.79721069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03360905 273.79721069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03360906 273.79721069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03360907 273.79721069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03360908 273.79724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03360909 273.79724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03360910 273.79727173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03360911 273.79730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03360912 273.79733276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03360913 273.79733276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03360914 273.79736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03360915 273.79736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03360916 273.79736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03360917 273.79736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03360918 273.79739380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03360919 273.79739380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03360920 273.79742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03360921 273.79742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03360922 273.79745483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03360923 273.79745483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03360924 273.79748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03360925 273.79748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03360926 273.79751587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03360927 273.79751587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03360928 273.79751587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03360929 273.79754639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03360930 273.79757690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03360931 273.79757690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03360932 273.79760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03360933 273.79760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03360934 273.79763794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03360935 273.79763794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03360936 273.79766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03360937 273.79766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03360938 273.79766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03360939 273.79766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03360940 273.79769897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03360941 273.79769897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03360942 273.79772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03360943 273.79772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03360944 273.79776001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03360945 273.79776001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03360946 273.79779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03360947 273.79782104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03360948 273.79785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03360949 273.79785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03360950 273.79785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03360951 273.79785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03360952 273.79788208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03360953 273.79788208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03360954 273.79791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03360955 273.79791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03360956 273.79794312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03360957 273.79794312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03360958 273.79797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03360959 273.79797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03360960 273.79800415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03360961 273.79800415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03360962 273.79800415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03360963 273.79803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03360964 273.79806519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03360965 273.79806519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03360966 273.79809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03360967 273.79809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03360968 273.79812622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03360969 273.79812622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03360970 273.79815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03360971 273.79815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03360972 273.79815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03360973 273.79815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03360974 273.79818726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03360975 273.79818726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03360976 273.79821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03360977 273.79821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03360978 273.79824829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03360979 273.79824829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03360980 273.79827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03360981 273.79830933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03360982 273.79830933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03360983 273.79830933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03360984 273.79833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03360985 273.79833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03360986 273.79837036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03360987 273.79837036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03360988 273.79840088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03360989 273.79840088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03360990 273.79843140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03360991 273.79843140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03360992 273.79846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03360993 273.79846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03360994 273.79846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03360995 273.79846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03360996 273.79849243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03360997 273.79849243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03360998 273.79852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03360999 273.79852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03361000 273.79858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03361001 273.79858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03361002 273.79861450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03361003 273.79861450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03361004 273.79864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03361005 273.79864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03361006 273.79864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03361007 273.79864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03361008 273.79867554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03361009 273.79867554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03361010 273.79870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03361011 273.79870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03361012 273.79873657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03361013 273.79873657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03361014 273.79876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03361015 273.79876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03361016 273.79879761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03361017 273.79879761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03361018 273.79882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03361019 273.79882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03361020 273.79885864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03361021 273.79885864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03361022 273.79888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03361023 273.79888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03361024 273.79891968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03361025 273.79891968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03361026 273.79895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03361027 273.79895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03361028 273.79895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03361029 273.79895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03361030 273.79898071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03361031 273.79898071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03361032 273.79901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03361033 273.79901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03361034 273.79904175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03361035 273.79904175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03361036 273.79907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03361037 273.79910278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03361038 273.79910278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03361039 273.79910278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03361040 273.79913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03361041 273.79913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03361042 273.79916382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03361043 273.79916382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03361044 273.79919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03361045 273.79919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03361046 273.79922485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03361047 273.79922485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03361048 273.79925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03361049 273.79925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03361050 273.79925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03361051 273.79925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03361052 273.79928589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03361053 273.79928589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03361054 273.79931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03361055 273.79934692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03361056 273.79937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03361057 273.79937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03361058 273.79940796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03361059 273.79940796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03361060 273.79943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03361061 273.79943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03361062 273.79943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03361063 273.79943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03361064 273.79946899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03361065 273.79946899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03361066 273.79949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03361067 273.79949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03361068 273.79953003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03361069 273.79953003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03361070 273.79956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03361071 273.79956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03361072 273.79959106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03361073 273.79959106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03361074 273.79962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03361075 273.79962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03361076 273.79965210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03361077 273.79965210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03361078 273.79968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03361079 273.79968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03361080 273.79971313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03361081 273.79971313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03361082 273.79974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03361083 273.79974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03361084 273.79974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03361085 273.79974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03361086 273.79977417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03361087 273.79977417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03361088 273.79980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03361089 273.79983521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03361090 273.79986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03361091 273.79986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03361092 273.79989624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03361093 273.79989624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03361094 273.79989624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03361095 273.79989624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03361096 273.79992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03361097 273.79992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03361098 273.79995728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03361099 273.79995728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03361100 273.79998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03361101 273.79998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03361102 273.80001831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03361103 273.80001831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03361104 273.80004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03361105 273.80004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03361106 273.80004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03361107 273.80007935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03361108 273.80010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03361109 273.80010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03361110 273.80014038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03361111 273.80014038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03361112 273.80017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03361113 273.80017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03361114 273.80020142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03361115 273.80020142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03361116 273.80023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03361117 273.80023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03361118 273.80023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03361119 273.80023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03361120 273.80026245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03361121 273.80026245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03361122 273.80029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03361123 273.80029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03361124 273.80032349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03361125 273.80035400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03361126 273.80038452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03361127 273.80038452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03361128 273.80038452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03361129 273.80038452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03361130 273.80041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03361131 273.80041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03361132 273.80044556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03361133 273.80044556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03361134 273.80047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03361135 273.80047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03361136 273.80050659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03361137 273.80050659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03361138 273.80053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03361139 273.80053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03361140 273.80053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03361141 273.80053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03361142 273.80059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03361143 273.80059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03361144 273.80062866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03361145 273.80062866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03361146 273.80065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03361147 273.80065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03361148 273.80068970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03361149 273.80068970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03361150 273.80068970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03361151 273.80068970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03361152 273.80072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03361153 273.80072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03361154 273.80075073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03361155 273.80075073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03361156 273.80078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03361157 273.80078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03361158 273.80081177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03361159 273.80084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03361160 273.80087280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03361161 273.80087280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03361162 273.80087280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03361163 273.80087280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03361164 273.80090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03361165 273.80090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03361166 273.80093384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03361167 273.80093384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03361168 273.80096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03361169 273.80096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03361170 273.80099487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03361171 273.80099487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03361172 273.80102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03361173 273.80102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03361174 273.80102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03361175 273.80102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03361176 273.80105591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03361177 273.80108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03361178 273.80111694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03361179 273.80111694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03361180 273.80114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03361181 273.80114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03361182 273.80117798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03361183 273.80117798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03361184 273.80117798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03361185 273.80117798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03361186 273.80120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03361187 273.80120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03361188 273.80123901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03361189 273.80123901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03361190 273.80126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03361191 273.80126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03361192 273.80130005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03361193 273.80130005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03361194 273.80133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03361195 273.80133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03361196 273.80136108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03361197 273.80136108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03361198 273.80139160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03361199 273.80139160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03361200 273.80142212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03361201 273.80142212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03361202 273.80145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03361203 273.80145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03361204 273.80148315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03361205 273.80148315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03361206 273.80148315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03361207 273.80148315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03361208 273.80151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03361209 273.80151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03361210 273.80154419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03361211 273.80154419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03361212 273.80157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03361213 273.80160522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03361214 273.80163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03361215 273.80163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03361216 273.80166626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03361217 273.80166626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03361218 273.80166626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03361219 273.80166626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03361220 273.80169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03361221 273.80169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03361222 273.80172729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03361223 273.80172729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03361224 273.80175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03361225 273.80175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03361226 273.80178833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03361227 273.80178833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03361228 273.80181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03361229 273.80181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03373433 273.97836304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -03373434 273.97836304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -03373435 273.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -03373436 273.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -03373437 273.97842407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -03373438 273.97842407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -03373439 273.97845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -03373440 273.97845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -03373441 273.97848511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -03373442 273.97848511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -03373443 273.97851563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -03373444 273.97851563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -03373445 273.97854614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -03373446 273.97854614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -03373447 273.97857666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -03373448 273.97857666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -03373449 273.97860718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -03373450 273.97860718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -03373451 273.97863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -03373452 273.97863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -03373453 273.97866821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -03373454 273.97866821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -03373455 273.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -03373456 273.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -03373457 273.97872925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -03373458 273.97872925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -03373459 273.97875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -03373460 273.97875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -03373461 273.97879028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -03373462 273.97879028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -03373463 273.97882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a730 -03373464 273.97882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a730 -03373465 273.97885132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a740 -03373466 273.97885132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a740 -03373467 273.97888184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a750 -03373468 273.97888184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a750 -03373469 273.97891235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a760 -03373470 273.97891235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a760 -03373471 273.97894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a770 -03373472 273.97894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a770 -03373473 273.97897339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a780 -03373474 273.97897339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a780 -03373475 273.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a790 -03373476 273.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a790 -03375687 274.01074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb0 -03375688 274.01074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb0 -03375689 274.01077271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc0 -03375690 274.01077271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc0 -03375691 274.01080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd0 -03375692 274.01080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd0 -03375693 274.01083374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece0 -03375694 274.01083374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece0 -03375695 274.01086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf0 -03375696 274.01086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf0 -03375697 274.01089478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed00 -03375698 274.01089478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed00 -03375699 274.01089478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed10 -03375700 274.01092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed10 -03375701 274.01095581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed20 -03375702 274.01095581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed20 -03375703 274.01098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed30 -03375704 274.01098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed30 -03375705 274.01101685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed40 -03375706 274.01101685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed40 -03375707 274.01104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed50 -03375708 274.01104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed50 -03375709 274.01104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed60 -03375710 274.01104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed60 -03375711 274.01107788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed70 -03375712 274.01107788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed70 -03375713 274.01110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed80 -03375714 274.01110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed80 -03375715 274.01113892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed90 -03375716 274.01113892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed90 -03375717 274.01116943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda0 -03375718 274.01119995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda0 -03375719 274.01119995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb0 -03375720 274.01119995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb0 -03375721 274.01123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc0 -03375722 274.01123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc0 -03375723 274.01126099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd0 -03375724 274.01126099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd0 -03375725 274.01129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede0 -03375726 274.01129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede0 -03375727 274.01132202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf0 -03375728 274.01132202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf0 -03375729 274.01135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee00 -03375730 274.01135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee00 -03378055 274.04458618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -03378056 274.04458618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -03378057 274.04461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -03378058 274.04461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -03378059 274.04464722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -03378060 274.04464722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -03378061 274.04467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e0 -03378062 274.04467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e0 -03378063 274.04470825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f0 -03378064 274.04470825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f0 -03378065 274.04470825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23700 -03378066 274.04473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23700 -03378067 274.04476929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23710 -03378068 274.04476929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23710 -03378069 274.04479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23720 -03378070 274.04479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23720 -03378071 274.04483032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23730 -03378072 274.04483032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23730 -03378073 274.04486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23740 -03378074 274.04486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23740 -03378075 274.04489136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23750 -03378076 274.04489136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23750 -03378077 274.04489136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23760 -03378078 274.04489136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23760 -03378079 274.04492188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23770 -03378080 274.04495239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23770 -03378081 274.04498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23780 -03378082 274.04498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23780 -03378083 274.04501343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23790 -03378084 274.04501343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23790 -03378085 274.04504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a0 -03378086 274.04504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a0 -03378087 274.04504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b0 -03378088 274.04504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b0 -03378089 274.04507446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c0 -03378090 274.04507446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c0 -03378091 274.04510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d0 -03378092 274.04510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d0 -03378093 274.04513550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e0 -03378094 274.04513550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e0 -03378095 274.04516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f0 -03378096 274.04516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f0 -03378097 274.04519653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23800 -03378098 274.04519653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23800 -03380891 274.08526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f50 -03380892 274.08526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f50 -03380893 274.08532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f60 -03380894 274.08532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f60 -03380895 274.08535767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f70 -03380896 274.08535767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f70 -03380897 274.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f80 -03380898 274.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f80 -03380899 274.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f90 -03380900 274.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f90 -03380901 274.08541870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa0 -03380902 274.08541870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa0 -03380903 274.08544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb0 -03380904 274.08544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb0 -03380905 274.08547974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc0 -03380906 274.08547974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc0 -03380907 274.08551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fd0 -03380908 274.08551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fd0 -03380909 274.08554077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fe0 -03380910 274.08554077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fe0 -03380911 274.08557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -03380912 274.08557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -03380913 274.08560181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -03380914 274.08560181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -03380915 274.08563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -03380916 274.08563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -03380917 274.08566284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -03380918 274.08566284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -03380919 274.08569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -03380920 274.08569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -03380921 274.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -03380922 274.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -03380923 274.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -03380924 274.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -03380925 274.08575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -03380926 274.08575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -03380927 274.08578491 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -03380928 274.08581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -03380929 274.08584595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -03380930 274.08584595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -03380931 274.08587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -03380932 274.08587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -03380933 274.08587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -03380934 274.08587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -03383491 274.12237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e090 -03383492 274.12237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e090 -03383493 274.12240601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a0 -03383494 274.12240601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a0 -03383495 274.12240601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b0 -03383496 274.12240601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b0 -03383497 274.12243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c0 -03383498 274.12243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c0 -03383499 274.12246704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d0 -03383500 274.12246704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d0 -03383501 274.12249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e0 -03383502 274.12249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e0 -03383503 274.12252808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f0 -03383504 274.12252808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f0 -03383505 274.12255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e100 -03383506 274.12255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e100 -03383507 274.12255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e110 -03383508 274.12258911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e110 -03383509 274.12261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e120 -03383510 274.12261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e120 -03383511 274.12265015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e130 -03383512 274.12265015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e130 -03383513 274.12268066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e140 -03383514 274.12268066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e140 -03383515 274.12271118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e150 -03383516 274.12271118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e150 -03383517 274.12271118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e160 -03383518 274.12271118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e160 -03383519 274.12274170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e170 -03383520 274.12274170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e170 -03383521 274.12277222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e180 -03383522 274.12277222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e180 -03383523 274.12280273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e190 -03383524 274.12280273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e190 -03383525 274.12283325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -03383526 274.12286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -03383527 274.12289429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -03383528 274.12289429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -03383529 274.12289429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -03383530 274.12289429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -03383531 274.12292480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -03383532 274.12292480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -03383533 274.12295532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -03383534 274.12295532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -03383931 274.12860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -03383932 274.12860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -03383933 274.12863159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -03383934 274.12863159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -03383935 274.12866211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -03383936 274.12866211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -03383937 274.12869263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -03383938 274.12869263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -03383939 274.12872314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -03383940 274.12872314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -03383941 274.12875366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -03383942 274.12875366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -03383943 274.12875366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -03383944 274.12878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -03383945 274.12881470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -03383946 274.12881470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -03383947 274.12884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -03383948 274.12884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -03383949 274.12887573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -03383950 274.12887573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -03383951 274.12890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -03383952 274.12890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -03383953 274.12893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -03383954 274.12893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -03383955 274.12893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -03383956 274.12893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -03383957 274.12896729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -03383958 274.12896729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -03383959 274.12899780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -03383960 274.12899780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -03383961 274.12902832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -03383962 274.12905884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -03383963 274.12908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -03383964 274.12908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -03383965 274.12908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef60 -03383966 274.12908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef60 -03383967 274.12911987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef70 -03383968 274.12911987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef70 -03383969 274.12915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef80 -03383970 274.12915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef80 -03383971 274.12918091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef90 -03383972 274.12918091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef90 -03383973 274.12921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa0 -03383974 274.12921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa0 -03384135 274.13153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -03384136 274.13153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -03384137 274.13156128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -03384138 274.13159180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -03384139 274.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -03384140 274.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -03384141 274.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4e0 -03384142 274.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4e0 -03384143 274.13165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4f0 -03384144 274.13165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4f0 -03384145 274.13168335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f500 -03384146 274.13168335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f500 -03384147 274.13171387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f510 -03384148 274.13171387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f510 -03384149 274.13174438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f520 -03384150 274.13174438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f520 -03384151 274.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f530 -03384152 274.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f530 -03384153 274.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f540 -03384154 274.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f540 -03384155 274.13180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f550 -03384156 274.13183594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f550 -03384157 274.13186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f560 -03384158 274.13186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f560 -03384159 274.13189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f570 -03384160 274.13189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f570 -03384161 274.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f580 -03384162 274.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f580 -03384163 274.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -03384164 274.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -03384165 274.13195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -03384166 274.13195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -03384167 274.13198853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -03384168 274.13198853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -03384169 274.13201904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -03384170 274.13201904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -03384171 274.13204956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -03384172 274.13204956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -03384173 274.13208008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -03384174 274.13211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -03384175 274.13211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -03384176 274.13211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -03384177 274.13214111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -03384178 274.13214111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -03384209 274.13256836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f700 -03384210 274.13259888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f700 -03384211 274.13262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f710 -03384212 274.13262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f710 -03384213 274.13265991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f720 -03384214 274.13265991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f720 -03384215 274.13269043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f730 -03384216 274.13269043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f730 -03384217 274.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f740 -03384218 274.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f740 -03384219 274.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f750 -03384220 274.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f750 -03384221 274.13275146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f760 -03384222 274.13275146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f760 -03384223 274.13278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f770 -03384224 274.13278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f770 -03384225 274.13281250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f780 -03384226 274.13281250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f780 -03384227 274.13284302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f790 -03384228 274.13284302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f790 -03384229 274.13287354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a0 -03384230 274.13290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a0 -03384231 274.13290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b0 -03384232 274.13290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b0 -03384233 274.13293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c0 -03384234 274.13293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c0 -03384235 274.13296509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d0 -03384236 274.13296509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d0 -03384237 274.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e0 -03384238 274.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e0 -03384239 274.13302612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f0 -03384240 274.13302612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f0 -03384241 274.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f800 -03384242 274.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f800 -03384243 274.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f810 -03384244 274.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f810 -03384245 274.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f820 -03384246 274.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f820 -03384247 274.13311768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f830 -03384248 274.13314819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f830 -03384249 274.13317871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f840 -03384250 274.13317871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f840 -03384251 274.13320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f850 -03384252 274.13320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f850 -03384355 274.13467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb90 -03384356 274.13470459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb90 -03384357 274.13473511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba0 -03384358 274.13473511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba0 -03384359 274.13476563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb0 -03384360 274.13476563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb0 -03384361 274.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc0 -03384362 274.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc0 -03384363 274.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd0 -03384364 274.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd0 -03384365 274.13482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe0 -03384366 274.13482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe0 -03384367 274.13485718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf0 -03384368 274.13485718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf0 -03384369 274.13488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc00 -03384370 274.13488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc00 -03384371 274.13491821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc10 -03384372 274.13494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc10 -03384373 274.13494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc20 -03384374 274.13494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc20 -03384375 274.13497925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc30 -03384376 274.13497925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc30 -03384377 274.13500977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc40 -03384378 274.13500977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc40 -03384379 274.13504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc50 -03384380 274.13504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc50 -03384381 274.13507080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc60 -03384382 274.13507080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc60 -03384383 274.13510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc70 -03384384 274.13510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc70 -03384385 274.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc80 -03384386 274.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc80 -03384387 274.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc90 -03384388 274.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc90 -03384389 274.13516235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca0 -03384390 274.13519287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca0 -03384391 274.13522339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb0 -03384392 274.13522339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb0 -03384393 274.13525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcc0 -03384394 274.13525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcc0 -03384395 274.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcd0 -03384396 274.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcd0 -03384397 274.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fce0 -03384398 274.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fce0 -03384834 274.14154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a80 -03384835 274.14157104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a90 -03384836 274.14157104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a90 -03384837 274.14160156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30aa0 -03384838 274.14160156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30aa0 -03384839 274.14163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ab0 -03384840 274.14163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ab0 -03384841 274.14166260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ac0 -03384842 274.14166260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ac0 -03384843 274.14169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ad0 -03384844 274.14169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ad0 -03384845 274.14172363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -03384846 274.14172363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -03384847 274.14175415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -03384848 274.14175415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -03384849 274.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -03384850 274.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -03384851 274.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -03384852 274.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -03384853 274.14181519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -03384854 274.14181519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -03384855 274.14184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -03384856 274.14184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -03384857 274.14187622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -03384858 274.14190674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -03384859 274.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -03384860 274.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -03384861 274.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -03384862 274.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -03384863 274.14196777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -03384864 274.14196777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -03384865 274.14199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -03384866 274.14199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -03384867 274.14202881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -03384868 274.14202881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -03384869 274.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -03384870 274.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -03384871 274.14208984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -03384872 274.14208984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -03384873 274.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -03384874 274.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -03384875 274.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -03384876 274.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -03384877 274.14215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be0 -03384915 274.14273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d10 -03384916 274.14273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d10 -03384917 274.14273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d20 -03384918 274.14273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d20 -03384919 274.14276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d30 -03384920 274.14276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d30 -03384921 274.14279175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d40 -03384922 274.14282227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d40 -03384923 274.14285278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d50 -03384924 274.14285278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d50 -03384925 274.14288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d60 -03384926 274.14288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d60 -03384927 274.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d70 -03384928 274.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d70 -03384929 274.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d80 -03384930 274.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d80 -03384931 274.14294434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d90 -03384932 274.14294434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d90 -03384933 274.14297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da0 -03384934 274.14297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da0 -03384935 274.14300537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db0 -03384936 274.14300537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db0 -03384937 274.14303589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -03384938 274.14303589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -03384939 274.14306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -03384940 274.14306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -03384941 274.14309692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -03384942 274.14309692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -03384943 274.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -03384944 274.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -03384945 274.14315796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -03384946 274.14315796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -03384947 274.14318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -03384948 274.14318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -03384949 274.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -03384950 274.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -03384951 274.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -03384952 274.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -03384953 274.14324951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -03384954 274.14324951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -03384955 274.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -03384956 274.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -03384957 274.14331055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -03384958 274.14334106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -03385049 274.14465332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -03385050 274.14465332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -03385051 274.14468384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -03385052 274.14471436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -03385053 274.14474487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -03385054 274.14474487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -03385055 274.14477539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -03385056 274.14477539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -03385057 274.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -03385058 274.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -03385059 274.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -03385060 274.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -03385061 274.14483643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -03385062 274.14483643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -03385063 274.14486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -03385064 274.14486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -03385065 274.14489746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -03385066 274.14489746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -03385067 274.14492798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -03385068 274.14492798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -03385069 274.14495850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -03385070 274.14495850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -03385071 274.14498901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -03385072 274.14498901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -03385073 274.14501953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -03385074 274.14501953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -03385075 274.14505005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -03385076 274.14505005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -03385077 274.14508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -03385078 274.14508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -03385079 274.14511108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -03385080 274.14511108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -03385081 274.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -03385082 274.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -03385083 274.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -03385084 274.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -03385085 274.14517212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -03385086 274.14517212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -03385087 274.14520264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -03385088 274.14523315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -03385089 274.14526367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -03385090 274.14526367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -03385091 274.14529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -03385092 274.14529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -03390031 274.21807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acf0 -03390032 274.21807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acf0 -03390033 274.21810913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad00 -03390034 274.21813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad00 -03390035 274.21817017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad10 -03390036 274.21817017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad10 -03390037 274.21820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad20 -03390038 274.21820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad20 -03390039 274.21820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad30 -03390040 274.21820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad30 -03390041 274.21823120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad40 -03390042 274.21823120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad40 -03390043 274.21826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad50 -03390044 274.21829224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad50 -03390045 274.21832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad60 -03390046 274.21832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad60 -03390047 274.21835327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad70 -03390048 274.21835327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad70 -03390049 274.21835327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad80 -03390050 274.21835327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad80 -03390051 274.21838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad90 -03390052 274.21838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad90 -03390053 274.21841431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada0 -03390054 274.21844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada0 -03390055 274.21847534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb0 -03390056 274.21847534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb0 -03390057 274.21850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc0 -03390058 274.21850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc0 -03390059 274.21853638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add0 -03390060 274.21853638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add0 -03390061 274.21853638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade0 -03390062 274.21856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade0 -03390063 274.21859741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf0 -03390064 274.21859741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf0 -03390065 274.21862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae00 -03390066 274.21862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae00 -03390067 274.21865845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae10 -03390068 274.21865845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae10 -03390069 274.21868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae20 -03390070 274.21868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae20 -03390071 274.21868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae30 -03390072 274.21871948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae30 -03390073 274.21875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae40 -03390074 274.21875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae40 -03392453 274.25393677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -03392454 274.25393677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -03392456 274.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -03392457 274.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -03392458 274.25402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -03392459 274.25402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -03392460 274.25405884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -03392461 274.25405884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -03392462 274.25408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -03392463 274.25408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -03392464 274.25411987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -03392465 274.25411987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -03392466 274.25411987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f900 -03392467 274.25411987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f900 -03392468 274.25415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f910 -03392469 274.25415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f910 -03392470 274.25418091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f920 -03392471 274.25418091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f920 -03392472 274.25421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f930 -03392473 274.25424194 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f930 -03392474 274.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f940 -03392475 274.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f940 -03392476 274.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f950 -03392477 274.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f950 -03392478 274.25430298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f960 -03392479 274.25430298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f960 -03392480 274.25433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f970 -03392481 274.25433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f970 -03392482 274.25436401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f980 -03392483 274.25436401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f980 -03392484 274.25439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f990 -03392485 274.25439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f990 -03392486 274.25442505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a0 -03392487 274.25442505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a0 -03392488 274.25442505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -03392489 274.25445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -03392490 274.25448608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -03392491 274.25448608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -03392492 274.25451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -03392493 274.25451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -03392494 274.25454712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -03392495 274.25454712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -03392496 274.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -03392497 274.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -03402357 274.81506348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402358 274.81549072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402359 274.81561279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402360 274.81607056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402361 275.02392578 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402362 275.02398682 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402363 275.02398682 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402364 275.02398682 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03402365 275.02413940 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402366 275.02413940 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402367 275.02420044 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402368 275.02423096 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402369 275.94204712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03402370 275.96304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402371 275.96304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402372 276.15213013 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03402373 276.15240479 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402374 276.20108032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402375 276.20190430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402376 276.20214844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402377 276.20217896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03402378 276.20245361 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402379 276.22100830 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402380 276.22161865 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402381 276.22186279 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402382 276.22335815 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03402383 276.22357178 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402384 276.24755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402385 276.26855469 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402386 276.26904297 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402387 276.30801392 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402388 276.30834961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402389 276.30883789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402390 276.30908203 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402391 276.30920410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402392 276.30935669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402393 276.30957031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402394 276.31008911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402395 276.31076050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402396 276.31140137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402397 276.31149292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402398 276.31201172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402399 276.31219482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402400 276.31259155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402401 276.31268311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402402 276.31317139 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402403 276.31326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402404 276.31369019 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402405 276.31387329 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402406 276.31433105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402407 276.31738281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402408 276.31790161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402409 276.31906128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03402410 276.31930542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402411 276.37298584 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402412 276.37371826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03402413 276.37396240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402414 276.45071411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402415 276.55197144 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402416 276.55291748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402417 276.55319214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402418 276.55786133 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402419 277.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402420 277.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402421 277.53073120 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402422 277.53079224 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402423 277.53079224 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402424 277.53079224 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03402425 277.53094482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402426 277.53094482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402427 277.53097534 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402428 277.53103638 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402429 277.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402430 277.63034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402431 277.77108765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03402432 277.77108765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03402433 277.77111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03402434 277.77111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03402435 277.77114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03402436 277.77114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03402437 277.77114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03402438 277.77114868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03402439 277.77117920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03402440 277.77117920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03402441 277.77120972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03402442 277.77124023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03402443 277.77127075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03402444 277.77127075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03402445 277.77130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03402446 277.77130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03402447 277.77130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03402448 277.77130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03402449 277.77133179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03402450 277.77133179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03402451 277.77136230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03402452 277.77136230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03402453 277.77145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03402454 277.77145386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03402455 277.77148438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03402456 277.77148438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03402457 277.77151489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03402458 277.77151489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03402459 277.77154541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03402460 277.77154541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03402461 277.77157593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03402462 277.77157593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03402463 277.77160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03402464 277.77160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03402465 277.77163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03402466 277.77163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03402467 277.77163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03402468 277.77163696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03402469 277.77166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03402470 277.77166748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03402471 277.77169800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03402472 277.77172852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03402473 277.77175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03402474 277.77175903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03402475 277.77178955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03402476 277.77178955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03402477 277.77178955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03402478 277.77178955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03402479 277.77182007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03402480 277.77182007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03402481 277.77185059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03402482 277.77185059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03402483 277.77188110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03402484 277.77188110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03402485 277.77197266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03402486 277.77197266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03402487 277.77200317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03402488 277.77200317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03402489 277.77203369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03402490 277.77203369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03402491 277.77206421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03402492 277.77206421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03402493 277.77209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03402494 277.77209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03402495 277.77209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03402496 277.77209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03402497 277.77212524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03402498 277.77212524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03402499 277.77215576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03402500 277.77215576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03402501 277.77218628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03402502 277.77218628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03402503 277.77221680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03402504 277.77221680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03402505 277.77224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03402506 277.77224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03402507 277.77224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03402508 277.77224731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03402509 277.77227783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03402510 277.77230835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03402511 277.77233887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03402512 277.77233887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03402513 277.77236938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03402514 277.77236938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03402515 277.77239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03402516 277.77239990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03402517 277.77243042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03402518 277.77243042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03402519 277.77252197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03402520 277.77255249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03402521 277.77258301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03402522 277.77258301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03402523 277.77258301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03402524 277.77258301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03402525 277.77261353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03402526 277.77261353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03402527 277.77264404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03402528 277.77264404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03402529 277.77267456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03402530 277.77267456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03402531 277.77270508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03402532 277.77270508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03402533 277.77273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03402534 277.77273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03402535 277.77273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03402536 277.77273560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03402537 277.77276611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03402538 277.77279663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03402539 277.77279663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03402540 277.77282715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03402541 277.77285767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03402542 277.77285767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03402543 277.77288818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03402544 277.77288818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03402545 277.77288818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03402546 277.77288818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03402547 277.77291870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03402548 277.77291870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03402549 277.77294922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03402550 277.77294922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03402551 277.77304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03402552 277.77304077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03402553 277.77307129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03402554 277.77307129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03402555 277.77313232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03402556 277.77313232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03402557 277.77316284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03402558 277.77316284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03402559 277.77319336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03402560 277.77319336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03402561 277.77322388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03402562 277.77322388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03402563 277.77322388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03402564 277.77322388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03402565 277.77325439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03402566 277.77325439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03402567 277.77328491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03402568 277.77331543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03402569 277.77334595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03402570 277.77334595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03402571 277.77337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03402572 277.77337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03402573 277.77337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03402574 277.77337646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03402575 277.77340698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03402576 277.77340698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03402577 277.77343750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03402578 277.77343750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03402579 277.77346802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03402580 277.77346802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03402581 277.77349854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03402582 277.77349854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03402583 277.77359009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03402584 277.77359009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03402585 277.77362061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03402586 277.77362061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03402587 277.77365112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03402588 277.77368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03402589 277.77368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03402590 277.77368164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03402591 277.77371216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03402592 277.77371216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03402593 277.77374268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03402594 277.77374268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03402595 277.77377319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03402596 277.77377319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03402597 277.77380371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03402598 277.77380371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03402599 277.77383423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03402600 277.77383423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03402601 277.77386475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03402602 277.77386475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03402603 277.77386475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03402604 277.77386475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03402605 277.77389526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03402606 277.77389526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03402607 277.77392578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03402608 277.77392578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03402609 277.77395630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03402610 277.77398682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03402611 277.77401733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03402612 277.77401733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03402613 277.77401733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03402614 277.77401733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03402615 277.77410889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03402616 277.77413940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03402617 277.77416992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03402618 277.77416992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03402619 277.77416992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03402620 277.77416992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03402621 277.77420044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03402622 277.77420044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03402623 277.77423096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03402624 277.77423096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03402625 277.77426147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03402626 277.77426147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03402627 277.77429199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03402628 277.77429199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03402629 277.77432251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03402630 277.77432251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03402631 277.77432251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03402632 277.77432251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03402633 277.77435303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03402634 277.77435303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03402635 277.77438354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03402636 277.77438354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03402637 277.77441406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03402638 277.77441406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03402639 277.77444458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03402640 277.77447510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03402641 277.77447510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03402642 277.77447510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03402643 277.77450562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03402644 277.77450562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03402645 277.77453613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03402646 277.77453613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03402647 277.77456665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03402648 277.77456665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03402649 277.77465820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03402650 277.77465820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03402651 277.77465820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03402652 277.77465820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03402653 277.77468872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03402654 277.77471924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03402655 277.77471924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03402656 277.77474976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03402657 277.77478027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03402658 277.77478027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03402659 277.77481079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03402660 277.77481079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03402661 277.77481079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03402662 277.77481079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03402663 277.77484131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03402664 277.77484131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03402665 277.77487183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03402666 277.77487183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03402667 277.77490234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03402668 277.77490234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03402669 277.77493286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03402670 277.77493286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03402671 277.77496338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03402672 277.77496338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03402673 277.77496338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03402674 277.77496338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03402675 277.77499390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03402676 277.77499390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03402677 277.77502441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03402678 277.77502441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03402679 277.77505493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03402680 277.77505493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03402681 277.77508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03402682 277.77508545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03402683 277.77517700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03402684 277.77517700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03402685 277.77520752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03402686 277.77520752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03402687 277.77523804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03402688 277.77523804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03402689 277.77526855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03402690 277.77526855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03402691 277.77526855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03402692 277.77526855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03402693 277.77529907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03402694 277.77529907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03402695 277.77532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03402696 277.77532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03402697 277.77536011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03402698 277.77536011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03402699 277.77539063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03402700 277.77539063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03402701 277.77545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03402702 277.77545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03402703 277.77545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03402704 277.77545166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03402705 277.77548218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03402706 277.77548218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03402707 277.77551270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03402708 277.77551270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03402709 277.77554321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03402710 277.77554321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03402711 277.77557373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03402712 277.77557373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03402713 277.77560425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03402714 277.77560425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03402715 277.77560425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03402716 277.77569580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03402717 277.77572632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03402718 277.77572632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03402719 277.77575684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03402720 277.77575684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03402721 277.77575684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03402722 277.77575684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03402723 277.77578735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03402724 277.77578735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03402725 277.77581787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03402726 277.77581787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03402727 277.77584839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03402728 277.77584839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03402729 277.77587891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03402730 277.77587891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03402731 277.77590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03402732 277.77590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03402733 277.77590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03402734 277.77590942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03402735 277.77593994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03402736 277.77593994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03402737 277.77597046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03402738 277.77597046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03402739 277.77600098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03402740 277.77600098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03402741 277.77603149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03402742 277.77606201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03402743 277.77606201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03402744 277.77606201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03402745 277.77609253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03402746 277.77609253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03402747 277.77612305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03402748 277.77612305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03402749 277.77624512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03402750 277.77624512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03402751 277.77624512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03402752 277.77624512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03402753 277.77627563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03402754 277.77627563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03402755 277.77630615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03402756 277.77630615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03402757 277.77633667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03402758 277.77633667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03402759 277.77636719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03402760 277.77636719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03402761 277.77639771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03402762 277.77639771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03402763 277.77639771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03402764 277.77639771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03402765 277.77642822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03402766 277.77642822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03402767 277.77645874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03402768 277.77645874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03402769 277.77648926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03402770 277.77648926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03402771 277.77651978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03402772 277.77651978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03402773 277.77655029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03402774 277.77655029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03402775 277.77655029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03402776 277.77655029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03402777 277.77658081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03402778 277.77658081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03402779 277.77661133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03402780 277.77661133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03402781 277.77667236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03402782 277.77667236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03402783 277.77673340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03402784 277.77676392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03402785 277.77679443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03402786 277.77679443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03402787 277.77682495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03402788 277.77682495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03402789 277.77685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03402790 277.77685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03402791 277.77685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03402792 277.77685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03402793 277.77688599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03402794 277.77688599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03402795 277.77691650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03402796 277.77691650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03402797 277.77694702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03402798 277.77694702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03402799 277.77697754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03402800 277.77697754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03402801 277.77700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03402802 277.77700806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03402803 277.77703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03402804 277.77703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03402805 277.77703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03402806 277.77703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03402807 277.77706909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03402808 277.77706909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03402809 277.77709961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03402810 277.77709961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03402811 277.77713013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03402812 277.77713013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03402813 277.77716064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03402814 277.77716064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03402815 277.77719116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03402816 277.77719116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03402817 277.77728271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03402818 277.77728271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03402819 277.77731323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03402820 277.77731323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03402821 277.77734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03402822 277.77734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03402823 277.77734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03402824 277.77734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03402825 277.77737427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03402826 277.77737427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03402827 277.77740479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03402828 277.77740479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03402829 277.77743530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03402830 277.77743530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03402831 277.77746582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03402832 277.77746582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03402833 277.77749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03402834 277.77749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03402835 277.77749634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03402836 277.77752686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03402837 277.77755737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03402838 277.77755737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03402839 277.77758789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03402840 277.77758789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03402841 277.77761841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03402842 277.77761841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03402843 277.77764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03402844 277.77764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03402845 277.77764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03402846 277.77764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03402847 277.77767944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03402848 277.77767944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03402849 277.77770996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03402850 277.77770996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03402851 277.77783203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03402852 277.77783203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03402853 277.77786255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03402854 277.77786255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03402855 277.77789307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03402856 277.77789307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03402857 277.77792358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03402858 277.77792358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03402859 277.77795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03402860 277.77798462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03402861 277.77798462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03402862 277.77798462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03402863 277.77801514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03402864 277.77801514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03402865 277.77804565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03402866 277.77804565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03402867 277.77807617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03402868 277.77807617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03402869 277.77810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03402870 277.77810669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03402871 277.77813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03402872 277.77813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03402873 277.77813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03402874 277.77813721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03402875 277.77816772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03402876 277.77816772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03402877 277.77819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03402878 277.77819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03402879 277.77822876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03402880 277.77825928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03402881 277.77828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03402882 277.77828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03402883 277.77828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03402884 277.77828979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03402885 277.77838135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03402886 277.77841187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03402887 277.77844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03402888 277.77844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03402889 277.77844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03402890 277.77844238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03402891 277.77847290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03402892 277.77847290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03402893 277.77850342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03402894 277.77850342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03402895 277.77853394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03402896 277.77853394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03402897 277.77856445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03402898 277.77856445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03402899 277.77859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03402900 277.77859497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03402901 277.77862549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03402902 277.77862549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03402903 277.77862549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03402904 277.77862549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03402905 277.77865601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03402906 277.77865601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03402907 277.77868652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03402908 277.77868652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03402909 277.77871704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03402910 277.77874756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03402911 277.77874756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03402912 277.77877808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03402913 277.77877808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03402914 277.77877808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03402915 277.77880859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03402916 277.77880859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03402917 277.77883911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03402918 277.77883911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03402919 277.77893066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03402920 277.77893066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03402921 277.77893066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03402922 277.77893066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03402923 277.77896118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03402924 277.77896118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03402925 277.77899170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03402926 277.77902222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03402927 277.77902222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03402928 277.77905273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03402929 277.77908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03402930 277.77908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03402931 277.77908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03402932 277.77908325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03402933 277.77911377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03402934 277.77911377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03402935 277.77914429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03402936 277.77914429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03402937 277.77917480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03402938 277.77917480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03402939 277.77920532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03402940 277.77920532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03402941 277.77923584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03402942 277.77923584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03402943 277.77926636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03402944 277.77926636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03402945 277.77926636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03402946 277.77926636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03402947 277.77929688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03402948 277.77932739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03402949 277.77935791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03402950 277.77935791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03402951 277.77938843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03402952 277.77938843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03402953 277.77947998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03402954 277.77947998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03402955 277.77951050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03402956 277.77951050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03402957 277.77954102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03402958 277.77954102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03402959 277.77957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03402960 277.77957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03402961 277.77960205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03402962 277.77960205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03402963 277.77963257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03402964 277.77963257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03402965 277.77966309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03402966 277.77966309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03402967 277.77969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03402968 277.77969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03402969 277.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03402970 277.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03402971 277.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03402972 277.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03402973 277.77975464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03402974 277.77975464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03402975 277.77978516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03402976 277.77978516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03402977 277.77981567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03402978 277.77981567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03402979 277.77987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03402980 277.77987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03402981 277.77987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03402982 277.77987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03402983 277.77990723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03402984 277.77990723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03402985 277.77999878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03402986 277.78002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03402987 277.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03402988 277.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03402989 277.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03402990 277.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03402991 277.78009033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03402992 277.78009033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03402993 277.78012085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03402994 277.78012085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03402995 277.78015137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03402996 277.78015137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03402997 277.78018188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03402998 277.78018188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03402999 277.78021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03403000 277.78021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03403001 277.78021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03403002 277.78021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03403003 277.78024292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03403004 277.78024292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03403005 277.78027344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03403006 277.78027344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03403007 277.78030396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03403008 277.78030396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03403009 277.78033447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03403010 277.78033447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03403011 277.78036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03403012 277.78036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03403013 277.78036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03403014 277.78036499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03403015 277.78039551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03403016 277.78042603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03403017 277.78045654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03403018 277.78045654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03403019 277.78048706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03403020 277.78048706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03403021 277.78054810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03403022 277.78057861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03403023 277.78060913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03403024 277.78060913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03403025 277.78063965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03403026 277.78063965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03403027 277.78067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03403028 277.78067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03403029 277.78067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03403030 277.78067017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03403031 277.78070068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03403032 277.78070068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03403033 277.78073120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03403034 277.78073120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03403035 277.78076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03403036 277.78076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03403037 277.78079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03403038 277.78079224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03403039 277.78082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03403040 277.78082275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03403041 277.78085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03403042 277.78085327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03403043 277.78088379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03403044 277.78088379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03403045 277.78091431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03403046 277.78091431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03403047 277.78094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03403048 277.78094482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03403049 277.78097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03403050 277.78097534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03403051 277.78100586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03403052 277.78100586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03403053 277.78109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03403054 277.78109741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03403055 277.78112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03403056 277.78112793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03403057 277.78115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03403058 277.78115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03403059 277.78115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03403060 277.78115845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03403061 277.78118896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03403062 277.78118896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03403063 277.78121948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03403064 277.78121948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03403065 277.78125000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03403066 277.78125000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03403067 277.78128052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03403068 277.78128052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03403069 277.78131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03403070 277.78131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03403071 277.78131104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03403072 277.78134155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03403073 277.78137207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03403074 277.78137207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03403075 277.78140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03403076 277.78140259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03403077 277.78143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03403078 277.78143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03403079 277.78146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03403080 277.78146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03403081 277.78146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03403082 277.78146362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03403083 277.78149414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03403084 277.78149414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03403085 277.78152466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03403086 277.78152466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03403087 277.78161621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03403088 277.78164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03403089 277.78164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03403090 277.78164673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03403091 277.78167725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03403092 277.78167725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03403093 277.78170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03403094 277.78170776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03403095 277.78173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03403096 277.78173828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03403097 277.78176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03403098 277.78176880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03403099 277.78179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03403100 277.78179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03403101 277.78179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03403102 277.78179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03403103 277.78182983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03403104 277.78182983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03403105 277.78186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03403106 277.78186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03403107 277.78189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03403108 277.78189087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03403109 277.78192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03403110 277.78192139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03403111 277.78195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03403112 277.78195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03403113 277.78195190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03403114 277.78198242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03403115 277.78201294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03403116 277.78201294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03403117 277.78204346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03403118 277.78204346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03403119 277.78210449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03403120 277.78219604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03403121 277.78222656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03403122 277.78222656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03403123 277.78225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03403124 277.78225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03403125 277.78225708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03403126 277.78228760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03403127 277.78231812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03403128 277.78231812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03403129 277.78234863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03403130 277.78234863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03403131 277.78237915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03403132 277.78237915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03403133 277.78240967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03403134 277.78240967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03403135 277.78244019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03403136 277.78244019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03403137 277.78244019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03403138 277.78244019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03403139 277.78247070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03403140 277.78247070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03403141 277.78250122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03403142 277.78250122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03403143 277.78253174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03403144 277.78253174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03403145 277.78256226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03403146 277.78259277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03403147 277.78259277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03403148 277.78259277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03403149 277.78262329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03403150 277.78262329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03403151 277.78265381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03403152 277.78265381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03403153 277.78274536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03403154 277.78274536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03403155 277.78274536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03403156 277.78274536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03403157 277.78277588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03403158 277.78280640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03403159 277.78280640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03403160 277.78283691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03403161 277.78286743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03403162 277.78286743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03403163 277.78289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03403164 277.78289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03403165 277.78289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03403166 277.78289795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03403167 277.78292847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03403168 277.78292847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03403169 277.78295898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03403170 277.78295898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03403171 277.78298950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03403172 277.78298950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03403173 277.78302002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03403174 277.78302002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03403175 277.78305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03403176 277.78305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03403177 277.78305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03403178 277.78305054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03403179 277.78308105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03403180 277.78308105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03403181 277.78311157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03403182 277.78311157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03403183 277.78314209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03403184 277.78317261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03403185 277.78317261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03403186 277.78320313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03403187 277.78326416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03403188 277.78326416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03403189 277.78329468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03403190 277.78329468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03403191 277.78332520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03403192 277.78332520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03403193 277.78335571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03403194 277.78335571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03403195 277.78338623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03403196 277.78338623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03403197 277.78338623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03403198 277.78341675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03403199 277.78344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03403200 277.78344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03403201 277.78347778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03403202 277.78347778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03403203 277.78350830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03403204 277.78350830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03403205 277.78353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03403206 277.78353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03403207 277.78353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03403208 277.78353882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03403209 277.78356934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03403210 277.78356934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03403211 277.78359985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03403212 277.78359985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03403213 277.78363037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03403214 277.78363037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03403215 277.78366089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03403216 277.78366089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03403217 277.78369141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03403218 277.78369141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03403219 277.78378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03403220 277.78378296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03403221 277.78381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03403222 277.78381348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03403223 277.78384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03403224 277.78384399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03403225 277.78387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03403226 277.78387451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03403227 277.78390503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03403228 277.78390503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03403229 277.78393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03403230 277.78393555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03403231 277.78396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03403232 277.78396606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03403233 277.78399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03403234 277.78399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03403235 277.78402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03403236 277.78402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03403237 277.78402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03403238 277.78402710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03403239 277.78405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03403240 277.78405762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03403241 277.78408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03403242 277.78408813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03403243 277.78411865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03403244 277.78414917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03403245 277.78417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03403246 277.78417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03403247 277.78417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03403248 277.78417969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03403249 277.78421021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03403250 277.78421021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03403251 277.78424072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03403252 277.78424072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03403253 277.78433228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03403254 277.78433228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03403255 277.78436279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03403256 277.78436279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03403257 277.78439331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03403258 277.78439331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03403259 277.78442383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03403260 277.78442383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03403261 277.78445435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03403262 277.78445435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03403263 277.78448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03403264 277.78448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03403265 277.78448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03403266 277.78448486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03403267 277.78451538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03403268 277.78451538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03403269 277.78454590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03403270 277.78457642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03403271 277.78460693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03403272 277.78460693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03403273 277.78463745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03403274 277.78463745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03403275 277.78466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03403276 277.78466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03403277 277.78466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03403278 277.78466797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03403279 277.78469849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03403280 277.78469849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03403281 277.78472900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03403282 277.78472900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03403283 277.78475952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03403284 277.78475952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03403285 277.78485107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03403286 277.78485107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03403287 277.78488159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03403288 277.78488159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03403289 277.78491211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03403290 277.78491211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03403291 277.78494263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03403292 277.78494263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03403293 277.78497314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03403294 277.78497314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03403295 277.78497314 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03403296 277.78500366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03403297 277.78503418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03403298 277.78503418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03403299 277.78506470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03403300 277.78506470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03403301 277.78509521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03403302 277.78509521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03403303 277.78512573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03403304 277.78512573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03403305 277.78512573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03403306 277.78512573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03403307 277.78515625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03403308 277.78515625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03403309 277.78518677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03403310 277.78518677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03403311 277.78521729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03403312 277.78521729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03403313 277.78524780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03403314 277.78524780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03403315 277.78527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03403316 277.78527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03403317 277.78527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03403318 277.78527832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03403319 277.78540039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03403320 277.78540039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03403321 277.78543091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03403322 277.78546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03403323 277.78546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03403324 277.78546143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03403325 277.78549194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03403326 277.78549194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03403327 277.78552246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03403328 277.78552246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03403329 277.78555298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03403330 277.78555298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03403331 277.78558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03403332 277.78558350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03403333 277.78561401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03403334 277.78561401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03403335 277.78561401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03403336 277.78561401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03403337 277.78564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03403338 277.78564453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03403339 277.78567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03403340 277.78567505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03403341 277.78570557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03403342 277.78573608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03403343 277.78576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03403344 277.78576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03403345 277.78576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03403346 277.78576660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03403347 277.78579712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03403348 277.78579712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03403349 277.78582764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03403350 277.78582764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03403351 277.78585815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03403352 277.78585815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03403353 277.78588867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03403354 277.78588867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03403355 277.78591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03403356 277.78591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03403357 277.78591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03403358 277.78591919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03403359 277.78594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03403360 277.78594971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03403361 277.78598022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03403362 277.78601074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03403363 277.78604126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03403364 277.78604126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03403365 277.78607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03403366 277.78607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03403367 277.78607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03403368 277.78607178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03403369 277.78619385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03403370 277.78619385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03403371 277.78622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03403372 277.78622437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03403373 277.78625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03403374 277.78625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03403375 277.78625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03403376 277.78625488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03403377 277.78628540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03403378 277.78628540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03403379 277.78631592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03403380 277.78631592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03403381 277.78634644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03403382 277.78634644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03403383 277.78637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03403384 277.78637695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03403385 277.78640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03403386 277.78640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03403387 277.78640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03403388 277.78640747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03403389 277.78643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03403390 277.78643799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03403391 277.78646851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03403392 277.78649902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03403393 277.78652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03403394 277.78652954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03403395 277.78656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03403396 277.78656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03403397 277.78656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03403398 277.78656006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03403399 277.78659058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03403400 277.78659058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03403401 277.78662109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03403402 277.78662109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03403403 277.78665161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03403404 277.78665161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03403405 277.78668213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03403406 277.78668213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03403407 277.78671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03403408 277.78671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03403409 277.78671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03403410 277.78671265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03403411 277.78674316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03403412 277.78677368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03403413 277.78680420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03403414 277.78680420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03403415 277.78683472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03403416 277.78683472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03403417 277.78686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03403418 277.78686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03403419 277.78686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03403420 277.78686523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03403421 277.78689575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03403422 277.78689575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03403423 277.78692627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03403424 277.78692627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03403425 277.78695679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03403426 277.78695679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03403427 277.78698730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03403428 277.78698730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03403429 277.78701782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03403430 277.78701782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03403431 277.78704834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03403432 277.78704834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03403433 277.78704834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03403434 277.78704834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03403435 277.78707886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03403436 277.78713989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03403437 277.78720093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03403438 277.78720093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03403439 277.78720093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03403440 277.78720093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03403441 277.78723145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03403442 277.78723145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03403443 277.78726196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03403444 277.78726196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03403445 277.78729248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03403446 277.78729248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03403447 277.78732300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03403448 277.78732300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03403449 277.78735352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03403450 277.78735352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03403451 277.78735352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03403452 277.78735352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03403453 277.78738403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03403454 277.78738403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03403455 277.78741455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03403456 277.78741455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03403457 277.78744507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03403458 277.78747559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03403459 277.78747559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03403460 277.78750610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03403461 277.78750610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03403462 277.78750610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03403463 277.78753662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03403464 277.78753662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03403465 277.78756714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03403466 277.78756714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03403467 277.78759766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03403468 277.78759766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03403469 277.78762817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03403470 277.78762817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03403471 277.78765869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03403472 277.78765869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03403473 277.78765869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03403474 277.78765869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03403475 277.78768921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03403476 277.78768921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03403477 277.78771973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03403478 277.78771973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03403479 277.78775024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03403480 277.78775024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03403481 277.78778076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03403482 277.78778076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03403483 277.78781128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03403484 277.78781128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03403485 277.78784180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03403486 277.78784180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03403487 277.78784180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03403488 277.78784180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03403489 277.78787231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03403490 277.78787231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03403491 277.78790283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03403492 277.78793335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03403493 277.78796387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03403494 277.78796387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03403495 277.78799438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03403496 277.78799438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03403497 277.78799438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03403498 277.78799438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03403499 277.78802490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03403500 277.78802490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03403501 277.78805542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03403502 277.78805542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03403503 277.78808594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03403504 277.78808594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03403505 277.78811646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03403506 277.78811646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03403507 277.78814697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03403508 277.78814697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03403509 277.78814697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03403510 277.78814697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03403511 277.78817749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03403512 277.78817749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03403513 277.78820801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03403514 277.78820801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03403515 277.78823853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03403516 277.78823853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03403517 277.78826904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03403518 277.78826904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03403519 277.78829956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03403520 277.78829956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03403521 277.78829956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03403522 277.78833008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03403523 277.78836060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03403524 277.78836060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03403525 277.78839111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03403526 277.78839111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03403527 277.78842163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03403528 277.78842163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03403529 277.78845215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03403530 277.78845215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03403531 277.78845215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03403532 277.78845215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03403533 277.78848267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03403534 277.78848267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03403535 277.78851318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03403536 277.78851318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03403537 277.78854370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03403538 277.78854370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03403539 277.78857422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03403540 277.78857422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03403541 277.78860474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03403542 277.78860474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03403543 277.78863525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03403544 277.78863525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03403545 277.78863525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03403546 277.78863525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03403547 277.78866577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03403548 277.78866577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03403549 277.78869629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03403550 277.78869629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03403551 277.78872681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03403552 277.78872681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03403553 277.78875732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03403554 277.78875732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03403555 277.78878784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03403556 277.78878784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03403557 277.78878784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03403558 277.78878784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03403559 277.78881836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03403560 277.78881836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03403561 277.78884888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03403562 277.78887939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03403563 277.78890991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03403564 277.78890991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03403565 277.78894043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03403566 277.78894043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03403567 277.78894043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03403568 277.78894043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03403569 277.78897095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03403570 277.78897095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03403571 277.78900146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03403572 277.78900146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03403573 277.78903198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03403574 277.78903198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03403575 277.78906250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03403576 277.78906250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03403577 277.78909302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03403578 277.78909302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03403579 277.78909302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03403580 277.78909302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03403581 277.78912354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03403582 277.78912354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03403583 277.78915405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03403584 277.78915405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03403585 277.78918457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03403586 277.78918457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03403587 277.78921509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03403588 277.78921509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03403589 277.78924561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03403590 277.78924561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03403591 277.78927612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03403592 277.78927612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03403593 277.78930664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03403594 277.78930664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03403595 277.78933716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03403596 277.78933716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03403597 277.78936768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03403598 277.78936768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03403599 277.78939819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03403600 277.78939819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03403601 277.78942871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03403602 277.78942871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03403603 277.78942871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03403604 277.78942871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03403605 277.78945923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03403606 277.78945923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03403607 277.78948975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03403608 277.78948975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03403609 277.78952026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03403610 277.78952026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03403611 277.78955078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03403612 277.78955078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03403613 277.78958130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03403614 277.78958130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03403615 277.78958130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03403616 277.78961182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03403617 277.78961182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03403618 277.78964233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03403619 277.78967285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03403620 277.78967285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03403621 277.78970337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03403622 277.78970337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03403623 277.78973389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03403624 277.78973389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03403625 277.78973389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03403626 277.78973389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03403627 277.78976440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03403628 277.78976440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03403629 277.78979492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03403630 277.78979492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03403631 277.78982544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03403632 277.78982544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03403633 277.78985596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03403634 277.78985596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03403635 277.78988647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03403636 277.78988647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03403637 277.78988647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03403638 277.78988647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03403639 277.78991699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03403640 277.78991699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03403641 277.78994751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03403642 277.78997803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03403643 277.78997803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03403644 277.79000854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03403645 277.79003906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03403646 277.79003906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03403647 277.79006958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03403648 277.79006958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03403649 277.79006958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03403650 277.79006958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03403651 277.79010010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03403652 277.79010010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03403653 277.79013062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03403654 277.79013062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03403655 277.79016113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03403656 277.79016113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03403657 277.79019165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03403658 277.79019165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03403659 277.79022217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03403660 277.79022217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03403661 277.79022217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03403662 277.79022217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03403663 277.79025269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03403664 277.79025269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03403665 277.79028320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03403666 277.79028320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03403667 277.79031372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03403668 277.79031372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03403669 277.79034424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03403670 277.79034424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03403671 277.79037476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03403672 277.79037476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03403673 277.79037476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03403674 277.79037476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03403675 277.79040527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03403676 277.79043579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03403677 277.79046631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03403678 277.79046631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03403679 277.79049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03403680 277.79049683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03403681 277.79052734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03403682 277.79052734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03403683 277.79052734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03403684 277.79052734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03403685 277.79055786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03403686 277.79055786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03403687 277.79058838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03403688 277.79058838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03403689 277.79061890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03403690 277.79061890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03403691 277.79064941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03403692 277.79064941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03403693 277.79067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03403694 277.79067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03403695 277.79067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03403696 277.79067993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03403697 277.79071045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03403698 277.79071045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03403699 277.79074097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03403700 277.79074097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03403701 277.79077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03403702 277.79077148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03403703 277.79080200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03403704 277.79083252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03403705 277.79083252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03403706 277.79086304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03403707 277.79086304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03403708 277.79086304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03403709 277.79089355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03403710 277.79089355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03403711 277.79092407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03403712 277.79092407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03403713 277.79095459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03403714 277.79095459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03403715 277.79098511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03403716 277.79098511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03403717 277.79101563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03403718 277.79101563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03403719 277.79101563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03403720 277.79101563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03403721 277.79104614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03403722 277.79104614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03403723 277.79107666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03403724 277.79107666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03403725 277.79110718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03403726 277.79110718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03403727 277.79113770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03403728 277.79113770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03403729 277.79116821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03403730 277.79116821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03403731 277.79116821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03403732 277.79116821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03403733 277.79119873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03403734 277.79119873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03403735 277.79122925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03403736 277.79122925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03403737 277.79125977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03403738 277.79125977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03403739 277.79129028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03403740 277.79129028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03403741 277.79132080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03403742 277.79132080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03403743 277.79132080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03403744 277.79132080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03403745 277.79135132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03403746 277.79138184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03403747 277.79138184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03403748 277.79141235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03403749 277.79144287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03403750 277.79144287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03403751 277.79147339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03403752 277.79147339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03403753 277.79147339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03403754 277.79147339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03403755 277.79150391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03403756 277.79150391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03403757 277.79153442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03403758 277.79153442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03403759 277.79156494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03403760 277.79156494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03403761 277.79159546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03403762 277.79159546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03403763 277.79162598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03403764 277.79162598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03403765 277.79165649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03403766 277.79165649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03403767 277.79165649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03403768 277.79165649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03403769 277.79168701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03403770 277.79168701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03403771 277.79171753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03403772 277.79171753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03403773 277.79177856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03403774 277.79177856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03403775 277.79180908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03403776 277.79180908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03403777 277.79180908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03403778 277.79180908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03403779 277.79183960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03403780 277.79183960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03403781 277.79187012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03403782 277.79187012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03403783 277.79190063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03403784 277.79190063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03403785 277.79193115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03403786 277.79193115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03403787 277.79196167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03403788 277.79196167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03403789 277.79196167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03403790 277.79196167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03403791 277.79199219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03403792 277.79199219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03403793 277.79202271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03403794 277.79202271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03403795 277.79205322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03403796 277.79205322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03403797 277.79208374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03403798 277.79208374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03403799 277.79211426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03403800 277.79211426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03403801 277.79211426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03403802 277.79211426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03403803 277.79214478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03403804 277.79214478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03403805 277.79217529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03403806 277.79217529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03403807 277.79220581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03403808 277.79220581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03403809 277.79223633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03403810 277.79223633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03403811 277.79226685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03403812 277.79226685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03403813 277.79229736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03403814 277.79229736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03403815 277.79232788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03403816 277.79232788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03403817 277.79235840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03403818 277.79235840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03403819 277.79238892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03403820 277.79238892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03403821 277.79241943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03403822 277.79241943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03403823 277.79244995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03403824 277.79244995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03403825 277.79244995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03403826 277.79244995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03403827 277.79248047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03403828 277.79248047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03403829 277.79251099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03403830 277.79251099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03403831 277.79254150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03403832 277.79254150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03403833 277.79257202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03403834 277.79260254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03403835 277.79260254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03403836 277.79260254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03403837 277.79263306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03403838 277.79263306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03403839 277.79266357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03403840 277.79266357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03403841 277.79269409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03403842 277.79269409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03403843 277.79272461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03403844 277.79272461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03403845 277.79275513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03403846 277.79275513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03403847 277.79275513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03403848 277.79275513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03403849 277.79278564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03403850 277.79278564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03403851 277.79281616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03403852 277.79281616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03403853 277.79284668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03403854 277.79284668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03403855 277.79287720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03403856 277.79287720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03403857 277.79290771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03403858 277.79290771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03403859 277.79290771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03403860 277.79290771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03403861 277.79293823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03403862 277.79293823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03403863 277.79296875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03403864 277.79296875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03403865 277.79299927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03403866 277.79299927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03403867 277.79302979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03403868 277.79302979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03403869 277.79306030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03403870 277.79306030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03403871 277.79306030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03403872 277.79306030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03403873 277.79309082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03403874 277.79309082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03403875 277.79312134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03403876 277.79315186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03403877 277.79315186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03403878 277.79318237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03403879 277.79321289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03403880 277.79321289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03403881 277.79324341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03403882 277.79324341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03403883 277.79324341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03403884 277.79324341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03403885 277.79327393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03403886 277.79327393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03403887 277.79330444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03403888 277.79330444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03403889 277.79333496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03403890 277.79333496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03403891 277.79336548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03403892 277.79336548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03403893 277.79339600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03403894 277.79339600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03403895 277.79339600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03403896 277.79339600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03403897 277.79342651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03403898 277.79342651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03403899 277.79345703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03403900 277.79345703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03403901 277.79351807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03403902 277.79351807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03403903 277.79354858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03403904 277.79354858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03403905 277.79354858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03403906 277.79354858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03403907 277.79357910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03403908 277.79357910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03403909 277.79360962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03403910 277.79360962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03403911 277.79364014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03403912 277.79364014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03403913 277.79367065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03403914 277.79367065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03403915 277.79370117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03403916 277.79370117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03403917 277.79370117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03403918 277.79370117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03403919 277.79373169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03403920 277.79373169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03403921 277.79376221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03403922 277.79379272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03403923 277.79382324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03403924 277.79382324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03403925 277.79385376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03403926 277.79385376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03403927 277.79385376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03403928 277.79385376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03403929 277.79388428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03403930 277.79388428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03403931 277.79391479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03403932 277.79391479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03403933 277.79394531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03403934 277.79394531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03403935 277.79397583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03403936 277.79397583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03403937 277.79400635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03403938 277.79400635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03403939 277.79403687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03403940 277.79403687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03403941 277.79403687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03403942 277.79406738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03403943 277.79409790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03403944 277.79409790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03403945 277.79412842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03403946 277.79412842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03403947 277.79415894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03403948 277.79415894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03403949 277.79418945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03403950 277.79418945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03403951 277.79418945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03403952 277.79418945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03403953 277.79421997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03403954 277.79421997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03403955 277.79425049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03403956 277.79425049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03403957 277.79428101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03403958 277.79428101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03403959 277.79431152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03403960 277.79431152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03403961 277.79434204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03403962 277.79434204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03403963 277.79434204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03403964 277.79437256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03403965 277.79440308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03403966 277.79440308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03403967 277.79443359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03403968 277.79443359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03403969 277.79446411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03403970 277.79446411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03403971 277.79449463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03403972 277.79449463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03403973 277.79449463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03403974 277.79449463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03403975 277.79452515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03403976 277.79452515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03403977 277.79455566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03403978 277.79455566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03403979 277.79458618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03403980 277.79458618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03403981 277.79461670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03403982 277.79461670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03403983 277.79464722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03403984 277.79464722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03403985 277.79467773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03403986 277.79467773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03403987 277.79470825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03403988 277.79470825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03403989 277.79473877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03403990 277.79473877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03403991 277.79476929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03403992 277.79476929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03403993 277.79479980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03403994 277.79479980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03403995 277.79483032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03403996 277.79483032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03403997 277.79483032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03403998 277.79483032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03403999 277.79486084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03404000 277.79486084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03404001 277.79489136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03404002 277.79489136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03404003 277.79492188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03404004 277.79495239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03404005 277.79498291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03404006 277.79498291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03404007 277.79498291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03404008 277.79498291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03404009 277.79501343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03404010 277.79501343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03404011 277.79504395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03404012 277.79504395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03404013 277.79507446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03404014 277.79507446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03404015 277.79510498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03404016 277.79510498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03404017 277.79513550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03404018 277.79513550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03404019 277.79513550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03404020 277.79513550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03404021 277.79516602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03404022 277.79516602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03404023 277.79519653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03404024 277.79522705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03404025 277.79525757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03404026 277.79525757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03404027 277.79528809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03404028 277.79528809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03404029 277.79528809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03404030 277.79528809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03404031 277.79531860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03404032 277.79531860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03404033 277.79534912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03404034 277.79534912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03404035 277.79537964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03404036 277.79537964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03404037 277.79541016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03404038 277.79541016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03404039 277.79544067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03404040 277.79544067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03404041 277.79547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03404042 277.79547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03404043 277.79547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03404044 277.79547119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03404045 277.79553223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03404046 277.79553223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03404047 277.79556274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03404048 277.79556274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03404049 277.79559326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03404050 277.79559326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03404051 277.79562378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03404052 277.79562378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03404053 277.79562378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03404054 277.79562378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03404055 277.79565430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03404056 277.79565430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03404057 277.79568481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03404058 277.79568481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03404059 277.79571533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03404060 277.79571533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03404061 277.79574585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03404062 277.79574585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03404063 277.79577637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03404064 277.79577637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03404065 277.79577637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03404066 277.79580688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03404067 277.79583740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03404068 277.79583740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03404069 277.79586792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03404070 277.79586792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03404071 277.79589844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03404072 277.79589844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03404073 277.79592896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03404074 277.79592896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03404075 277.79592896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03404076 277.79592896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03404077 277.79595947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03404078 277.79595947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03404079 277.79598999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03404080 277.79598999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03404081 277.79602051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03404082 277.79602051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03404083 277.79605103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03404084 277.79608154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03404085 277.79608154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03404086 277.79608154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03404087 277.79611206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03404088 277.79611206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03404089 277.79614258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03404090 277.79614258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03404091 277.79617310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03404092 277.79617310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03404093 277.79620361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03404094 277.79620361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03404095 277.79623413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03404096 277.79623413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03404097 277.79626465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03404098 277.79626465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03404099 277.79626465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03404100 277.79626465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03404101 277.79629517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03404102 277.79629517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03404103 277.79632568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03404104 277.79632568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03404105 277.79635620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03404106 277.79635620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03404107 277.79638672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03404108 277.79638672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03404109 277.79641724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03404110 277.79641724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03404111 277.79641724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03404112 277.79641724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03404113 277.79644775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03404114 277.79644775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03404115 277.79647827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03404116 277.79650879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03404117 277.79650879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03404118 277.79653931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03404119 277.79656982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03404120 277.79656982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03404121 277.79656982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03404122 277.79656982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03404123 277.79660034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03404124 277.79660034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03404125 277.79663086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03404126 277.79663086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03404127 277.79666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03404128 277.79666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03404129 277.79669189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03404130 277.79669189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03404131 277.79672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03404132 277.79672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03404133 277.79672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03404134 277.79672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03404135 277.79675293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03404136 277.79675293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03404137 277.79681396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03404138 277.79681396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03404139 277.79684448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03404140 277.79684448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03404141 277.79687500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03404142 277.79687500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03404143 277.79687500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03404144 277.79687500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03404145 277.79690552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03404146 277.79690552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03404147 277.79693604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03404148 277.79693604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03404149 277.79696655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03404150 277.79696655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03404151 277.79699707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03404152 277.79699707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03404153 277.79702759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03404154 277.79702759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03404155 277.79705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03404156 277.79705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03404157 277.79705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03404158 277.79705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03404159 277.79708862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03404160 277.79708862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03404161 277.79711914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03404162 277.79711914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03404163 277.79714966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03404164 277.79714966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03404165 277.79718018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03404166 277.79718018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03404167 277.79721069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03404168 277.79721069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03404169 277.79721069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03404170 277.79724121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03404171 277.79727173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03404172 277.79727173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03404173 277.79730225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03404174 277.79730225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03404175 277.79733276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03404176 277.79733276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03404177 277.79736328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03404178 277.79736328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03404179 277.79736328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03404180 277.79736328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03404181 277.79739380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03404182 277.79739380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03404183 277.79742432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03404184 277.79742432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03404185 277.79745483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03404186 277.79745483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03404187 277.79748535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03404188 277.79748535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03404189 277.79751587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03404190 277.79751587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03404191 277.79751587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03404192 277.79754639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03404193 277.79754639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03404194 277.79757690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03404195 277.79760742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03404196 277.79760742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03404197 277.79763794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03404198 277.79763794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03404199 277.79766846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03404200 277.79766846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03404201 277.79766846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03404202 277.79766846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03404203 277.79769897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03404204 277.79769897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03404205 277.79772949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03404206 277.79772949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03404207 277.79776001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03404208 277.79776001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03404209 277.79779053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03404210 277.79779053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03404211 277.79782104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03404212 277.79782104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03404213 277.79785156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03404214 277.79785156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03404215 277.79785156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03404216 277.79785156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03404217 277.79788208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03404218 277.79788208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03404219 277.79791260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03404220 277.79791260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03404221 277.79794312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03404222 277.79794312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03404223 277.79797363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03404224 277.79800415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03404225 277.79800415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03404226 277.79800415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03404227 277.79803467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03404228 277.79803467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03404229 277.79806519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03404230 277.79806519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03404231 277.79809570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03404232 277.79809570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03404233 277.79812622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03404234 277.79812622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03404235 277.79815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03404236 277.79815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03404237 277.79815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03404238 277.79815674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03404239 277.79818726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03404240 277.79818726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03404241 277.79821777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03404242 277.79821777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03404243 277.79824829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03404244 277.79824829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03404245 277.79827881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03404246 277.79827881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03404247 277.79830933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03404248 277.79830933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03404249 277.79830933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03404250 277.79830933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03404251 277.79833984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03404252 277.79833984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03404253 277.79837036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03404254 277.79837036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03404255 277.79840088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03404256 277.79843140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03404257 277.79846191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03404258 277.79846191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03404259 277.79846191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03404260 277.79846191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03404261 277.79849243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03404262 277.79849243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03404263 277.79852295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03404264 277.79852295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03404265 277.79855347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03404266 277.79855347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03404267 277.79858398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03404268 277.79858398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03404269 277.79861450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03404270 277.79861450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03404271 277.79864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03404272 277.79864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03404273 277.79864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03404274 277.79864502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03404275 277.79867554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03404276 277.79867554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03404277 277.79870605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03404278 277.79870605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03404279 277.79873657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03404280 277.79873657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03404281 277.79876709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03404282 277.79876709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03404283 277.79879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03404284 277.79879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03404285 277.79879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03404286 277.79879761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03404287 277.79882813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03404288 277.79882813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03404289 277.79885864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03404290 277.79885864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03404291 277.79888916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03404292 277.79888916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03404293 277.79891968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03404294 277.79891968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03404295 277.79895020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03404296 277.79895020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03404297 277.79895020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03404298 277.79898071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03404299 277.79901123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03404300 277.79901123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03404301 277.79904175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03404302 277.79904175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03404303 277.79907227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03404304 277.79907227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03404305 277.79910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03404306 277.79910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03404307 277.79910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03404308 277.79910278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03404309 277.79913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03404310 277.79913330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03404311 277.79916382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03404312 277.79916382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03404313 277.79919434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03404314 277.79919434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03404315 277.79922485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03404316 277.79922485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03404317 277.79925537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03404318 277.79925537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03404319 277.79925537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03404320 277.79928589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03404321 277.79931641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03404322 277.79931641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03404323 277.79934692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03404324 277.79934692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03404325 277.79937744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03404326 277.79937744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03404327 277.79940796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03404328 277.79940796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03404329 277.79943848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03404330 277.79943848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03404331 277.79943848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03404332 277.79943848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03404333 277.79946899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03404334 277.79946899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03404335 277.79949951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03404336 277.79949951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03404337 277.79953003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03404338 277.79953003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03404339 277.79956055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03404340 277.79956055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03404341 277.79959106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03404342 277.79959106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03404343 277.79959106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03404344 277.79959106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03404345 277.79962158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03404346 277.79962158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03404347 277.79965210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03404348 277.79965210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03404349 277.79968262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03404350 277.79968262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03404351 277.79971313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03404352 277.79974365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03404353 277.79974365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03404354 277.79974365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03404355 277.79977417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03404356 277.79977417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03404357 277.79980469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03404358 277.79980469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03404359 277.79983521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03404360 277.79983521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03404361 277.79986572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03404362 277.79986572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03404363 277.79989624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03404364 277.79989624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03404365 277.79989624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03404366 277.79989624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03404367 277.79992676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03404368 277.79992676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03404369 277.79995728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03404370 277.79998779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03404371 277.79998779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03404372 277.80001831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03404373 277.80004883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03404374 277.80004883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03404375 277.80004883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03404376 277.80004883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03404377 277.80007935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03404378 277.80007935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03404379 277.80010986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03404380 277.80010986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03404381 277.80014038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03404382 277.80014038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03404383 277.80017090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03404384 277.80017090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03404385 277.80020142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03404386 277.80020142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03404387 277.80023193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03404388 277.80023193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03404389 277.80023193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03404390 277.80023193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03404391 277.80026245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03404392 277.80026245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03404393 277.80029297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03404394 277.80029297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03404395 277.80032349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03404396 277.80032349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03404397 277.80038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03404398 277.80038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03404399 277.80038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03404400 277.80038452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03404401 277.80041504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03404402 277.80041504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03404403 277.80044556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03404404 277.80044556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03404405 277.80047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03404406 277.80047607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03404407 277.80050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03404408 277.80050659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03404409 277.80053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03404410 277.80053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03404411 277.80053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03404412 277.80053711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03404413 277.80056763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03404414 277.80056763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03404415 277.80059814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03404416 277.80059814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03404417 277.80062866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03404418 277.80065918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03404419 277.80068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03404420 277.80068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03404421 277.80068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03404422 277.80068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03404423 277.80072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03404424 277.80072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03404425 277.80075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03404426 277.80075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03404427 277.80078125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03404428 277.80078125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03404429 277.80081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03404430 277.80081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03404431 277.80084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03404432 277.80084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03404433 277.80087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03404434 277.80087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03404435 277.80087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03404436 277.80087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03404437 277.80090332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03404438 277.80093384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03404439 277.80096436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03404440 277.80096436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03404441 277.80099487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03404442 277.80099487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03404443 277.80102539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03404444 277.80102539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03404445 277.80102539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03404446 277.80102539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03404447 277.80105591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03404448 277.80105591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03404449 277.80108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03404450 277.80108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03404451 277.80111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03404452 277.80111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03404453 277.80114746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03404454 277.80114746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03404455 277.80117798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03404456 277.80117798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03404457 277.80117798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03404458 277.80120850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03404459 277.80123901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03404460 277.80123901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03404461 277.80126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03404462 277.80126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03404463 277.80130005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03404464 277.80130005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03404465 277.80133057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03404466 277.80133057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03404467 277.80133057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03404468 277.80133057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03404469 277.80136108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03404470 277.80136108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03404471 277.80139160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03404472 277.80139160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03404473 277.80142212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03404474 277.80142212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03404475 277.80145264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03404476 277.80145264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03404477 277.80148315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03404478 277.80148315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03404479 277.80151367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03404480 277.80151367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03404481 277.80154419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03404482 277.80154419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03404483 277.80157471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03404484 277.80157471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03404485 277.80160522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03404486 277.80160522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03404487 277.80163574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03404488 277.80163574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03404489 277.80166626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03404490 277.80166626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03404491 277.80166626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03404492 277.80166626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03404493 277.80169678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03404494 277.80169678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03404495 277.80175781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03404496 277.80175781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03404497 277.80178833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03404498 277.80178833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03404499 277.80181885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03404500 277.80181885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03404501 277.80181885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03404502 277.80181885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03404503 277.80184937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03404504 277.80184937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03404505 277.80187988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03404506 277.80187988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03404507 277.80191040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03404508 277.80191040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03404509 277.80194092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03404510 277.80194092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03404511 277.80197144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03404512 277.80197144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03404513 277.80197144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03404514 277.80197144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03404515 277.80200195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03404516 277.80203247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03404517 277.80206299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03404518 277.80206299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03404519 277.80209351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03404520 277.80209351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03404521 277.80212402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03404522 277.80212402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03404523 277.80212402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03404524 277.80212402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03404525 277.80215454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03404526 277.80215454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03404527 277.80218506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03404528 277.80218506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03404529 277.80221558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03404530 277.80221558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03404531 277.80224609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03404532 277.80224609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03404533 277.80227661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03404534 277.80227661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03404535 277.80227661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03404536 277.80227661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03404537 277.80230713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03404538 277.80230713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03404539 277.80233765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03404540 277.80233765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03404541 277.80236816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03404542 277.80239868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03404543 277.80239868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03404544 277.80242920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03404545 277.80245972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03404546 277.80245972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03404547 277.80245972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03404548 277.80245972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03404549 277.80249023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03404550 277.80249023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03404551 277.80252075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03404552 277.80252075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03404553 277.80255127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03404554 277.80255127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03404555 277.80258179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03404556 277.80261230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03404557 277.80261230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03404558 277.80261230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03404559 277.80264282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03404560 277.80264282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03404561 277.80267334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03404562 277.80267334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03404563 277.80270386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03404564 277.80270386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03404565 277.80273438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03404566 277.80273438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03404567 277.80276489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03404568 277.80276489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03404569 277.80276489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03404570 277.80279541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03404571 277.80282593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03404572 277.80282593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03404573 277.80285645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03404574 277.80285645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03404575 277.80288696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03404576 277.80288696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03404577 277.80291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03404578 277.80291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03404579 277.80291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03404580 277.80291748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03404581 277.80294800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03404582 277.80294800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03404583 277.80297852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03404584 277.80297852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03404585 277.80300903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03404586 277.80300903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03404587 277.80303955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03404588 277.80303955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03404589 277.80307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03404590 277.80307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03404591 277.80307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03404592 277.80307007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03404593 277.80310059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03404594 277.80310059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03404595 277.80313110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03404596 277.80313110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03404597 277.80316162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03404598 277.80316162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03404599 277.80319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03404600 277.80319214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03404601 277.80322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03404602 277.80322266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03404603 277.80325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03404604 277.80325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03404605 277.80325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03404606 277.80325317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03404607 277.80328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03404608 277.80328369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03404609 277.80331421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03404610 277.80331421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03404611 277.80334473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03404612 277.80337524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03404613 277.80337524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03404614 277.80340576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03404615 277.80340576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03404616 277.80340576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03404617 277.80343628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03404618 277.80343628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03404619 277.80346680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03404620 277.80346680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03404621 277.80349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03404622 277.80349731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03404623 277.80352783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03404624 277.80352783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03404625 277.80355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03404626 277.80355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03404627 277.80355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03404628 277.80355835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03404629 277.80358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03404630 277.80358887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03404631 277.80361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03404632 277.80361938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03404633 277.80364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03404634 277.80364990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03404635 277.80368042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03404636 277.80371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03404637 277.80371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03404638 277.80371094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03404639 277.80374146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03404640 277.80374146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03404641 277.80377197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03404642 277.80377197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03404643 277.80380249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03404644 277.80380249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03404645 277.80383301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03404646 277.80383301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03404647 277.80386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03404648 277.80386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03404649 277.80386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03404650 277.80386353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03404651 277.80389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03404652 277.80389404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03404653 277.80392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03404654 277.80392456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03404655 277.80395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03404656 277.80395508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03404657 277.80398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03404658 277.80398560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03404659 277.80401611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03404660 277.80401611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03404661 277.80404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03404662 277.80404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03404663 277.80404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03404664 277.80404663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03404665 277.80407715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03404666 277.80410767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03404667 277.80413818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03404668 277.80413818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03404669 277.80416870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03404670 277.80416870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03404671 277.80419922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03404672 277.80419922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03404673 277.80419922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03404674 277.80419922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03404675 277.80422974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03404676 277.80422974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03404677 277.80426025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03404678 277.80426025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03404679 277.80429077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03404680 277.80429077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03404681 277.80432129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03404682 277.80432129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03404683 277.80435181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03404684 277.80435181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03404685 277.80435181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03404686 277.80438232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03404687 277.80438232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03404688 277.80441284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03404689 277.80444336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03404690 277.80444336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03404691 277.80447388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03404692 277.80447388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03404693 277.80450439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03404694 277.80450439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03404695 277.80450439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03404696 277.80450439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03404697 277.80453491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03404698 277.80453491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03404699 277.80456543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03404700 277.80456543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03404701 277.80459595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03404702 277.80459595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03404703 277.80462646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03404704 277.80462646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03404705 277.80465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03404706 277.80465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03404707 277.80465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03404708 277.80465698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03404709 277.80468750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03404710 277.80468750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03404711 277.80471802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03404712 277.80471802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03404713 277.80474854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03404714 277.80474854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03404715 277.80477905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03404716 277.80477905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03404717 277.80480957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03404718 277.80484009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03404719 277.80484009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03404720 277.80484009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03404721 277.80487061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03404722 277.80487061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03404723 277.80490112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03404724 277.80490112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03404725 277.80493164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03404726 277.80493164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03404727 277.80496216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03404728 277.80496216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03404729 277.80499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03404730 277.80499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03404731 277.80499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03404732 277.80499268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03404733 277.80502319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03404734 277.80502319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03404735 277.80505371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03404736 277.80505371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03404737 277.80508423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03404738 277.80508423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03404739 277.80511475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03404740 277.80511475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03404741 277.80514526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03404742 277.80514526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03404743 277.80514526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03404744 277.80514526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03404745 277.80517578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03404746 277.80517578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03404747 277.80520630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03404748 277.80520630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03404749 277.80523682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03404750 277.80523682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03404751 277.80526733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03404752 277.80529785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03404753 277.80529785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03404754 277.80529785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03404755 277.80532837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03404756 277.80532837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03404757 277.80535889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03404758 277.80535889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03404759 277.80538940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03404760 277.80538940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03404761 277.80541992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03404762 277.80541992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03404763 277.80545044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03404764 277.80545044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03404765 277.80545044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03404766 277.80545044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03404767 277.80548096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03404768 277.80548096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03404769 277.80551147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03404770 277.80551147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03404771 277.80554199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03404772 277.80554199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03404773 277.80557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03404774 277.80557251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03404775 277.80560303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03404776 277.80563354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03404777 277.80563354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03404778 277.80563354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03404779 277.80566406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03404780 277.80566406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03404781 277.80569458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03404782 277.80569458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03404783 277.80572510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03404784 277.80572510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03404785 277.80575562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03404786 277.80575562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03404787 277.80578613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03404788 277.80578613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03404789 277.80578613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03404790 277.80578613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03404791 277.80581665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03404792 277.80581665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03404793 277.80584717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03404794 277.80584717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03404795 277.80587769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03404796 277.80587769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03404797 277.80590820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03404798 277.80593872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03404799 277.80593872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03404800 277.80593872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03404801 277.80596924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03404802 277.80596924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03404803 277.80599976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03404804 277.80599976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03404805 277.80603027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03404806 277.80603027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03404807 277.80606079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03404808 277.80606079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03404809 277.80609131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03404810 277.80609131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03404811 277.80609131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03404812 277.80609131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03404813 277.80612183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03404814 277.80612183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03404815 277.80615234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03404816 277.80615234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03404817 277.80618286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03404818 277.80621338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03404819 277.80624390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03404820 277.80624390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03404821 277.80627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03404822 277.80627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03404823 277.80627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03404824 277.80627441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03404825 277.80630493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03404826 277.80630493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03404827 277.80633545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03404828 277.80633545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03404829 277.80636597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03404830 277.80636597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03404831 277.80639648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03404832 277.80639648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03404833 277.80642700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03404834 277.80642700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03404835 277.80642700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03404836 277.80642700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03404837 277.80645752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03404838 277.80645752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03404839 277.80648804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03404840 277.80651855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03404841 277.80654907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03404842 277.80654907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03404843 277.80657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03404844 277.80657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03404845 277.80657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03404846 277.80657959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03404847 277.80661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03404848 277.80661011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03404849 277.80664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03404850 277.80664063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03404851 277.80667114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03404852 277.80667114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03404853 277.80670166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03404854 277.80670166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03404855 277.80673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03404856 277.80673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03404857 277.80673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03404858 277.80673218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03404859 277.80676270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03404860 277.80679321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03404861 277.80682373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03404862 277.80682373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03404863 277.80685425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03404864 277.80685425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03404865 277.80688477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03404866 277.80688477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03404867 277.80688477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03404868 277.80688477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03404869 277.80691528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03404870 277.80691528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03404871 277.80694580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03404872 277.80694580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03404873 277.80697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03404874 277.80697632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03404875 277.80700684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03404876 277.80700684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03404877 277.80703735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03404878 277.80703735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03416994 277.98117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d758 -03416995 277.98117065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d758 -03416996 277.98120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d768 -03416997 277.98120117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d768 -03416998 277.98123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d778 -03416999 277.98123169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d778 -03417000 277.98126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d788 -03417001 277.98126221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d788 -03417002 277.98129272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d798 -03417003 277.98129272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d798 -03417004 277.98132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a8 -03417005 277.98132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a8 -03417006 277.98132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b8 -03417007 277.98132324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b8 -03417008 277.98135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c8 -03417009 277.98135376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c8 -03417010 277.98138428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d8 -03417011 277.98141479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d8 -03417012 277.98144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e8 -03417013 277.98144531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e8 -03417014 277.98147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f8 -03417015 277.98147583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f8 -03417016 277.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d808 -03417017 277.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d808 -03417018 277.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d818 -03417019 277.98150635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d818 -03417020 277.98153687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d828 -03417021 277.98153687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d828 -03417022 277.98156738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d838 -03417023 277.98156738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d838 -03417024 277.98159790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d848 -03417025 277.98159790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d848 -03417026 277.98162842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d858 -03417027 277.98162842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d858 -03417028 277.98165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d868 -03417029 277.98165894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d868 -03417030 277.98168945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d878 -03417031 277.98168945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d878 -03417032 277.98171997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d888 -03417033 277.98171997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d888 -03417034 277.98175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d898 -03417035 277.98175049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d898 -03417036 277.98178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a8 -03417037 277.98178101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a8 -03419360 278.01550293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22138 -03419361 278.01550293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22138 -03419362 278.01553345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22148 -03419363 278.01553345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22148 -03419364 278.01556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22158 -03419365 278.01556396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22158 -03419366 278.01559448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -03419367 278.01559448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -03419368 278.01562500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -03419369 278.01562500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -03419370 278.01565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -03419371 278.01565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -03419372 278.01565552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -03419373 278.01568604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -03419374 278.01571655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -03419375 278.01571655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -03419376 278.01574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -03419377 278.01574707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -03419378 278.01577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -03419379 278.01577759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -03419380 278.01583862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -03419381 278.01583862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -03419382 278.01589966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -03419383 278.01589966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -03419384 278.01593018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -03419385 278.01593018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -03419386 278.01596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -03419387 278.01596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -03419388 278.01596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22218 -03419389 278.01596069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22218 -03419390 278.01599121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22228 -03419391 278.01599121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22228 -03419392 278.01602173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22238 -03419393 278.01602173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22238 -03419394 278.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22248 -03419395 278.01605225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22248 -03419396 278.01608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -03419397 278.01608276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -03419398 278.01611328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -03419399 278.01611328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -03419400 278.01611328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -03419401 278.01614380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -03419402 278.01617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -03419403 278.01617432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -03421811 278.05068970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dc8 -03421812 278.05072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd8 -03421813 278.05072021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd8 -03421814 278.05075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de8 -03421815 278.05075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de8 -03421816 278.05075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df8 -03421817 278.05075073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df8 -03421818 278.05078125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e08 -03421819 278.05078125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e08 -03421820 278.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e18 -03421821 278.05081177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e18 -03421822 278.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e28 -03421823 278.05084229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e28 -03421824 278.05087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e38 -03421825 278.05087280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e38 -03421826 278.05090332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e48 -03421827 278.05090332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e48 -03421828 278.05093384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e58 -03421829 278.05093384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e58 -03421830 278.05096436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e68 -03421831 278.05096436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e68 -03421832 278.05099487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e78 -03421833 278.05099487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e78 -03421834 278.05102539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e88 -03421835 278.05102539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e88 -03421836 278.05105591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e98 -03421837 278.05105591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e98 -03421838 278.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea8 -03421839 278.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea8 -03421840 278.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb8 -03421841 278.05108643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb8 -03421842 278.05111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec8 -03421843 278.05111694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec8 -03421844 278.05114746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed8 -03421845 278.05114746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed8 -03421846 278.05117798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee8 -03421847 278.05120850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee8 -03421848 278.05123901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef8 -03421849 278.05123901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef8 -03421850 278.05123901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f08 -03421851 278.05123901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f08 -03421852 278.05126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f18 -03421853 278.05126953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f18 -03421854 278.05130005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f28 -03424436 278.08911133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfd8 -03424437 278.08911133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfd8 -03424438 278.08914185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfe8 -03424439 278.08914185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfe8 -03424440 278.08917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff8 -03424441 278.08917236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff8 -03424442 278.08920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c008 -03424443 278.08920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c008 -03424444 278.08920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c018 -03424445 278.08920288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c018 -03424446 278.08923340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c028 -03424447 278.08923340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c028 -03424448 278.08926392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c038 -03424449 278.08929443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c038 -03424450 278.08932495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c048 -03424451 278.08932495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c048 -03424452 278.08935547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c058 -03424453 278.08935547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c058 -03424454 278.08935547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c068 -03424455 278.08935547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c068 -03424456 278.08938599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c078 -03424457 278.08938599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c078 -03424458 278.08941650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c088 -03424459 278.08941650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c088 -03424460 278.08944702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c098 -03424461 278.08944702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c098 -03424462 278.08947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a8 -03424463 278.08947754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a8 -03424464 278.08950806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b8 -03424465 278.08950806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b8 -03424466 278.08959961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c8 -03424467 278.08959961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c8 -03424468 278.08963013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d8 -03424469 278.08963013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d8 -03424470 278.08966064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e8 -03424471 278.08966064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e8 -03424472 278.08969116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f8 -03424473 278.08969116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f8 -03424474 278.08969116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c108 -03424475 278.08969116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c108 -03424476 278.08972168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c118 -03424477 278.08975220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c118 -03424478 278.08978271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c128 -03424479 278.08978271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c128 -03426938 278.12518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -03426939 278.12518311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -03426940 278.12521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -03426941 278.12521362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -03426942 278.12524414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -03426943 278.12524414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -03426944 278.12527466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -03426945 278.12527466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -03426946 278.12527466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -03426947 278.12527466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -03426948 278.12530518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -03426949 278.12530518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -03426950 278.12533569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -03426951 278.12536621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -03426952 278.12539673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -03426953 278.12539673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -03426954 278.12542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e88 -03426955 278.12542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e88 -03426956 278.12542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e98 -03426957 278.12542725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e98 -03426958 278.12545776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea8 -03426959 278.12545776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea8 -03426960 278.12548828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb8 -03426961 278.12548828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb8 -03426962 278.12551880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec8 -03426963 278.12551880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec8 -03426964 278.12554932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed8 -03426965 278.12554932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed8 -03426966 278.12557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee8 -03426967 278.12557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee8 -03426968 278.12557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef8 -03426969 278.12557983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef8 -03426970 278.12561035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f08 -03426971 278.12561035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f08 -03426972 278.12564087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f18 -03426973 278.12567139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f18 -03426974 278.12570190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f28 -03426975 278.12570190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f28 -03426976 278.12573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f38 -03426977 278.12573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f38 -03426978 278.12573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f48 -03426979 278.12573242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f48 -03426980 278.12576294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f58 -03426981 278.12576294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f58 -03429506 278.16381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e48 -03429507 278.16381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e48 -03429508 278.16384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e58 -03429509 278.16384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e58 -03429510 278.16387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e68 -03429511 278.16387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e68 -03429512 278.16390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e78 -03429513 278.16390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e78 -03429514 278.16394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e88 -03429515 278.16394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e88 -03429516 278.16397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e98 -03429517 278.16397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e98 -03429518 278.16400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea8 -03429519 278.16400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea8 -03429520 278.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb8 -03429521 278.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb8 -03429522 278.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec8 -03429523 278.16403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec8 -03429524 278.16406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed8 -03429525 278.16406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed8 -03429526 278.16409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee8 -03429527 278.16409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee8 -03429528 278.16412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef8 -03429529 278.16412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef8 -03429530 278.16415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f08 -03429531 278.16418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f08 -03429532 278.16418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f18 -03429533 278.16418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f18 -03429534 278.16421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f28 -03429535 278.16421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f28 -03429536 278.16424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f38 -03429537 278.16424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f38 -03429538 278.16427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f48 -03429539 278.16427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f48 -03429540 278.16430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f58 -03429541 278.16430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f58 -03429542 278.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f68 -03429543 278.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f68 -03429544 278.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f78 -03429545 278.16433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f78 -03429546 278.16436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f88 -03429547 278.16436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f88 -03429548 278.16439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f98 -03429549 278.16439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f98 -03431858 278.19696045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7c8 -03431859 278.19696045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7c8 -03431860 278.19699097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7d8 -03431861 278.19699097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7d8 -03431862 278.19702148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e8 -03431863 278.19702148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e8 -03431864 278.19705200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f8 -03431865 278.19705200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f8 -03431866 278.19708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a808 -03431867 278.19708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a808 -03431868 278.19708252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a818 -03431869 278.19711304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a818 -03431870 278.19714355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a828 -03431871 278.19714355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a828 -03431872 278.19717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a838 -03431873 278.19717407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a838 -03431874 278.19720459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a848 -03431875 278.19720459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a848 -03431876 278.19723511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a858 -03431877 278.19723511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a858 -03431878 278.19723511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a868 -03431879 278.19723511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a868 -03431880 278.19726563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a878 -03431881 278.19726563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a878 -03431882 278.19729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a888 -03431883 278.19729614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a888 -03431884 278.19732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a898 -03431885 278.19732666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a898 -03431886 278.19735718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a8 -03431887 278.19735718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a8 -03431888 278.19738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b8 -03431889 278.19738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b8 -03431890 278.19738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c8 -03431891 278.19738770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c8 -03431892 278.19741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d8 -03431893 278.19741821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d8 -03431894 278.19744873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e8 -03431895 278.19744873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e8 -03431896 278.19747925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f8 -03431897 278.19747925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f8 -03431898 278.19750977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a908 -03431899 278.19750977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a908 -03431900 278.19754028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a918 -03431901 278.19754028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a918 -03434810 278.24569702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -03434811 278.24569702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -03434812 278.24569702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -03434813 278.24569702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -03434814 278.24572754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -03434815 278.24572754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -03434816 278.24575806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -03434817 278.24575806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -03434818 278.24578857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40448 -03434819 278.24578857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40448 -03434820 278.24581909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40458 -03434821 278.24581909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40458 -03434822 278.24584961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40468 -03434823 278.24584961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40468 -03434824 278.24588013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40478 -03434825 278.24588013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40478 -03434826 278.24591064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40488 -03434827 278.24591064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40488 -03434828 278.24594116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40498 -03434829 278.24594116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40498 -03434830 278.24597168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a8 -03434831 278.24597168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a8 -03434832 278.24600220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b8 -03434833 278.24600220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b8 -03434834 278.24600220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404c8 -03434835 278.24600220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404c8 -03434836 278.24603271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404d8 -03434837 278.24603271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404d8 -03434838 278.24606323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404e8 -03434839 278.24606323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404e8 -03434840 278.24609375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404f8 -03434841 278.24609375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x404f8 -03434842 278.24612427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40508 -03434843 278.24612427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40508 -03434844 278.24615479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40518 -03434845 278.24615479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40518 -03434846 278.24618530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40528 -03434847 278.24618530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40528 -03434848 278.24621582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40538 -03434849 278.24621582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40538 -03434850 278.24624634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40548 -03434851 278.24624634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40548 -03434852 278.24627686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40558 -03434853 278.24627686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40558 -03437185 278.27954102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e38 -03437186 278.27957153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e48 -03437187 278.27957153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e48 -03437188 278.27966309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e58 -03437189 278.27969360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e58 -03437190 278.27969360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e68 -03437191 278.27969360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e68 -03437192 278.27972412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e78 -03437193 278.27972412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e78 -03437194 278.27975464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e88 -03437195 278.27975464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e88 -03437196 278.27978516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e98 -03437197 278.27978516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e98 -03437198 278.27981567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea8 -03437199 278.27981567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea8 -03437200 278.27984619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb8 -03437201 278.27984619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb8 -03437202 278.27984619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec8 -03437203 278.27984619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec8 -03437204 278.27987671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed8 -03437205 278.27990723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed8 -03437206 278.27990723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee8 -03437207 278.27993774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee8 -03437208 278.27996826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef8 -03437209 278.27996826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef8 -03437210 278.27999878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f08 -03437211 278.27999878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f08 -03437212 278.27999878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f18 -03437213 278.27999878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f18 -03437214 278.28002930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f28 -03437215 278.28002930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f28 -03437216 278.28005981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f38 -03437217 278.28005981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f38 -03437218 278.28009033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f48 -03437219 278.28009033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f48 -03437220 278.28015137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f58 -03437221 278.28015137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f58 -03437222 278.28015137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f68 -03437223 278.28015137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f68 -03437224 278.28021240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f78 -03437225 278.28021240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f78 -03437226 278.28024292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f88 -03437227 278.28024292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f88 -03437228 278.28027344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f98 -03444320 279.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03444321 280.00329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444322 280.00332642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444323 280.03756714 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444324 280.03759766 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444325 280.03762817 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444326 280.03762817 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03444327 280.03775024 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444328 280.03775024 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444329 280.03784180 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444330 280.03787231 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444331 282.00476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03444332 282.02520752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444333 282.02520752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444334 282.54394531 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444335 282.54397583 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444336 282.54400635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444337 282.54403687 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03444338 282.54412842 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444339 282.54415894 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444340 282.54421997 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444341 282.54421997 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444342 283.37915039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03444343 283.37915039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03444344 283.37921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03444345 283.37921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03444346 283.37921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03444347 283.37921143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03444348 283.37924194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03444349 283.37924194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03444350 283.37927246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03444351 283.37927246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03444352 283.37930298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03444353 283.37930298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03444354 283.37933350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03444355 283.37933350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03444356 283.37936401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03444357 283.37936401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03444358 283.37936401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03444359 283.37936401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03444360 283.37939453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03444361 283.37939453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03444362 283.37942505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03444363 283.37945557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03444364 283.37945557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03444365 283.37948608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03444366 283.37951660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03444367 283.37951660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03444368 283.37954712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03444369 283.37954712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03444370 283.37954712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03444371 283.37954712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03444372 283.37957764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03444373 283.37957764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03444374 283.37960815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03444375 283.37960815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03444376 283.37963867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03444377 283.37963867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03444378 283.37966919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03444379 283.37966919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03444380 283.37969971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03444381 283.37969971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03444382 283.37969971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03444383 283.37969971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03444384 283.37973022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03444385 283.37973022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03444386 283.37976074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03444387 283.37976074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03444388 283.37979126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03444389 283.37982178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03444390 283.37985229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03444391 283.37985229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03444392 283.37985229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03444393 283.37985229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03444394 283.37988281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03444395 283.37988281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03444396 283.37991333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03444397 283.37991333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03444398 283.37994385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03444399 283.37994385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03444400 283.37997437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03444401 283.37997437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03444402 283.38000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03444403 283.38000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03444404 283.38000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03444405 283.38000488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03444406 283.38003540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03444407 283.38003540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03444408 283.38006592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03444409 283.38006592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03444410 283.38009644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03444411 283.38009644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03444412 283.38012695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03444413 283.38012695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03444414 283.38015747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03444415 283.38015747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03444416 283.38018799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03444417 283.38018799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03444418 283.38018799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03444419 283.38021851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03444420 283.38024902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03444421 283.38024902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03444422 283.38027954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03444423 283.38027954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03444424 283.38031006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03444425 283.38031006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03444426 283.38034058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03444427 283.38034058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03444428 283.38034058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03444429 283.38034058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03444430 283.38037109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03444431 283.38037109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03444432 283.38040161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03444433 283.38040161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03444434 283.38043213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03444435 283.38043213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03444436 283.38046265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03444437 283.38046265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03444438 283.38049316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03444439 283.38049316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03444440 283.38052368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03444441 283.38052368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03444442 283.38055420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03444443 283.38055420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03444444 283.38058472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03444445 283.38058472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03444446 283.38061523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03444447 283.38061523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03444448 283.38064575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03444449 283.38064575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03444450 283.38067627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03444451 283.38067627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03444452 283.38070679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03444453 283.38070679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03444454 283.38073730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03444455 283.38073730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03444456 283.38076782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03444457 283.38076782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03444458 283.38079834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03444459 283.38079834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03444460 283.38079834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03444461 283.38079834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03444462 283.38082886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03444463 283.38082886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03444464 283.38085938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03444465 283.38085938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03444466 283.38092041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03444467 283.38092041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03444468 283.38095093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03444469 283.38095093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03444470 283.38098145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03444471 283.38098145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03444472 283.38098145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03444473 283.38098145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03444474 283.38101196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03444475 283.38101196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03444476 283.38104248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03444477 283.38104248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03444478 283.38107300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03444479 283.38110352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03444480 283.38110352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03444481 283.38113403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03444482 283.38113403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03444483 283.38113403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03444484 283.38116455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03444485 283.38116455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03444486 283.38119507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03444487 283.38119507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03444488 283.38122559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03444489 283.38122559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03444490 283.38125610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03444491 283.38125610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03444492 283.38128662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03444493 283.38128662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03444494 283.38128662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03444495 283.38128662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03444496 283.38131714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03444497 283.38131714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03444498 283.38134766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03444499 283.38134766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03444500 283.38137817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03444501 283.38137817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03444502 283.38140869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03444503 283.38140869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03444504 283.38143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03444505 283.38143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03444506 283.38143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03444507 283.38143921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03444508 283.38146973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03444509 283.38146973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03444510 283.38150024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03444511 283.38150024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03444512 283.38153076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03444513 283.38153076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03444514 283.38156128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03444515 283.38159180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03444516 283.38159180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03444517 283.38159180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03444518 283.38162231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03444519 283.38162231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03444520 283.38165283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03444521 283.38165283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03444522 283.38168335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03444523 283.38168335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03444524 283.38171387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03444525 283.38171387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03444526 283.38174438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03444527 283.38174438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03444528 283.38177490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03444529 283.38177490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03444530 283.38177490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03444531 283.38177490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03444532 283.38180542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03444533 283.38180542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03444534 283.38183594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03444535 283.38183594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03444536 283.38186646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03444537 283.38186646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03444538 283.38189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03444539 283.38189697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03444540 283.38192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03444541 283.38192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03444542 283.38192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03444543 283.38192749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03444544 283.38195801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03444545 283.38195801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03444546 283.38198853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03444547 283.38201904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03444548 283.38201904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03444549 283.38204956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03444550 283.38208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03444551 283.38208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03444552 283.38208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03444553 283.38208008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03444554 283.38211060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03444555 283.38211060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03444556 283.38214111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03444557 283.38214111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03444558 283.38217163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03444559 283.38217163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03444560 283.38220215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03444561 283.38220215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03444562 283.38223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03444563 283.38223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03444564 283.38223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03444565 283.38223267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03444566 283.38226318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03444567 283.38226318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03444568 283.38229370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03444569 283.38229370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03444570 283.38232422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03444571 283.38232422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03444572 283.38235474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03444573 283.38238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03444574 283.38238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03444575 283.38238525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03444576 283.38241577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03444577 283.38241577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03444578 283.38244629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03444579 283.38244629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03444580 283.38247681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03444581 283.38247681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03444582 283.38250732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03444583 283.38250732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03444584 283.38253784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03444585 283.38253784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03444586 283.38256836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03444587 283.38256836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03444588 283.38256836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03444589 283.38256836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03444590 283.38259888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03444591 283.38259888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03444592 283.38262939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03444593 283.38262939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03444594 283.38265991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03444595 283.38265991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03444596 283.38269043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03444597 283.38269043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03444598 283.38272095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03444599 283.38272095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03444600 283.38272095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03444601 283.38272095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03444602 283.38275146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03444603 283.38275146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03444604 283.38278198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03444605 283.38278198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03444606 283.38281250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03444607 283.38281250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03444608 283.38284302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03444609 283.38284302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03444610 283.38287354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03444611 283.38287354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03444612 283.38287354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03444613 283.38287354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03444614 283.38290405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03444615 283.38293457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03444616 283.38293457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03444617 283.38296509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03444618 283.38299561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03444619 283.38299561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03444620 283.38302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03444621 283.38302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03444622 283.38302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03444623 283.38302612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03444624 283.38305664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03444625 283.38305664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03444626 283.38308716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03444627 283.38308716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03444628 283.38311768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03444629 283.38311768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03444630 283.38314819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03444631 283.38314819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03444632 283.38317871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03444633 283.38317871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03444634 283.38317871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03444635 283.38317871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03444636 283.38320923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03444637 283.38320923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03444638 283.38323975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03444639 283.38323975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03444640 283.38327026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03444641 283.38327026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03444642 283.38330078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03444643 283.38330078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03444644 283.38333130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03444645 283.38333130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03444646 283.38336182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03444647 283.38336182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03444648 283.38336182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03444649 283.38336182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03444650 283.38339233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03444651 283.38339233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03444652 283.38342285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03444653 283.38345337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03444654 283.38348389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03444655 283.38348389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03444656 283.38351440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03444657 283.38351440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03444658 283.38351440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03444659 283.38351440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03444660 283.38354492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03444661 283.38354492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03444662 283.38357544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03444663 283.38357544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03444664 283.38360596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03444665 283.38360596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03444666 283.38363647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03444667 283.38363647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03444668 283.38366699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03444669 283.38366699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03444670 283.38369751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03444671 283.38369751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03444672 283.38372803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03444673 283.38372803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03444674 283.38375854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03444675 283.38375854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03444676 283.38378906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03444677 283.38378906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03444678 283.38381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03444679 283.38381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03444680 283.38381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03444681 283.38381958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03444682 283.38385010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03444683 283.38385010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03444684 283.38388062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03444685 283.38388062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03444686 283.38391113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03444687 283.38391113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03444688 283.38394165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03444689 283.38397217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03444690 283.38397217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03444691 283.38397217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03444692 283.38400269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03444693 283.38400269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03444694 283.38403320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03444695 283.38403320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03444696 283.38406372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03444697 283.38406372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03444698 283.38409424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03444699 283.38409424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03444700 283.38412476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03444701 283.38412476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03444702 283.38415527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03444703 283.38415527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03444704 283.38418579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03444705 283.38418579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03444706 283.38421631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03444707 283.38421631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03444708 283.38424683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03444709 283.38424683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03444710 283.38427734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03444711 283.38427734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03444712 283.38430786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03444713 283.38430786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03444714 283.38430786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03444715 283.38430786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03444716 283.38433838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03444717 283.38433838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03444718 283.38436890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03444719 283.38436890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03444720 283.38439941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03444721 283.38439941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03444722 283.38442993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03444723 283.38442993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03444724 283.38446045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03444725 283.38446045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03444726 283.38446045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03444727 283.38446045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03444728 283.38449097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03444729 283.38449097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03444730 283.38452148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03444731 283.38452148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03444732 283.38455200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03444733 283.38455200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03444734 283.38458252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03444735 283.38458252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03444736 283.38461304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03444737 283.38461304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03444738 283.38464355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03444739 283.38464355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03444740 283.38467407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03444741 283.38467407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03444742 283.38470459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03444743 283.38470459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03444744 283.38473511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03444745 283.38473511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03444746 283.38476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03444747 283.38476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03444748 283.38476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03444749 283.38476563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03444750 283.38479614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03444751 283.38479614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03444752 283.38482666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03444753 283.38482666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03444754 283.38485718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03444755 283.38485718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03444756 283.38488770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03444757 283.38488770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03444758 283.38491821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03444759 283.38491821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03444760 283.38494873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03444761 283.38494873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03444762 283.38494873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03444763 283.38494873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03444764 283.38497925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03444765 283.38497925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03444766 283.38510132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03444767 283.38510132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03444768 283.38513184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03444769 283.38513184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03444770 283.38516235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03444771 283.38516235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03444772 283.38519287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03444773 283.38519287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03444774 283.38522339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03444775 283.38522339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03444776 283.38525391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03444777 283.38525391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03444778 283.38525391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03444779 283.38525391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03444780 283.38528442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03444781 283.38528442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03444782 283.38531494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03444783 283.38531494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03444784 283.38534546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03444785 283.38534546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03444786 283.38537598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03444787 283.38537598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03444788 283.38540649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03444789 283.38540649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03444790 283.38543701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03444791 283.38543701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03444792 283.38546753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03444793 283.38546753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03444794 283.38549805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03444795 283.38549805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03444796 283.38552856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03444797 283.38552856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03444798 283.38555908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03444799 283.38555908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03444800 283.38562012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03444801 283.38562012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03444802 283.38565063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03444803 283.38565063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03444804 283.38568115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03444805 283.38571167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03444806 283.38571167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03444807 283.38574219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03444808 283.38574219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03444809 283.38574219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03444810 283.38577271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03444811 283.38577271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03444812 283.38580322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03444813 283.38580322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03444814 283.38583374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03444815 283.38583374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03444816 283.38586426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03444817 283.38586426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03444818 283.38589478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03444819 283.38589478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03444820 283.38589478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03444821 283.38589478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03444822 283.38592529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03444823 283.38592529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03444824 283.38595581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03444825 283.38595581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03444826 283.38598633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03444827 283.38598633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03444828 283.38601685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03444829 283.38601685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03444830 283.38604736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03444831 283.38604736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03444832 283.38613892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03444833 283.38613892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03444834 283.38616943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03444835 283.38616943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03444836 283.38619995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03444837 283.38619995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03444838 283.38619995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03444839 283.38623047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03444840 283.38626099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03444841 283.38626099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03444842 283.38629150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03444843 283.38629150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03444844 283.38632202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03444845 283.38632202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03444846 283.38635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03444847 283.38635254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03444848 283.38638306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03444849 283.38638306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03444850 283.38638306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03444851 283.38638306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03444852 283.38641357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03444853 283.38641357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03444854 283.38644409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03444855 283.38644409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03444856 283.38647461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03444857 283.38647461 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03444858 283.38650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03444859 283.38650513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03444860 283.38653564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03444861 283.38653564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03444862 283.38653564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03444863 283.38653564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03444864 283.38656616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03444865 283.38656616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03444866 283.38668823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03444867 283.38668823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03444868 283.38668823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03444869 283.38668823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03444870 283.38671875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03444871 283.38671875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03444872 283.38674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03444873 283.38674927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03444874 283.38677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03444875 283.38677979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03444876 283.38681030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03444877 283.38681030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03444878 283.38684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03444879 283.38684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03444880 283.38684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03444881 283.38684082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03444882 283.38687134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03444883 283.38687134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03444884 283.38690186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03444885 283.38690186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03444886 283.38693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03444887 283.38693237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03444888 283.38696289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03444889 283.38696289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03444890 283.38699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03444891 283.38699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03444892 283.38699341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03444893 283.38702393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03444894 283.38705444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03444895 283.38705444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03444896 283.38708496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03444897 283.38708496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03444898 283.38711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03444899 283.38711548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03444900 283.38714600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03444901 283.38717651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03444902 283.38720703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03444903 283.38723755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03444904 283.38726807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03444905 283.38726807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03444906 283.38729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03444907 283.38729858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03444908 283.38732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03444909 283.38732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03444910 283.38732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03444911 283.38732910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03444912 283.38735962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03444913 283.38735962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03444914 283.38739014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03444915 283.38739014 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03444916 283.38742065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03444917 283.38742065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03444918 283.38745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03444919 283.38745117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03444920 283.38748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03444921 283.38748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03444922 283.38748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03444923 283.38748169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03444924 283.38751221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03444925 283.38751221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03444926 283.38754272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03444927 283.38754272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03444928 283.38757324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03444929 283.38757324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03444930 283.38760376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03444931 283.38760376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03444932 283.38763428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03444933 283.38763428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03444934 283.38763428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03444935 283.38772583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03444936 283.38775635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03444937 283.38775635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03444938 283.38778687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03444939 283.38778687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03444940 283.38778687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03444941 283.38781738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03444942 283.38784790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03444943 283.38784790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03444944 283.38787842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03444945 283.38787842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03444946 283.38790894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03444947 283.38790894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03444948 283.38793945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03444949 283.38793945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03444950 283.38796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03444951 283.38796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03444952 283.38796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03444953 283.38796997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03444954 283.38800049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03444955 283.38800049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03444956 283.38803101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03444957 283.38803101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03444958 283.38806152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03444959 283.38806152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03444960 283.38809204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03444961 283.38809204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03444962 283.38812256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03444963 283.38812256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03444964 283.38812256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03444965 283.38812256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03444966 283.38815308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03444967 283.38815308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03444968 283.38827515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03444969 283.38827515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03444970 283.38827515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03444971 283.38827515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03444972 283.38830566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03444973 283.38830566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03444974 283.38833618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03444975 283.38833618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03444976 283.38836670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03444977 283.38836670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03444978 283.38839722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03444979 283.38839722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03444980 283.38842773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03444981 283.38842773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03444982 283.38845825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03444983 283.38845825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03444984 283.38848877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03444985 283.38848877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03444986 283.38851929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03444987 283.38851929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03444988 283.38854980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03444989 283.38854980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03444990 283.38858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03444991 283.38858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03444992 283.38858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03444993 283.38858032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03444994 283.38861084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03444995 283.38861084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03444996 283.38864136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03444997 283.38864136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03444998 283.38867188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03444999 283.38867188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03445000 283.38870239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03445001 283.38870239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03445002 283.38879395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03445003 283.38879395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03445004 283.38882446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03445005 283.38882446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03445006 283.38885498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03445007 283.38885498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03445008 283.38888550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03445009 283.38888550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03445010 283.38891602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03445011 283.38891602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03445012 283.38891602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03445013 283.38891602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03445014 283.38894653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03445015 283.38894653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03445016 283.38897705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03445017 283.38897705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03445018 283.38900757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03445019 283.38900757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03445020 283.38903809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03445021 283.38903809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03445022 283.38906860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03445023 283.38906860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03445024 283.38909912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03445025 283.38909912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03445026 283.38912964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03445027 283.38912964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03445028 283.38916016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03445029 283.38916016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03445030 283.38919067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03445031 283.38919067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03445032 283.38922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03445033 283.38922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03445034 283.38922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03445035 283.38922119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03445036 283.38934326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03445037 283.38934326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03445038 283.38937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03445039 283.38937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03445040 283.38937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03445041 283.38937378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03445042 283.38940430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03445043 283.38940430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03445044 283.38943481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03445045 283.38943481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03445046 283.38946533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03445047 283.38946533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03445048 283.38949585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03445049 283.38949585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03445050 283.38952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03445051 283.38952637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03445052 283.38955688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03445053 283.38955688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03445054 283.38955688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03445055 283.38955688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03445056 283.38958740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03445057 283.38958740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03445058 283.38961792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03445059 283.38961792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03445060 283.38964844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03445061 283.38964844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03445062 283.38967896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03445063 283.38967896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03445064 283.38970947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03445065 283.38970947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03445066 283.38970947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03445067 283.38970947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03445068 283.38973999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03445069 283.38973999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03445070 283.38986206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03445071 283.38986206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03445072 283.38989258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03445073 283.38989258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03445074 283.38992310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03445075 283.38992310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03445076 283.38995361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03445077 283.38995361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03445078 283.38998413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03445079 283.38998413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03445080 283.39001465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03445081 283.39001465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03445082 283.39004517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03445083 283.39004517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03445084 283.39007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03445085 283.39007568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03445086 283.39010620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03445087 283.39010620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03445088 283.39013672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03445089 283.39013672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03445090 283.39016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03445091 283.39016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03445092 283.39016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03445093 283.39016724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03445094 283.39019775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03445095 283.39019775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03445096 283.39022827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03445097 283.39022827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03445098 283.39025879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03445099 283.39025879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03445100 283.39028931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03445101 283.39028931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03445102 283.39038086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03445103 283.39038086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03445104 283.39041138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03445105 283.39041138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03445106 283.39044189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03445107 283.39044189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03445108 283.39047241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03445109 283.39047241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03445110 283.39050293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03445111 283.39050293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03445112 283.39050293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03445113 283.39050293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03445114 283.39053345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03445115 283.39053345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03445116 283.39059448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03445117 283.39059448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03445118 283.39062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03445119 283.39062500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03445120 283.39065552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03445121 283.39065552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03445122 283.39065552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03445123 283.39065552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03445124 283.39068604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03445125 283.39068604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03445126 283.39071655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03445127 283.39074707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03445128 283.39077759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03445129 283.39077759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03445130 283.39080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03445131 283.39080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03445132 283.39080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03445133 283.39080811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03445134 283.39083862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03445135 283.39083862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03445136 283.39086914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03445137 283.39086914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03445138 283.39099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03445139 283.39099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03445140 283.39099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03445141 283.39099121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03445142 283.39102173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03445143 283.39102173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03445144 283.39105225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03445145 283.39105225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03445146 283.39108276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03445147 283.39108276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03445148 283.39111328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03445149 283.39111328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03445150 283.39114380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03445151 283.39114380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03445152 283.39114380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03445153 283.39114380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03445154 283.39117432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03445155 283.39120483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03445156 283.39123535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03445157 283.39123535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03445158 283.39126587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03445159 283.39126587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03445160 283.39129639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03445161 283.39129639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03445162 283.39129639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03445163 283.39129639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03445164 283.39132690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03445165 283.39132690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03445166 283.39135742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03445167 283.39135742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03445168 283.39138794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03445169 283.39138794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03445170 283.39141846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03445171 283.39141846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03445172 283.39151001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03445173 283.39151001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03445174 283.39154053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03445175 283.39154053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03445176 283.39157104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03445177 283.39157104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03445178 283.39160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03445179 283.39160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03445180 283.39160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03445181 283.39160156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03445182 283.39163208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03445183 283.39163208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03445184 283.39166260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03445185 283.39166260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03445186 283.39169312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03445187 283.39169312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03445188 283.39172363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03445189 283.39172363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03445190 283.39175415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03445191 283.39175415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03445192 283.39178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03445193 283.39178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03445194 283.39178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03445195 283.39178467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03445196 283.39181519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03445197 283.39181519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03445198 283.39184570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03445199 283.39187622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03445200 283.39190674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03445201 283.39190674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03445202 283.39193726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03445203 283.39193726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03445204 283.39193726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03445205 283.39193726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03445206 283.39202881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03445207 283.39205933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03445208 283.39205933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03445209 283.39208984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03445210 283.39208984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03445211 283.39208984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03445212 283.39212036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03445213 283.39212036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03445214 283.39215088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03445215 283.39215088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03445216 283.39218140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03445217 283.39218140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03445218 283.39221191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03445219 283.39221191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03445220 283.39224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03445221 283.39224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03445222 283.39224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03445223 283.39224243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03445224 283.39227295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03445225 283.39227295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03445226 283.39230347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03445227 283.39230347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03445228 283.39233398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03445229 283.39233398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03445230 283.39236450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03445231 283.39236450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03445232 283.39239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03445233 283.39239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03445234 283.39239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03445235 283.39239502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03445236 283.39242554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03445237 283.39242554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03445238 283.39245605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03445239 283.39245605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03445240 283.39257813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03445241 283.39257813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03445242 283.39257813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03445243 283.39257813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03445244 283.39260864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03445245 283.39260864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03445246 283.39263916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03445247 283.39266968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03445248 283.39266968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03445249 283.39270020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03445250 283.39273071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03445251 283.39273071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03445252 283.39273071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03445253 283.39273071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03445254 283.39276123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03445255 283.39276123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03445256 283.39279175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03445257 283.39279175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03445258 283.39282227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03445259 283.39282227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03445260 283.39285278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03445261 283.39285278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03445262 283.39288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03445263 283.39288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03445264 283.39288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03445265 283.39288330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03445266 283.39291382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03445267 283.39291382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03445268 283.39294434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03445269 283.39294434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03445270 283.39297485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03445271 283.39297485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03445272 283.39300537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03445273 283.39300537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03445274 283.39312744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03445275 283.39312744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03445276 283.39315796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03445277 283.39315796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03445278 283.39318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03445279 283.39318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03445280 283.39318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03445281 283.39318848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03445282 283.39321899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03445283 283.39321899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03445284 283.39324951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03445285 283.39324951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03445286 283.39328003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03445287 283.39331055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03445288 283.39331055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03445289 283.39334106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03445290 283.39337158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03445291 283.39337158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03445292 283.39337158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03445293 283.39337158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03445294 283.39340210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03445295 283.39340210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03445296 283.39343262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03445297 283.39343262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03445298 283.39346313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03445299 283.39346313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03445300 283.39349365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03445301 283.39349365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03445302 283.39352417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03445303 283.39352417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03445304 283.39352417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03445305 283.39352417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03445306 283.39361572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03445307 283.39364624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03445308 283.39367676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03445309 283.39367676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03445310 283.39367676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03445311 283.39367676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03445312 283.39370728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03445313 283.39370728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03445314 283.39373779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03445315 283.39373779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03445316 283.39376831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03445317 283.39376831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03445318 283.39379883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03445319 283.39379883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03445320 283.39382935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03445321 283.39382935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03445322 283.39382935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03445323 283.39385986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03445324 283.39385986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03445325 283.39389038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03445326 283.39392090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03445327 283.39392090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03445328 283.39395142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03445329 283.39395142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03445330 283.39398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03445331 283.39398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03445332 283.39398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03445333 283.39398193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03445334 283.39401245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03445335 283.39401245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03445336 283.39404297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03445337 283.39404297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03445338 283.39407349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03445339 283.39407349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03445340 283.39416504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03445341 283.39416504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03445342 283.39419556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03445343 283.39419556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03445344 283.39422607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03445345 283.39422607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03445346 283.39425659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03445347 283.39425659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03445348 283.39428711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03445349 283.39431763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03445350 283.39431763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03445351 283.39431763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03445352 283.39434814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03445353 283.39434814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03445354 283.39437866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03445355 283.39437866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03445356 283.39440918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03445357 283.39440918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03445358 283.39443970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03445359 283.39443970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03445360 283.39447021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03445361 283.39447021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03445362 283.39447021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03445363 283.39447021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03445364 283.39450073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03445365 283.39450073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03445366 283.39453125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03445367 283.39453125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03445368 283.39456177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03445369 283.39456177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03445370 283.39459229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03445371 283.39459229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03445372 283.39468384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03445373 283.39468384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03445374 283.39471436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03445375 283.39471436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03445376 283.39474487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03445377 283.39474487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03445378 283.39477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03445379 283.39477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03445380 283.39477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03445381 283.39477539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03445382 283.39480591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03445383 283.39480591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03445384 283.39483643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03445385 283.39483643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03445386 283.39486694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03445387 283.39486694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03445388 283.39489746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03445389 283.39489746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03445390 283.39492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03445391 283.39492798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03445392 283.39495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03445393 283.39495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03445394 283.39495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03445395 283.39495850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03445396 283.39498901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03445397 283.39498901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03445398 283.39501953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03445399 283.39501953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03445400 283.39505005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03445401 283.39508057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03445402 283.39508057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03445403 283.39511108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03445404 283.39511108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03445405 283.39511108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03445406 283.39514160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03445407 283.39520264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03445408 283.39523315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03445409 283.39523315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03445410 283.39526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03445411 283.39526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03445412 283.39526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03445413 283.39526367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03445414 283.39529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03445415 283.39529419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03445416 283.39532471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03445417 283.39532471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03445418 283.39535522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03445419 283.39538574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03445420 283.39538574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03445421 283.39541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03445422 283.39541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03445423 283.39541626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03445424 283.39544678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03445425 283.39544678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03445426 283.39547729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03445427 283.39547729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03445428 283.39550781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03445429 283.39550781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03445430 283.39553833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03445431 283.39553833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03445432 283.39556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03445433 283.39556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03445434 283.39556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03445435 283.39556885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03445436 283.39559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03445437 283.39559937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03445438 283.39562988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03445439 283.39562988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03445440 283.39575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03445441 283.39575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03445442 283.39575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03445443 283.39575195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03445444 283.39578247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03445445 283.39581299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03445446 283.39584351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03445447 283.39584351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03445448 283.39587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03445449 283.39587402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03445450 283.39590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03445451 283.39590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03445452 283.39590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03445453 283.39590454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03445454 283.39593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03445455 283.39593506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03445456 283.39596558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03445457 283.39596558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03445458 283.39599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03445459 283.39599609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03445460 283.39602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03445461 283.39602661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03445462 283.39605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03445463 283.39605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03445464 283.39605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03445465 283.39605713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03445466 283.39608765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03445467 283.39608765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03445468 283.39611816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03445469 283.39611816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03445470 283.39614868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03445471 283.39614868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03445472 283.39617920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03445473 283.39620972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03445474 283.39627075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03445475 283.39627075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03445476 283.39630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03445477 283.39630127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03445478 283.39633179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03445479 283.39633179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03445480 283.39636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03445481 283.39636230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03445482 283.39639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03445483 283.39639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03445484 283.39639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03445485 283.39639282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03445486 283.39642334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03445487 283.39645386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03445488 283.39645386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03445489 283.39648438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03445490 283.39651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03445491 283.39651489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03445492 283.39654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03445493 283.39654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03445494 283.39654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03445495 283.39654541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03445496 283.39657593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03445497 283.39657593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03445498 283.39660645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03445499 283.39660645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03445500 283.39663696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03445501 283.39663696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03445502 283.39666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03445503 283.39666748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03445504 283.39669800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03445505 283.39669800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03445506 283.39669800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03445507 283.39669800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03445508 283.39682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03445509 283.39682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03445510 283.39685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03445511 283.39685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03445512 283.39685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03445513 283.39685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03445514 283.39688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03445515 283.39688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03445516 283.39691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03445517 283.39691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03445518 283.39694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03445519 283.39694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03445520 283.39697266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03445521 283.39697266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03445522 283.39700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03445523 283.39700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03445524 283.39700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03445525 283.39700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03445526 283.39703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03445527 283.39703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03445528 283.39706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03445529 283.39706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03445530 283.39709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03445531 283.39709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03445532 283.39712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03445533 283.39712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03445534 283.39715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03445535 283.39715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03445536 283.39718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03445537 283.39718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03445538 283.39718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03445539 283.39718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03445540 283.39721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03445541 283.39724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03445542 283.39739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03445543 283.39739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03445544 283.39743042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03445545 283.39743042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03445546 283.39746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03445547 283.39746094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03445548 283.39749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03445549 283.39749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03445550 283.39749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03445551 283.39749146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03445552 283.39752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03445553 283.39752197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03445554 283.39755249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03445555 283.39755249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03445556 283.39758301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03445557 283.39758301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03445558 283.39761353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03445559 283.39764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03445560 283.39764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03445561 283.39764404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03445562 283.39767456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03445563 283.39767456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03445564 283.39770508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03445565 283.39770508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03445566 283.39773560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03445567 283.39773560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03445568 283.39776611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03445569 283.39776611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03445570 283.39779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03445571 283.39779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03445572 283.39779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03445573 283.39779663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03445574 283.39782715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03445575 283.39782715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03445576 283.39794922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03445577 283.39794922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03445578 283.39797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03445579 283.39797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03445580 283.39797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03445581 283.39797974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03445582 283.39801025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03445583 283.39804077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03445584 283.39807129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03445585 283.39807129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03445586 283.39810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03445587 283.39810181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03445588 283.39813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03445589 283.39813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03445590 283.39813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03445591 283.39813232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03445592 283.39816284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03445593 283.39816284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03445594 283.39819336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03445595 283.39819336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03445596 283.39822388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03445597 283.39822388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03445598 283.39825439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03445599 283.39825439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03445600 283.39828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03445601 283.39828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03445602 283.39828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03445603 283.39828491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03445604 283.39831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03445605 283.39831543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03445606 283.39834595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03445607 283.39837646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03445608 283.39840698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03445609 283.39843750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03445610 283.39846802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03445611 283.39846802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03445612 283.39849854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03445613 283.39852905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03445614 283.39855957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03445615 283.39855957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03445616 283.39859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03445617 283.39859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03445618 283.39859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03445619 283.39859009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03445620 283.39862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03445621 283.39862061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03445622 283.39865112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03445623 283.39865112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03445624 283.39868164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03445625 283.39868164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03445626 283.39871216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03445627 283.39871216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03445628 283.39874268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03445629 283.39874268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03445630 283.39877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03445631 283.39877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03445632 283.39877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03445633 283.39877319 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03445634 283.39880371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03445635 283.39880371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03445636 283.39883423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03445637 283.39883423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03445638 283.39886475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03445639 283.39889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03445640 283.39889526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03445641 283.39892578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03445642 283.39895630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03445643 283.39895630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03445644 283.39898682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03445645 283.39898682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03445646 283.39901733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03445647 283.39901733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03445648 283.39904785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03445649 283.39904785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03445650 283.39907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03445651 283.39907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03445652 283.39907837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03445653 283.39910889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03445654 283.39913940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03445655 283.39913940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03445656 283.39916992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03445657 283.39916992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03445658 283.39920044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03445659 283.39920044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03445660 283.39923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03445661 283.39923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03445662 283.39923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03445663 283.39923096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03445664 283.39926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03445665 283.39926147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03445666 283.39929199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03445667 283.39929199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03445668 283.39932251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03445669 283.39932251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03445670 283.39935303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03445671 283.39935303 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03445672 283.39938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03445673 283.39938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03445674 283.39938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03445675 283.39938354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03445676 283.39947510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03445677 283.39950562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03445678 283.39953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03445679 283.39953613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03445680 283.39956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03445681 283.39956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03445682 283.39956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03445683 283.39956665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03445684 283.39959717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03445685 283.39959717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03445686 283.39962769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03445687 283.39962769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03445688 283.39965820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03445689 283.39965820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03445690 283.39968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03445691 283.39968872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03445692 283.39971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03445693 283.39971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03445694 283.39971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03445695 283.39971924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03445696 283.39974976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03445697 283.39974976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03445698 283.39978027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03445699 283.39981079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03445700 283.39984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03445701 283.39984131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03445702 283.39987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03445703 283.39987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03445704 283.39987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03445705 283.39987183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03445706 283.39990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03445707 283.39990234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03445708 283.39993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03445709 283.39993286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03445710 283.40002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03445711 283.40002441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03445712 283.40005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03445713 283.40005493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03445714 283.40008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03445715 283.40008545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03445716 283.40011597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03445717 283.40011597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03445718 283.40014648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03445719 283.40014648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03445720 283.40017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03445721 283.40017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03445722 283.40017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03445723 283.40017700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03445724 283.40020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03445725 283.40020752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03445726 283.40023804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03445727 283.40023804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03445728 283.40026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03445729 283.40026855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03445730 283.40029907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03445731 283.40029907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03445732 283.40032959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03445733 283.40036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03445734 283.40036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03445735 283.40036011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03445736 283.40039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03445737 283.40039063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03445738 283.40042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03445739 283.40042114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03445740 283.40045166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03445741 283.40045166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03445742 283.40048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03445743 283.40048218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03445744 283.40054321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03445745 283.40057373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03445746 283.40060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03445747 283.40060425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03445748 283.40063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03445749 283.40063477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03445750 283.40066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03445751 283.40066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03445752 283.40066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03445753 283.40066528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03445754 283.40069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03445755 283.40069580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03445756 283.40072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03445757 283.40072632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03445758 283.40075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03445759 283.40075684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03445760 283.40078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03445761 283.40078735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03445762 283.40081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03445763 283.40081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03445764 283.40081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03445765 283.40081787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03445766 283.40084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03445767 283.40084839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03445768 283.40087891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03445769 283.40087891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03445770 283.40090942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03445771 283.40093994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03445772 283.40097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03445773 283.40097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03445774 283.40097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03445775 283.40097046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03445776 283.40100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03445777 283.40100098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03445778 283.40103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03445779 283.40103149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03445780 283.40106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03445781 283.40106201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03445782 283.40109253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03445783 283.40109253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03445784 283.40112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03445785 283.40112305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03445786 283.40115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03445787 283.40115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03445788 283.40115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03445789 283.40115356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03445790 283.40118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03445791 283.40118408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03445792 283.40121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03445793 283.40121460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03445794 283.40124512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03445795 283.40124512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03445796 283.40127563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03445797 283.40127563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03445798 283.40130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03445799 283.40130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03445800 283.40130615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03445801 283.40133667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03445802 283.40136719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03445803 283.40136719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03445804 283.40139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03445805 283.40139771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03445806 283.40142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03445807 283.40142822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03445808 283.40145874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03445809 283.40148926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03445810 283.40155029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03445811 283.40155029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03445812 283.40158081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03445813 283.40158081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03445814 283.40161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03445815 283.40161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03445816 283.40161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03445817 283.40161133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03445818 283.40164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03445819 283.40164185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03445820 283.40167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03445821 283.40167236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03445822 283.40170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03445823 283.40170288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03445824 283.40173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03445825 283.40173340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03445826 283.40176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03445827 283.40176392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03445828 283.40179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03445829 283.40179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03445830 283.40179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03445831 283.40179443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03445832 283.40182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03445833 283.40182495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03445834 283.40185547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03445835 283.40185547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03445836 283.40188599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03445837 283.40188599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03445838 283.40191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03445839 283.40191650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03445840 283.40194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03445841 283.40194702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03445842 283.40197754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03445843 283.40197754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03445844 283.40200806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03445845 283.40200806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03445846 283.40203857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03445847 283.40203857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03445848 283.40206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03445849 283.40206909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03445850 283.40209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03445851 283.40209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03445852 283.40209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03445853 283.40209961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03445854 283.40213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03445855 283.40213013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03445856 283.40216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03445857 283.40216064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03445858 283.40219116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03445859 283.40219116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03445860 283.40222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03445861 283.40222168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03445862 283.40225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03445863 283.40225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03445864 283.40225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03445865 283.40225220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03445866 283.40228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03445867 283.40228271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03445868 283.40231323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03445869 283.40234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03445870 283.40234375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03445871 283.40237427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03445872 283.40240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03445873 283.40240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03445874 283.40246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03445875 283.40246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03445876 283.40249634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03445877 283.40249634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03445878 283.40252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03445879 283.40252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03445880 283.40255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03445881 283.40255737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03445882 283.40258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03445883 283.40258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03445884 283.40258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03445885 283.40261841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03445886 283.40261841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03445887 283.40264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03445888 283.40267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03445889 283.40267944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03445890 283.40270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03445891 283.40270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03445892 283.40274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03445893 283.40274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03445894 283.40274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03445895 283.40274048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03445896 283.40277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03445897 283.40277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03445898 283.40280151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03445899 283.40280151 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03445900 283.40283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03445901 283.40283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03445902 283.40286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03445903 283.40286255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03445904 283.40289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03445905 283.40289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03445906 283.40289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03445907 283.40289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03445908 283.40292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03445909 283.40292358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03445910 283.40295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03445911 283.40295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03445912 283.40298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03445913 283.40298462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03445914 283.40301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03445915 283.40301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03445916 283.40304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03445917 283.40304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03445918 283.40304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03445919 283.40304565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03445920 283.40307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03445921 283.40307617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03445922 283.40310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03445923 283.40310669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03445924 283.40313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03445925 283.40313721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03445926 283.40316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03445927 283.40316772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03445928 283.40319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03445929 283.40319824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03445930 283.40322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03445931 283.40322876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03445932 283.40325928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03445933 283.40325928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03445934 283.40328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03445935 283.40328979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03445936 283.40332031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03445937 283.40332031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03445938 283.40335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03445939 283.40335083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03445940 283.40338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03445941 283.40338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03445942 283.40338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03445943 283.40338135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03445944 283.40341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03445945 283.40341187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03445946 283.40344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03445947 283.40344238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03445948 283.40347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03445949 283.40347290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03445950 283.40350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03445951 283.40350342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03445952 283.40353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03445953 283.40353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03445954 283.40353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03445955 283.40353394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03445956 283.40356445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03445957 283.40356445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03445958 283.40359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03445959 283.40359497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03445960 283.40362549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03445961 283.40362549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03445962 283.40365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03445963 283.40365601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03445964 283.40368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03445965 283.40368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03445966 283.40368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03445967 283.40368652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03445968 283.40374756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03445969 283.40374756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03445970 283.40377808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03445971 283.40377808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03445972 283.40380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03445973 283.40380859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03445974 283.40383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03445975 283.40383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03445976 283.40383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03445977 283.40383911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03445978 283.40386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03445979 283.40386963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03445980 283.40390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03445981 283.40390015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03445982 283.40393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03445983 283.40393066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03445984 283.40396118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03445985 283.40396118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03445986 283.40399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03445987 283.40399170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03445988 283.40402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03445989 283.40402222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03445990 283.40405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03445991 283.40405273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03445992 283.40408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03445993 283.40408325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03445994 283.40411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03445995 283.40411377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03445996 283.40414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03445997 283.40414429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03445998 283.40417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03445999 283.40417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03446000 283.40417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03446001 283.40417480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03446002 283.40420532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03446003 283.40420532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03446004 283.40423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03446005 283.40423584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03446006 283.40426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03446007 283.40426636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03446008 283.40429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03446009 283.40429688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03446010 283.40432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03446011 283.40432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03446012 283.40432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03446013 283.40432739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03446014 283.40435791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03446015 283.40438843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03446016 283.40441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03446017 283.40441895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03446018 283.40444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03446019 283.40444946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03446020 283.40447998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03446021 283.40447998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03446022 283.40447998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03446023 283.40447998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03446024 283.40451050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03446025 283.40451050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03446026 283.40454102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03446027 283.40454102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03446028 283.40457153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03446029 283.40457153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03446030 283.40460205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03446031 283.40460205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03446032 283.40463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03446033 283.40463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03446034 283.40463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03446035 283.40463257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03446036 283.40466309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03446037 283.40469360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03446038 283.40472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03446039 283.40472412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03446040 283.40475464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03446041 283.40475464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03446042 283.40478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03446043 283.40478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03446044 283.40478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03446045 283.40478516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03446046 283.40481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03446047 283.40481567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03446048 283.40484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03446049 283.40484619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03446050 283.40487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03446051 283.40487671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03446052 283.40490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03446053 283.40490723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03446054 283.40493774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03446055 283.40496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03446056 283.40496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03446057 283.40496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03446058 283.40499878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03446059 283.40499878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03446060 283.40502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03446061 283.40502930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03446062 283.40505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03446063 283.40505981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03446064 283.40509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03446065 283.40509033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03446066 283.40512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03446067 283.40512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03446068 283.40512085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03446069 283.40515137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03446070 283.40518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03446071 283.40518188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03446072 283.40521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03446073 283.40521240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03446074 283.40524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03446075 283.40524292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03446076 283.40527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03446077 283.40527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03446078 283.40527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03446079 283.40527344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03446080 283.40530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03446081 283.40530396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03446082 283.40533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03446083 283.40533447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03446084 283.40536499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03446085 283.40536499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03446086 283.40539551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03446087 283.40539551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03446088 283.40542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03446089 283.40542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03446090 283.40542603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03446091 283.40545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03446092 283.40548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03446093 283.40548706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03446094 283.40551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03446095 283.40551758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03446096 283.40554810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03446097 283.40554810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03446098 283.40557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03446099 283.40557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03446100 283.40557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03446101 283.40557861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03446102 283.40560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03446103 283.40560913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03446104 283.40563965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03446105 283.40563965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03446106 283.40567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03446107 283.40567017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03446108 283.40570068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03446109 283.40570068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03446110 283.40573120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03446111 283.40576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03446112 283.40576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03446113 283.40576172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03446114 283.40579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03446115 283.40579224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03446116 283.40582275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03446117 283.40582275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03446118 283.40585327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03446119 283.40585327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03446120 283.40588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03446121 283.40588379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03446122 283.40591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03446123 283.40591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03446124 283.40591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03446125 283.40591431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03446126 283.40594482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03446127 283.40594482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03446128 283.40597534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03446129 283.40597534 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03446130 283.40600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03446131 283.40600586 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03446132 283.40603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03446133 283.40603638 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03446134 283.40606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03446135 283.40606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03446136 283.40606689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03446137 283.40609741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03446138 283.40612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03446139 283.40612793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03446140 283.40615845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03446141 283.40615845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03446142 283.40618896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03446143 283.40618896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03446144 283.40621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03446145 283.40621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03446146 283.40621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03446147 283.40621948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03446148 283.40625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03446149 283.40625000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03446150 283.40628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03446151 283.40628052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03446152 283.40631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03446153 283.40631104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03446154 283.40634155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03446155 283.40634155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03446156 283.40637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03446157 283.40637207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03446158 283.40640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03446159 283.40640259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03446160 283.40643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03446161 283.40643311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03446162 283.40646362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03446163 283.40646362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03446164 283.40649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03446165 283.40649414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03446166 283.40652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03446167 283.40652466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03446168 283.40655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03446169 283.40655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03446170 283.40655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03446171 283.40655518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03446172 283.40658569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03446173 283.40658569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03446174 283.40661621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03446175 283.40661621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03446176 283.40664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03446177 283.40664673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03446178 283.40667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03446179 283.40667725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03446180 283.40670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03446181 283.40670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03446182 283.40670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03446183 283.40670776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03446184 283.40673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03446185 283.40673828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03446186 283.40676880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03446187 283.40679932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03446188 283.40679932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03446189 283.40682983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03446190 283.40686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03446191 283.40686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03446192 283.40686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03446193 283.40686035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03446194 283.40689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03446195 283.40689087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03446196 283.40692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03446197 283.40692139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03446198 283.40695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03446199 283.40695190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03446200 283.40698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03446201 283.40698242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03446202 283.40701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03446203 283.40701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03446204 283.40701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03446205 283.40701294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03446206 283.40704346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03446207 283.40704346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03446208 283.40707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03446209 283.40707397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03446210 283.40710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03446211 283.40710449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03446212 283.40713501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03446213 283.40713501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03446214 283.40716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03446215 283.40716553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03446216 283.40719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03446217 283.40719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03446218 283.40719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03446219 283.40719604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03446220 283.40722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03446221 283.40722656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03446222 283.40725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03446223 283.40725708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03446224 283.40728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03446225 283.40728760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03446226 283.40731812 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03446227 283.40734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03446228 283.40734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03446229 283.40734863 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03446230 283.40737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03446231 283.40737915 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03446232 283.40740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03446233 283.40740967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03446234 283.40744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03446235 283.40744019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03446236 283.40747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03446237 283.40747070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03446238 283.40750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03446239 283.40750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03446240 283.40750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03446241 283.40750122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03446242 283.40753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03446243 283.40753174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03446244 283.40756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03446245 283.40756226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03446246 283.40759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03446247 283.40759277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03446248 283.40762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03446249 283.40762329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03446250 283.40765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03446251 283.40765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03446252 283.40765381 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03446253 283.40768433 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03446254 283.40771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03446255 283.40771484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03446256 283.40774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03446257 283.40774536 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03446258 283.40777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03446259 283.40777588 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03446260 283.40780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03446261 283.40780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03446262 283.40780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03446263 283.40780640 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03446264 283.40783691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03446265 283.40783691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03446266 283.40786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03446267 283.40786743 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03446268 283.40789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03446269 283.40789795 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03446270 283.40792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03446271 283.40792847 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03446272 283.40795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03446273 283.40795898 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03446274 283.40798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03446275 283.40798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03446276 283.40798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03446277 283.40798950 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03446278 283.40802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03446279 283.40802002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03446280 283.40805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03446281 283.40805054 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03446282 283.40808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03446283 283.40808105 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03446284 283.40811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03446285 283.40811157 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03446286 283.40814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03446287 283.40814209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03446288 283.40817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03446289 283.40817261 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03446290 283.40820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03446291 283.40820313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03446292 283.40823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03446293 283.40823364 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03446294 283.40826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03446295 283.40826416 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03446296 283.40829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03446297 283.40829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03446298 283.40829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03446299 283.40829468 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03446300 283.40832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03446301 283.40832520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03446302 283.40835571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03446303 283.40835571 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03446304 283.40838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03446305 283.40838623 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03446306 283.40841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03446307 283.40841675 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03446308 283.40844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03446309 283.40844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03446310 283.40844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03446311 283.40844727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03446312 283.40847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03446313 283.40847778 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03446314 283.40850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03446315 283.40850830 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03446316 283.40853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03446317 283.40853882 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03446318 283.40856934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03446319 283.40856934 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03446320 283.40859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03446321 283.40859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03446322 283.40859985 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03446323 283.40863037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03446324 283.40866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03446325 283.40866089 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03446326 283.40869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03446327 283.40869141 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03446328 283.40872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03446329 283.40872192 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03446330 283.40875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03446331 283.40875244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03446332 283.40878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03446333 283.40878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03446334 283.40878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03446335 283.40878296 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03446336 283.40881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03446337 283.40881348 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03446338 283.40884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03446339 283.40884399 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03446340 283.40887451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03446341 283.40887451 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03446342 283.40890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03446343 283.40890503 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03446344 283.40893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03446345 283.40893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03446346 283.40893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03446347 283.40893555 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03446348 283.40896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03446349 283.40896606 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03446350 283.40899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03446351 283.40899658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03446352 283.40902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03446353 283.40902710 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03446354 283.40905762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03446355 283.40905762 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03446356 283.40908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03446357 283.40908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03446358 283.40908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03446359 283.40908813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03446360 283.40911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03446361 283.40911865 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03446362 283.40914917 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03446363 283.40917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03446364 283.40917969 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03446365 283.40921021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03446366 283.40924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03446367 283.40924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03446368 283.40924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03446369 283.40924072 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03446370 283.40927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03446371 283.40927124 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03446372 283.40930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03446373 283.40930176 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03446374 283.40933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03446375 283.40933228 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03446376 283.40936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03446377 283.40936279 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03446378 283.40939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03446379 283.40939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03446380 283.40939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03446381 283.40939331 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03446382 283.40942383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03446383 283.40942383 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03446384 283.40945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03446385 283.40945435 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03446386 283.40948486 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03446387 283.40951538 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03446388 283.40954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03446389 283.40954590 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03446390 283.40957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03446391 283.40957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03446392 283.40957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03446393 283.40957642 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03446394 283.40960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03446395 283.40960693 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03446396 283.40963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03446397 283.40963745 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03446398 283.40966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03446399 283.40966797 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03446400 283.40969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03446401 283.40969849 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03446402 283.40972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03446403 283.40972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03446404 283.40972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03446405 283.40972900 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03446406 283.40975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03446407 283.40975952 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03446408 283.40979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03446409 283.40979004 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03446410 283.40982056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03446411 283.40982056 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03446412 283.40985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03446413 283.40985107 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03446414 283.40988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03446415 283.40988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03446416 283.40988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03446417 283.40988159 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03446418 283.40991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03446419 283.40991211 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03446420 283.40994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03446421 283.40994263 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03446422 283.41000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03446423 283.41000366 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03446424 283.41003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03446425 283.41003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03446426 283.41003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03446427 283.41003418 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03446428 283.41006470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03446429 283.41006470 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03446430 283.41009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03446431 283.41009521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03446432 283.41012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03446433 283.41012573 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03446434 283.41015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03446435 283.41015625 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03446436 283.41018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03446437 283.41018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03446438 283.41018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03446439 283.41018677 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03446440 283.41021729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03446441 283.41021729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03446442 283.41024780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03446443 283.41024780 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03446444 283.41027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03446445 283.41027832 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03446446 283.41030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03446447 283.41030884 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03446448 283.41033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03446449 283.41033936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03446450 283.41036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03446451 283.41036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03446452 283.41036987 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03446453 283.41040039 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03446454 283.41043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03446455 283.41043091 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03446456 283.41046143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03446457 283.41046143 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03446458 283.41049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03446459 283.41049194 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03446460 283.41052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03446461 283.41052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03446462 283.41052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03446463 283.41052246 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03446464 283.41055298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03446465 283.41058350 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03446466 283.41061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03446467 283.41061401 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03446468 283.41064453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03446469 283.41064453 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03446470 283.41067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03446471 283.41067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03446472 283.41067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03446473 283.41067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03446474 283.41070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03446475 283.41070557 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03446476 283.41073608 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03446477 283.41076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03446478 283.41076660 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03446479 283.41079712 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03446480 283.41082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03446481 283.41082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03446482 283.41082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03446483 283.41082764 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03446484 283.41085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03446485 283.41085815 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03446486 283.41088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03446487 283.41088867 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03446488 283.41091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03446489 283.41091919 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03446490 283.41094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03446491 283.41094971 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03446492 283.41098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03446493 283.41098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03446494 283.41098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03446495 283.41098022 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03446496 283.41101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03446497 283.41101074 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03446498 283.41104126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03446499 283.41104126 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03446500 283.41107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03446501 283.41107178 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03446502 283.41110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03446503 283.41110229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03446504 283.41113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03446505 283.41113281 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03446506 283.41116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03446507 283.41116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03446508 283.41116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03446509 283.41116333 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03446510 283.41119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03446511 283.41119385 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03446512 283.41122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03446513 283.41122437 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03446514 283.41125488 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03446515 283.41128540 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03446516 283.41131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03446517 283.41131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03446518 283.41131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03446519 283.41131592 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03446520 283.41134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03446521 283.41134644 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03446522 283.41137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03446523 283.41137695 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03446524 283.41140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03446525 283.41140747 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03446526 283.41143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03446527 283.41143799 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03446528 283.41146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03446529 283.41146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03446530 283.41146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03446531 283.41146851 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03446532 283.41149902 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03446533 283.41152954 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03446534 283.41156006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03446535 283.41156006 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03446536 283.41159058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03446537 283.41159058 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03446538 283.41162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03446539 283.41162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03446540 283.41162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03446541 283.41162109 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03446542 283.41165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03446543 283.41165161 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03446544 283.41168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03446545 283.41168213 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03446546 283.41171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03446547 283.41171265 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03446548 283.41174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03446549 283.41174316 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03446550 283.41177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03446551 283.41177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03446552 283.41177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03446553 283.41177368 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03446554 283.41180420 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03446555 283.41183472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03446556 283.41186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03446557 283.41186523 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03446558 283.41189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03446559 283.41189575 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03446560 283.41192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03446561 283.41192627 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03446562 283.41195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03446563 283.41195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03446564 283.41195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03446565 283.41195679 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03446566 283.41198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03446567 283.41198730 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03446568 283.41201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03446569 283.41201782 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03446570 283.41204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03446571 283.41204834 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03446572 283.41207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03446573 283.41207886 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03446574 283.41210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03446575 283.41210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03446576 283.41210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03446577 283.41210938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03446578 283.41213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03446579 283.41213989 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03446580 283.41217041 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03446581 283.41220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03446582 283.41220093 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03446583 283.41223145 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03446584 283.41226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03446585 283.41226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03446586 283.41226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03446587 283.41226196 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03446588 283.41229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03446589 283.41229248 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03446590 283.41232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03446591 283.41232300 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03446592 283.41235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03446593 283.41235352 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03446594 283.41238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03446595 283.41238403 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03446596 283.41241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03446597 283.41241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03446598 283.41241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03446599 283.41241455 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03446600 283.41244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03446601 283.41244507 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03446602 283.41247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03446603 283.41247559 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03446604 283.41250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03446605 283.41250610 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03446606 283.41253662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03446607 283.41253662 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03446608 283.41259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03446609 283.41259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03446610 283.41259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03446611 283.41259766 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03446612 283.41262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03446613 283.41262817 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03446614 283.41265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03446615 283.41265869 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03446616 283.41268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03446617 283.41268921 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03446618 283.41271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03446619 283.41271973 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03446620 283.41275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03446621 283.41275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03446622 283.41275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03446623 283.41275024 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03446624 283.41278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03446625 283.41278076 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03446626 283.41281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03446627 283.41281128 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03446628 283.41284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03446629 283.41284180 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03446630 283.41287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03446631 283.41287231 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03446632 283.41290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03446633 283.41290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03446634 283.41290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03446635 283.41290283 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03446636 283.41293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03446637 283.41293335 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03446638 283.41296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03446639 283.41296387 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03446640 283.41299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03446641 283.41299438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03446642 283.41302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03446643 283.41302490 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03446644 283.41305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03446645 283.41305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03446646 283.41305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03446647 283.41305542 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03446648 283.41308594 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03446649 283.41311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03446650 283.41311646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03446651 283.41314697 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03446652 283.41317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03446653 283.41317749 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03446654 283.41320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03446655 283.41320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03446656 283.41320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03446657 283.41320801 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03446658 283.41323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03446659 283.41323853 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03446660 283.41326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03446661 283.41326904 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03446662 283.41329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03446663 283.41329956 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03446664 283.41333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03446665 283.41333008 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03446666 283.41336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03446667 283.41336060 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03446668 283.41339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03446669 283.41339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03446670 283.41339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03446671 283.41339111 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03446672 283.41342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03446673 283.41342163 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03446674 283.41345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03446675 283.41345215 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03446676 283.41348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03446677 283.41348267 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03446678 283.41351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03446679 283.41351318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03446680 283.41354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03446681 283.41354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03446682 283.41354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03446683 283.41354370 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03446684 283.41357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03446685 283.41357422 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03446686 283.41360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03446687 283.41360474 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03446688 283.41363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03446689 283.41363525 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03446690 283.41366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03446691 283.41366577 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03446692 283.41369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03446693 283.41369629 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03446694 283.41372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03446695 283.41372681 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03446696 283.41375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03446697 283.41375732 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03446698 283.41378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03446699 283.41378784 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03446700 283.41381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03446701 283.41381836 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03446702 283.41384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03446703 283.41384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03446704 283.41384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03446705 283.41384888 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03446706 283.41387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03446707 283.41387939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03446708 283.41390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03446709 283.41390991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03446710 283.41394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03446711 283.41394043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03446712 283.41397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03446713 283.41397095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03446714 283.41400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03446715 283.41400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03446716 283.41400146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03446717 283.41403198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03446718 283.41406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03446719 283.41406250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03446720 283.41409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03446721 283.41409302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03446722 283.41412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03446723 283.41412354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03446724 283.41415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03446725 283.41415405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03446726 283.41418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03446727 283.41418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03446728 283.41418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03446729 283.41418457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03446730 283.41421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03446731 283.41421509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03446732 283.41424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03446733 283.41424561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03446734 283.41427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03446735 283.41427612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03446736 283.41430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03446737 283.41430664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03446738 283.41433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03446739 283.41433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03446740 283.41433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03446741 283.41433716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03446742 283.41436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03446743 283.41436768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03446744 283.41439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03446745 283.41439819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03446746 283.41442871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03446747 283.41445923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03446748 283.41448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03446749 283.41448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03446750 283.41448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03446751 283.41448975 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03446752 283.41452026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03446753 283.41452026 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03446754 283.41455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03446755 283.41455078 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03446756 283.41458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03446757 283.41458130 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03446758 283.41461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03446759 283.41461182 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03446760 283.41464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03446761 283.41464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03446762 283.41464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03446763 283.41464233 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03446764 283.41467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03446765 283.41467285 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03446766 283.41470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03446767 283.41470337 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03446768 283.41473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03446769 283.41473389 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03446770 283.41476440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03446771 283.41476440 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03446772 283.41479492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03446773 283.41479492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03446774 283.41479492 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03446775 283.41482544 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03446776 283.41485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03446777 283.41485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03446778 283.41488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03446779 283.41488647 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03446780 283.41491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03446781 283.41491699 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03446782 283.41494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03446783 283.41494751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03446784 283.41497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03446785 283.41497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03446786 283.41497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03446787 283.41497803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03446788 283.41500854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03446789 283.41500854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03446790 283.41503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03446791 283.41503906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03446792 283.41506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03446793 283.41506958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03446794 283.41510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03446795 283.41510010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03446796 283.41513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03446797 283.41513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03446798 283.41513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03446799 283.41513062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03446800 283.41516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03446801 283.41516113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03446802 283.41519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03446803 283.41519165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03446804 283.41522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03446805 283.41522217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03446806 283.41525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03446807 283.41525269 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03446808 283.41528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03446809 283.41528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03446810 283.41528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03446811 283.41528320 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03446812 283.41531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03446813 283.41531372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03446814 283.41534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03446815 283.41534424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03446816 283.41537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03446817 283.41540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03446818 283.41540527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03446819 283.41543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03446820 283.41543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03446821 283.41543579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03446822 283.41546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03446823 283.41546631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03446824 283.41549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03446825 283.41549683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03446826 283.41552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03446827 283.41552734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03446828 283.41555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03446829 283.41555786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03446830 283.41558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03446831 283.41558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03446832 283.41558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03446833 283.41558838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03446834 283.41561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03446835 283.41561890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03446836 283.41564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03446837 283.41564941 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03446838 283.41567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03446839 283.41567993 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03446840 283.41571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03446841 283.41571045 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03446842 283.41574097 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03446843 283.41577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03446844 283.41577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03446845 283.41577148 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03446846 283.41580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03446847 283.41580200 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03446848 283.41583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03446849 283.41583252 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03446850 283.41586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03446851 283.41586304 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03446852 283.41589355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03446853 283.41589355 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03446854 283.41592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03446855 283.41592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03446856 283.41592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03446857 283.41592407 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03446858 283.41595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03446859 283.41595459 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03446860 283.41598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03446861 283.41598511 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03446862 283.41601563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03446863 283.41604614 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03446864 283.41607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03446865 283.41607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03446866 283.41607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03446867 283.41607666 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03446868 283.41610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03446869 283.41610718 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03446870 283.41613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03446871 283.41613770 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03446872 283.41616821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03446873 283.41616821 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03446874 283.41619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03446875 283.41619873 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03446876 283.41622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03446877 283.41622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03446878 283.41622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03446879 283.41622925 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03446880 283.41625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03446881 283.41625977 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03446882 283.41629028 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03446883 283.41632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03446884 283.41632080 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03446885 283.41635132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03446886 283.41638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03446887 283.41638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03446888 283.41638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03446889 283.41638184 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03446890 283.41641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03446891 283.41641235 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03446892 283.41644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03446893 283.41644287 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03446894 283.41647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03446895 283.41647339 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03446896 283.41650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03446897 283.41650391 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03446898 283.41653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03446899 283.41653442 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03446900 283.41656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03446901 283.41656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03446902 283.41656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03446903 283.41656494 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03446904 283.41659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03446905 283.41659546 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03446906 283.41662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03446907 283.41662598 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03446908 283.41665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03446909 283.41665649 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03446910 283.41668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03446911 283.41668701 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03446912 283.41671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03446913 283.41671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03446914 283.41671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03446915 283.41671753 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03446916 283.41674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03446917 283.41674805 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03446918 283.41677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03446919 283.41677856 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03446920 283.41680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03446921 283.41680908 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03446922 283.41683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03446923 283.41683960 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03446924 283.41687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03446925 283.41687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03446926 283.41687012 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03446927 283.41690063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03446928 283.41693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03446929 283.41693115 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03446930 283.41696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03446931 283.41696167 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03446932 283.41699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03446933 283.41699219 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03446934 283.41702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03446935 283.41702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03446936 283.41702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03446937 283.41702271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03446938 283.41705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03446939 283.41705322 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03446940 283.41708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03446941 283.41708374 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03446942 283.41711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03446943 283.41711426 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03446944 283.41714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03446945 283.41714478 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03446946 283.41717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03446947 283.41717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03446948 283.41717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03446949 283.41717529 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03446950 283.41720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03446951 283.41720581 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03446952 283.41723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03446953 283.41723633 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03446954 283.41726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03446955 283.41726685 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03446956 283.41729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03446957 283.41729736 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03446958 283.41732788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03446959 283.41732788 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03446960 283.41735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03446961 283.41735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03446962 283.41735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03446963 283.41735840 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03446964 283.41738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03446965 283.41738892 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03446966 283.41741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03446967 283.41741943 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03446968 283.41744995 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03446969 283.41748047 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03446970 283.41751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03446971 283.41751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03446972 283.41751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03446973 283.41751099 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03446974 283.41754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03446975 283.41754150 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03446976 283.41757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03446977 283.41757202 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03446978 283.41760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03446979 283.41760254 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03446980 283.41763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03446981 283.41763306 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03446982 283.41766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03446983 283.41766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03446984 283.41766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03446985 283.41766357 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03446986 283.41769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03446987 283.41769409 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03446988 283.41775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03446989 283.41775513 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03446990 283.41778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03446991 283.41778564 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03446992 283.41781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03446993 283.41781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03446994 283.41781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03446995 283.41781616 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03446996 283.41784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03446997 283.41784668 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03446998 283.41787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03446999 283.41787720 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03447000 283.41790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03447001 283.41790771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03447002 283.41793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03447003 283.41793823 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03447004 283.41796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03447005 283.41796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03447006 283.41796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03447007 283.41796875 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03447008 283.41799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03447009 283.41799927 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03447010 283.41802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03447011 283.41802979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03447012 283.41806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03447013 283.41806030 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03447014 283.41809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03447015 283.41809082 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03447016 283.41812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03447017 283.41812134 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03447018 283.41815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03447019 283.41815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03447020 283.41815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03447021 283.41815186 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03447022 283.41818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03447023 283.41818237 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03447024 283.41821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03447025 283.41821289 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03447026 283.41824341 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03447027 283.41827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03447028 283.41827393 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03447029 283.41830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03447030 283.41830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03447031 283.41830444 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03447032 283.41833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03447033 283.41833496 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03447034 283.41836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03447035 283.41836548 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03447036 283.41839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03447037 283.41839600 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03447038 283.41842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03447039 283.41842651 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03447040 283.41845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03447041 283.41845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03447042 283.41845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03447043 283.41845703 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03447044 283.41848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03447045 283.41848755 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03447046 283.41851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03447047 283.41851807 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03447048 283.41854858 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03447049 283.41857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03447050 283.41857910 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03447051 283.41860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03447052 283.41860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03447053 283.41860962 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03447054 283.41867065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03447055 283.41867065 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03447056 283.41870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03447057 283.41870117 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03447058 283.41873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03447059 283.41873169 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03447060 283.41876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03447061 283.41876221 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03447062 283.41879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03447063 283.41879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03447064 283.41879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03447065 283.41879272 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03447066 283.41882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03447067 283.41882324 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03447068 283.41885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03447069 283.41885376 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03447070 283.41888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03447071 283.41888428 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03447072 283.41891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03447073 283.41891479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03447074 283.41894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03447075 283.41894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03447076 283.41894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03447077 283.41894531 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03447078 283.41897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03447079 283.41897583 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03447080 283.41900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03447081 283.41900635 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03447082 283.41903687 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03447083 283.41906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03447084 283.41906738 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03447085 283.41909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03447086 283.41909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03447087 283.41909790 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03447088 283.41912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03447089 283.41912842 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03447090 283.41915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03447091 283.41915894 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03447092 283.41918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03447093 283.41918945 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03447094 283.41921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03447095 283.41921997 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03447096 283.41925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03447097 283.41925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03447098 283.41925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03447099 283.41925049 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03447100 283.41928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03447101 283.41928101 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03447102 283.41931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03447103 283.41931152 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03447104 283.41934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03447105 283.41934204 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03447106 283.41937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03447107 283.41937256 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03447108 283.41940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03447109 283.41940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03447110 283.41940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03447111 283.41940308 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03447112 283.41943359 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03447113 283.41946411 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03447114 283.41949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03447115 283.41949463 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03447116 283.41952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03447117 283.41952515 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03447118 283.41955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03447119 283.41955566 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03447120 283.41958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03447121 283.41958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03447122 283.41958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03447123 283.41958618 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03447124 283.41961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03447125 283.41961670 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03447126 283.41964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03447127 283.41964722 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03447128 283.41967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03447129 283.41967773 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03447130 283.41970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03447131 283.41970825 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03447132 283.41973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03447133 283.41973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03447134 283.41973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03447135 283.41973877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03447136 283.41976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03447137 283.41976929 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03447138 283.41979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03447139 283.41979980 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03447140 283.41983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03447141 283.41983032 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03447142 283.41986084 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03447143 283.41989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03447144 283.41989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03447145 283.41989136 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03447146 283.41992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03447147 283.41992188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03447148 283.41995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03447149 283.41995239 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03447150 283.41998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03447151 283.41998291 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03447152 283.42001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03447153 283.42001343 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03447154 283.42004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03447155 283.42004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03447156 283.42004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03447157 283.42004395 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03447158 283.42007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03447159 283.42007446 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03447160 283.42010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03447161 283.42010498 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03447162 283.42013550 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03447163 283.42016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03447164 283.42016602 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03447165 283.42019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03447166 283.42019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03447167 283.42019653 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03447168 283.42022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03447169 283.42022705 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03447170 283.42025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03447171 283.42025757 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03447172 283.42028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03447173 283.42028809 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03447174 283.42031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03447175 283.42031860 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03447176 283.42034912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03447177 283.42034912 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03447178 283.42037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03447179 283.42037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03447180 283.42037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03447181 283.42037964 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03447182 283.42041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03447183 283.42041016 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03447184 283.42044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03447185 283.42044067 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03447186 283.42047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03447187 283.42047119 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03447188 283.42050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03447189 283.42050171 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03447190 283.42053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03447191 283.42053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03447192 283.42053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03447193 283.42053223 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03447194 283.42056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03447195 283.42056274 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03447196 283.42059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03447197 283.42059326 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03447198 283.42062378 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03447199 283.42065430 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03447200 283.42068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03447201 283.42068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03447202 283.42068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03447203 283.42068481 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03447204 283.42071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03447205 283.42071533 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03447206 283.42074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03447207 283.42074585 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03447208 283.42077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03447209 283.42077637 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03447210 283.42080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03447211 283.42080688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03447212 283.42083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03447213 283.42083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03447214 283.42083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03447215 283.42083740 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03447216 283.42086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03447217 283.42086792 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03447218 283.42089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03447219 283.42089844 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03447220 283.42092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03447221 283.42092896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03447222 283.42095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03447223 283.42095947 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03447224 283.42098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03447225 283.42098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03447226 283.42098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03447227 283.42098999 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03447228 283.42102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03447229 283.42102051 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03447230 283.42105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03447231 283.42105103 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03447232 283.42108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03447233 283.42108154 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03447234 283.42111206 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03447235 283.42114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03447236 283.42114258 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03447237 283.42117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03447238 283.42117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03447239 283.42117310 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03447240 283.42120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03447241 283.42120361 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03447242 283.42123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03447243 283.42123413 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03447244 283.42126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03447245 283.42126465 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03447246 283.42129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03447247 283.42129517 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03447248 283.42132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03447249 283.42132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03447250 283.42132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03447251 283.42132568 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03447252 283.42135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03447253 283.42135620 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03447254 283.42138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03447255 283.42138672 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03447256 283.42141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03447257 283.42141724 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03447258 283.42144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03447259 283.42144775 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03447260 283.42147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03447261 283.42147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03447262 283.42147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03447263 283.42147827 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03447264 283.42150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03447265 283.42150879 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03447266 283.42153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03447267 283.42153931 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03447268 283.42156982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03447269 283.42156982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03447270 283.42160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03447271 283.42160034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03447272 283.42163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03447273 283.42163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03447274 283.42163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03447275 283.42163086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03447276 283.42166138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03447277 283.42169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03447278 283.42169189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03447279 283.42172241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03447280 283.42175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03447281 283.42175293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03447282 283.42178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03447283 283.42178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03447284 283.42178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03447285 283.42178345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03447286 283.42181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03447287 283.42181396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03447288 283.42184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03447289 283.42184448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03447290 283.42187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03447291 283.42187500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03447292 283.42190552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03447293 283.42190552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03447294 283.42193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03447295 283.42193604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03447296 283.42196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03447297 283.42196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03447298 283.42196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03447299 283.42196655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03447300 283.42199707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03447301 283.42202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03447302 283.42202759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03447303 283.42205811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03447304 283.42208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03447305 283.42208862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03447306 283.42211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03447307 283.42211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03447308 283.42211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03447309 283.42211914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03447310 283.42214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03447311 283.42214966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03447312 283.42218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03447313 283.42218018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03447314 283.42221069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03447315 283.42221069 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03447316 283.42224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03447317 283.42224121 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03447318 283.42227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03447319 283.42227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03447320 283.42227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03447321 283.42227173 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03447322 283.42230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03447323 283.42230225 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03447324 283.42233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03447325 283.42233276 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03447326 283.42236328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03447327 283.42236328 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03447328 283.42239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03447329 283.42239380 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03447330 283.42242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03447331 283.42242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03447332 283.42242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03447333 283.42242432 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03447334 283.42245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03447335 283.42245483 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03447336 283.42248535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03447337 283.42248535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03447338 283.42251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03447339 283.42251587 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03447340 283.42254639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03447341 283.42254639 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03447342 283.42257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03447343 283.42257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03447344 283.42257690 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03447345 283.42260742 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03447346 283.42263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03447347 283.42263794 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03447348 283.42266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03447349 283.42266846 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03447350 283.42269897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03447351 283.42269897 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03447352 283.42272949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03447353 283.42272949 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03447354 283.42276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03447355 283.42276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03447356 283.42276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03447357 283.42276001 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03447358 283.42279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03447359 283.42279053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03447360 283.42282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03447361 283.42282104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03447362 283.42285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03447363 283.42285156 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03447364 283.42288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03447365 283.42288208 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03447366 283.42291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03447367 283.42291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03447368 283.42291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03447369 283.42291260 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03447370 283.42294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03447371 283.42294312 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03447372 283.42297363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03447373 283.42297363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03447374 283.42300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03447375 283.42300415 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03447376 283.42303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03447377 283.42303467 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03447378 283.42306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03447379 283.42306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03447380 283.42306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03447381 283.42306519 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03447382 283.42309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03447383 283.42309570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03447384 283.42312622 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03447385 283.42315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03447386 283.42315674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03447387 283.42318726 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03447388 283.42321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03447389 283.42321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03447390 283.42321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03447391 283.42321777 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03447392 283.42324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03447393 283.42324829 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03447394 283.42327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03447395 283.42327881 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03447396 283.42330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03447397 283.42330933 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03447398 283.42333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03447399 283.42333984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03447400 283.42337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03447401 283.42337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03447402 283.42337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03447403 283.42337036 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03447404 283.42340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03447405 283.42340088 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03447406 283.42343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03447407 283.42343140 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03447408 283.42346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03447409 283.42346191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03447410 283.42349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03447411 283.42349243 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03447412 283.42352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03447413 283.42352295 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03447414 283.42355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03447415 283.42355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03447416 283.42355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03447417 283.42355347 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03447418 283.42358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03447419 283.42358398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03447420 283.42361450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03447421 283.42361450 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03447422 283.42364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03447423 283.42364502 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03447424 283.42367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03447425 283.42367554 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03447426 283.42370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03447427 283.42370605 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03447428 283.42373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03447429 283.42373657 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03447430 283.42376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03447431 283.42376709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03447432 283.42379761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03447433 283.42379761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03447434 283.42382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03447435 283.42382813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03447436 283.42385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03447437 283.42385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03447438 283.42385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03447439 283.42385864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03447440 283.42388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03447441 283.42388916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03447442 283.42391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03447443 283.42391968 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03447444 283.42398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03447445 283.42398071 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03447446 283.42401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03447447 283.42401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03447448 283.42401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03447449 283.42401123 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03447450 283.42404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03447451 283.42404175 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03447452 283.42407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03447453 283.42407227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03447454 283.42410278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03447455 283.42413330 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03447456 283.42416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03447457 283.42416382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03447458 283.42419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03447459 283.42419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03447460 283.42419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03447461 283.42419434 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03447462 283.42422485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03447463 283.42422485 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03447464 283.42425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03447465 283.42425537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03447466 283.42428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03447467 283.42428589 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03447468 283.42431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03447469 283.42431641 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03447470 283.42434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03447471 283.42434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03447472 283.42434692 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03447473 283.42437744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03447474 283.42440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03447475 283.42440796 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03447476 283.42443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03447477 283.42443848 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03447478 283.42446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03447479 283.42446899 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03447480 283.42449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03447481 283.42449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03447482 283.42449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03447483 283.42449951 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03447484 283.42453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03447485 283.42453003 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03447486 283.42456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03447487 283.42456055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03447488 283.42459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03447489 283.42459106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03447490 283.42462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03447491 283.42462158 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03447492 283.42465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03447493 283.42465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03447494 283.42465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03447495 283.42465210 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03447496 283.42468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03447497 283.42468262 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03447498 283.42471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03447499 283.42471313 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03447500 283.42474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03447501 283.42474365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03447502 283.42477417 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03447503 283.42480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03447504 283.42480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03447505 283.42480469 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03447506 283.42483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03447507 283.42483521 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03447508 283.42486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03447509 283.42486572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03447510 283.42489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03447511 283.42489624 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03447512 283.42492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03447513 283.42492676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03447514 283.42495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03447515 283.42495728 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03447516 283.42498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03447517 283.42498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03447518 283.42498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03447519 283.42498779 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03447520 283.42501831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03447521 283.42501831 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03447522 283.42504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03447523 283.42504883 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03447524 283.42507935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03447525 283.42507935 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03447526 283.42510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03447527 283.42510986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03447528 283.42514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03447529 283.42514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03447530 283.42514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03447531 283.42514038 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03447532 283.42517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03447533 283.42517090 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03447534 283.42520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03447535 283.42520142 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03447536 283.42523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03447537 283.42523193 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03447538 283.42526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03447539 283.42526245 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03447540 283.42529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03447541 283.42529297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03447542 283.42532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03447543 283.42532349 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03447544 283.42535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03447545 283.42535400 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03447546 283.42538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03447547 283.42538452 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03447548 283.42541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03447549 283.42541504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03447550 283.42544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03447551 283.42544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03447552 283.42544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03447553 283.42544556 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03447554 283.42547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03447555 283.42547607 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03447556 283.42550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03447557 283.42550659 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03447558 283.42553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03447559 283.42553711 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03447560 283.42556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03447561 283.42556763 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03447562 283.42559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03447563 283.42559814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03447564 283.42562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03447565 283.42562866 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03447566 283.42565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03447567 283.42565918 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03447568 283.42568970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03447569 283.42568970 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03447570 283.42572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03447571 283.42572021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03447572 283.42575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03447573 283.42575073 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03447574 283.42578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03447575 283.42578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03447576 283.42578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03447577 283.42578125 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03447578 283.42581177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03447579 283.42581177 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03447580 283.42584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03447581 283.42584229 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03447582 283.42587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03447583 283.42587280 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03447584 283.42590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03447585 283.42590332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03447586 283.42593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03447587 283.42593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03447588 283.42593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03447589 283.42593384 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03447590 283.42596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03447591 283.42596436 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03447592 283.42599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03447593 283.42599487 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03447594 283.42602539 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03447595 283.42605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03447596 283.42605591 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03447597 283.42608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03447598 283.42608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03447599 283.42608643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03447600 283.42611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03447601 283.42611694 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03447602 283.42614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03447603 283.42614746 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03447604 283.42617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03447605 283.42617798 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03447606 283.42620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03447607 283.42620850 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03447608 283.42623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03447609 283.42623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03447610 283.42623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03447611 283.42623901 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03447612 283.42626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03447613 283.42626953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03447614 283.42630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03447615 283.42630005 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03447616 283.42633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03447617 283.42633057 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03447618 283.42636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03447619 283.42636108 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03447620 283.42639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03447621 283.42639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03447622 283.42639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03447623 283.42639160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03447624 283.42642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03447625 283.42642212 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03447626 283.42645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03447627 283.42645264 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03447628 283.42648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03447629 283.42648315 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03447630 283.42651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03447631 283.42651367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03447632 283.42654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03447633 283.42654419 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03447634 283.42657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03447635 283.42657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03447636 283.42657471 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03447637 283.42660522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03447638 283.42660522 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03447639 283.42663574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03447640 283.42666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03447641 283.42666626 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03447642 283.42669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03447643 283.42669678 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03447644 283.42672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03447645 283.42672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03447646 283.42672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03447647 283.42672729 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03447648 283.42675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03447649 283.42675781 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03447650 283.42678833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03447651 283.42678833 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03447652 283.42681885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03447653 283.42681885 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03447654 283.42684937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03447655 283.42684937 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03447656 283.42687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03447657 283.42687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03447658 283.42687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03447659 283.42687988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03447660 283.42691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03447661 283.42691040 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03447662 283.42694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03447663 283.42694092 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03447664 283.42697144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03447665 283.42697144 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03447666 283.42700195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03447667 283.42700195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03447668 283.42703247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03447669 283.42703247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03447670 283.42703247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03447671 283.42703247 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03447672 283.42706299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03447673 283.42706299 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03447674 283.42709351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03447675 283.42709351 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03447676 283.42712402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03447677 283.42712402 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03447678 283.42715454 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03447679 283.42718506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03447680 283.42718506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03447681 283.42718506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03447682 283.42721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03447683 283.42721558 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03447684 283.42724609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03447685 283.42724609 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03447686 283.42727661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03447687 283.42727661 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03447688 283.42730713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03447689 283.42730713 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03447690 283.42733765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03447691 283.42733765 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03447692 283.42736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03447693 283.42736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03447694 283.42736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03447695 283.42736816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03447696 283.42739868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03447697 283.42739868 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03447698 283.42742920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03447699 283.42742920 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03447700 283.42745972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03447701 283.42745972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03447702 283.42749023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03447703 283.42749023 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03447704 283.42752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03447705 283.42752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03447706 283.42752075 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03447707 283.42755127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03447708 283.42755127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03447709 283.42758179 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03447710 283.42761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03447711 283.42761230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03447712 283.42764282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03447713 283.42764282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03447714 283.42767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03447715 283.42767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03447716 283.42767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03447717 283.42767334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03447718 283.42770386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03447719 283.42770386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03447720 283.42773438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03447721 283.42773438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03447722 283.42776489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03447723 283.42776489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03447724 283.42779541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03447725 283.42779541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03447726 283.42782593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03447727 283.42782593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03447728 283.42782593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03447729 283.42782593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03447730 283.42785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03447731 283.42785645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03447732 283.42788696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03447733 283.42788696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03447734 283.42791748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03447735 283.42791748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03447736 283.42794800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03447737 283.42794800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03447738 283.42797852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03447739 283.42797852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03447740 283.42797852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03447741 283.42797852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03447742 283.42800903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03447743 283.42800903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03447744 283.42803955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03447745 283.42803955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03447746 283.42807007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03447747 283.42807007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03447748 283.42813110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03447749 283.42813110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03447750 283.42816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03447751 283.42816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03447752 283.42816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03447753 283.42816162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03447754 283.42819214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03447755 283.42819214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03447756 283.42822266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03447757 283.42822266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03447758 283.42825317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03447759 283.42825317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03447760 283.42828369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03447761 283.42828369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03447762 283.42831421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03447763 283.42831421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03447764 283.42831421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03447765 283.42834473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03447766 283.42834473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03447767 283.42837524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03447768 283.42840576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03447769 283.42840576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03447770 283.42843628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03447771 283.42843628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03447772 283.42846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03447773 283.42846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03447774 283.42846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03447775 283.42846680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03447776 283.42849731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03447777 283.42849731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03447778 283.42852783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03447779 283.42852783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03447780 283.42855835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03447781 283.42855835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03447782 283.42858887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03447783 283.42858887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03447784 283.42861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03447785 283.42861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03447786 283.42861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03447787 283.42861938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03447788 283.42864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03447789 283.42864990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03447790 283.42868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03447791 283.42868042 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03447792 283.42871094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03447793 283.42871094 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03447794 283.42874146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03447795 283.42877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03447796 283.42877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03447797 283.42877197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03447798 283.42880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03447799 283.42880249 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03447800 283.42883301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03447801 283.42883301 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03447802 283.42886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03447803 283.42886353 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03447804 283.42889404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03447805 283.42889404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03447806 283.42892456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03447807 283.42892456 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03447808 283.42895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03447809 283.42895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03447810 283.42895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03447811 283.42895508 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03447812 283.42898560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03447813 283.42898560 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03447814 283.42901611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03447815 283.42901611 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03447816 283.42904663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03447817 283.42904663 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03447818 283.42907715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03447819 283.42907715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03447820 283.42910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03447821 283.42910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03447822 283.42910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03447823 283.42910767 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03447824 283.42913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03447825 283.42913818 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03447826 283.42916870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03447827 283.42916870 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03447828 283.42919922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03447829 283.42919922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03447830 283.42922974 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03447831 283.42926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03447832 283.42926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03447833 283.42926025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03447834 283.42929077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03447835 283.42929077 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03447836 283.42932129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03447837 283.42932129 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03447838 283.42935181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03447839 283.42935181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03447840 283.42938232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03447841 283.42938232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03447842 283.42941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03447843 283.42941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03447844 283.42941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03447845 283.42941284 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03447846 283.42944336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03447847 283.42944336 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03447848 283.42947388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03447849 283.42947388 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03447850 283.42950439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03447851 283.42950439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03447852 283.42953491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03447853 283.42953491 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03447854 283.42956543 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03447855 283.42959595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03447856 283.42959595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03447857 283.42959595 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03447858 283.42962646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03447859 283.42962646 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03447860 283.42965698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03447861 283.42965698 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03447862 283.42968750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03447863 283.42968750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03447864 283.42971802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03447865 283.42971802 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03447866 283.42974854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03447867 283.42974854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03447868 283.42974854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03447869 283.42974854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03447870 283.42977905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03447871 283.42977905 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03447872 283.42980957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03447873 283.42980957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03447874 283.42984009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03447875 283.42984009 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03447876 283.42987061 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03447877 283.42990112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03447878 283.42990112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03447879 283.42990112 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03447880 283.42993164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03447881 283.42993164 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03447882 283.42996216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03447883 283.42996216 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03447884 283.42999268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03447885 283.42999268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03447886 283.43005371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03447887 283.43005371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03447888 283.43005371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03447889 283.43005371 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03447890 283.43008423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03447891 283.43008423 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03447892 283.43011475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03447893 283.43011475 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03447894 283.43014526 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03447895 283.43017578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03447896 283.43020630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03447897 283.43020630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03447898 283.43020630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03447899 283.43020630 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03447900 283.43023682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03447901 283.43023682 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03447902 283.43026733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03447903 283.43026733 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03447904 283.43029785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03447905 283.43029785 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03447906 283.43032837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03447907 283.43032837 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03447908 283.43035889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03447909 283.43035889 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03447910 283.43038940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03447911 283.43038940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03447912 283.43038940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03447913 283.43038940 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03447914 283.43041992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03447915 283.43041992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03447916 283.43045044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03447917 283.43045044 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03447918 283.43048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03447919 283.43048096 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03447920 283.43051147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03447921 283.43051147 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03447922 283.43054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03447923 283.43054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03447924 283.43054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03447925 283.43054199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03447926 283.43057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03447927 283.43057251 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03447928 283.43063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03447929 283.43063354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03447930 283.43066406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03447931 283.43066406 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03447932 283.43069458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03447933 283.43069458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03447934 283.43069458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03447935 283.43069458 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03447936 283.43072510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03447937 283.43072510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03447938 283.43075562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03447939 283.43075562 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03447940 283.43078613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03447941 283.43078613 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03447942 283.43081665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03447943 283.43081665 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03447944 283.43084717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03447945 283.43084717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03447946 283.43084717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03447947 283.43084717 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03447948 283.43087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03447949 283.43087769 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03447950 283.43090820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03447951 283.43090820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03447952 283.43093872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03447953 283.43093872 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03447954 283.43096924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03447955 283.43096924 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03447956 283.43099976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03447957 283.43099976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03447958 283.43099976 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03447959 283.43103027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03447960 283.43103027 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03447961 283.43106079 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03447962 283.43109131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03447963 283.43109131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03447964 283.43112183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03447965 283.43112183 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03447966 283.43115234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03447967 283.43115234 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03447968 283.43118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03447969 283.43118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03447970 283.43118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03447971 283.43118286 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03447972 283.43121338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03447973 283.43121338 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03447974 283.43124390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03447975 283.43124390 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03447976 283.43127441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03447977 283.43127441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03447978 283.43130493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03447979 283.43130493 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03447980 283.43133545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03447981 283.43133545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03447982 283.43133545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03447983 283.43133545 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03447984 283.43136597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03447985 283.43136597 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03447986 283.43139648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03447987 283.43139648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03447988 283.43142700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03447989 283.43142700 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03447990 283.43145752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03447991 283.43145752 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03447992 283.43148804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03447993 283.43148804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03447994 283.43148804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03447995 283.43148804 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03447996 283.43151855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03447997 283.43151855 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03447998 283.43154907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03447999 283.43154907 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03448000 283.43157959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03448001 283.43157959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03448002 283.43161011 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03448003 283.43164063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03448004 283.43164063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03448005 283.43164063 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03448006 283.43167114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03448007 283.43167114 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03448008 283.43170166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03448009 283.43170166 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03448010 283.43173218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03448011 283.43173218 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03448012 283.43176270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03448013 283.43176270 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03448014 283.43179321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03448015 283.43179321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03448016 283.43179321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03448017 283.43179321 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03448018 283.43182373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03448019 283.43182373 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03448020 283.43185425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03448021 283.43185425 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03448022 283.43188477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03448023 283.43188477 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03448024 283.43191528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03448025 283.43191528 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03448026 283.43194580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03448027 283.43194580 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03448028 283.43197632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03448029 283.43197632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03448030 283.43197632 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03448031 283.43200684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03448032 283.43200684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03448033 283.43203735 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03448034 283.43206787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03448035 283.43206787 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03448036 283.43209839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03448037 283.43209839 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03448038 283.43212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03448039 283.43212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03448040 283.43212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03448041 283.43212891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03448042 283.43215942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03448043 283.43215942 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03448044 283.43218994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03448045 283.43218994 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03448046 283.43222046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03448047 283.43222046 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03448048 283.43225098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03448049 283.43225098 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03448050 283.43228149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03448051 283.43228149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03448052 283.43228149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03448053 283.43228149 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03448054 283.43231201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03448055 283.43231201 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03448056 283.43234253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03448057 283.43234253 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03448058 283.43237305 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03448059 283.43240356 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03448060 283.43243408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03448061 283.43243408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03448062 283.43243408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03448063 283.43243408 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03448064 283.43246460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03448065 283.43246460 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03448066 283.43249512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03448067 283.43249512 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03448068 283.43252563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03448069 283.43252563 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03448070 283.43255615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03448071 283.43255615 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03448072 283.43258667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03448073 283.43258667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03448074 283.43258667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03448075 283.43258667 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03448076 283.43261719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03448077 283.43261719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03448078 283.43264771 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03448079 283.43267822 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03448080 283.43270874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03448081 283.43270874 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03448082 283.43273926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03448083 283.43273926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03448084 283.43276978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03448085 283.43276978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03448086 283.43276978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03448087 283.43276978 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03448088 283.43280029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03448089 283.43280029 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03448090 283.43283081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03448091 283.43283081 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03448092 283.43286133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03448093 283.43286133 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03448094 283.43289185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03448095 283.43289185 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03448096 283.43292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03448097 283.43292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03448098 283.43292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03448099 283.43292236 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03448100 283.43295288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03448101 283.43295288 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03448102 283.43298340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03448103 283.43298340 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03448104 283.43301392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03448105 283.43301392 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03448106 283.43304443 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03448107 283.43307495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03448108 283.43307495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03448109 283.43307495 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03448110 283.43310547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03448111 283.43310547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03448112 283.43313599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03448113 283.43313599 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03448114 283.43316650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03448115 283.43316650 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03448116 283.43319702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03448117 283.43319702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03448118 283.43322754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03448119 283.43322754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03448120 283.43322754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03448121 283.43322754 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03448122 283.43325806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03448123 283.43325806 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03448124 283.43328857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03448125 283.43328857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03448126 283.43331909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03448127 283.43331909 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03448128 283.43334961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03448129 283.43334961 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03448130 283.43338013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03448131 283.43338013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03448132 283.43338013 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03448133 283.43341064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03448134 283.43344116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03448135 283.43344116 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03448136 283.43347168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03448137 283.43347168 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03448138 283.43350220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03448139 283.43350220 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03448140 283.43353271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03448141 283.43353271 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03448142 283.43356323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03448143 283.43356323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03448144 283.43356323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03448145 283.43356323 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03448146 283.43359375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03448147 283.43359375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03448148 283.43362427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03448149 283.43362427 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03448150 283.43365479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03448151 283.43365479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03448152 283.43368530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03448153 283.43368530 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03448154 283.43371582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03448155 283.43371582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03448156 283.43371582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03448157 283.43371582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03448158 283.43374634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03448159 283.43374634 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03448160 283.43377686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03448161 283.43377686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03448162 283.43380737 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03448163 283.43383789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03448164 283.43386841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03448165 283.43386841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03448166 283.43386841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03448167 283.43386841 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03448168 283.43389893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03448169 283.43389893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03448170 283.43392944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03448171 283.43392944 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03448172 283.43395996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03448173 283.43395996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03448174 283.43399048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03448175 283.43399048 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03448176 283.43402100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03448177 283.43402100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03448178 283.43402100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03448179 283.43402100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03448180 283.43408203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03448181 283.43408203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03448182 283.43411255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03448183 283.43411255 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03448184 283.43414307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03448185 283.43414307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03448186 283.43417358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03448187 283.43417358 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03448188 283.43420410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03448189 283.43420410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03448190 283.43423462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03448191 283.43423462 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03448192 283.43426514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03448193 283.43426514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03448194 283.43429565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03448195 283.43429565 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03448196 283.43432617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03448197 283.43432617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03448198 283.43435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03448199 283.43435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03448200 283.43435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03448201 283.43435669 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03448202 283.43438721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03448203 283.43438721 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03448204 283.43441772 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03448205 283.43444824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03448206 283.43447876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03448207 283.43447876 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03448208 283.43450928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03448209 283.43450928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03448210 283.43450928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03448211 283.43450928 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03448212 283.43453979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03448213 283.43453979 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03448214 283.43457031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03448215 283.43457031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03448216 283.43460083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03448217 283.43460083 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03448218 283.43463135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03448219 283.43463135 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03448220 283.43466187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03448221 283.43466187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03448222 283.43466187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03448223 283.43466187 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03448224 283.43469238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03448225 283.43469238 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03448226 283.43472290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03448227 283.43472290 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03448228 283.43475342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03448229 283.43475342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03448230 283.43478394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03448231 283.43478394 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03448232 283.43481445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03448233 283.43481445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03448234 283.43481445 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03448235 283.43484497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03448236 283.43484497 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03448237 283.43487549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03448238 283.43490601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03448239 283.43490601 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03448240 283.43493652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03448241 283.43493652 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03448242 283.43496704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03448243 283.43496704 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03448244 283.43499756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03448245 283.43499756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03448246 283.43499756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03448247 283.43499756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03448248 283.43502808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03448249 283.43502808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03448250 283.43505859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03448251 283.43505859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03448252 283.43508911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03448253 283.43508911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03448254 283.43511963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03448255 283.43511963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03448256 283.43515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03448257 283.43515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03448258 283.43515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03448259 283.43515015 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03448260 283.43521118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03448261 283.43521118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03448262 283.43524170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03448263 283.43524170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03448264 283.43527222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03448265 283.43527222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03448266 283.43530273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03448267 283.43530273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03448268 283.43530273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03448269 283.43530273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03448270 283.43533325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03448271 283.43533325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03448272 283.43536377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03448273 283.43536377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03448274 283.43539429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03448275 283.43539429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03448276 283.43542480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03448277 283.43542480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03448278 283.43545532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03448279 283.43545532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03448280 283.43545532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03448281 283.43545532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03448282 283.43548584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03448283 283.43548584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03448284 283.43551636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03448285 283.43554688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03448286 283.43554688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03448287 283.43557739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03448288 283.43560791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03448289 283.43560791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03448290 283.43560791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03448291 283.43560791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03448292 283.43563843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03448293 283.43563843 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03448294 283.43566895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03448295 283.43566895 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03448296 283.43569946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03448297 283.43569946 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03448298 283.43572998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03448299 283.43572998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03448300 283.43576050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03448301 283.43576050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03448302 283.43579102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03448303 283.43579102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03448304 283.43579102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03448305 283.43579102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03448306 283.43582153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03448307 283.43585205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03448308 283.43588257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03448309 283.43588257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03448310 283.43591309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03448311 283.43591309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03448312 283.43594360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03448313 283.43594360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03448314 283.43594360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03448315 283.43594360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03448316 283.43597412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03448317 283.43597412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03448318 283.43600464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03448319 283.43600464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03448320 283.43603516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03448321 283.43603516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03448322 283.43606567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03448323 283.43606567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03448324 283.43609619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03448325 283.43609619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03448326 283.43609619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03448327 283.43609619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03448328 283.43612671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03448329 283.43612671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03448330 283.43615723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03448331 283.43615723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03448332 283.43618774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03448333 283.43618774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03448334 283.43621826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03448335 283.43624878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03448336 283.43624878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03448337 283.43624878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03448338 283.43627930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03448339 283.43627930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03448340 283.43630981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03448341 283.43630981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03448342 283.43634033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03448343 283.43634033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03448344 283.43637085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03448345 283.43637085 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03448346 283.43640137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03448347 283.43640137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03448348 283.43640137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03448349 283.43640137 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03448350 283.43643188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03448351 283.43643188 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03448352 283.43646240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03448353 283.43649292 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03448354 283.43652344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03448355 283.43652344 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03448356 283.43655396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03448357 283.43655396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03448358 283.43658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03448359 283.43658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03448360 283.43658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03448361 283.43658447 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03448362 283.43661499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03448363 283.43661499 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03448364 283.43664551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03448365 283.43664551 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03448366 283.43667603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03448367 283.43667603 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03448368 283.43670654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03448369 283.43670654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03448370 283.43673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03448371 283.43673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03448372 283.43673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03448373 283.43673706 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03448374 283.43676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03448375 283.43676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03448376 283.43679810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03448377 283.43679810 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03448378 283.43682861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03448379 283.43682861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03448380 283.43685913 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03448381 283.43688965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03448382 283.43688965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03448383 283.43688965 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03448384 283.43692017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03448385 283.43692017 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03448386 283.43695068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03448387 283.43695068 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03448388 283.43698120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03448389 283.43698120 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03448390 283.43701172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03448391 283.43701172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03448392 283.43704224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03448393 283.43704224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03448394 283.43704224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03448395 283.43704224 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03448396 283.43707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03448397 283.43707275 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03448398 283.43710327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03448399 283.43710327 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03448400 283.43713379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03448401 283.43713379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03448402 283.43716431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03448403 283.43716431 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03448404 283.43719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03448405 283.43719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03448406 283.43719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03448407 283.43719482 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03448408 283.43731689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03448409 283.43731689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03448410 283.43734741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03448411 283.43734741 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03448412 283.43737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03448413 283.43737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03448414 283.43737793 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03448415 283.43740845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03448416 283.43740845 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03448417 283.43743896 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03448418 283.43746948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03448419 283.43746948 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03448420 283.43750000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03448421 283.43750000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03448422 283.43753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -03448423 283.43753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -03448424 283.43753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -03448425 283.43753052 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -03448426 283.43756104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -03448427 283.43756104 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -03448428 283.43759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -03448429 283.43759155 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -03448430 283.43762207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -03448431 283.43762207 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -03448432 283.43765259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -03448433 283.43765259 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -03448434 283.43768311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -03448435 283.43768311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -03448436 283.43768311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -03448437 283.43771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -03448438 283.43771362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -03448439 283.43774414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -03448440 283.43777466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -03448441 283.43783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -03448442 283.43783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -03448443 283.43783569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -03448444 283.43786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -03448445 283.43786621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -03448446 283.43789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -03448447 283.43789673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -03448448 283.43792725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -03448449 283.43792725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -03448450 283.43795776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -03448451 283.43795776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -03448452 283.43798828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03448453 283.43798828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03448454 283.43798828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03448455 283.43801880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03448456 283.43804932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03448457 283.43804932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03448458 283.43807983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03448459 283.43807983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03448460 283.43811035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03448461 283.43811035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03448462 283.43814087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03448463 283.43814087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03448464 283.43817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03448465 283.43817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03448466 283.43817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03448467 283.43817139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03448468 283.43820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03448469 283.43820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03448470 283.43823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03448471 283.43823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03448472 283.43826294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03448473 283.43826294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03448474 283.43829346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03448475 283.43829346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03448476 283.43841553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -03448477 283.43841553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -03451056 283.47637939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -03451057 283.47637939 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -03451058 283.47640991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -03451059 283.47640991 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -03451060 283.47644043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -03451061 283.47644043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -03451062 283.47644043 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -03451063 283.47647095 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -03451064 283.47650146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -03451065 283.47650146 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -03451066 283.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -03451067 283.47653198 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -03451068 283.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -03451069 283.47656250 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -03451070 283.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -03451071 283.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -03451072 283.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -03451073 283.47659302 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -03451074 283.47662354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -03451075 283.47662354 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -03451076 283.47665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -03451077 283.47665405 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -03451078 283.47668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c8 -03451079 283.47668457 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c8 -03451080 283.47671509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d8 -03451081 283.47671509 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d8 -03451082 283.47674561 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e8 -03451083 283.47677612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e8 -03451084 283.47677612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f8 -03451085 283.47677612 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f8 -03451086 283.47680664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe308 -03451087 283.47680664 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe308 -03451088 283.47683716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe318 -03451089 283.47683716 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe318 -03451090 283.47686768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe328 -03451091 283.47686768 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe328 -03451092 283.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe338 -03451093 283.47689819 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe338 -03451094 283.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe348 -03451095 283.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe348 -03451096 283.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe358 -03451097 283.47692871 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe358 -03451098 283.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe368 -03451099 283.47695923 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0xe368 -03453326 283.50869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -03453327 283.50869751 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -03453328 283.50872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -03453329 283.50872803 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -03453330 283.50875854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -03453331 283.50875854 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -03453332 283.50878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -03453333 283.50878906 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -03453334 283.50881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -03453335 283.50881958 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -03453336 283.50885010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -03453337 283.50885010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -03453338 283.50885010 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -03453339 283.50888062 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -03453340 283.50891113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12978 -03453341 283.50891113 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12978 -03453342 283.50894165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12988 -03453343 283.50894165 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12988 -03453344 283.50897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12998 -03453345 283.50897217 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12998 -03453346 283.50906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a8 -03453347 283.50906372 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a8 -03453348 283.50909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b8 -03453349 283.50909424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b8 -03453350 283.50912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c8 -03453351 283.50912476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c8 -03453352 283.50915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d8 -03453353 283.50915527 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d8 -03453354 283.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e8 -03453355 283.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e8 -03453356 283.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f8 -03453357 283.50918579 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f8 -03453358 283.50921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a08 -03453359 283.50921631 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a08 -03453360 283.50924683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a18 -03453361 283.50924683 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a18 -03453362 283.50927734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a28 -03453363 283.50927734 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a28 -03453364 283.50930786 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a38 -03453365 283.50933838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a38 -03453366 283.50933838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a48 -03453367 283.50933838 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a48 -03453368 283.50936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a58 -03453369 283.50936890 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a58 -03455913 283.54656982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x179d8 -03455914 283.54660034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x179e8 -03455915 283.54660034 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x179e8 -03455916 283.54663086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x179f8 -03455917 283.54663086 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x179f8 -03455918 283.54666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a08 -03455919 283.54666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a08 -03455920 283.54666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a18 -03455921 283.54666138 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a18 -03455922 283.54669189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a28 -03455923 283.54669189 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a28 -03455924 283.54672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a38 -03455925 283.54672241 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a38 -03455926 283.54675293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a48 -03455927 283.54675293 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a48 -03455928 283.54678345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a58 -03455929 283.54678345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a58 -03455930 283.54681396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a68 -03455931 283.54681396 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a68 -03455932 283.54684448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a78 -03455933 283.54684448 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a78 -03455934 283.54687500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a88 -03455935 283.54687500 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a88 -03455936 283.54690552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a98 -03455937 283.54690552 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a98 -03455938 283.54693604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa8 -03455939 283.54693604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa8 -03455940 283.54696655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab8 -03455941 283.54696655 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab8 -03455942 283.54699707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac8 -03455943 283.54699707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac8 -03455944 283.54699707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad8 -03455945 283.54699707 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad8 -03455946 283.54702759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae8 -03455947 283.54702759 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae8 -03455948 283.54705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af8 -03455949 283.54705811 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af8 -03455950 283.54708862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b08 -03455951 283.54708862 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b08 -03455952 283.54711914 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b18 -03455953 283.54714966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b18 -03455954 283.54714966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b28 -03455955 283.54714966 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b28 -03455956 283.54718018 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b38 -03458412 283.58398438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -03458413 283.58398438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -03458414 283.58410645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -03458415 283.58410645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -03458416 283.58413696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -03458417 283.58413696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -03458418 283.58416748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c828 -03458419 283.58416748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c828 -03458420 283.58416748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c838 -03458421 283.58416748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c838 -03458422 283.58419800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c848 -03458423 283.58419800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c848 -03458424 283.58422852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c858 -03458425 283.58425903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c858 -03458426 283.58428955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c868 -03458427 283.58428955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c868 -03458428 283.58432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c878 -03458429 283.58432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c878 -03458430 283.58432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c888 -03458431 283.58432007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c888 -03458432 283.58435059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c898 -03458433 283.58435059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c898 -03458434 283.58438110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a8 -03458435 283.58438110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a8 -03458436 283.58441162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b8 -03458437 283.58441162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b8 -03458438 283.58444214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c8 -03458439 283.58444214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c8 -03458440 283.58447266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d8 -03458441 283.58447266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d8 -03458442 283.58447266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -03458443 283.58447266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -03458444 283.58450317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -03458445 283.58453369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -03458446 283.58456421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -03458447 283.58456421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -03458448 283.58459473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -03458449 283.58459473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -03458450 283.58462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -03458451 283.58462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -03458452 283.58462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -03458453 283.58462524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -03458454 283.58465576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -03458455 283.58465576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -03460616 283.61511230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cd8 -03460617 283.61511230 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cd8 -03460618 283.61514282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ce8 -03460619 283.61514282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ce8 -03460620 283.61514282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cf8 -03460621 283.61514282 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cf8 -03460622 283.61517334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d08 -03460623 283.61517334 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d08 -03460624 283.61520386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d18 -03460625 283.61520386 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d18 -03460626 283.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d28 -03460627 283.61523438 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d28 -03460628 283.61526489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d38 -03460629 283.61526489 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d38 -03460630 283.61529541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d48 -03460631 283.61529541 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d48 -03460632 283.61532593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d58 -03460633 283.61532593 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d58 -03460634 283.61535645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d68 -03460635 283.61535645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d68 -03460636 283.61538696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d78 -03460637 283.61538696 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d78 -03460638 283.61541748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d88 -03460639 283.61541748 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d88 -03460640 283.61544800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d98 -03460641 283.61544800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d98 -03460642 283.61544800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20da8 -03460643 283.61544800 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20da8 -03460644 283.61547852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db8 -03460645 283.61547852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db8 -03460646 283.61550903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc8 -03460647 283.61550903 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc8 -03460648 283.61553955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd8 -03460649 283.61553955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd8 -03460650 283.61557007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de8 -03460651 283.61560059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de8 -03460652 283.61563110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df8 -03460653 283.61563110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df8 -03460654 283.61563110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e08 -03460655 283.61563110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e08 -03460656 283.61566162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e18 -03460657 283.61566162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e18 -03460658 283.61569214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e28 -03460659 283.61569214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e28 -03462700 283.64678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24df8 -03462701 283.64678955 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24df8 -03462702 283.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e08 -03462703 283.64682007 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e08 -03462704 283.64685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e18 -03462705 283.64685059 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e18 -03462706 283.64688110 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e28 -03462707 283.64691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e28 -03462708 283.64691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e38 -03462709 283.64691162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e38 -03462710 283.64694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e48 -03462711 283.64694214 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e48 -03462712 283.64697266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e58 -03462713 283.64697266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e58 -03462714 283.64700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e68 -03462715 283.64700317 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e68 -03462716 283.64703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e78 -03462717 283.64703369 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e78 -03462718 283.64706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e88 -03462719 283.64706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e88 -03462720 283.64706421 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e98 -03462721 283.64709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e98 -03462722 283.64709473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea8 -03462723 283.64712524 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea8 -03462724 283.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb8 -03462725 283.64715576 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb8 -03462726 283.64718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec8 -03462727 283.64718628 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec8 -03462728 283.64721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed8 -03462729 283.64721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed8 -03462730 283.64721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee8 -03462731 283.64721680 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee8 -03462732 283.64724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef8 -03462733 283.64724731 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef8 -03462734 283.64727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f08 -03462735 283.64727783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f08 -03462736 283.64730835 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f18 -03462737 283.64733887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f18 -03462738 283.64736938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f28 -03462739 283.64736938 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f28 -03462740 283.64739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f38 -03462741 283.64739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f38 -03462742 283.64739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f48 -03462743 283.64739990 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f48 -03465592 283.68820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -03465593 283.68820190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -03465594 283.68823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -03465595 283.68823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -03465596 283.68823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a878 -03465597 283.68823242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a878 -03465598 283.68826294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a888 -03465599 283.68826294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a888 -03465600 283.68829346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a898 -03465601 283.68829346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a898 -03465602 283.68832397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a8 -03465603 283.68832397 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a8 -03465604 283.68835449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b8 -03465605 283.68835449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b8 -03465606 283.68838501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c8 -03465607 283.68838501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c8 -03465608 283.68838501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d8 -03465609 283.68838501 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d8 -03465610 283.68841553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e8 -03465611 283.68841553 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e8 -03465612 283.68844604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f8 -03465613 283.68844604 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f8 -03465614 283.68847656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a908 -03465615 283.68850708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a908 -03465616 283.68850708 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a918 -03465617 283.68853760 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a918 -03465618 283.68865967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a928 -03465619 283.68865967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a928 -03465620 283.68869019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a938 -03465621 283.68869019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a938 -03465622 283.68869019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a948 -03465623 283.68869019 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a948 -03465624 283.68872070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a958 -03465625 283.68872070 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a958 -03465626 283.68875122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a968 -03465627 283.68875122 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a968 -03465628 283.68878174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a978 -03465629 283.68878174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a978 -03465630 283.68881226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a988 -03465631 283.68881226 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a988 -03465632 283.68884277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a998 -03465633 283.68884277 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a998 -03465634 283.68887329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a8 -03465635 283.68887329 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a8 -03467700 283.71896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea38 -03467701 283.71896362 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea38 -03467702 283.71899414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea48 -03467703 283.71899414 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea48 -03467704 283.71902466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea58 -03467705 283.71902466 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea58 -03467706 283.71905518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea68 -03467707 283.71905518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea68 -03467708 283.71905518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea78 -03467709 283.71908569 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea78 -03467710 283.71911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea88 -03467711 283.71911621 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea88 -03467712 283.71914673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea98 -03467713 283.71914673 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea98 -03467714 283.71917725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa8 -03467715 283.71917725 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa8 -03467716 283.71920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab8 -03467717 283.71920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab8 -03467718 283.71920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac8 -03467719 283.71920776 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac8 -03467720 283.71923828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead8 -03467721 283.71923828 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead8 -03467722 283.71926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae8 -03467723 283.71926880 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae8 -03467724 283.71929932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf8 -03467725 283.71929932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf8 -03467726 283.71932983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb08 -03467727 283.71932983 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb08 -03467728 283.71936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb18 -03467729 283.71936035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb18 -03467730 283.71939087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb28 -03467731 283.71939087 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb28 -03467732 283.71942139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb38 -03467733 283.71942139 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb38 -03467734 283.71945190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb48 -03467735 283.71945190 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb48 -03467736 283.71948242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb58 -03467737 283.71948242 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb58 -03467738 283.71951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb68 -03467739 283.71951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb68 -03467740 283.71951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb78 -03467741 283.71951294 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb78 -03467742 283.71954346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb88 -03467743 283.71954346 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb88 -03469720 283.74749756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32958 -03469721 283.74749756 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32958 -03469722 283.74752808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32968 -03469723 283.74752808 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32968 -03469724 283.74755859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32978 -03469725 283.74755859 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32978 -03469726 283.74758911 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32988 -03469727 283.74761963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32988 -03469728 283.74768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32998 -03469729 283.74768066 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32998 -03469730 283.74771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a8 -03469731 283.74771118 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a8 -03469732 283.74774170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b8 -03469733 283.74774170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b8 -03469734 283.74777222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c8 -03469735 283.74777222 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c8 -03469736 283.74780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d8 -03469737 283.74780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d8 -03469738 283.74780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e8 -03469739 283.74780273 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e8 -03469740 283.74783325 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f8 -03469741 283.74786377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f8 -03469742 283.74786377 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a08 -03469743 283.74789429 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a08 -03469744 283.74792480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a18 -03469745 283.74792480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a18 -03469746 283.74795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a28 -03469747 283.74795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a28 -03469748 283.74795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a38 -03469749 283.74795532 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a38 -03469750 283.74798584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a48 -03469751 283.74798584 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a48 -03469752 283.74801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a58 -03469753 283.74801636 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a58 -03469754 283.74804688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a68 -03469755 283.74804688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a68 -03469756 283.74807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a78 -03469757 283.74807739 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a78 -03469758 283.74810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a88 -03469759 283.74810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a88 -03469760 283.74810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a98 -03469761 283.74810791 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a98 -03469762 283.74822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa8 -03469763 283.74822998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa8 -03471888 283.77947998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d18 -03471889 283.77947998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d18 -03471890 283.77951050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d28 -03471891 283.77951050 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d28 -03471892 283.77954102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d38 -03471893 283.77954102 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d38 -03471894 283.77957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d48 -03471895 283.77957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d48 -03471896 283.77957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d58 -03471897 283.77957153 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d58 -03471898 283.77960205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d68 -03471899 283.77960205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d68 -03471900 283.77963257 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d78 -03471901 283.77966309 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d78 -03471902 283.77969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d88 -03471903 283.77969360 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d88 -03471904 283.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d98 -03471905 283.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d98 -03471906 283.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36da8 -03471907 283.77972412 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36da8 -03471908 283.77975464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36db8 -03471909 283.77975464 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36db8 -03471910 283.77978516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dc8 -03471911 283.77978516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dc8 -03471912 283.77981567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dd8 -03471913 283.77981567 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dd8 -03471914 283.77984619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36de8 -03471915 283.77984619 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36de8 -03471916 283.77987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36df8 -03471917 283.77987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36df8 -03471918 283.77987671 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e08 -03471919 283.77990723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e08 -03471920 283.77993774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e18 -03471921 283.77993774 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e18 -03471922 283.77996826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e28 -03471923 283.77996826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e28 -03471924 283.77999878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e38 -03471925 283.77999878 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e38 -03471926 283.78002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e48 -03471927 283.78002930 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e48 -03471928 283.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e58 -03471929 283.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e58 -03471930 283.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e68 -03471931 283.78005981 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e68 -03486228 284.02658081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03486229 284.04788208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486230 284.04791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486231 285.05023193 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486232 285.05029297 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486233 285.05032349 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486234 285.05035400 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03486235 285.05047607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486236 285.05047607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486237 285.05050659 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486238 285.05053711 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486239 286.04928589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03486240 286.06872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486241 286.06872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486242 287.55657959 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486243 287.55664063 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486244 287.55667114 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486245 287.55667114 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03486246 287.55679321 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486247 287.55679321 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486248 287.55685425 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486249 287.55688477 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486250 288.07043457 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03486251 288.09228516 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486252 288.09231567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486253 288.82174683 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03486254 288.84472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03486255 288.84478760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03486256 288.84536743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03486257 288.84548950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03486258 288.98428345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03486259 288.98428345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03486260 288.98431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03486261 288.98431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03486262 288.98434448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03486263 288.98434448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03486264 288.98437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03486265 288.98437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03486266 288.98440552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03486267 288.98440552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03486268 288.98443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03486269 288.98443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03486270 288.98443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03486271 288.98443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03486272 288.98446655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03486273 288.98446655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03486274 288.98449707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03486275 288.98452759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03486276 288.98455811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03486277 288.98455811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03486278 288.98458862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03486279 288.98458862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03486280 288.98458862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03486281 288.98458862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03486282 288.98461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03486283 288.98461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03486284 288.98464966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03486285 288.98464966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03486286 288.98468018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03486287 288.98468018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03486288 288.98471069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03486289 288.98471069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03486290 288.98474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03486291 288.98474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03486292 288.98474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03486293 288.98474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03486294 288.98477173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03486295 288.98477173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03486296 288.98483276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03486297 288.98483276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03486298 288.98486328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03486299 288.98486328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03486300 288.98489380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03486301 288.98489380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03486302 288.98489380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03486303 288.98489380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03486304 288.98492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03486305 288.98492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03486306 288.98495483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03486307 288.98495483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03486308 288.98498535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03486309 288.98498535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03486310 288.98501587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03486311 288.98501587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03486312 288.98504639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03486313 288.98507690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03486314 288.98507690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03486315 288.98507690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03486316 288.98510742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03486317 288.98510742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03486318 288.98513794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03486319 288.98513794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03486320 288.98516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03486321 288.98516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03486322 288.98519897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03486323 288.98519897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03486324 288.98522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03486325 288.98522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03486326 288.98522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03486327 288.98522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03486328 288.98526001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03486329 288.98526001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03486330 288.98529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03486331 288.98529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03486332 288.98532104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03486333 288.98535156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03486334 288.98535156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03486335 288.98538208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03486336 288.98538208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03486337 288.98538208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03486338 288.98541260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03486339 288.98541260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03486340 288.98544312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03486341 288.98544312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03486342 288.98547363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03486343 288.98547363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03486344 288.98550415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03486345 288.98550415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03486346 288.98553467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03486347 288.98553467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03486348 288.98553467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03486349 288.98553467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03486350 288.98556519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03486351 288.98556519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03486352 288.98559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03486353 288.98559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03486354 288.98562622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03486355 288.98565674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03486356 288.98568726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03486357 288.98568726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03486358 288.98568726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03486359 288.98568726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03486360 288.98571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03486361 288.98571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03486362 288.98574829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03486363 288.98574829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03486364 288.98577881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03486365 288.98577881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03486366 288.98580933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03486367 288.98580933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03486368 288.98583984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03486369 288.98583984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03486370 288.98587036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03486371 288.98587036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03486372 288.98587036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03486373 288.98587036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03486374 288.98590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03486375 288.98593140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03486376 288.98596191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03486377 288.98596191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03486378 288.98599243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03486379 288.98599243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03486380 288.98602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03486381 288.98602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03486382 288.98605347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03486383 288.98605347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03486384 288.98608398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03486385 288.98608398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03486386 288.98611450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03486387 288.98611450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03486388 288.98614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03486389 288.98614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03486390 288.98617554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03486391 288.98617554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03486392 288.98617554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03486393 288.98617554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03486394 288.98620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03486395 288.98620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03486396 288.98623657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03486397 288.98623657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03486398 288.98626709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03486399 288.98626709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03486400 288.98629761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03486401 288.98629761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03486402 288.98632813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03486403 288.98632813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03486404 288.98635864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03486405 288.98635864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03486406 288.98638916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03486407 288.98638916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03486408 288.98641968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03486409 288.98641968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03486410 288.98645020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03486411 288.98645020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03486412 288.98648071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03486413 288.98648071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03486414 288.98651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03486415 288.98651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03486416 288.98651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03486417 288.98651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03486418 288.98654175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03486419 288.98654175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03486420 288.98657227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03486421 288.98657227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03486422 288.98660278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03486423 288.98663330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03486424 288.98666382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03486425 288.98666382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03486426 288.98666382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03486427 288.98666382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03486428 288.98669434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03486429 288.98669434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03486430 288.98672485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03486431 288.98672485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03486432 288.98675537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03486433 288.98675537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03486434 288.98678589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03486435 288.98678589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03486436 288.98681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03486437 288.98681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03486438 288.98681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03486439 288.98681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03486440 288.98684692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03486441 288.98684692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03486442 288.98687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03486443 288.98687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03486444 288.98690796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03486445 288.98693848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03486446 288.98696899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03486447 288.98696899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03486448 288.98696899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03486449 288.98696899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03486450 288.98699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03486451 288.98699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03486452 288.98703003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03486453 288.98703003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03486454 288.98706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03486455 288.98706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03486456 288.98709106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03486457 288.98709106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03486458 288.98712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03486459 288.98712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03486460 288.98712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03486461 288.98712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03486462 288.98715210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03486463 288.98715210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03486464 288.98718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03486465 288.98721313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03486466 288.98724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03486467 288.98724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03486468 288.98727417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03486469 288.98727417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03486470 288.98730469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03486471 288.98730469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03486472 288.98730469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03486473 288.98730469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03486474 288.98733521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03486475 288.98733521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03486476 288.98736572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03486477 288.98736572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03486478 288.98739624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03486479 288.98739624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03486480 288.98742676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03486481 288.98742676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03486482 288.98745728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03486483 288.98745728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03486484 288.98745728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03486485 288.98748779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03486486 288.98751831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03486487 288.98751831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03486488 288.98754883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03486489 288.98754883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03486490 288.98757935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03486491 288.98757935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03486492 288.98760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03486493 288.98760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03486494 288.98760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03486495 288.98760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03486496 288.98764038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03486497 288.98764038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03486498 288.98767090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03486499 288.98767090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03486500 288.98770142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03486501 288.98770142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03486502 288.98773193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03486503 288.98773193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03486504 288.98776245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03486505 288.98776245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03486506 288.98776245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03486507 288.98779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03486508 288.98782349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03486509 288.98782349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03486510 288.98785400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03486511 288.98785400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03486512 288.98788452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03486513 288.98788452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03486514 288.98791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03486515 288.98791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03486516 288.98791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03486517 288.98791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03486518 288.98794556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03486519 288.98794556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03486520 288.98797607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03486521 288.98797607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03486522 288.98803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03486523 288.98803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03486524 288.98806763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03486525 288.98806763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03486526 288.98809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03486527 288.98809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03486528 288.98809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03486529 288.98809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03486530 288.98812866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03486531 288.98812866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03486532 288.98815918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03486533 288.98815918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03486534 288.98818970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03486535 288.98818970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03486536 288.98822021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03486537 288.98822021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03486538 288.98825073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03486539 288.98825073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03486540 288.98828125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03486541 288.98828125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03486542 288.98831177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03486543 288.98831177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03486544 288.98834229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03486545 288.98834229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03486546 288.98837280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03486547 288.98837280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03486548 288.98840332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03486549 288.98840332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03486550 288.98840332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03486551 288.98840332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03486552 288.98843384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03486553 288.98843384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03486554 288.98846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03486555 288.98846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03486556 288.98849487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03486557 288.98849487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03486558 288.98852539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03486559 288.98852539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03486560 288.98855591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03486561 288.98855591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03486562 288.98858643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03486563 288.98858643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03486564 288.98861694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03486565 288.98861694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03486566 288.98864746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03486567 288.98864746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03486568 288.98867798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03486569 288.98867798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03486570 288.98870850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03486571 288.98870850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03486572 288.98870850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03486573 288.98870850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03486574 288.98873901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03486575 288.98873901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03486576 288.98876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03486577 288.98876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03486578 288.98880005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03486579 288.98880005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03486580 288.98883057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03486581 288.98886108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03486582 288.98889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03486583 288.98889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03486584 288.98889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03486585 288.98889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03486586 288.98892212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03486587 288.98892212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03486588 288.98895264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03486589 288.98895264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03486590 288.98898315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03486591 288.98898315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03486592 288.98901367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03486593 288.98901367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03486594 288.98904419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03486595 288.98904419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03486596 288.98904419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03486597 288.98904419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03486598 288.98907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03486599 288.98907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03486600 288.98910522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03486601 288.98913574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03486602 288.98916626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03486603 288.98916626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03486604 288.98919678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03486605 288.98919678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03486606 288.98919678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03486607 288.98919678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03486608 288.98922729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03486609 288.98922729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03486610 288.98925781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03486611 288.98925781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03486612 288.98928833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03486613 288.98928833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03486614 288.98931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03486615 288.98931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03486616 288.98934937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03486617 288.98934937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03486618 288.98934937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03486619 288.98934937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03486620 288.98937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03486621 288.98941040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03486622 288.98944092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03486623 288.98944092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03486624 288.98947144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03486625 288.98947144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03486626 288.98950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03486627 288.98950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03486628 288.98950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03486629 288.98950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03486630 288.98953247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03486631 288.98953247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03486632 288.98956299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03486633 288.98956299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03486634 288.98959351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03486635 288.98959351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03486636 288.98962402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03486637 288.98962402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03486638 288.98965454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03486639 288.98965454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03486640 288.98968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03486641 288.98968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03486642 288.98971558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03486643 288.98971558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03486644 288.98974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03486645 288.98974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03486646 288.98977661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03486647 288.98977661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03486648 288.98980713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03486649 288.98980713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03486650 288.98983765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03486651 288.98983765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03486652 288.98983765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03486653 288.98983765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03486654 288.98986816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03486655 288.98986816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03486656 288.98989868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03486657 288.98989868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03486658 288.98992920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03486659 288.98992920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03486660 288.98995972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03486661 288.98999023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03486662 288.98999023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03486663 288.98999023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03486664 288.99002075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03486665 288.99002075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03486666 288.99005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03486667 288.99005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03486668 288.99008179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03486669 288.99008179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03486670 288.99011230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03486671 288.99011230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03486672 288.99014282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03486673 288.99014282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03486674 288.99014282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03486675 288.99014282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03486676 288.99017334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03486677 288.99017334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03486678 288.99020386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03486679 288.99023438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03486680 288.99026489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03486681 288.99026489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03486682 288.99029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03486683 288.99029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03486684 288.99029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03486685 288.99029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03486686 288.99032593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03486687 288.99032593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03486688 288.99035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03486689 288.99035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03486690 288.99038696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03486691 288.99038696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03486692 288.99041748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03486693 288.99041748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03486694 288.99044800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03486695 288.99044800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03486696 288.99047852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03486697 288.99047852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03486698 288.99047852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03486699 288.99050903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03486700 288.99053955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03486701 288.99053955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03486702 288.99057007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03486703 288.99057007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03486704 288.99060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03486705 288.99060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03486706 288.99063110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03486707 288.99063110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03486708 288.99063110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03486709 288.99063110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03486710 288.99066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03486711 288.99066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03486712 288.99069214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03486713 288.99069214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03486714 288.99072266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03486715 288.99072266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03486716 288.99075317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03486717 288.99075317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03486718 288.99078369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03486719 288.99078369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03486720 288.99081421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03486721 288.99081421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03486722 288.99084473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03486723 288.99084473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03486724 288.99087524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03486725 288.99087524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03486726 288.99090576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03486727 288.99090576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03486728 288.99093628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03486729 288.99093628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03486730 288.99093628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03486731 288.99093628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03486732 288.99096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03486733 288.99096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03486734 288.99099731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03486735 288.99099731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03486736 288.99102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03486737 288.99102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03486738 288.99105835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03486739 288.99108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03486740 288.99108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03486741 288.99108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03486742 288.99111938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03486743 288.99111938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03486744 288.99114990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03486745 288.99114990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03486746 288.99118042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03486747 288.99118042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03486748 288.99121094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03486749 288.99121094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03486750 288.99124146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03486751 288.99124146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03486752 288.99127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03486753 288.99127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03486754 288.99127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03486755 288.99127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03486756 288.99130249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03486757 288.99133301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03486758 288.99136353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03486759 288.99136353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03486760 288.99139404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03486761 288.99139404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03486762 288.99142456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03486763 288.99142456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03486764 288.99142456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03486765 288.99142456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03486766 288.99145508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03486767 288.99145508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03486768 288.99148560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03486769 288.99148560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03486770 288.99151611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03486771 288.99151611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03486772 288.99154663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03486773 288.99154663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03486774 288.99157715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03486775 288.99157715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03486776 288.99157715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03486777 288.99160767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03486778 288.99163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03486779 288.99163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03486780 288.99166870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03486781 288.99166870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03486782 288.99169922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03486783 288.99169922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03486784 288.99172974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03486785 288.99172974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03486786 288.99172974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03486787 288.99172974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03486788 288.99176025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03486789 288.99176025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03486790 288.99179077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03486791 288.99179077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03486792 288.99182129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03486793 288.99182129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03486794 288.99185181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03486795 288.99188232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03486796 288.99191284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03486797 288.99191284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03486798 288.99191284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03486799 288.99191284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03486800 288.99194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03486801 288.99194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03486802 288.99197388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03486803 288.99197388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03486804 288.99200439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03486805 288.99200439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03486806 288.99203491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03486807 288.99203491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03486808 288.99206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03486809 288.99206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03486810 288.99206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03486811 288.99206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03486812 288.99209595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03486813 288.99209595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03486814 288.99212646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03486815 288.99215698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03486816 288.99218750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03486817 288.99218750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03486818 288.99221802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03486819 288.99221802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03486820 288.99221802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03486821 288.99221802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03486822 288.99224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03486823 288.99224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03486824 288.99227905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03486825 288.99227905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03486826 288.99230957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03486827 288.99230957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03486828 288.99234009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03486829 288.99234009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03486830 288.99237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03486831 288.99237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03486832 288.99237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03486833 288.99240112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03486834 288.99243164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03486835 288.99243164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03486836 288.99246216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03486837 288.99246216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03486838 288.99249268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03486839 288.99249268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03486840 288.99252319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03486841 288.99252319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03486842 288.99252319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03486843 288.99252319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03486844 288.99255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03486845 288.99255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03486846 288.99258423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03486847 288.99258423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03486848 288.99261475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03486849 288.99261475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03486850 288.99264526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03486851 288.99267578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03486852 288.99270630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03486853 288.99270630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03486854 288.99270630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03486855 288.99270630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03486856 288.99273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03486857 288.99273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03486858 288.99276733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03486859 288.99276733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03486860 288.99279785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03486861 288.99279785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03486862 288.99282837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03486863 288.99282837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03486864 288.99285889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03486865 288.99285889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03486866 288.99285889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03486867 288.99285889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03486868 288.99291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03486869 288.99291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03486870 288.99295044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03486871 288.99295044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03486872 288.99298096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03486873 288.99298096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03486874 288.99301147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03486875 288.99301147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03486876 288.99301147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03486877 288.99301147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03486878 288.99304199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03486879 288.99304199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03486880 288.99307251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03486881 288.99307251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03486882 288.99310303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03486883 288.99310303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03486884 288.99313354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03486885 288.99316406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03486886 288.99316406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03486887 288.99316406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03486888 288.99319458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03486889 288.99319458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03486890 288.99322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03486891 288.99322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03486892 288.99325562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03486893 288.99325562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03486894 288.99328613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03486895 288.99328613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03486896 288.99331665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03486897 288.99331665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03486898 288.99331665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03486899 288.99331665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03486900 288.99334717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03486901 288.99334717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03486902 288.99337769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03486903 288.99337769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03486904 288.99343872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03486905 288.99343872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03486906 288.99346924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03486907 288.99346924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03486908 288.99349976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03486909 288.99349976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03486910 288.99349976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03486911 288.99349976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03486912 288.99353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03486913 288.99353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03486914 288.99356079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03486915 288.99356079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03486916 288.99359131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03486917 288.99359131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03486918 288.99362183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03486919 288.99362183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03486920 288.99365234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03486921 288.99365234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03486922 288.99368286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03486923 288.99368286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03486924 288.99371338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03486925 288.99371338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03486926 288.99374390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03486927 288.99374390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03486928 288.99377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03486929 288.99377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03486930 288.99380493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03486931 288.99380493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03486932 288.99380493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03486933 288.99380493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03486934 288.99383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03486935 288.99383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03486936 288.99386597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03486937 288.99386597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03486938 288.99392700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03486939 288.99392700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03486940 288.99395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03486941 288.99395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03486942 288.99395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03486943 288.99395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03486944 288.99398804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03486945 288.99401855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03486946 288.99404907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03486947 288.99404907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03486948 288.99407959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03486949 288.99407959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03486950 288.99411011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03486951 288.99411011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03486952 288.99411011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03486953 288.99411011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03486954 288.99414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03486955 288.99414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03486956 288.99417114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03486957 288.99417114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03486958 288.99420166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03486959 288.99423218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03486960 288.99426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03486961 288.99426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03486962 288.99429321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03486963 288.99429321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03486964 288.99429321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03486965 288.99429321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03486966 288.99432373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03486967 288.99432373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03486968 288.99435425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03486969 288.99435425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03486970 288.99438477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03486971 288.99438477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03486972 288.99441528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03486973 288.99441528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03486974 288.99444580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03486975 288.99444580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03486976 288.99444580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03486977 288.99444580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03486978 288.99447632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03486979 288.99450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03486980 288.99453735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03486981 288.99453735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03486982 288.99456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03486983 288.99456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03486984 288.99459839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03486985 288.99459839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03486986 288.99459839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03486987 288.99459839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03486988 288.99462891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03486989 288.99462891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03486990 288.99465942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03486991 288.99465942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03486992 288.99468994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03486993 288.99468994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03486994 288.99472046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03486995 288.99472046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03486996 288.99475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03486997 288.99475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03486998 288.99475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03486999 288.99475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03487000 288.99478149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03487001 288.99481201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03487002 288.99484253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03487003 288.99484253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03487004 288.99487305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03487005 288.99487305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03487006 288.99490356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03487007 288.99490356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03487008 288.99490356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03487009 288.99490356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03487010 288.99493408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03487011 288.99493408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03487012 288.99496460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03487013 288.99496460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03487014 288.99499512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03487015 288.99499512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03487016 288.99502563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03487017 288.99502563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03487018 288.99505615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03487019 288.99508667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03487020 288.99508667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03487021 288.99508667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03487022 288.99511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03487023 288.99511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03487024 288.99514771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03487025 288.99514771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03487026 288.99517822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03487027 288.99517822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03487028 288.99520874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03487029 288.99520874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03487030 288.99523926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03487031 288.99523926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03487032 288.99523926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03487033 288.99523926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03487034 288.99526978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03487035 288.99526978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03487036 288.99530029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03487037 288.99530029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03487038 288.99533081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03487039 288.99533081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03487040 288.99536133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03487041 288.99539185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03487042 288.99539185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03487043 288.99539185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03487044 288.99542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03487045 288.99542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03487046 288.99545288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03487047 288.99545288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03487048 288.99548340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03487049 288.99548340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03487050 288.99551392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03487051 288.99551392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03487052 288.99554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03487053 288.99554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03487054 288.99554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03487055 288.99554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03487056 288.99557495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03487057 288.99557495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03487058 288.99560547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03487059 288.99560547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03487060 288.99563599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03487061 288.99566650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03487062 288.99569702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03487063 288.99569702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03487064 288.99569702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03487065 288.99569702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03487066 288.99572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03487067 288.99572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03487068 288.99575806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03487069 288.99575806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03487070 288.99578857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03487071 288.99578857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03487072 288.99581909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03487073 288.99581909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03487074 288.99584961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03487075 288.99584961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03487076 288.99588013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03487077 288.99588013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03487078 288.99588013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03487079 288.99588013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03487080 288.99591064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03487081 288.99591064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03487082 288.99594116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03487083 288.99597168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03487084 288.99600220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03487085 288.99600220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03487086 288.99603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03487087 288.99603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03487088 288.99603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03487089 288.99603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03487090 288.99606323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03487091 288.99606323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03487092 288.99609375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03487093 288.99609375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03487094 288.99612427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03487095 288.99612427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03487096 288.99615479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03487097 288.99615479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03487098 288.99618530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03487099 288.99618530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03487100 288.99618530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03487101 288.99618530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03487102 288.99621582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03487103 288.99624634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03487104 288.99627686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03487105 288.99627686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03487106 288.99630737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03487107 288.99630737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03487108 288.99633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03487109 288.99633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03487110 288.99633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03487111 288.99633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03487112 288.99636841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03487113 288.99636841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03487114 288.99639893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03487115 288.99639893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03487116 288.99642944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03487117 288.99642944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03487118 288.99645996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03487119 288.99645996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03487120 288.99649048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03487121 288.99649048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03487122 288.99649048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03487123 288.99649048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03487124 288.99652100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03487125 288.99655151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03487126 288.99658203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03487127 288.99658203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03487128 288.99661255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03487129 288.99661255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03487130 288.99664307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03487131 288.99664307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03487132 288.99667358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03487133 288.99667358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03487134 288.99667358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03487135 288.99667358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03487136 288.99670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03487137 288.99670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03487138 288.99673462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03487139 288.99673462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03487140 288.99676514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03487141 288.99676514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03487142 288.99679565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03487143 288.99679565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03487144 288.99682617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03487145 288.99682617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03487146 288.99682617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03487147 288.99685669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03487148 288.99688721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03487149 288.99688721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03487150 288.99691772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03487151 288.99691772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03487152 288.99694824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03487153 288.99694824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03487154 288.99697876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03487155 288.99697876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03487156 288.99697876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03487157 288.99697876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03487158 288.99700928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03487159 288.99700928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03487160 288.99703979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03487161 288.99703979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03487162 288.99707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03487163 288.99707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03487164 288.99710083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03487165 288.99710083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03487166 288.99713135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03487167 288.99713135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03487168 288.99716187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03487169 288.99716187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03487170 288.99719238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03487171 288.99719238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03487172 288.99722290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03487173 288.99722290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03487174 288.99725342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03487175 288.99725342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03487176 288.99728394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03487177 288.99728394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03487178 288.99731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03487179 288.99731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03487180 288.99731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03487181 288.99731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03487182 288.99734497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03487183 288.99734497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03487184 288.99737549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03487185 288.99737549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03487186 288.99740601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03487187 288.99743652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03487188 288.99746704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03487189 288.99746704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03487190 288.99746704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03487191 288.99746704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03487192 288.99749756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03487193 288.99749756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03487194 288.99752808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03487195 288.99752808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03487196 288.99755859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03487197 288.99755859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03487198 288.99758911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03487199 288.99758911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03487200 288.99761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03487201 288.99761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03487202 288.99761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03487203 288.99761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03487204 288.99765015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03487205 288.99765015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03487206 288.99768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03487207 288.99768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03487208 288.99771118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03487209 288.99774170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03487210 288.99777222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03487211 288.99777222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03487212 288.99777222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03487213 288.99777222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03487214 288.99780273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03487215 288.99780273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03487216 288.99783325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03487217 288.99783325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03487218 288.99786377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03487219 288.99786377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03487220 288.99789429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03487221 288.99789429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03487222 288.99792480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03487223 288.99792480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03487224 288.99792480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03487225 288.99792480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03487226 288.99795532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03487227 288.99798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03487228 288.99801636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03487229 288.99801636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03487230 288.99804688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03487231 288.99804688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03487232 288.99807739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03487233 288.99807739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03487234 288.99810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03487235 288.99810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03487236 288.99810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03487237 288.99810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03487238 288.99813843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03487239 288.99813843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03487240 288.99816895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03487241 288.99816895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03487242 288.99819946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03487243 288.99819946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03487244 288.99822998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03487245 288.99826050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03487246 288.99826050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03487247 288.99826050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03487248 288.99829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03487249 288.99829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03487250 288.99832153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03487251 288.99832153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03487252 288.99835205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03487253 288.99835205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03487254 288.99838257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03487255 288.99838257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03487256 288.99841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03487257 288.99841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03487258 288.99841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03487259 288.99841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03487260 288.99844360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03487261 288.99844360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03487262 288.99847412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03487263 288.99847412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03487264 288.99850464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03487265 288.99853516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03487266 288.99856567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03487267 288.99856567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03487268 288.99856567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03487269 288.99856567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03487270 288.99859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03487271 288.99859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03487272 288.99862671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03487273 288.99862671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03487274 288.99865723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03487275 288.99865723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03487276 288.99868774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03487277 288.99868774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03487278 288.99871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03487279 288.99871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03487280 288.99871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03487281 288.99871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03487282 288.99874878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03487283 288.99874878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03487284 288.99877930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03487285 288.99880981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03487286 288.99884033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03487287 288.99884033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03487288 288.99887085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03487289 288.99887085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03487290 288.99890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03487291 288.99890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03487292 288.99890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03487293 288.99890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03487294 288.99893188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03487295 288.99893188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03487296 288.99896240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03487297 288.99896240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03487298 288.99899292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03487299 288.99899292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03487300 288.99902344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03487301 288.99902344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03487302 288.99905396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03487303 288.99905396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03487304 288.99905396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03487305 288.99905396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03487306 288.99908447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03487307 288.99911499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03487308 288.99914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03487309 288.99914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03487310 288.99917603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03487311 288.99917603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03487312 288.99920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03487313 288.99920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03487314 288.99920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03487315 288.99920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03487316 288.99923706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03487317 288.99923706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03487318 288.99926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03487319 288.99926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03487320 288.99929810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03487321 288.99929810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03487322 288.99932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03487323 288.99932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03487324 288.99935913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03487325 288.99935913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03487326 288.99935913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03487327 288.99938965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03487328 288.99942017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03487329 288.99942017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03487330 288.99945068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03487331 288.99945068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03487332 288.99948120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03487333 288.99948120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03487334 288.99951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03487335 288.99951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03487336 288.99951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03487337 288.99951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03487338 288.99954224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03487339 288.99954224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03487340 288.99957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03487341 288.99957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03487342 288.99960327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03487343 288.99960327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03487344 288.99963379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03487345 288.99963379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03487346 288.99966431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03487347 288.99966431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03487348 288.99969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03487349 288.99969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03487350 288.99972534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03487351 288.99972534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03487352 288.99975586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03487353 288.99975586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03487354 288.99978638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03487355 288.99978638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03487356 288.99981689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03487357 288.99981689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03487358 288.99984741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03487359 288.99984741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03487360 288.99984741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03487361 288.99984741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03487362 288.99987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03487363 288.99987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03487364 288.99990845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03487365 288.99993896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03487366 288.99996948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03487367 288.99996948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03487368 289.00000000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03487369 289.00000000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03487370 289.00000000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03487371 289.00000000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03487372 289.00003052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03487373 289.00003052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03487374 289.00006104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03487375 289.00006104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03487376 289.00009155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03487377 289.00009155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03487378 289.00012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03487379 289.00012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03487380 289.00015259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03487381 289.00015259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03487382 289.00015259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03487383 289.00015259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03487384 289.00018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03487385 289.00018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03487386 289.00021362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03487387 289.00024414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03487388 289.00027466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03487389 289.00027466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03487390 289.00030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03487391 289.00030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03487392 289.00030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03487393 289.00030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03487394 289.00033569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03487395 289.00033569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03487396 289.00036621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03487397 289.00036621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03487398 289.00039673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03487399 289.00039673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03487400 289.00042725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03487401 289.00042725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03487402 289.00045776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03487403 289.00045776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03487404 289.00048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03487405 289.00048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03487406 289.00048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03487407 289.00051880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03487408 289.00054932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03487409 289.00054932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03487410 289.00057983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03487411 289.00057983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03487412 289.00061035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03487413 289.00061035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03487414 289.00064087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03487415 289.00064087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03487416 289.00064087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03487417 289.00064087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03487418 289.00067139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03487419 289.00067139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03487420 289.00070190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03487421 289.00070190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03487422 289.00073242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03487423 289.00073242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03487424 289.00076294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03487425 289.00076294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03487426 289.00079346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03487427 289.00079346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03487428 289.00082397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03487429 289.00082397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03487430 289.00085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03487431 289.00085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03487432 289.00088501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03487433 289.00088501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03487434 289.00091553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03487435 289.00091553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03487436 289.00094604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03487437 289.00094604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03487438 289.00094604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03487439 289.00094604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03487440 289.00097656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03487441 289.00097656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03487442 289.00100708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03487443 289.00100708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03487444 289.00103760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03487445 289.00103760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03487446 289.00106812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03487447 289.00106812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03487448 289.00109863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03487449 289.00109863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03487450 289.00112915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03487451 289.00112915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03487452 289.00115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03487453 289.00115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03487454 289.00119019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03487455 289.00119019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03487456 289.00122070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03487457 289.00122070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03487458 289.00125122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03487459 289.00125122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03487460 289.00128174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03487461 289.00128174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03487462 289.00128174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03487463 289.00128174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03487464 289.00131226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03487465 289.00131226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03487466 289.00134277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03487467 289.00134277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03487468 289.00137329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03487469 289.00140381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03487470 289.00143433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03487471 289.00143433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03487472 289.00143433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03487473 289.00143433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03487474 289.00146484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03487475 289.00146484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03487476 289.00149536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03487477 289.00149536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03487478 289.00152588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03487479 289.00152588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03487480 289.00155640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03487481 289.00155640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03487482 289.00158691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03487483 289.00158691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03487484 289.00158691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03487485 289.00158691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03487486 289.00161743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03487487 289.00161743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03487488 289.00164795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03487489 289.00164795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03487490 289.00170898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03487491 289.00170898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03487492 289.00173950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03487493 289.00173950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03487494 289.00173950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03487495 289.00173950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03487496 289.00177002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03487497 289.00177002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03487498 289.00180054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03487499 289.00180054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03487500 289.00183105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03487501 289.00183105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03487502 289.00186157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03487503 289.00186157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03487504 289.00189209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03487505 289.00189209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03487506 289.00189209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03487507 289.00189209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03487508 289.00192261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03487509 289.00192261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03487510 289.00195313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03487511 289.00198364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03487512 289.00201416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03487513 289.00201416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03487514 289.00204468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03487515 289.00204468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03487516 289.00207520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03487517 289.00207520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03487518 289.00207520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03487519 289.00207520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03487520 289.00210571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03487521 289.00210571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03487522 289.00213623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03487523 289.00213623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03487524 289.00216675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03487525 289.00216675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03487526 289.00219727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03487527 289.00219727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03487528 289.00222778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03487529 289.00222778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03487530 289.00222778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03487531 289.00225830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03487532 289.00228882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03487533 289.00228882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03487534 289.00231934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03487535 289.00231934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03487536 289.00234985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03487537 289.00234985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03487538 289.00238037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03487539 289.00238037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03487540 289.00238037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03487541 289.00238037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03487542 289.00241089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03487543 289.00241089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03487544 289.00244141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03487545 289.00244141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03487546 289.00247192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03487547 289.00247192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03487548 289.00250244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03487549 289.00250244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03487550 289.00253296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03487551 289.00253296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03487552 289.00256348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03487553 289.00256348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03487554 289.00259399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03487555 289.00259399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03487556 289.00262451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03487557 289.00262451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03487558 289.00265503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03487559 289.00265503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03487560 289.00268555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03487561 289.00268555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03487562 289.00268555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03487563 289.00268555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03487564 289.00271606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03487565 289.00271606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03487566 289.00274658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03487567 289.00274658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03487568 289.00277710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03487569 289.00277710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03487570 289.00280762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03487571 289.00280762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03487572 289.00283813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03487573 289.00286865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03487574 289.00286865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03487575 289.00286865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03487576 289.00289917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03487577 289.00289917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03487578 289.00292969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03487579 289.00292969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03487580 289.00296021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03487581 289.00296021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03487582 289.00299072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03487583 289.00299072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03487584 289.00302124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03487585 289.00302124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03487586 289.00302124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03487587 289.00302124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03487588 289.00305176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03487589 289.00305176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03487590 289.00308228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03487591 289.00308228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03487592 289.00311279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03487593 289.00314331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03487594 289.00317383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03487595 289.00317383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03487596 289.00317383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03487597 289.00317383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03487598 289.00320435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03487599 289.00320435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03487600 289.00323486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03487601 289.00323486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03487602 289.00326538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03487603 289.00326538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03487604 289.00329590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03487605 289.00329590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03487606 289.00332642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03487607 289.00332642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03487608 289.00332642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03487609 289.00332642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03487610 289.00335693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03487611 289.00335693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03487612 289.00341797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03487613 289.00341797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03487614 289.00344849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03487615 289.00344849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03487616 289.00347900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03487617 289.00347900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03487618 289.00350952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03487619 289.00350952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03487620 289.00350952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03487621 289.00350952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03487622 289.00354004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03487623 289.00354004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03487624 289.00357056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03487625 289.00357056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03487626 289.00360107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03487627 289.00360107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03487628 289.00363159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03487629 289.00363159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03487630 289.00366211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03487631 289.00366211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03487632 289.00369263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03487633 289.00369263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03487634 289.00372314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03487635 289.00372314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03487636 289.00375366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03487637 289.00375366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03487638 289.00378418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03487639 289.00378418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03487640 289.00381470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03487641 289.00381470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03487642 289.00381470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03487643 289.00381470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03487644 289.00384521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03487645 289.00384521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03487646 289.00387573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03487647 289.00387573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03487648 289.00390625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03487649 289.00393677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03487650 289.00396729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03487651 289.00396729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03487652 289.00396729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03487653 289.00396729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03487654 289.00399780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03487655 289.00399780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03487656 289.00402832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03487657 289.00402832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03487658 289.00405884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03487659 289.00405884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03487660 289.00408936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03487661 289.00408936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03487662 289.00411987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03487663 289.00411987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03487664 289.00411987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03487665 289.00411987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03487666 289.00415039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03487667 289.00415039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03487668 289.00418091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03487669 289.00421143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03487670 289.00424194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03487671 289.00424194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03487672 289.00427246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03487673 289.00427246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03487674 289.00430298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03487675 289.00430298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03487676 289.00430298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03487677 289.00430298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03487678 289.00433350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03487679 289.00433350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03487680 289.00436401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03487681 289.00436401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03487682 289.00439453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03487683 289.00439453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03487684 289.00442505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03487685 289.00442505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03487686 289.00445557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03487687 289.00445557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03487688 289.00445557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03487689 289.00448608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03487690 289.00451660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03487691 289.00451660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03487692 289.00454712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03487693 289.00454712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03487694 289.00457764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03487695 289.00457764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03487696 289.00460815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03487697 289.00460815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03487698 289.00460815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03487699 289.00460815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03487700 289.00463867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03487701 289.00463867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03487702 289.00466919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03487703 289.00466919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03487704 289.00469971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03487705 289.00469971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03487706 289.00473022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03487707 289.00473022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03487708 289.00476074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03487709 289.00476074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03487710 289.00479126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03487711 289.00479126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03487712 289.00482178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03487713 289.00482178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03487714 289.00485229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03487715 289.00485229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03487716 289.00488281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03487717 289.00488281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03487718 289.00491333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03487719 289.00491333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03487720 289.00491333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03487721 289.00491333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03487722 289.00494385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03487723 289.00494385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03487724 289.00497437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03487725 289.00497437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03487726 289.00500488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03487727 289.00500488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03487728 289.00503540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03487729 289.00506592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03487730 289.00509644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03487731 289.00509644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03487732 289.00509644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03487733 289.00509644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03487734 289.00512695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03487735 289.00512695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03487736 289.00515747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03487737 289.00515747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03487738 289.00518799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03487739 289.00518799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03487740 289.00521851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03487741 289.00521851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03487742 289.00524902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03487743 289.00524902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03487744 289.00524902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03487745 289.00524902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03487746 289.00527954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03487747 289.00527954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03487748 289.00531006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03487749 289.00534058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03487750 289.00537109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03487751 289.00537109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03487752 289.00540161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03487753 289.00540161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03487754 289.00540161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03487755 289.00540161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03487756 289.00543213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03487757 289.00543213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03487758 289.00546265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03487759 289.00546265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03487760 289.00549316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03487761 289.00549316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03487762 289.00552368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03487763 289.00552368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03487764 289.00555420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03487765 289.00555420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03487766 289.00555420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03487767 289.00555420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03487768 289.00558472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03487769 289.00561523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03487770 289.00564575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03487771 289.00564575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03487772 289.00567627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03487773 289.00567627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03487774 289.00570679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03487775 289.00570679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03487776 289.00570679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03487777 289.00570679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03487778 289.00573730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03487779 289.00573730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03487780 289.00576782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03487781 289.00576782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03487782 289.00579834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03487783 289.00579834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03487784 289.00582886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03487785 289.00582886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03487786 289.00585938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03487787 289.00585938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03487788 289.00588989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03487789 289.00588989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03487790 289.00592041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03487791 289.00592041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03487792 289.00595093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03487793 289.00595093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03487794 289.00598145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03487795 289.00598145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03487796 289.00601196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03487797 289.00601196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03487798 289.00604248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03487799 289.00604248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03487800 289.00604248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03487801 289.00604248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03487802 289.00607300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03487803 289.00607300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03487804 289.00610352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03487805 289.00610352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03487806 289.00613403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03487807 289.00613403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03487808 289.00616455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03487809 289.00616455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03487810 289.00619507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03487811 289.00619507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03487812 289.00622559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03487813 289.00622559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03487814 289.00625610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03487815 289.00625610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03487816 289.00628662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03487817 289.00628662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03487818 289.00631714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03487819 289.00631714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03487820 289.00634766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03487821 289.00634766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03487822 289.00634766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03487823 289.00634766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03487824 289.00637817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03487825 289.00637817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03487826 289.00640869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03487827 289.00640869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03487828 289.00643921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03487829 289.00643921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03487830 289.00646973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03487831 289.00650024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03487832 289.00650024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03487833 289.00650024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03487834 289.00653076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03487835 289.00653076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03487836 289.00656128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03487837 289.00656128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03487838 289.00659180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03487839 289.00659180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03487840 289.00662231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03487841 289.00662231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03487842 289.00665283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03487843 289.00665283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03487844 289.00668335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03487845 289.00668335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03487846 289.00668335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03487847 289.00668335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03487848 289.00671387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03487849 289.00671387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03487850 289.00674438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03487851 289.00677490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03487852 289.00680542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03487853 289.00680542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03487854 289.00683594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03487855 289.00683594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03487856 289.00683594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03487857 289.00683594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03487858 289.00686646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03487859 289.00686646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03487860 289.00689697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03487861 289.00689697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03487862 289.00692749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03487863 289.00692749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03487864 289.00695801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03487865 289.00695801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03487866 289.00698853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03487867 289.00698853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03487868 289.00698853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03487869 289.00698853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03487870 289.00701904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03487871 289.00701904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03487872 289.00704956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03487873 289.00708008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03487874 289.00711060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03487875 289.00711060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03487876 289.00714111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03487877 289.00714111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03487878 289.00714111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03487879 289.00714111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03487880 289.00717163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03487881 289.00717163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03487882 289.00720215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03487883 289.00720215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03487884 289.00723267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03487885 289.00723267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03487886 289.00726318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03487887 289.00726318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03487888 289.00729370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03487889 289.00729370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03487890 289.00729370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03487891 289.00729370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03487892 289.00732422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03487893 289.00735474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03487894 289.00738525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03487895 289.00738525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03487896 289.00741577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03487897 289.00741577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03487898 289.00744629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03487899 289.00744629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03487900 289.00747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03487901 289.00747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03487902 289.00747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03487903 289.00747681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03487904 289.00750732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03487905 289.00750732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03487906 289.00753784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03487907 289.00753784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03487908 289.00756836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03487909 289.00756836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03487910 289.00759888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03487911 289.00759888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03487912 289.00762939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03487913 289.00762939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03487914 289.00765991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03487915 289.00765991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03487916 289.00769043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03487917 289.00769043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03487918 289.00772095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03487919 289.00772095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03487920 289.00775146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03487921 289.00775146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03487922 289.00778198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03487923 289.00778198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03487924 289.00778198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03487925 289.00778198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03487926 289.00781250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03487927 289.00781250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03487928 289.00784302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03487929 289.00784302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03487930 289.00787354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03487931 289.00787354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03487932 289.00790405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03487933 289.00793457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03487934 289.00793457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03487935 289.00793457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03487936 289.00796509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03487937 289.00796509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03487938 289.00799561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03487939 289.00799561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03487940 289.00802612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03487941 289.00802612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03487942 289.00805664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03487943 289.00805664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03487944 289.00808716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03487945 289.00808716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03487946 289.00808716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03487947 289.00808716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03487948 289.00811768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03487949 289.00811768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03487950 289.00814819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03487951 289.00817871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03487952 289.00820923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03487953 289.00820923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03487954 289.00823975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03487955 289.00823975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03487956 289.00827026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03487957 289.00827026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03487958 289.00827026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03487959 289.00827026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03487960 289.00830078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03487961 289.00830078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03487962 289.00833130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03487963 289.00833130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03487964 289.00836182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03487965 289.00839233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03487966 289.00842285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03487967 289.00842285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03487968 289.00842285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03487969 289.00842285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03487970 289.00845337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03487971 289.00845337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03487972 289.00848389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03487973 289.00848389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03487974 289.00851440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03487975 289.00851440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03487976 289.00854492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03487977 289.00854492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03487978 289.00857544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03487979 289.00857544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03487980 289.00857544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03487981 289.00857544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03487982 289.00860596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03487983 289.00860596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03487984 289.00863647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03487985 289.00866699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03487986 289.00869751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03487987 289.00869751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03487988 289.00872803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03487989 289.00872803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03487990 289.00872803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03487991 289.00872803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03487992 289.00875854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03487993 289.00875854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03487994 289.00878906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03487995 289.00878906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03487996 289.00881958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03487997 289.00881958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03487998 289.00885010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03487999 289.00885010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03488000 289.00888062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03488001 289.00888062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03488002 289.00891113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03488003 289.00891113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03488004 289.00891113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03488005 289.00894165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03488006 289.00897217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03488007 289.00897217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03488008 289.00900269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03488009 289.00900269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03488010 289.00903320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03488011 289.00903320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03488012 289.00906372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03488013 289.00906372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03488014 289.00906372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03488015 289.00906372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03488016 289.00909424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03488017 289.00909424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03488018 289.00912476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03488019 289.00912476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03488020 289.00915527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03488021 289.00915527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03488022 289.00918579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03488023 289.00918579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03488024 289.00921631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03488025 289.00921631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03488026 289.00924683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03488027 289.00924683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03488028 289.00927734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03488029 289.00927734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03488030 289.00930786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03488031 289.00930786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03488032 289.00933838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03488033 289.00933838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03488034 289.00936890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03488035 289.00936890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03488036 289.00936890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03488037 289.00936890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03488038 289.00939941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03488039 289.00939941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03488040 289.00942993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03488041 289.00942993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03488042 289.00946045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03488043 289.00946045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03488044 289.00949097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03488045 289.00952148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03488046 289.00952148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03488047 289.00952148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03488048 289.00955200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03488049 289.00955200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03488050 289.00958252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03488051 289.00958252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03488052 289.00961304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03488053 289.00961304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03488054 289.00964355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03488055 289.00964355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03488056 289.00967407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03488057 289.00967407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03488058 289.00970459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03488059 289.00970459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03488060 289.00970459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03488061 289.00970459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03488062 289.00973511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03488063 289.00973511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03488064 289.00976563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03488065 289.00979614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03488066 289.00982666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03488067 289.00982666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03488068 289.00985718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03488069 289.00985718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03488070 289.00985718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03488071 289.00985718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03488072 289.00988770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03488073 289.00988770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03488074 289.00991821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03488075 289.00991821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03488076 289.00994873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03488077 289.00994873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03488078 289.00997925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03488079 289.00997925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03488080 289.01000977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03488081 289.01000977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03488082 289.01000977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03488083 289.01000977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03488084 289.01004028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03488085 289.01007080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03488086 289.01010132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03488087 289.01010132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03488088 289.01013184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03488089 289.01013184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03488090 289.01016235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03488091 289.01016235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03488092 289.01016235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03488093 289.01016235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03488094 289.01019287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03488095 289.01019287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03488096 289.01022339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03488097 289.01022339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03488098 289.01025391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03488099 289.01025391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03488100 289.01028442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03488101 289.01028442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03488102 289.01031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03488103 289.01031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03488104 289.01031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03488105 289.01034546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03488106 289.01037598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03488107 289.01037598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03488108 289.01040649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03488109 289.01040649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03488110 289.01043701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03488111 289.01043701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03488112 289.01046753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03488113 289.01046753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03488114 289.01049805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03488115 289.01049805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03488116 289.01049805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03488117 289.01049805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03488118 289.01052856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03488119 289.01052856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03488120 289.01055908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03488121 289.01055908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03488122 289.01058960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03488123 289.01058960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03488124 289.01062012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03488125 289.01065063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03488126 289.01065063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03488127 289.01065063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03488128 289.01068115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03488129 289.01068115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03488130 289.01071167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03488131 289.01071167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03488132 289.01074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03488133 289.01074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03488134 289.01077271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03488135 289.01077271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03488136 289.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03488137 289.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03488138 289.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03488139 289.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03488140 289.01083374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03488141 289.01083374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03488142 289.01086426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03488143 289.01086426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03488144 289.01089478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03488145 289.01089478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03488146 289.01092529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03488147 289.01095581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03488148 289.01095581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03488149 289.01095581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03488150 289.01098633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03488151 289.01098633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03488152 289.01101685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03488153 289.01101685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03488154 289.01104736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03488155 289.01104736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03488156 289.01107788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03488157 289.01107788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03488158 289.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03488159 289.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03488160 289.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03488161 289.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03488162 289.01113892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03488163 289.01113892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03488164 289.01116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03488165 289.01116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03488166 289.01119995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03488167 289.01123047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03488168 289.01126099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03488169 289.01126099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03488170 289.01129150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03488171 289.01129150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03488172 289.01129150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03488173 289.01129150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03488174 289.01132202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03488175 289.01132202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03488176 289.01135254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03488177 289.01135254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03488178 289.01138306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03488179 289.01138306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03488180 289.01141357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03488181 289.01141357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03488182 289.01144409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03488183 289.01144409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03488184 289.01144409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03488185 289.01144409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03488186 289.01147461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03488187 289.01150513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03488188 289.01153564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03488189 289.01153564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03488190 289.01156616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03488191 289.01156616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03488192 289.01159668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03488193 289.01159668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03488194 289.01159668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03488195 289.01159668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03488196 289.01162720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03488197 289.01162720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03488198 289.01165771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03488199 289.01165771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03488200 289.01168823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03488201 289.01168823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03488202 289.01171875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03488203 289.01171875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03488204 289.01174927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03488205 289.01174927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03488206 289.01174927 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03488207 289.01177979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03488208 289.01181030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03488209 289.01181030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03488210 289.01184082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03488211 289.01184082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03488212 289.01187134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03488213 289.01187134 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03488214 289.01190186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03488215 289.01190186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03488216 289.01190186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03488217 289.01190186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03488218 289.01193237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03488219 289.01193237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03488220 289.01196289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03488221 289.01196289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03488222 289.01199341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03488223 289.01199341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03488224 289.01202393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03488225 289.01202393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03488226 289.01205444 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03488227 289.01208496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03488228 289.01208496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03488229 289.01208496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03488230 289.01211548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03488231 289.01211548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03488232 289.01214600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03488233 289.01214600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03488234 289.01217651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03488235 289.01217651 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03488236 289.01220703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03488237 289.01220703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03488238 289.01223755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03488239 289.01223755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03488240 289.01223755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03488241 289.01223755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03488242 289.01226807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03488243 289.01226807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03488244 289.01229858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03488245 289.01229858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03488246 289.01232910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03488247 289.01235962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03488248 289.01239014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03488249 289.01239014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03488250 289.01239014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03488251 289.01239014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03488252 289.01242065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03488253 289.01242065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03488254 289.01245117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03488255 289.01245117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03488256 289.01248169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03488257 289.01248169 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03488258 289.01251221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03488259 289.01251221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03488260 289.01254272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03488261 289.01254272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03488262 289.01254272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03488263 289.01254272 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03488264 289.01257324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03488265 289.01257324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03488266 289.01260376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03488267 289.01260376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03488268 289.01263428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03488269 289.01266479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03488270 289.01269531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03488271 289.01269531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03488272 289.01269531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03488273 289.01269531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03488274 289.01272583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03488275 289.01272583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03488276 289.01275635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03488277 289.01275635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03488278 289.01278687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03488279 289.01278687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03488280 289.01281738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03488281 289.01281738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03488282 289.01284790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03488283 289.01284790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03488284 289.01287842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03488285 289.01287842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03488286 289.01287842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03488287 289.01287842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03488288 289.01290894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03488289 289.01293945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03488290 289.01296997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03488291 289.01296997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03488292 289.01300049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03488293 289.01300049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03488294 289.01303101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03488295 289.01303101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03488296 289.01303101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03488297 289.01303101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03488298 289.01306152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03488299 289.01306152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03488300 289.01309204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03488301 289.01309204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03488302 289.01312256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03488303 289.01312256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03488304 289.01315308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03488305 289.01315308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03488306 289.01318359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03488307 289.01318359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03488308 289.01318359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03488309 289.01321411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03488310 289.01324463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03488311 289.01324463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03488312 289.01327515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03488313 289.01327515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03488314 289.01330566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03488315 289.01330566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03488316 289.01333618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03488317 289.01333618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03488318 289.01333618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03488319 289.01333618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03488320 289.01336670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03488321 289.01336670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03488322 289.01339722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03488323 289.01339722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03488324 289.01342773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03488325 289.01342773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03488326 289.01345825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03488327 289.01348877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03488328 289.01348877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03488329 289.01348877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03488330 289.01351929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03488331 289.01351929 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03488332 289.01354980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03488333 289.01354980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03488334 289.01358032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03488335 289.01358032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03488336 289.01361084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03488337 289.01361084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03488338 289.01364136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03488339 289.01364136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03488340 289.01367188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03488341 289.01367188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03488342 289.01367188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03488343 289.01367188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03488344 289.01370239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03488345 289.01373291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03488346 289.01376343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03488347 289.01376343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03488348 289.01379395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03488349 289.01379395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03488350 289.01382446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03488351 289.01382446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03488352 289.01382446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03488353 289.01382446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03488354 289.01385498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03488355 289.01385498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03488356 289.01388550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03488357 289.01388550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03488358 289.01391602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03488359 289.01391602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03488360 289.01394653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03488361 289.01394653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03488362 289.01397705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03488363 289.01397705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03488364 289.01397705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03488365 289.01400757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03488366 289.01403809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03488367 289.01403809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03488368 289.01406860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03488369 289.01406860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03488370 289.01409912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03488371 289.01409912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03488372 289.01412964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03488373 289.01412964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03488374 289.01412964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03488375 289.01412964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03488376 289.01416016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03488377 289.01416016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03488378 289.01419067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03488379 289.01419067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03488380 289.01425171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03488381 289.01425171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03488382 289.01428223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03488383 289.01428223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03488384 289.01431274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03488385 289.01431274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03488386 289.01434326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03488387 289.01434326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03488388 289.01437378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03488389 289.01437378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03488390 289.01440430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03488391 289.01440430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03488392 289.01443481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03488393 289.01443481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03488394 289.01446533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03488395 289.01446533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03488396 289.01449585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03488397 289.01449585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03488398 289.01452637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03488399 289.01452637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03488400 289.01455688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03488401 289.01455688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03488402 289.01458740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03488403 289.01458740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03488404 289.01461792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03488405 289.01461792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03488406 289.01461792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03488407 289.01461792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03488408 289.01464844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03488409 289.01464844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03488410 289.01467896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03488411 289.01467896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03488412 289.01470947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03488413 289.01470947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03488414 289.01473999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03488415 289.01477051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03488416 289.01477051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03488417 289.01477051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03488418 289.01480103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03488419 289.01480103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03488420 289.01483154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03488421 289.01483154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03488422 289.01486206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03488423 289.01486206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03488424 289.01489258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03488425 289.01489258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03488426 289.01492310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03488427 289.01492310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03488428 289.01492310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03488429 289.01492310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03488430 289.01495361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03488431 289.01495361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03488432 289.01498413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03488433 289.01501465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03488434 289.01504517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03488435 289.01504517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03488436 289.01507568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03488437 289.01507568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03488438 289.01510620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03488439 289.01510620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03488440 289.01510620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03488441 289.01510620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03488442 289.01513672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03488443 289.01513672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03488444 289.01516724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03488445 289.01516724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03488446 289.01519775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03488447 289.01519775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03488448 289.01522827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03488449 289.01522827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03488450 289.01525879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03488451 289.01525879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03488452 289.01528931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03488453 289.01528931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03488454 289.01531982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03488455 289.01531982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03488456 289.01541138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03488457 289.01541138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03488458 289.01541138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03488459 289.01541138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03488460 289.01544189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03488461 289.01544189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03488462 289.01547241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03488463 289.01547241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03488464 289.01550293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03488465 289.01550293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03488466 289.01553345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03488467 289.01553345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03488468 289.01556396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03488469 289.01556396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03488470 289.01559448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03488471 289.01559448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03488472 289.01562500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03488473 289.01562500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03488474 289.01565552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03488475 289.01565552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03488476 289.01568604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03488477 289.01568604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03488478 289.01571655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03488479 289.01571655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03488480 289.01571655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03488481 289.01571655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03488482 289.01574707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03488483 289.01574707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03488484 289.01577759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03488485 289.01577759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03488486 289.01580811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03488487 289.01583862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03488488 289.01586914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03488489 289.01586914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03488490 289.01589966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03488491 289.01589966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03488492 289.01589966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03488493 289.01589966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03488494 289.01593018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03488495 289.01593018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03488496 289.01596069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03488497 289.01596069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03488498 289.01599121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03488499 289.01599121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03488500 289.01602173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03488501 289.01602173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03488502 289.01605225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03488503 289.01605225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03488504 289.01605225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03488505 289.01605225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03488506 289.01611328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03488507 289.01611328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03488508 289.01614380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03488509 289.01614380 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03488510 289.01617432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03488511 289.01617432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03488512 289.01620483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03488513 289.01620483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03488514 289.01620483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03488515 289.01620483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03488516 289.01623535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03488517 289.01623535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03488518 289.01626587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03488519 289.01626587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03488520 289.01629639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03488521 289.01629639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03488522 289.01632690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03488523 289.01632690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03488524 289.01635742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03488525 289.01635742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03488526 289.01638794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03488527 289.01638794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03488528 289.01641846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03488529 289.01641846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03488530 289.01644897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03488531 289.01644897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03488532 289.01647949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03488533 289.01647949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03488534 289.01651001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03488535 289.01651001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03488536 289.01651001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03488537 289.01651001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03488538 289.01654053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03488539 289.01654053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03488540 289.01657104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03488541 289.01657104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03488542 289.01660156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03488543 289.01663208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03488544 289.01666260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03488545 289.01666260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03488546 289.01669312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03488547 289.01669312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03488548 289.01669312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03488549 289.01669312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03488550 289.01672363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03488551 289.01672363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03488552 289.01675415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03488553 289.01675415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03488554 289.01678467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03488555 289.01678467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03488556 289.01681519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03488557 289.01681519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03488558 289.01684570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03488559 289.01684570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03488560 289.01684570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03488561 289.01684570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03488562 289.01687622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03488563 289.01690674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03488564 289.01693726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03488565 289.01693726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03488566 289.01696777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03488567 289.01696777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03488568 289.01699829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03488569 289.01699829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03488570 289.01699829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03488571 289.01699829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03488572 289.01702881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03488573 289.01702881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03488574 289.01705933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03488575 289.01705933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03488576 289.01708984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03488577 289.01708984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03488578 289.01712036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03488579 289.01712036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03488580 289.01715088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03488581 289.01715088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03488582 289.01715088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03488583 289.01718140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03488584 289.01721191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03488585 289.01721191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03488586 289.01724243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03488587 289.01724243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03488588 289.01727295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03488589 289.01727295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03488590 289.01730347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03488591 289.01730347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03488592 289.01730347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03488593 289.01730347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03488594 289.01733398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03488595 289.01733398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03488596 289.01736450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03488597 289.01736450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03488598 289.01739502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03488599 289.01739502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03488600 289.01742554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03488601 289.01742554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03488602 289.01745605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03488603 289.01748657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03488604 289.01748657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03488605 289.01748657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03488606 289.01751709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03488607 289.01751709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03488608 289.01754761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03488609 289.01754761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03488610 289.01757813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03488611 289.01757813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03488612 289.01760864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03488613 289.01760864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03488614 289.01763916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03488615 289.01763916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03488616 289.01763916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03488617 289.01763916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03488618 289.01766968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03488619 289.01766968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03488620 289.01770020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03488621 289.01770020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03488622 289.01773071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03488623 289.01776123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03488624 289.01779175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03488625 289.01779175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03488626 289.01779175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03488627 289.01779175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03488628 289.01782227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03488629 289.01782227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03488630 289.01785278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03488631 289.01785278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03488632 289.01788330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03488633 289.01788330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03488634 289.01791382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03488635 289.01791382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03488636 289.01794434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03488637 289.01794434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03488638 289.01794434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03488639 289.01794434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03488640 289.01797485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03488641 289.01800537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03488642 289.01803589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03488643 289.01803589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03488644 289.01806641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03488645 289.01806641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03488646 289.01809692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03488647 289.01809692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03488648 289.01809692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03488649 289.01809692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03488650 289.01812744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03488651 289.01812744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03488652 289.01815796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03488653 289.01815796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03488654 289.01818848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03488655 289.01818848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03488656 289.01821899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03488657 289.01821899 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03488658 289.01824951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03488659 289.01824951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03488660 289.01828003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03488661 289.01828003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03488662 289.01828003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03488663 289.01831055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03488664 289.01834106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03488665 289.01834106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03488666 289.01837158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03488667 289.01837158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03488668 289.01840210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03488669 289.01840210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03488670 289.01843262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03488671 289.01843262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03488672 289.01843262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03488673 289.01843262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03488674 289.01846313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03488675 289.01846313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03488676 289.01849365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03488677 289.01849365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03488678 289.01852417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03488679 289.01852417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03488680 289.01855469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03488681 289.01855469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03488682 289.01858521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03488683 289.01858521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03488684 289.01861572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03488685 289.01861572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03488686 289.01864624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03488687 289.01864624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03488688 289.01867676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03488689 289.01867676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03488690 289.01870728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03488691 289.01870728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03488692 289.01873779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03488693 289.01873779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03488694 289.01873779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03488695 289.01873779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03488696 289.01876831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03488697 289.01876831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03488698 289.01879883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03488699 289.01882935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03488700 289.01885986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03488701 289.01885986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03488702 289.01889038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03488703 289.01889038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03488704 289.01889038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03488705 289.01889038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03488706 289.01892090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03488707 289.01892090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03488708 289.01895142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03488709 289.01895142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03488710 289.01898193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03488711 289.01898193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03488712 289.01901245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03488713 289.01901245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03488714 289.01904297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03488715 289.01904297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03488716 289.01907349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03488717 289.01907349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03488718 289.01907349 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03488719 289.01910400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03488720 289.01913452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03488721 289.01913452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03488722 289.01916504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03488723 289.01916504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03488724 289.01919556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03488725 289.01919556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03488726 289.01922607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03488727 289.01922607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03488728 289.01922607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03488729 289.01922607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03488730 289.01925659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03488731 289.01925659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03488732 289.01928711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03488733 289.01928711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03488734 289.01931763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03488735 289.01931763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03488736 289.01934814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03488737 289.01937866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03488738 289.01937866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03488739 289.01937866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03488740 289.01940918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03488741 289.01940918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03488742 289.01943970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03488743 289.01943970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03488744 289.01947021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03488745 289.01947021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03488746 289.01950073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03488747 289.01950073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03488748 289.01953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03488749 289.01953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03488750 289.01953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03488751 289.01953125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03488752 289.01956177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03488753 289.01956177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03488754 289.01959229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03488755 289.01959229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03488756 289.01962280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03488757 289.01962280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03488758 289.01965332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03488759 289.01968384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03488760 289.01971436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03488761 289.01971436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03488762 289.01971436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03488763 289.01971436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03488764 289.01974487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03488765 289.01974487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03488766 289.01977539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03488767 289.01977539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03488768 289.01980591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03488769 289.01980591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03488770 289.01983643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03488771 289.01983643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03488772 289.01986694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03488773 289.01986694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03488774 289.01986694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03488775 289.01986694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03488776 289.01989746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03488777 289.01992798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03488778 289.01995850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03488779 289.01995850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03488780 289.01998901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03488781 289.01998901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03488782 289.02001953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03488783 289.02001953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03488784 289.02001953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03488785 289.02001953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03488786 289.02005005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03488787 289.02005005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03488788 289.02008057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03488789 289.02008057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03488790 289.02011108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03488791 289.02011108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03488792 289.02014160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03488793 289.02014160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03488794 289.02017212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03488795 289.02017212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03488796 289.02017212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03488797 289.02020264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03488798 289.02023315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03488799 289.02023315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03488800 289.02026367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03488801 289.02026367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03488802 289.02029419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03488803 289.02029419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03488804 289.02032471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03488805 289.02032471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03488806 289.02032471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03488807 289.02032471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03488808 289.02035522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03488809 289.02035522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03488810 289.02038574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03488811 289.02038574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03488812 289.02041626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03488813 289.02041626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03488814 289.02044678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03488815 289.02044678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03488816 289.02047729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03488817 289.02050781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03488818 289.02050781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03488819 289.02050781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03488820 289.02053833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03488821 289.02053833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03488822 289.02056885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03488823 289.02056885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03488824 289.02059937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03488825 289.02059937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03488826 289.02062988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03488827 289.02062988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03488828 289.02066040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03488829 289.02066040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03488830 289.02066040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03488831 289.02066040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03488832 289.02069092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03488833 289.02069092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03488834 289.02072144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03488835 289.02072144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03488836 289.02075195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03488837 289.02078247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03488838 289.02078247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03488839 289.02081299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03488840 289.02081299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03488841 289.02081299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03488842 289.02084351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03488843 289.02084351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03488844 289.02087402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03488845 289.02087402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03488846 289.02090454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03488847 289.02090454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03488848 289.02093506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03488849 289.02093506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03488850 289.02096558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03488851 289.02096558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03488852 289.02096558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03488853 289.02096558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03488854 289.02099609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03488855 289.02099609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03488856 289.02102661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03488857 289.02102661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03488858 289.02105713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03488859 289.02108765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03488860 289.02111816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03488861 289.02111816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03488862 289.02111816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03488863 289.02111816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03488864 289.02114868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03488865 289.02114868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03488866 289.02117920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03488867 289.02117920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03488868 289.02120972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03488869 289.02120972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03488870 289.02124023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03488871 289.02124023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03488872 289.02127075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03488873 289.02127075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03488874 289.02130127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03488875 289.02130127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03488876 289.02130127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03488877 289.02130127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03488878 289.02133179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03488879 289.02133179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03488880 289.02136230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03488881 289.02139282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03488882 289.02142334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03488883 289.02142334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03488884 289.02145386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03488885 289.02145386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03488886 289.02145386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03488887 289.02145386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03488888 289.02148438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03488889 289.02148438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03488890 289.02151489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03488891 289.02151489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03488892 289.02154541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03488893 289.02154541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03488894 289.02157593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03488895 289.02157593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03488896 289.02160645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03488897 289.02160645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03488898 289.02160645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03488899 289.02160645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03488900 289.02163696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03488901 289.02166748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03488902 289.02169800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03488903 289.02169800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03488904 289.02172852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03488905 289.02172852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03488906 289.02175903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03488907 289.02175903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03488908 289.02175903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03488909 289.02175903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03488910 289.02178955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03488911 289.02178955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03488912 289.02182007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03488913 289.02182007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03488914 289.02185059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03488915 289.02185059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03488916 289.02188110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03488917 289.02188110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03488918 289.02191162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03488919 289.02191162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03488920 289.02191162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03488921 289.02191162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03488922 289.02194214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03488923 289.02197266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03488924 289.02200317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03488925 289.02200317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03488926 289.02203369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03488927 289.02203369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03488928 289.02206421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03488929 289.02206421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03488930 289.02209473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03488931 289.02209473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03488932 289.02209473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03488933 289.02209473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03488934 289.02212524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03488935 289.02212524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03488936 289.02215576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03488937 289.02215576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03488938 289.02218628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03488939 289.02218628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03488940 289.02221680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03488941 289.02221680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03488942 289.02224731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03488943 289.02224731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03488944 289.02224731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03488945 289.02227783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03488946 289.02230835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03488947 289.02230835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03488948 289.02233887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03488949 289.02233887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03488950 289.02236938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03488951 289.02236938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03488952 289.02239990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03488953 289.02239990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03488954 289.02239990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03488955 289.02239990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03488956 289.02243042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03488957 289.02243042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03488958 289.02246094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03488959 289.02246094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03488960 289.02249146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03488961 289.02249146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03488962 289.02252197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03488963 289.02252197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03488964 289.02255249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03488965 289.02255249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03488966 289.02258301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03488967 289.02258301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03488968 289.02261353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03488969 289.02261353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03488970 289.02264404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03488971 289.02264404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03488972 289.02267456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03488973 289.02267456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03488974 289.02270508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03488975 289.02270508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03488976 289.02270508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03488977 289.02270508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03488978 289.02273560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03488979 289.02273560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03488980 289.02276611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03488981 289.02276611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03488982 289.02279663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03488983 289.02279663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03488984 289.02282715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03488985 289.02285767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03488986 289.02288818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03488987 289.02288818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03488988 289.02288818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03488989 289.02288818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03488990 289.02291870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03488991 289.02291870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03488992 289.02294922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03488993 289.02294922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03488994 289.02297974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03488995 289.02297974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03488996 289.02301025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03488997 289.02301025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03488998 289.02304077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03488999 289.02304077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03489000 289.02304077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03489001 289.02304077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03489002 289.02307129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03489003 289.02307129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03489004 289.02310181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03489005 289.02310181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03489006 289.02313232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03489007 289.02316284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03489008 289.02319336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03489009 289.02319336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03489010 289.02319336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03489011 289.02319336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03489012 289.02322388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03489013 289.02322388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03489014 289.02325439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03489015 289.02325439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03489016 289.02328491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03489017 289.02328491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03489018 289.02331543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03489019 289.02331543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03489020 289.02334595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03489021 289.02334595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03489022 289.02334595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03489023 289.02334595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03489024 289.02337646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03489025 289.02337646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03489026 289.02340698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03489027 289.02343750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03489028 289.02346802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03489029 289.02346802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03489030 289.02349854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03489031 289.02349854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03489032 289.02349854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03489033 289.02349854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03489034 289.02352905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03489035 289.02352905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03489036 289.02355957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03489037 289.02355957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03489038 289.02359009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03489039 289.02359009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03489040 289.02362061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03489041 289.02362061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03489042 289.02365112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03489043 289.02365112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03489044 289.02368164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03489045 289.02368164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03489046 289.02368164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03489047 289.02371216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03489048 289.02374268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03489049 289.02374268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03489050 289.02377319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03489051 289.02377319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03489052 289.02380371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03489053 289.02380371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03489054 289.02383423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03489055 289.02383423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03489056 289.02383423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03489057 289.02383423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03489058 289.02386475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03489059 289.02386475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03489060 289.02389526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03489061 289.02389526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03489062 289.02392578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03489063 289.02392578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03489064 289.02395630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03489065 289.02395630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03489066 289.02398682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03489067 289.02398682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03489068 289.02401733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03489069 289.02401733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03489070 289.02404785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03489071 289.02404785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03489072 289.02407837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03489073 289.02407837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03489074 289.02410889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03489075 289.02410889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03489076 289.02413940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03489077 289.02413940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03489078 289.02413940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03489079 289.02413940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03489080 289.02416992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03489081 289.02416992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03489082 289.02420044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03489083 289.02420044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03489084 289.02423096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03489085 289.02423096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03489086 289.02426147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03489087 289.02429199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03489088 289.02429199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03489089 289.02429199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03489090 289.02432251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03489091 289.02432251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03489092 289.02435303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03489093 289.02435303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03489094 289.02438354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03489095 289.02438354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03489096 289.02441406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03489097 289.02441406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03489098 289.02444458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03489099 289.02444458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03489100 289.02447510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03489101 289.02447510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03489102 289.02447510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03489103 289.02447510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03489104 289.02450562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03489105 289.02450562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03489106 289.02453613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03489107 289.02456665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03489108 289.02456665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03489109 289.02459717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03489110 289.02462769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03489111 289.02462769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03489112 289.02462769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03489113 289.02462769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03489114 289.02465820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03489115 289.02465820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03489116 289.02468872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03489117 289.02468872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03489118 289.02471924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03489119 289.02471924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03489120 289.02474976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03489121 289.02474976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03489122 289.02478027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03489123 289.02478027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03489124 289.02478027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03489125 289.02478027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03489126 289.02481079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03489127 289.02481079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03489128 289.02484131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03489129 289.02487183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03489130 289.02490234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03489131 289.02490234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03489132 289.02493286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03489133 289.02493286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03489134 289.02493286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03489135 289.02493286 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03489136 289.02496338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03489137 289.02496338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03489138 289.02499390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03489139 289.02499390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03489140 289.02502441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03489141 289.02502441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03489142 289.02505493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03489143 289.02505493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03489144 289.02508545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03489145 289.02508545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03489146 289.02511597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03489147 289.02511597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03489148 289.02511597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03489149 289.02511597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03489150 289.02514648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03489151 289.02517700 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03489152 289.02520752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03489153 289.02520752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03489154 289.02523804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03489155 289.02523804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03489156 289.02526855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03489157 289.02526855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03489158 289.02526855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03489159 289.02526855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03489160 289.02529907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03489161 289.02529907 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03489162 289.02532959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03489163 289.02532959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03489164 289.02536011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03489165 289.02536011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03489166 289.02539063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03489167 289.02539063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03489168 289.02542114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03489169 289.02542114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03489170 289.02542114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03489171 289.02545166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03489172 289.02548218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03489173 289.02548218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03489174 289.02551270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03489175 289.02551270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03489176 289.02554321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03489177 289.02554321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03489178 289.02557373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03489179 289.02557373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03489180 289.02557373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03489181 289.02557373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03489182 289.02560425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03489183 289.02560425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03489184 289.02563477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03489185 289.02563477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03489186 289.02566528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03489187 289.02566528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03489188 289.02569580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03489189 289.02569580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03489190 289.02572632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03489191 289.02572632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03489192 289.02572632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03489193 289.02575684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03489194 289.02578735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03489195 289.02578735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03489196 289.02581787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03489197 289.02581787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03489198 289.02584839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03489199 289.02584839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03489200 289.02587891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03489201 289.02587891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03489202 289.02590942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03489203 289.02590942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03489204 289.02590942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03489205 289.02590942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03489206 289.02593994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03489207 289.02593994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03489208 289.02597046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03489209 289.02597046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03489210 289.02600098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03489211 289.02600098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03489212 289.02603149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03489213 289.02606201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03489214 289.02606201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03489215 289.02606201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03489216 289.02609253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03489217 289.02609253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03489218 289.02612305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03489219 289.02612305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03489220 289.02615356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03489221 289.02615356 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03489222 289.02618408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03489223 289.02618408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03489224 289.02621460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03489225 289.02621460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03489226 289.02621460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03489227 289.02621460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03489228 289.02624512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03489229 289.02624512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03489230 289.02627563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03489231 289.02627563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03489232 289.02630615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03489233 289.02630615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03489234 289.02633667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03489235 289.02636719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03489236 289.02636719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03489237 289.02636719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03489238 289.02639771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03489239 289.02639771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03489240 289.02642822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03489241 289.02642822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03489242 289.02645874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03489243 289.02645874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03489244 289.02648926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03489245 289.02648926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03489246 289.02651978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03489247 289.02651978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03489248 289.02651978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03489249 289.02651978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03489250 289.02655029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03489251 289.02655029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03489252 289.02658081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03489253 289.02658081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03489254 289.02661133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03489255 289.02661133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03489256 289.02664185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03489257 289.02667236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03489258 289.02670288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03489259 289.02670288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03489260 289.02670288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03489261 289.02670288 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03489262 289.02673340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03489263 289.02673340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03489264 289.02676392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03489265 289.02676392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03489266 289.02679443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03489267 289.02679443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03489268 289.02682495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03489269 289.02682495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03489270 289.02685547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03489271 289.02685547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03489272 289.02685547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03489273 289.02685547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03489274 289.02688599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03489275 289.02688599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03489276 289.02691650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03489277 289.02694702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03489278 289.02697754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03489279 289.02697754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03489280 289.02700806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03489281 289.02700806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03489282 289.02700806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03489283 289.02700806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03489284 289.02703857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03489285 289.02703857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03489286 289.02706909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03489287 289.02706909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03489288 289.02709961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03489289 289.02709961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03489290 289.02713013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03489291 289.02713013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03489292 289.02716064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03489293 289.02716064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03489294 289.02716064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03489295 289.02716064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03489296 289.02719116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03489297 289.02722168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03489298 289.02725220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03489299 289.02725220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03489300 289.02728271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03489301 289.02728271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03489302 289.02731323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03489303 289.02731323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03489304 289.02731323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03489305 289.02731323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03489306 289.02734375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03489307 289.02734375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03489308 289.02737427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03489309 289.02737427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03489310 289.02740479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03489311 289.02740479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03489312 289.02743530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03489313 289.02743530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03489314 289.02746582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03489315 289.02746582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03489316 289.02749634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03489317 289.02749634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03489318 289.02749634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03489319 289.02752686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03489320 289.02755737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03489321 289.02755737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03489322 289.02758789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03489323 289.02758789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03489324 289.02761841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03489325 289.02761841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03489326 289.02764893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03489327 289.02764893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03489328 289.02764893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03489329 289.02764893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03489330 289.02767944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03489331 289.02767944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03489332 289.02770996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03489333 289.02770996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03489334 289.02774048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03489335 289.02774048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03489336 289.02777100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03489337 289.02777100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03489338 289.02780151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03489339 289.02780151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03489340 289.02783203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03489341 289.02783203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03489342 289.02786255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03489343 289.02786255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03489344 289.02789307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03489345 289.02789307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03489346 289.02792358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03489347 289.02792358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03489348 289.02795410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03489349 289.02795410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03489350 289.02795410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03489351 289.02795410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03489352 289.02798462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03489353 289.02798462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03489354 289.02801514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03489355 289.02801514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03489356 289.02804565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03489357 289.02804565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03489358 289.02807617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03489359 289.02807617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03489360 289.02810669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03489361 289.02810669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03489362 289.02813721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03489363 289.02813721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03489364 289.02816772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03489365 289.02819824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03489366 289.02822876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03489367 289.02822876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03489368 289.02825928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03489369 289.02825928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03489370 289.02828979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03489371 289.02828979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03489372 289.02828979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03489373 289.02828979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03489374 289.02832031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03489375 289.02832031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03489376 289.02835083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03489377 289.02835083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03489378 289.02838135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03489379 289.02838135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03489380 289.02841187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03489381 289.02841187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03489382 289.02844238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03489383 289.02844238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03489384 289.02844238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03489385 289.02844238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03489386 289.02847290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03489387 289.02850342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03489388 289.02853394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03489389 289.02853394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03489390 289.02856445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03489391 289.02856445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03489392 289.02859497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03489393 289.02859497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03489394 289.02859497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03489395 289.02859497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03489396 289.02862549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03489397 289.02862549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03489398 289.02865601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03489399 289.02865601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03489400 289.02868652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03489401 289.02868652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03489402 289.02871704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03489403 289.02871704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03489404 289.02874756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03489405 289.02874756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03489406 289.02874756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03489407 289.02877808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03489408 289.02880859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03489409 289.02880859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03489410 289.02883911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03489411 289.02883911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03489412 289.02886963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03489413 289.02886963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03489414 289.02890015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03489415 289.02890015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03489416 289.02890015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03489417 289.02890015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03489418 289.02893066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03489419 289.02893066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03489420 289.02896118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03489421 289.02896118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03489422 289.02899170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03489423 289.02899170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03489424 289.02902222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03489425 289.02902222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03489426 289.02905273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03489427 289.02908325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03489428 289.02908325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03489429 289.02908325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03489430 289.02911377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03489431 289.02911377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03489432 289.02914429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03489433 289.02914429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03489434 289.02917480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03489435 289.02917480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03489436 289.02920532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03489437 289.02920532 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03489438 289.02923584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03489439 289.02923584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03489440 289.02923584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03489441 289.02923584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03489442 289.02926636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03489443 289.02926636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03489444 289.02929688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03489445 289.02929688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03489446 289.02932739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03489447 289.02935791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03489448 289.02938843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03489449 289.02938843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03489450 289.02938843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03489451 289.02938843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03489452 289.02941895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03489453 289.02941895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03489454 289.02944946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03489455 289.02944946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03489456 289.02947998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03489457 289.02947998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03489458 289.02951050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03489459 289.02951050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03489460 289.02954102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03489461 289.02954102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03489462 289.02954102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03489463 289.02954102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03489464 289.02957153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03489465 289.02957153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03489466 289.02960205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03489467 289.02963257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03489468 289.02966309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03489469 289.02966309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03489470 289.02969360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03489471 289.02969360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03489472 289.02969360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03489473 289.02969360 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03489474 289.02972412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03489475 289.02972412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03489476 289.02975464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03489477 289.02975464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03489478 289.02978516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03489479 289.02978516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03489480 289.02981567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03489481 289.02981567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03489482 289.02984619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03489483 289.02984619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03489484 289.02987671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03489485 289.02987671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03489486 289.02990723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03489487 289.02990723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03489488 289.02993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03489489 289.02993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03489490 289.02996826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03489491 289.02996826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03489492 289.02999878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03489493 289.02999878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03489494 289.03002930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03489495 289.03002930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03489496 289.03002930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03489497 289.03002930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03489498 289.03005981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03489499 289.03005981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03489500 289.03009033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03489501 289.03009033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03489502 289.03012085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03489503 289.03012085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03489504 289.03015137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03489505 289.03018188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03489506 289.03018188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03489507 289.03018188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03489508 289.03021240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03489509 289.03021240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03489510 289.03024292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03489511 289.03024292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03489512 289.03027344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03489513 289.03027344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03489514 289.03030396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03489515 289.03030396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03489516 289.03033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03489517 289.03033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03489518 289.03033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03489519 289.03033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03489520 289.03036499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03489521 289.03036499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03489522 289.03039551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03489523 289.03042603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03489524 289.03045654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03489525 289.03045654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03489526 289.03048706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03489527 289.03048706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03489528 289.03051758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03489529 289.03051758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03489530 289.03051758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03489531 289.03051758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03489532 289.03054810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03489533 289.03054810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03489534 289.03057861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03489535 289.03057861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03489536 289.03060913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03489537 289.03060913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03489538 289.03063965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03489539 289.03063965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03489540 289.03067017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03489541 289.03067017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03489542 289.03067017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03489543 289.03067017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03489544 289.03070068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03489545 289.03073120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03489546 289.03076172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03489547 289.03076172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03489548 289.03079224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03489549 289.03079224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03489550 289.03082275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03489551 289.03082275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03489552 289.03082275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03489553 289.03082275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03489554 289.03085327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03489555 289.03085327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03489556 289.03088379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03489557 289.03088379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03489558 289.03091431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03489559 289.03091431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03489560 289.03094482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03489561 289.03094482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03489562 289.03097534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03489563 289.03097534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03489564 289.03097534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03489565 289.03100586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03489566 289.03103638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03489567 289.03103638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03489568 289.03106689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03489569 289.03106689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03489570 289.03109741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03489571 289.03109741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03489572 289.03112793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03489573 289.03112793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03489574 289.03112793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03489575 289.03112793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03489576 289.03115845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03489577 289.03115845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03489578 289.03118896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03489579 289.03118896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03489580 289.03121948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03489581 289.03121948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03489582 289.03125000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03489583 289.03125000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03489584 289.03128052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03489585 289.03131104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03489586 289.03131104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03489587 289.03131104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03489588 289.03134155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03489589 289.03134155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03489590 289.03137207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03489591 289.03137207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03489592 289.03140259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03489593 289.03140259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03489594 289.03143311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03489595 289.03143311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03489596 289.03146362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03489597 289.03146362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03489598 289.03146362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03489599 289.03146362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03489600 289.03149414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03489601 289.03149414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03489602 289.03152466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03489603 289.03152466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03489604 289.03155518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03489605 289.03158569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03489606 289.03158569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03489607 289.03161621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03489608 289.03161621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03489609 289.03161621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03489610 289.03164673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03489611 289.03164673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03489612 289.03167725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03489613 289.03167725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03489614 289.03170776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03489615 289.03170776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03489616 289.03173828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03489617 289.03173828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03489618 289.03176880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03489619 289.03176880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03489620 289.03176880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03489621 289.03176880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03489622 289.03179932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03489623 289.03179932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03489624 289.03182983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03489625 289.03182983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03489626 289.03186035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03489627 289.03189087 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03489628 289.03192139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03489629 289.03192139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03489630 289.03192139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03489631 289.03192139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03489632 289.03195190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03489633 289.03195190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03489634 289.03198242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03489635 289.03198242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03489636 289.03201294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03489637 289.03201294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03489638 289.03204346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03489639 289.03204346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03489640 289.03207397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03489641 289.03207397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03489642 289.03210449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03489643 289.03210449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03489644 289.03210449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03489645 289.03210449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03489646 289.03213501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03489647 289.03216553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03489648 289.03219604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03489649 289.03219604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03489650 289.03222656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03489651 289.03222656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03489652 289.03225708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03489653 289.03225708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03489654 289.03225708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03489655 289.03225708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03489656 289.03228760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03489657 289.03228760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03489658 289.03231812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03489659 289.03231812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03489660 289.03234863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03489661 289.03234863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03489662 289.03237915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03489663 289.03237915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03489664 289.03240967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03489665 289.03240967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03489666 289.03240967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03489667 289.03244019 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03489668 289.03247070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03489669 289.03247070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03489670 289.03250122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03489671 289.03250122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03489672 289.03253174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03489673 289.03253174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03489674 289.03256226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03489675 289.03256226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03489676 289.03256226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03489677 289.03256226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03489678 289.03259277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03489679 289.03259277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03489680 289.03262329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03489681 289.03262329 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03489682 289.03265381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03489683 289.03265381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03489684 289.03268433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03489685 289.03268433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03489686 289.03271484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03489687 289.03271484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03489688 289.03274536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03489689 289.03274536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03489690 289.03277588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03489691 289.03277588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03489692 289.03280640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03489693 289.03280640 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03489694 289.03283691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03489695 289.03283691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03489696 289.03286743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03489697 289.03286743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03489698 289.03289795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03489699 289.03289795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03489700 289.03289795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03489701 289.03289795 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03489702 289.03292847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03489703 289.03292847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03489704 289.03295898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03489705 289.03295898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03489706 289.03298950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03489707 289.03298950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03489708 289.03302002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03489709 289.03305054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03489710 289.03305054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03489711 289.03305054 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03489712 289.03308105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03489713 289.03308105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03489714 289.03311157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03489715 289.03311157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03489716 289.03314209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03489717 289.03314209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03489718 289.03317261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03489719 289.03317261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03489720 289.03320313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03489721 289.03320313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03489722 289.03320313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03489723 289.03320313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03489724 289.03323364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03489725 289.03323364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03489726 289.03326416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03489727 289.03326416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03489728 289.03329468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03489729 289.03329468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03489730 289.03332520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03489731 289.03335571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03489732 289.03335571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03489733 289.03335571 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03489734 289.03338623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03489735 289.03338623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03489736 289.03341675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03489737 289.03341675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03489738 289.03344727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03489739 289.03344727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03489740 289.03347778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03489741 289.03347778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03489742 289.03350830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03489743 289.03350830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03489744 289.03350830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03489745 289.03350830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03489746 289.03353882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03489747 289.03353882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03489748 289.03356934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03489749 289.03356934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03489750 289.03359985 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03489751 289.03363037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03489752 289.03366089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03489753 289.03366089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03489754 289.03369141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03489755 289.03369141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03489756 289.03369141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03489757 289.03369141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03489758 289.03372192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03489759 289.03372192 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03489760 289.03375244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03489761 289.03375244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03489762 289.03378296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03489763 289.03378296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03489764 289.03381348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03489765 289.03381348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03489766 289.03384399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03489767 289.03384399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03489768 289.03384399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03489769 289.03384399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03489770 289.03387451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03489771 289.03390503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03489772 289.03393555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03489773 289.03393555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03489774 289.03396606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03489775 289.03396606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03489776 289.03399658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03489777 289.03399658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03489778 289.03399658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03489779 289.03399658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03489780 289.03402710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03489781 289.03402710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03489782 289.03405762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03489783 289.03405762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03489784 289.03408813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03489785 289.03408813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03489786 289.03411865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03489787 289.03414917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03489788 289.03414917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03489789 289.03414917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03489790 289.03417969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03489791 289.03417969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03489792 289.03421021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03489793 289.03421021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03489794 289.03424072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03489795 289.03424072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03489796 289.03427124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03489797 289.03427124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03489798 289.03430176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03489799 289.03430176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03489800 289.03430176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03489801 289.03430176 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03489802 289.03433228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03489803 289.03433228 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03489804 289.03436279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03489805 289.03436279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03489806 289.03439331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03489807 289.03442383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03489808 289.03445435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03489809 289.03445435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03489810 289.03448486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03489811 289.03448486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03489812 289.03448486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03489813 289.03448486 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03489814 289.03451538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03489815 289.03451538 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03489816 289.03454590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03489817 289.03454590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03489818 289.03457642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03489819 289.03457642 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03489820 289.03460693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03489821 289.03460693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03489822 289.03463745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03489823 289.03463745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03489824 289.03463745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03489825 289.03463745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03489826 289.03466797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03489827 289.03469849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03489828 289.03472900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03489829 289.03472900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03489830 289.03475952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03489831 289.03475952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03489832 289.03479004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03489833 289.03479004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03489834 289.03479004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03489835 289.03479004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03489836 289.03482056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03489837 289.03482056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03489838 289.03485107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03489839 289.03485107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03489840 289.03488159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03489841 289.03488159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03489842 289.03491211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03489843 289.03491211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03489844 289.03494263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03489845 289.03494263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03489846 289.03494263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03489847 289.03497314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03489848 289.03500366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03489849 289.03500366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03489850 289.03503418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03489851 289.03503418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03489852 289.03506470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03489853 289.03506470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03489854 289.03509521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03489855 289.03509521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03489856 289.03509521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03489857 289.03509521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03489858 289.03512573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03489859 289.03512573 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03489860 289.03515625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03489861 289.03515625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03489862 289.03518677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03489863 289.03518677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03489864 289.03521729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03489865 289.03521729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03489866 289.03524780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03489867 289.03524780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03489868 289.03527832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03489869 289.03527832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03489870 289.03530884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03489871 289.03530884 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03489872 289.03533936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03489873 289.03533936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03489874 289.03536987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03489875 289.03536987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03489876 289.03540039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03489877 289.03540039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03489878 289.03543091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03489879 289.03543091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03489880 289.03543091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03489881 289.03543091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03489882 289.03546143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03489883 289.03546143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03489884 289.03549194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03489885 289.03549194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03489886 289.03552246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03489887 289.03555298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03489888 289.03558350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03489889 289.03558350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03489890 289.03558350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03489891 289.03558350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03489892 289.03561401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03489893 289.03561401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03489894 289.03564453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03489895 289.03564453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03489896 289.03567505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03489897 289.03567505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03489898 289.03570557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03489899 289.03570557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03489900 289.03573608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03489901 289.03573608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03489902 289.03573608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03489903 289.03573608 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03489904 289.03576660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03489905 289.03576660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03489906 289.03579712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03489907 289.03582764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03489908 289.03585815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03489909 289.03585815 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03489910 289.03588867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03489911 289.03588867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03489912 289.03591919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03489913 289.03591919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03489914 289.03591919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03489915 289.03591919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03489916 289.03594971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03489917 289.03594971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03489918 289.03598022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03489919 289.03598022 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03489920 289.03601074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03489921 289.03601074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03489922 289.03604126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03489923 289.03604126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03489924 289.03607178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03489925 289.03607178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03489926 289.03607178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03489927 289.03607178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03489928 289.03610229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03489929 289.03613281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03489930 289.03616333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03489931 289.03616333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03489932 289.03619385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03489933 289.03619385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03489934 289.03622437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03489935 289.03622437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03489936 289.03622437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03489937 289.03622437 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03489938 289.03625488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03489939 289.03625488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03489940 289.03628540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03489941 289.03628540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03489942 289.03631592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03489943 289.03631592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03489944 289.03634644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03489945 289.03634644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03489946 289.03637695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03489947 289.03637695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03489948 289.03637695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03489949 289.03640747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03489950 289.03643799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03489951 289.03643799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03489952 289.03646851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03489953 289.03646851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03489954 289.03649902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03489955 289.03649902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03489956 289.03652954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03489957 289.03652954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03489958 289.03652954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03489959 289.03652954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03489960 289.03656006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03489961 289.03656006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03489962 289.03659058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03489963 289.03659058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03489964 289.03662109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03489965 289.03662109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03489966 289.03665161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03489967 289.03665161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03489968 289.03668213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03489969 289.03668213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03489970 289.03671265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03489971 289.03671265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03489972 289.03674316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03489973 289.03674316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03489974 289.03677368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03489975 289.03677368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03489976 289.03680420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03489977 289.03680420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03489978 289.03683472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03489979 289.03683472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03489980 289.03686523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03489981 289.03686523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03489982 289.03686523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03489983 289.03686523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03489984 289.03689575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03489985 289.03689575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03489986 289.03692627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03489987 289.03692627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03489988 289.03695679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03489989 289.03698730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03489990 289.03701782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03489991 289.03701782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03489992 289.03701782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03489993 289.03701782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03489994 289.03704834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03489995 289.03704834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03489996 289.03707886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03489997 289.03707886 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03489998 289.03710938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03489999 289.03710938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03490000 289.03713989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03490001 289.03713989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03490002 289.03717041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03490003 289.03717041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03490004 289.03717041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03490005 289.03717041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03490006 289.03720093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03490007 289.03720093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03490008 289.03723145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03490009 289.03726196 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03490010 289.03729248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03490011 289.03729248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03490012 289.03732300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03490013 289.03732300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03490014 289.03732300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03490015 289.03732300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03490016 289.03735352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03490017 289.03735352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03490018 289.03738403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03490019 289.03738403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03490020 289.03741455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03490021 289.03741455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03490022 289.03744507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03490023 289.03744507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03490024 289.03747559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03490025 289.03747559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03490026 289.03750610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03490027 289.03750610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03490028 289.03750610 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03490029 289.03753662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03490030 289.03756714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03490031 289.03756714 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03490032 289.03759766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03490033 289.03759766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03490034 289.03762817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03490035 289.03762817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03490036 289.03765869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03490037 289.03765869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03490038 289.03765869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03490039 289.03765869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03490040 289.03768921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03490041 289.03768921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03490042 289.03771973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03490043 289.03771973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03490044 289.03775024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03490045 289.03775024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03490046 289.03778076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03490047 289.03778076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03490048 289.03781128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03490049 289.03781128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03490050 289.03784180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03490051 289.03784180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03490052 289.03787231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03490053 289.03787231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03490054 289.03790283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03490055 289.03790283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03490056 289.03793335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03490057 289.03793335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03490058 289.03796387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03490059 289.03796387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03490060 289.03796387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03490061 289.03796387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03490062 289.03799438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03490063 289.03799438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03490064 289.03802490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03490065 289.03802490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03490066 289.03805542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03490067 289.03805542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03490068 289.03808594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03490069 289.03811646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03490070 289.03811646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03490071 289.03811646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03490072 289.03814697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03490073 289.03814697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03490074 289.03817749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03490075 289.03817749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03490076 289.03820801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03490077 289.03820801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03490078 289.03823853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03490079 289.03823853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03490080 289.03826904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03490081 289.03826904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03490082 289.03829956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03490083 289.03829956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03490084 289.03829956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03490085 289.03829956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03490086 289.03833008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03490087 289.03836060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03490088 289.03839111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03490089 289.03839111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03490090 289.03842163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03490091 289.03842163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03490092 289.03845215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03490093 289.03845215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03490094 289.03845215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03490095 289.03845215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03490096 289.03848267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03490097 289.03848267 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03490098 289.03851318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03490099 289.03851318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03490100 289.03854370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03490101 289.03854370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03490102 289.03857422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03490103 289.03860474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03490104 289.03860474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03490105 289.03860474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03490106 289.03863525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03490107 289.03863525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03490108 289.03866577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03490109 289.03866577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03490110 289.03869629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03490111 289.03869629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03490112 289.03872681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03490113 289.03872681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03490114 289.03875732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03490115 289.03875732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03490116 289.03875732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03490117 289.03875732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03490118 289.03878784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03490119 289.03878784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03490120 289.03881836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03490121 289.03881836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03490122 289.03884888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03490123 289.03887939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03490124 289.03890991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03490125 289.03890991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03490126 289.03890991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03490127 289.03890991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03490128 289.03894043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03490129 289.03894043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03490130 289.03897095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03490131 289.03897095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03490132 289.03900146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03490133 289.03900146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03490134 289.03903198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03490135 289.03903198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03490136 289.03906250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03490137 289.03906250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03490138 289.03909302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03490139 289.03909302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03490140 289.03909302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03490141 289.03909302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03490142 289.03912354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03490143 289.03915405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03490144 289.03918457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03490145 289.03918457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03490146 289.03921509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03490147 289.03921509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03490148 289.03924561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03490149 289.03924561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03490150 289.03924561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03490151 289.03924561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03490152 289.03927612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03490153 289.03927612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03490154 289.03930664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03490155 289.03930664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03490156 289.03933716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03490157 289.03933716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03490158 289.03936768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03490159 289.03936768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03490160 289.03939819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03490161 289.03939819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03490162 289.03939819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03490163 289.03942871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03490164 289.03945923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03490165 289.03945923 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03490166 289.03948975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03490167 289.03948975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03490168 289.03952026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03490169 289.03952026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03490170 289.03955078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03490171 289.03955078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03490172 289.03955078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03490173 289.03955078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03490174 289.03958130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03490175 289.03958130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03490176 289.03961182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03490177 289.03961182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03490178 289.03964233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03490179 289.03964233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03490180 289.03967285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03490181 289.03967285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03490182 289.03970337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03490183 289.03970337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03490184 289.03973389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03490185 289.03973389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03490186 289.03976440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03490187 289.03976440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03490188 289.03979492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03490189 289.03979492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03490190 289.03982544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03490191 289.03982544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03490192 289.03985596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03490193 289.03985596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03490194 289.03988647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03490195 289.03988647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03490196 289.03988647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03490197 289.03988647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03490198 289.03991699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03490199 289.03991699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03490200 289.03994751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03490201 289.03994751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03490202 289.03997803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03490203 289.04000854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03490204 289.04003906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03490205 289.04003906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03490206 289.04003906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03490207 289.04003906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03490208 289.04006958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03490209 289.04006958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03490210 289.04010010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03490211 289.04010010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03490212 289.04013062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03490213 289.04013062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03490214 289.04016113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03490215 289.04016113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03490216 289.04019165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03490217 289.04019165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03490218 289.04019165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03490219 289.04019165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03490220 289.04022217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03490221 289.04022217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03490222 289.04025269 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03490223 289.04028320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03490224 289.04031372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03490225 289.04031372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03490226 289.04034424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03490227 289.04034424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03490228 289.04034424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03490229 289.04034424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03490230 289.04037476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03490231 289.04037476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03490232 289.04040527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03490233 289.04040527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03490234 289.04043579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03490235 289.04043579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03490236 289.04046631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03490237 289.04046631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03490238 289.04049683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03490239 289.04049683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03490240 289.04049683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03490241 289.04049683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03490242 289.04052734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03490243 289.04055786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03490244 289.04058838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03490245 289.04058838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03490246 289.04061890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03490247 289.04061890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03490248 289.04064941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03490249 289.04064941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03490250 289.04067993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03490251 289.04067993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03490252 289.04067993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03490253 289.04067993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03490254 289.04071045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03490255 289.04071045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03490256 289.04074097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03490257 289.04074097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03490258 289.04077148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03490259 289.04077148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03490260 289.04080200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03490261 289.04080200 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03490262 289.04083252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03490263 289.04083252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03490264 289.04086304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03490265 289.04086304 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03490266 289.04089355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03490267 289.04089355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03490268 289.04092407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03490269 289.04092407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03490270 289.04095459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03490271 289.04095459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03490272 289.04098511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03490273 289.04098511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03490274 289.04098511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03490275 289.04098511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03490276 289.04101563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03490277 289.04101563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03490278 289.04104614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03490279 289.04104614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03490280 289.04107666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03490281 289.04107666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03490282 289.04110718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03490283 289.04110718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03490284 289.04113770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03490285 289.04113770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03490286 289.04116821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03490287 289.04116821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03490288 289.04119873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03490289 289.04119873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03490290 289.04122925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03490291 289.04122925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03490292 289.04125977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03490293 289.04125977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03490294 289.04129028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03490295 289.04129028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03490296 289.04132080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03490297 289.04132080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03490298 289.04132080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03490299 289.04132080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03490300 289.04135132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03490301 289.04135132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03490302 289.04138184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03490303 289.04138184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03490304 289.04141235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03490305 289.04141235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03490306 289.04147339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03490307 289.04147339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03490308 289.04147339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03490309 289.04147339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03490310 289.04150391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03490311 289.04150391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03490312 289.04153442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03490313 289.04153442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03490314 289.04156494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03490315 289.04156494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03490316 289.04159546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03490317 289.04159546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03490318 289.04162598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03490319 289.04162598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03490320 289.04162598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03490321 289.04162598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03490322 289.04165649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03490323 289.04165649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03490324 289.04168701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03490325 289.04168701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03490326 289.04171753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03490327 289.04174805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03490328 289.04177856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03490329 289.04177856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03490330 289.04177856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03490331 289.04177856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03490332 289.04180908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03490333 289.04180908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03490334 289.04183960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03490335 289.04183960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03490336 289.04187012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03490337 289.04187012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03490338 289.04190063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -03490339 289.04190063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -03490340 289.04193115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -03490341 289.04193115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -03490342 289.04193115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -03490343 289.04193115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -03490344 289.04196167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -03490345 289.04196167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -03490346 289.04199219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -03490347 289.04202271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -03490348 289.04205322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -03490349 289.04205322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -03490350 289.04208374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -03490351 289.04208374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -03490352 289.04211426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -03490353 289.04211426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -03490354 289.04211426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -03490355 289.04211426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -03490356 289.04214478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -03490357 289.04214478 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -03490358 289.04217529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -03490359 289.04217529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -03490360 289.04220581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -03490361 289.04220581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -03490362 289.04223633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -03490363 289.04223633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -03490364 289.04226685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -03490365 289.04226685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -03490366 289.04226685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -03490367 289.04226685 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -03490368 289.04229736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03490369 289.04232788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03490370 289.04235840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03490371 289.04235840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03490372 289.04238892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03490373 289.04238892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03490374 289.04241943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03490375 289.04241943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03490376 289.04241943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03490377 289.04241943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03490378 289.04244995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03490379 289.04244995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03490380 289.04248047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03490381 289.04248047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03490382 289.04251099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03490383 289.04251099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03490384 289.04254150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03490385 289.04254150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03490386 289.04257202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03490387 289.04257202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03490388 289.04257202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03490389 289.04260254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03490390 289.04263306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03490391 289.04263306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -03491016 289.05148315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -03491017 289.05148315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -03491018 289.05148315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -03491019 289.05148315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -03491020 289.05151367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -03491021 289.05151367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -03491022 289.05154419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -03491023 289.05154419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -03491024 289.05157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -03491025 289.05160522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -03491026 289.05163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -03491027 289.05163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -03491028 289.05163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -03491029 289.05163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -03491030 289.05166626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -03491031 289.05166626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -03491032 289.05169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -03491033 289.05169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -03491034 289.05172729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -03491035 289.05172729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -03491036 289.05175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -03491037 289.05175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -03491038 289.05178833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -03491039 289.05178833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -03491040 289.05178833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -03491041 289.05178833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -03491042 289.05181885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -03491043 289.05181885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -03491044 289.05184937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -03491045 289.05184937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -03491046 289.05187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -03491047 289.05191040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -03491048 289.05194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -03491049 289.05194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -03491050 289.05194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -03491051 289.05194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -03491052 289.05197144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -03491053 289.05197144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -03491054 289.05200195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -03491055 289.05200195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -03491056 289.05203247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -03491057 289.05203247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -03491058 289.05206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -03491059 289.05206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -03493172 289.08163452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe858 -03493173 289.08163452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe858 -03493174 289.08166504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe868 -03493175 289.08166504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe868 -03493176 289.08166504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe878 -03493177 289.08166504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe878 -03493178 289.08172607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe888 -03493179 289.08172607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe888 -03493180 289.08175659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe898 -03493181 289.08175659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe898 -03493182 289.08178711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a8 -03493183 289.08181763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a8 -03493184 289.08181763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b8 -03493185 289.08181763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b8 -03493186 289.08184814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c8 -03493187 289.08184814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c8 -03493188 289.08187866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d8 -03493189 289.08187866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d8 -03493190 289.08190918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e8 -03493191 289.08190918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e8 -03493192 289.08193970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f8 -03493193 289.08193970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f8 -03493194 289.08197021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe908 -03493195 289.08197021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe908 -03493196 289.08197021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe918 -03493197 289.08197021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe918 -03493198 289.08200073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe928 -03493199 289.08200073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe928 -03493200 289.08203125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe938 -03493201 289.08203125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe938 -03493202 289.08206177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe948 -03493203 289.08206177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe948 -03493204 289.08209229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe958 -03493205 289.08212280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe958 -03493206 289.08212280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe968 -03493207 289.08212280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe968 -03493208 289.08215332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe978 -03493209 289.08215332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe978 -03493210 289.08218384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe988 -03493211 289.08218384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe988 -03493212 289.08221436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe998 -03493213 289.08221436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe998 -03493214 289.08224487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a8 -03493215 289.08224487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a8 -03495438 289.11325073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f28 -03495439 289.11325073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f28 -03495440 289.11328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f38 -03495441 289.11328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f38 -03495442 289.11328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f48 -03495443 289.11328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f48 -03495444 289.11331177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f58 -03495445 289.11331177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f58 -03495446 289.11334229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f68 -03495447 289.11334229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f68 -03495448 289.11337280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f78 -03495449 289.11337280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f78 -03495450 289.11340332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f88 -03495451 289.11340332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f88 -03495452 289.11343384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f98 -03495453 289.11343384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f98 -03495454 289.11343384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fa8 -03495455 289.11346436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fa8 -03495456 289.11349487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fb8 -03495457 289.11349487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fb8 -03495458 289.11352539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fc8 -03495459 289.11352539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fc8 -03495460 289.11355591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fd8 -03495461 289.11355591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fd8 -03495462 289.11358643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fe8 -03495463 289.11358643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fe8 -03495464 289.11358643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ff8 -03495465 289.11358643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ff8 -03495466 289.11361694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13008 -03495467 289.11361694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13008 -03495468 289.11364746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13018 -03495469 289.11364746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13018 -03495470 289.11367798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13028 -03495471 289.11367798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13028 -03495472 289.11370850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13038 -03495473 289.11370850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13038 -03495474 289.11373901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13048 -03495475 289.11373901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13048 -03495476 289.11373901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13058 -03495477 289.11376953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13058 -03495478 289.11380005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13068 -03495479 289.11380005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13068 -03495480 289.11383057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13078 -03495481 289.11383057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13078 -03497686 289.14450073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17568 -03497687 289.14453125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17568 -03497688 289.14453125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17578 -03497689 289.14456177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17578 -03497690 289.14456177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17588 -03497691 289.14456177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17588 -03497692 289.14459229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17598 -03497693 289.14459229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17598 -03497694 289.14462280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a8 -03497695 289.14462280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a8 -03497696 289.14465332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b8 -03497697 289.14465332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b8 -03497698 289.14468384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c8 -03497699 289.14468384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c8 -03497700 289.14471436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d8 -03497701 289.14471436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d8 -03497702 289.14471436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e8 -03497703 289.14471436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e8 -03497704 289.14474487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -03497705 289.14477539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -03497706 289.14477539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -03497707 289.14480591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -03497708 289.14483643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -03497709 289.14483643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -03497710 289.14486694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -03497711 289.14486694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -03497712 289.14489746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -03497713 289.14489746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -03497714 289.14489746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -03497715 289.14489746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -03497716 289.14492798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -03497717 289.14492798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -03497718 289.14495850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -03497719 289.14495850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -03497720 289.14498901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -03497721 289.14501953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -03497722 289.14505005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -03497723 289.14505005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -03497724 289.14505005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -03497725 289.14505005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -03497726 289.14508057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -03497727 289.14508057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -03497728 289.14511108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -03497729 289.14511108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -03499765 289.17337036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b658 -03499766 289.17340088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b668 -03499767 289.17340088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b668 -03499768 289.17343140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b678 -03499769 289.17343140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b678 -03499770 289.17346191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b688 -03499771 289.17346191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b688 -03499772 289.17349243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b698 -03499773 289.17349243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b698 -03499774 289.17352295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6a8 -03499775 289.17352295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6a8 -03499776 289.17355347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6b8 -03499777 289.17355347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6b8 -03499778 289.17358398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6c8 -03499779 289.17358398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6c8 -03499780 289.17361450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6d8 -03499781 289.17361450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6d8 -03499782 289.17364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6e8 -03499783 289.17364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6e8 -03499784 289.17364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6f8 -03499785 289.17364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6f8 -03499786 289.17367554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b708 -03499787 289.17367554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b708 -03499788 289.17370605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b718 -03499789 289.17370605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b718 -03499790 289.17373657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b728 -03499791 289.17373657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b728 -03499792 289.17376709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b738 -03499793 289.17376709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b738 -03499794 289.17379761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b748 -03499795 289.17379761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b748 -03499796 289.17382813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b758 -03499797 289.17382813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b758 -03499798 289.17385864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b768 -03499799 289.17385864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b768 -03499800 289.17388916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b778 -03499801 289.17388916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b778 -03499802 289.17391968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b788 -03499803 289.17391968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b788 -03499804 289.17395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b798 -03499805 289.17395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b798 -03499806 289.17395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7a8 -03499807 289.17395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7a8 -03499808 289.17398071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7b8 -03502226 289.20794678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20348 -03502227 289.20794678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20348 -03502228 289.20797729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20358 -03502229 289.20797729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20358 -03502230 289.20800781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20368 -03502231 289.20800781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20368 -03502232 289.20803833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20378 -03502233 289.20803833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20378 -03502234 289.20806885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20388 -03502235 289.20806885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20388 -03502236 289.20809937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20398 -03502237 289.20809937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20398 -03502238 289.20812988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a8 -03502239 289.20812988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a8 -03502240 289.20812988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b8 -03502241 289.20812988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b8 -03502242 289.20816040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c8 -03502243 289.20816040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c8 -03502244 289.20819092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d8 -03502245 289.20819092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d8 -03502246 289.20822144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e8 -03502247 289.20822144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e8 -03502248 289.20825195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f8 -03502249 289.20825195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f8 -03502250 289.20828247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20408 -03502251 289.20828247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20408 -03502252 289.20828247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20418 -03502253 289.20828247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20418 -03502254 289.20831299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20428 -03502255 289.20831299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20428 -03502256 289.20834351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20438 -03502257 289.20834351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20438 -03502258 289.20837402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -03502259 289.20840454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -03502260 289.20840454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -03502261 289.20843506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -03502262 289.20843506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -03502263 289.20843506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -03502264 289.20846558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -03502265 289.20846558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -03502266 289.20849609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -03502267 289.20849609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -03502268 289.20852661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -03502269 289.20852661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -03502396 289.21038818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -03502397 289.21038818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -03502398 289.21041870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -03502399 289.21041870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -03502400 289.21044922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -03502401 289.21044922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -03502402 289.21047974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -03502403 289.21047974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -03502404 289.21051025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -03502405 289.21051025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -03502406 289.21051025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -03502407 289.21051025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -03502408 289.21057129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -03502409 289.21057129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -03502410 289.21060181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -03502411 289.21060181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -03502412 289.21063232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20918 -03502413 289.21063232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20918 -03502414 289.21066284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20928 -03502415 289.21066284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20928 -03502416 289.21066284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20938 -03502417 289.21066284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20938 -03502418 289.21069336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20948 -03502419 289.21069336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20948 -03502420 289.21072388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20958 -03502421 289.21072388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20958 -03502422 289.21075439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20968 -03502423 289.21075439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20968 -03502424 289.21078491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20978 -03502425 289.21078491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20978 -03502426 289.21081543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20988 -03502427 289.21081543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20988 -03502428 289.21084595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20998 -03502429 289.21084595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20998 -03502430 289.21087646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a8 -03502431 289.21087646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a8 -03502432 289.21090698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b8 -03502433 289.21090698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b8 -03502434 289.21093750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c8 -03502435 289.21093750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c8 -03502436 289.21096802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d8 -03502437 289.21096802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d8 -03502438 289.21096802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e8 -03502439 289.21096802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e8 -03502800 289.21603394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -03502801 289.21603394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -03502802 289.21606445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -03502803 289.21606445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -03502804 289.21606445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -03502805 289.21606445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -03502806 289.21609497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -03502807 289.21609497 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -03502808 289.21615601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -03502809 289.21615601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -03502810 289.21618652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -03502811 289.21618652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -03502812 289.21621704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -03502813 289.21621704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -03502814 289.21621704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -03502815 289.21621704 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -03502816 289.21624756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -03502817 289.21624756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -03502818 289.21627808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -03502819 289.21627808 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -03502820 289.21630859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -03502821 289.21630859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -03502822 289.21633911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -03502823 289.21633911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -03502824 289.21636963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -03502825 289.21636963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -03502826 289.21636963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -03502827 289.21636963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -03502828 289.21640015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -03502829 289.21640015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -03502830 289.21643066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -03502831 289.21643066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -03502832 289.21646118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -03502833 289.21649170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -03502834 289.21652222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -03502835 289.21652222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -03502836 289.21655273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -03502837 289.21655273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -03502838 289.21655273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -03502839 289.21655273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -03502840 289.21658325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21678 -03502841 289.21658325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21678 -03502842 289.21661377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21688 -03502843 289.21661377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21688 -03502974 289.21847534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21aa8 -03502975 289.21847534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21aa8 -03502976 289.21850586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab8 -03502977 289.21850586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab8 -03502978 289.21853638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac8 -03502979 289.21853638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac8 -03502980 289.21856689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad8 -03502981 289.21856689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad8 -03502982 289.21859741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae8 -03502983 289.21859741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae8 -03502984 289.21859741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af8 -03502985 289.21859741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af8 -03502986 289.21862793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b08 -03502987 289.21865845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b08 -03502988 289.21865845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b18 -03502989 289.21868896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b18 -03502990 289.21871948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b28 -03502991 289.21871948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b28 -03502992 289.21875000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b38 -03502993 289.21875000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b38 -03502994 289.21875000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b48 -03502995 289.21875000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b48 -03502996 289.21878052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b58 -03502997 289.21878052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b58 -03502998 289.21881104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b68 -03502999 289.21881104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b68 -03503000 289.21884155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b78 -03503001 289.21884155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b78 -03503002 289.21887207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b88 -03503003 289.21887207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b88 -03503004 289.21890259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b98 -03503005 289.21890259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b98 -03503006 289.21893311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba8 -03503007 289.21893311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba8 -03503008 289.21896362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb8 -03503009 289.21896362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb8 -03503010 289.21899414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc8 -03503011 289.21899414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc8 -03503012 289.21902466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd8 -03503013 289.21902466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd8 -03503014 289.21905518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be8 -03503015 289.21905518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be8 -03503016 289.21908569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf8 -03503017 289.21908569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf8 -03505156 289.24902344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed8 -03505157 289.24905396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed8 -03505158 289.24908447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee8 -03505159 289.24908447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee8 -03505160 289.24911499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef8 -03505161 289.24911499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef8 -03505162 289.24911499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f08 -03505163 289.24911499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f08 -03505164 289.24914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f18 -03505165 289.24914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f18 -03505166 289.24917603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f28 -03505167 289.24917603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f28 -03505168 289.24920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f38 -03505169 289.24920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f38 -03505170 289.24923706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f48 -03505171 289.24923706 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f48 -03505172 289.24926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f58 -03505173 289.24926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f58 -03505174 289.24926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f68 -03505175 289.24926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f68 -03505176 289.24929810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -03505177 289.24932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -03505178 289.24935913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -03505179 289.24935913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -03505180 289.24938965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -03505181 289.24938965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -03505182 289.24942017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -03505183 289.24942017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -03505184 289.24942017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -03505185 289.24942017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -03505186 289.24945068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -03505187 289.24945068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -03505188 289.24948120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -03505189 289.24948120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -03505190 289.24951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -03505191 289.24951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -03505192 289.24954224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -03505193 289.24954224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -03505194 289.24957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26008 -03505195 289.24957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26008 -03505196 289.24957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26018 -03505197 289.24957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26018 -03505198 289.24960327 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26028 -03505199 289.24963379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26028 -03507348 289.27975464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a358 -03507349 289.27975464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a358 -03507350 289.27975464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a368 -03507351 289.27978516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a368 -03507352 289.27981567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a378 -03507353 289.27981567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a378 -03507354 289.27984619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a388 -03507355 289.27984619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a388 -03507356 289.27987671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a398 -03507357 289.27987671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a398 -03507358 289.27990723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -03507359 289.27990723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -03507360 289.27993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -03507361 289.27993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -03507362 289.27993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -03507363 289.27993774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -03507364 289.27996826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -03507365 289.27996826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -03507366 289.27999878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -03507367 289.27999878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -03507368 289.28002930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -03507369 289.28002930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -03507370 289.28005981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -03507371 289.28005981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -03507372 289.28009033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -03507373 289.28009033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -03507374 289.28012085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -03507375 289.28012085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -03507376 289.28015137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -03507377 289.28015137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -03507378 289.28018188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -03507379 289.28018188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -03507380 289.28021240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a458 -03507381 289.28021240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a458 -03507382 289.28024292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a468 -03507383 289.28024292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a468 -03507384 289.28024292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -03507385 289.28024292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -03507386 289.28027344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -03507387 289.28027344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -03507388 289.28030396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -03507389 289.28030396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -03507390 289.28033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -03507391 289.28033447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -03526774 289.48248291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45808 -03526775 289.48248291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa0 -03526776 289.48248291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45808 -03526777 289.48248291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa0 -03526778 289.48251343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab0 -03526779 289.48251343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab0 -03526780 289.48254395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45818 -03526781 289.48254395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45818 -03526782 289.48254395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac0 -03526783 289.48257446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac0 -03526784 289.48257446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45828 -03526785 289.48257446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45828 -03526786 289.48260498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad0 -03526787 289.48260498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad0 -03526788 289.48263550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae0 -03526789 289.48263550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae0 -03526790 289.48263550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45838 -03526791 289.48263550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45838 -03526792 289.48263550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf0 -03526793 289.48263550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf0 -03526794 289.48263550 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45848 -03526795 289.48266602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45848 -03526796 289.48266602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb00 -03526797 289.48266602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb00 -03526798 289.48269653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45858 -03526799 289.48269653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb10 -03526800 289.48269653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45858 -03526801 289.48269653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb10 -03526802 289.48272705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb20 -03526803 289.48272705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb20 -03526804 289.48275757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb30 -03526805 289.48278809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb30 -03526806 289.48278809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb40 -03526807 289.48278809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb40 -03526808 289.48281860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb50 -03526809 289.48281860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb50 -03526810 289.48281860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45868 -03526811 289.48281860 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45868 -03526812 289.48284912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb60 -03526813 289.48284912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb60 -03526814 289.48287964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb70 -03526815 289.48287964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb70 -03526816 289.48291016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb80 -03526817 289.48291016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb80 -03530644 289.51342773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e8 -03530645 289.51342773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -03530646 289.51342773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e8 -03530647 289.51342773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -03530648 289.51345825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f8 -03530649 289.51345825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f8 -03530650 289.51345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -03530651 289.51345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -03530652 289.51345825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49308 -03530653 289.51345825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49308 -03530654 289.51345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -03530655 289.51345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -03530656 289.51348877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49318 -03530657 289.51348877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49318 -03530658 289.51348877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -03530659 289.51348877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -03530660 289.51351929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49328 -03530661 289.51351929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49328 -03530662 289.51351929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -03530663 289.51351929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -03530664 289.51354980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49338 -03530665 289.51354980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49338 -03530666 289.51358032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -03530667 289.51358032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -03530668 289.51358032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49348 -03530669 289.51361084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49348 -03530670 289.51361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -03530671 289.51361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -03530672 289.51361084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49358 -03530673 289.51361084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49358 -03530674 289.51361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -03530675 289.51361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -03530676 289.51364136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49368 -03530677 289.51364136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49368 -03530678 289.51364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -03530679 289.51364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -03530680 289.51367188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49378 -03530681 289.51367188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49378 -03530682 289.51367188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -03530683 289.51367188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -03530684 289.51370239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49388 -03530685 289.51370239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49388 -03530686 289.51370239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -03530687 289.51373291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -03535170 289.54675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -03535171 289.54675293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db48 -03535172 289.54678345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db48 -03535173 289.54678345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -03535174 289.54681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db58 -03535175 289.54681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -03535176 289.54681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db58 -03535177 289.54681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -03535178 289.54681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db68 -03535179 289.54681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db68 -03535180 289.54681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -03535181 289.54681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -03535182 289.54684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db78 -03535183 289.54684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db78 -03535184 289.54684448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df0 -03535185 289.54684448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df0 -03535186 289.54687500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db88 -03535187 289.54687500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db88 -03535188 289.54687500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e00 -03535189 289.54687500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e00 -03535190 289.54690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db98 -03535191 289.54690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db98 -03535192 289.54690552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e10 -03535193 289.54693604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e10 -03535194 289.54693604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba8 -03535195 289.54693604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba8 -03535196 289.54696655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e20 -03535197 289.54696655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e20 -03535198 289.54696655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb8 -03535199 289.54696655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb8 -03535200 289.54699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e30 -03535201 289.54699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e30 -03535202 289.54699707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbc8 -03535203 289.54699707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbc8 -03535204 289.54699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e40 -03535205 289.54699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e40 -03535206 289.54702759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbd8 -03535207 289.54702759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbd8 -03535208 289.54702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e50 -03535209 289.54702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e50 -03535210 289.54705811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbe8 -03535211 289.54705811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbe8 -03535212 289.54705811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e60 -03535213 289.54705811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e60 -03539364 289.57708740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -03539365 289.57708740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -03539366 289.57708740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -03539367 289.57708740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -03539368 289.57711792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -03539369 289.57711792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -03539370 289.57711792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -03539371 289.57711792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -03539372 289.57714844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -03539373 289.57714844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -03539374 289.57714844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -03539375 289.57714844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -03539376 289.57717896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -03539377 289.57717896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -03539378 289.57717896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -03539379 289.57717896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -03539380 289.57720947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -03539381 289.57720947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -03539382 289.57720947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -03539383 289.57720947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -03539384 289.57723999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -03539385 289.57723999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -03539386 289.57723999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -03539387 289.57723999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -03539388 289.57727051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -03539389 289.57727051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -03539390 289.57727051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -03539391 289.57727051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -03539392 289.57730103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -03539393 289.57730103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df8 -03539394 289.57730103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -03539395 289.57730103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df8 -03539396 289.57733154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -03539397 289.57733154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e08 -03539398 289.57733154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -03539399 289.57733154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e08 -03539400 289.57733154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f20 -03539401 289.57733154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e18 -03539402 289.57733154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f20 -03539403 289.57733154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e18 -03539404 289.57736206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f30 -03539405 289.57736206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e28 -03539406 289.57736206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f30 -03539407 289.57736206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e28 -03541916 289.60623169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea0 -03541917 289.60623169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea0 -03541918 289.60623169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb0 -03541919 289.60623169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb0 -03541920 289.60626221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec0 -03541921 289.60629272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec0 -03541922 289.60632324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed0 -03541923 289.60632324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed0 -03541924 289.60635376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee0 -03541925 289.60635376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee0 -03541926 289.60638428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef0 -03541927 289.60638428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef0 -03541928 289.60641479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf00 -03541929 289.60641479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf00 -03541930 289.60641479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf10 -03541931 289.60641479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf10 -03541932 289.60644531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf20 -03541933 289.60644531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf20 -03541934 289.60647583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf30 -03541935 289.60647583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf30 -03541936 289.60650635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf40 -03541937 289.60650635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf40 -03541938 289.60653687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf50 -03541939 289.60656738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf50 -03541940 289.60656738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf60 -03541941 289.60656738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf60 -03541942 289.60659790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf70 -03541943 289.60659790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf70 -03541944 289.60662842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf80 -03541945 289.60662842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf80 -03541946 289.60665894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf90 -03541947 289.60665894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf90 -03541948 289.60668945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa0 -03541949 289.60668945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa0 -03541950 289.60671997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb0 -03541951 289.60671997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb0 -03541952 289.60671997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc0 -03541953 289.60671997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc0 -03541954 289.60675049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd0 -03541955 289.60675049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd0 -03541956 289.60678101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe0 -03541957 289.60681152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe0 -03541958 289.60684204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff0 -03541959 289.60684204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff0 -03544208 289.63928223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -03544209 289.63928223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -03544210 289.63931274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -03544211 289.63931274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -03544212 289.63934326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -03544213 289.63934326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -03544214 289.63937378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -03544215 289.63937378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -03544216 289.63940430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -03544217 289.63940430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -03544218 289.63943481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -03544219 289.63943481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -03544220 289.63943481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -03544221 289.63943481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -03544222 289.63946533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -03544223 289.63949585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -03544224 289.63952637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -03544225 289.63952637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -03544226 289.63955688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -03544227 289.63955688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -03544228 289.63958740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -03544229 289.63958740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -03544230 289.63961792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -03544231 289.63961792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -03544232 289.63961792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -03544233 289.63961792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -03544234 289.63964844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -03544235 289.63964844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -03544236 289.63967896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -03544237 289.63967896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -03544238 289.63970947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -03544239 289.63970947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -03544240 289.63973999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -03544241 289.63973999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -03544242 289.63977051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -03544243 289.63977051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -03544244 289.63980103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -03544245 289.63980103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -03544246 289.63983154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -03544247 289.63983154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -03544248 289.63986206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -03544249 289.63986206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -03544250 289.63989258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -03544251 289.63989258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -03546294 289.66876221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24770 -03546295 289.66876221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24770 -03546296 289.66879272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24780 -03546297 289.66879272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24780 -03546298 289.66882324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24790 -03546299 289.66882324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24790 -03546300 289.66882324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a0 -03546301 289.66882324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a0 -03546302 289.66885376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b0 -03546303 289.66885376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b0 -03546304 289.66888428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c0 -03546305 289.66891479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c0 -03546306 289.66894531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d0 -03546307 289.66894531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d0 -03546308 289.66897583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e0 -03546309 289.66897583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e0 -03546310 289.66900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f0 -03546311 289.66900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f0 -03546312 289.66900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24800 -03546313 289.66900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24800 -03546314 289.66903687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24810 -03546315 289.66903687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24810 -03546316 289.66906738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24820 -03546317 289.66906738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24820 -03546318 289.66909790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24830 -03546319 289.66909790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24830 -03546320 289.66912842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24840 -03546321 289.66912842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24840 -03546322 289.66915894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24850 -03546323 289.66915894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24850 -03546324 289.66918945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24860 -03546325 289.66918945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24860 -03546326 289.66921997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24870 -03546327 289.66921997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24870 -03546328 289.66925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24880 -03546329 289.66925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24880 -03546330 289.66928101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24890 -03546331 289.66928101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24890 -03546332 289.66931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x248a0 -03546333 289.66931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x248a0 -03546334 289.66931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x248b0 -03546335 289.66931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x248b0 -03546336 289.66934204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x248c0 -03546337 289.66934204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x248c0 -03548420 289.69866943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -03548421 289.69866943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -03548422 289.69869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -03548423 289.69869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -03548424 289.69869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -03548425 289.69869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -03548426 289.69873047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -03548427 289.69873047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -03548428 289.69876099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -03548429 289.69876099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -03548430 289.69879150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -03548431 289.69882202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -03548432 289.69882202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -03548433 289.69885254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -03548434 289.69885254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -03548435 289.69885254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -03548436 289.69888306 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a60 -03548437 289.69888306 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a60 -03548438 289.69891357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a70 -03548439 289.69891357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a70 -03548440 289.69894409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a80 -03548441 289.69894409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a80 -03548442 289.69897461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a90 -03548443 289.69897461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a90 -03548444 289.69900513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28aa0 -03548445 289.69900513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28aa0 -03548446 289.69903564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ab0 -03548447 289.69903564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ab0 -03548448 289.69903564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ac0 -03548449 289.69903564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ac0 -03548450 289.69906616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ad0 -03548451 289.69906616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ad0 -03548452 289.69909668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ae0 -03548453 289.69909668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ae0 -03548454 289.69912720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28af0 -03548455 289.69912720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28af0 -03548456 289.69918823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b00 -03548457 289.69918823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b00 -03548458 289.69918823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b10 -03548459 289.69918823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b10 -03548460 289.69921875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b20 -03548461 289.69921875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b20 -03548462 289.69924927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b30 -03548463 289.69924927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b30 -03551468 289.74246216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e920 -03551469 289.74246216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e920 -03551470 289.74249268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e930 -03551471 289.74249268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e930 -03551472 289.74255371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e940 -03551473 289.74255371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e940 -03551474 289.74255371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e950 -03551475 289.74255371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e950 -03551476 289.74258423 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e960 -03551477 289.74258423 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e960 -03551478 289.74261475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e970 -03551479 289.74261475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e970 -03551480 289.74264526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e980 -03551481 289.74264526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e980 -03551482 289.74267578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e990 -03551483 289.74267578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e990 -03551484 289.74270630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a0 -03551485 289.74270630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a0 -03551486 289.74270630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b0 -03551487 289.74273682 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b0 -03551488 289.74276733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c0 -03551489 289.74276733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c0 -03551490 289.74279785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d0 -03551491 289.74279785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d0 -03551492 289.74282837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e0 -03551493 289.74282837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e0 -03551494 289.74285889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f0 -03551495 289.74285889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f0 -03551496 289.74285889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea00 -03551497 289.74285889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea00 -03551498 289.74288940 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea10 -03551499 289.74291992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea10 -03551500 289.74295044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea20 -03551501 289.74295044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea20 -03551502 289.74298096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea30 -03551503 289.74298096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea30 -03551504 289.74301147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea40 -03551505 289.74301147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea40 -03551506 289.74304199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea50 -03551507 289.74304199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea50 -03551508 289.74304199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea60 -03551509 289.74307251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea60 -03551510 289.74310303 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea70 -03551511 289.74310303 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea70 -03553456 289.77288818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32740 -03553457 289.77288818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32740 -03553458 289.77288818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32750 -03553459 289.77288818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32750 -03553460 289.77291870 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32760 -03553461 289.77294922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32760 -03553462 289.77297974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32770 -03553463 289.77297974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32770 -03553464 289.77301025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32780 -03553465 289.77301025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32780 -03553466 289.77304077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32790 -03553467 289.77304077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32790 -03553468 289.77304077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a0 -03553469 289.77304077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a0 -03553470 289.77307129 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b0 -03553471 289.77307129 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b0 -03553472 289.77310181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c0 -03553473 289.77313232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c0 -03553474 289.77316284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -03553475 289.77316284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -03553476 289.77319336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -03553477 289.77319336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -03553478 289.77322388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -03553479 289.77322388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -03553480 289.77322388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -03553481 289.77322388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -03553482 289.77325439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -03553483 289.77325439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -03553484 289.77328491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -03553485 289.77328491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -03553486 289.77331543 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -03553487 289.77334595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -03553488 289.77337646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -03553489 289.77337646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -03553490 289.77337646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -03553491 289.77337646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -03553492 289.77340698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -03553493 289.77340698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -03553494 289.77343750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -03553495 289.77343750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -03553496 289.77346802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -03553497 289.77346802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -03553498 289.77352905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -03553499 289.77352905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -03568768 289.98736572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c0 -03568769 289.98736572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c0 -03568770 289.98739624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d0 -03568771 289.98739624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d0 -03568772 289.98745728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e0 -03568773 289.98745728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e0 -03568774 289.98748779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f0 -03568775 289.98748779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f0 -03568776 289.98751831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50600 -03568777 289.98751831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50600 -03568778 289.98751831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50610 -03568779 289.98751831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50610 -03568780 289.98754883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50620 -03568781 289.98754883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50620 -03568782 289.98760986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50630 -03568783 289.98760986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50630 -03568784 289.98764038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50640 -03568785 289.98764038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50640 -03568786 289.98767090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50650 -03568787 289.98767090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50650 -03568788 289.98770142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50660 -03568789 289.98770142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50660 -03568790 289.98770142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50670 -03568791 289.98770142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50670 -03568792 289.98773193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50680 -03568793 289.98776245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50680 -03568794 289.98779297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50690 -03568795 289.98779297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50690 -03568796 289.98782349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a0 -03568797 289.98782349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a0 -03568798 289.98785400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b0 -03568799 289.98785400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b0 -03568800 289.98785400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c0 -03568801 289.98785400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c0 -03568802 289.98788452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d0 -03568803 289.98788452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d0 -03568804 289.98791504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e0 -03568805 289.98791504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e0 -03568806 289.98797607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f0 -03568807 289.98797607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f0 -03568808 289.98800659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -03568809 289.98800659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -03568810 289.98800659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -03568811 289.98800659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -03570038 290.06347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570039 290.06347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570040 290.06350708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570041 290.06353760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03570042 290.06365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570043 290.06365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570044 290.06372070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570045 290.06375122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570046 290.09350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03570047 290.11315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570048 290.11318970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570049 291.88415527 [vmhook-eac [core number = 14]]sha1 hash data = 0xFFFFF8025F791000, len = 0x51d28, result = 0xFFFFC905D7AD1BE0 -03570050 291.88537598 [vmhook-eac [core number = 14]]sha1 hash data = 0xFFFFF8025F80B000, len = 0x2bc79d, result = 0xFFFFC905D7AD1BE0 -03570051 292.11456299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03570052 292.13439941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570053 292.13442993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570054 292.57009888 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570055 292.57015991 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570056 292.57019043 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570057 292.57019043 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03570058 292.57037354 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570059 292.57037354 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570060 292.57040405 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570061 292.57043457 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570062 294.13552856 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03570063 294.15325928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570064 294.15325928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570065 294.58432007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03570066 294.58432007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03570067 294.58435059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03570068 294.58435059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03570069 294.58438110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03570070 294.58438110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03570071 294.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03570072 294.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03570073 294.58444214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03570074 294.58444214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03570075 294.58447266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03570076 294.58447266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03570077 294.58450317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03570078 294.58450317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03570079 294.58453369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03570080 294.58453369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03570081 294.58456421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03570082 294.58456421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03570083 294.58456421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03570084 294.58456421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03570085 294.58459473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03570086 294.58459473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03570087 294.58462524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03570088 294.58462524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03570089 294.58465576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03570090 294.58465576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03570091 294.58468628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03570092 294.58468628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03570093 294.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03570094 294.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03570095 294.58474731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03570096 294.58474731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03570097 294.58477783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03570098 294.58477783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03570099 294.58480835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03570100 294.58480835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03570101 294.58483887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03570102 294.58483887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03570103 294.58486938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03570104 294.58486938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03570105 294.58486938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03570106 294.58486938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03570107 294.58489990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03570108 294.58489990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03570109 294.58493042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03570110 294.58493042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03570111 294.58496094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03570112 294.58499146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03570113 294.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03570114 294.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03570115 294.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03570116 294.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03570117 294.58505249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03570118 294.58505249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03570119 294.58508301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03570120 294.58508301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03570121 294.58511353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03570122 294.58511353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03570123 294.58514404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03570124 294.58514404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03570125 294.58517456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03570126 294.58517456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03570127 294.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03570128 294.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03570129 294.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03570130 294.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03570131 294.58523560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03570132 294.58526611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03570133 294.58529663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03570134 294.58529663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03570135 294.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03570136 294.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03570137 294.58535767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03570138 294.58535767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03570139 294.58535767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03570140 294.58535767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03570141 294.58538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03570142 294.58538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03570143 294.58541870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03570144 294.58541870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03570145 294.58544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03570146 294.58544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03570147 294.58547974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03570148 294.58547974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03570149 294.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03570150 294.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03570151 294.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03570152 294.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03570153 294.58554077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03570154 294.58557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03570155 294.58560181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03570156 294.58560181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03570157 294.58563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03570158 294.58563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03570159 294.58566284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03570160 294.58566284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03570161 294.58566284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03570162 294.58566284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03570163 294.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03570164 294.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03570165 294.58572388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03570166 294.58572388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03570167 294.58575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03570168 294.58575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03570169 294.58578491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03570170 294.58578491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03570171 294.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03570172 294.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03570173 294.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03570174 294.58584595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03570175 294.58587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03570176 294.58587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03570177 294.58590698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03570178 294.58590698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03570179 294.58593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03570180 294.58593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03570181 294.58596802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03570182 294.58596802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03570183 294.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03570184 294.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03570185 294.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03570186 294.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03570187 294.58602905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03570188 294.58602905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03570189 294.58609009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03570190 294.58609009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03570191 294.58615112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03570192 294.58615112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03570193 294.58615112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03570194 294.58615112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03570195 294.58618164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03570196 294.58618164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03570197 294.58621216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03570198 294.58621216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03570199 294.58624268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03570200 294.58624268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03570201 294.58627319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03570202 294.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03570203 294.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03570204 294.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03570205 294.58633423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03570206 294.58633423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03570207 294.58636475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03570208 294.58636475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03570209 294.58639526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03570210 294.58639526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03570211 294.58642578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03570212 294.58642578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03570213 294.58645630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03570214 294.58645630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03570215 294.58645630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03570216 294.58645630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03570217 294.58648682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03570218 294.58648682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03570219 294.58651733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03570220 294.58651733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03570221 294.58654785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03570222 294.58657837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03570223 294.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03570224 294.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03570225 294.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03570226 294.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03570227 294.58663940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03570228 294.58663940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03570229 294.58666992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03570230 294.58666992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03570231 294.58670044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03570232 294.58670044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03570233 294.58673096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03570234 294.58673096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03570235 294.58676147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03570236 294.58676147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03570237 294.58679199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03570238 294.58679199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03570239 294.58679199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03570240 294.58679199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03570241 294.58682251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03570242 294.58685303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03570243 294.58688354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03570244 294.58688354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03570245 294.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03570246 294.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03570247 294.58694458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03570248 294.58694458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03570249 294.58694458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03570250 294.58694458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03570251 294.58697510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03570252 294.58697510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03570253 294.58700562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03570254 294.58700562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03570255 294.58703613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03570256 294.58703613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03570257 294.58706665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03570258 294.58706665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03570259 294.58709717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03570260 294.58709717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03570261 294.58709717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03570262 294.58709717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03570263 294.58712769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03570264 294.58715820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03570265 294.58718872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03570266 294.58718872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03570267 294.58721924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03570268 294.58721924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03570269 294.58724976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03570270 294.58724976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03570271 294.58724976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03570272 294.58724976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03570273 294.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03570274 294.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03570275 294.58731079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03570276 294.58731079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03570277 294.58734131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03570278 294.58734131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03570279 294.58737183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03570280 294.58737183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03570281 294.58740234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03570282 294.58740234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03570283 294.58740234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03570284 294.58743286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03570285 294.58746338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03570286 294.58746338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03570287 294.58749390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03570288 294.58749390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03570289 294.58752441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03570290 294.58752441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03570291 294.58755493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03570292 294.58755493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03570293 294.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03570294 294.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03570295 294.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03570296 294.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03570297 294.58761597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03570298 294.58761597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03570299 294.58764648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03570300 294.58764648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03570301 294.58767700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03570302 294.58767700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03570303 294.58770752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03570304 294.58770752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03570305 294.58773804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03570306 294.58773804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03570307 294.58776855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03570308 294.58776855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03570309 294.58779907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03570310 294.58779907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03570311 294.58782959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03570312 294.58782959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03570313 294.58786011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03570314 294.58786011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03570315 294.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03570316 294.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03570317 294.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03570318 294.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03570319 294.58792114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03570320 294.58792114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03570321 294.58795166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03570322 294.58795166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03570323 294.58798218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03570324 294.58798218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03570325 294.58801270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03570326 294.58804321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03570327 294.58804321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03570328 294.58804321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03570329 294.58807373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03570330 294.58807373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03570331 294.58810425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03570332 294.58810425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03570333 294.58813477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03570334 294.58816528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03570335 294.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03570336 294.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03570337 294.58822632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03570338 294.58822632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03570339 294.58822632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03570340 294.58822632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03570341 294.58825684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03570342 294.58825684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03570343 294.58828735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03570344 294.58828735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03570345 294.58831787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03570346 294.58831787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03570347 294.58834839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03570348 294.58834839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03570349 294.58837891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03570350 294.58837891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03570351 294.58837891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03570352 294.58840942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03570353 294.58843994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03570354 294.58843994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03570355 294.58847046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03570356 294.58847046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03570357 294.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03570358 294.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03570359 294.58853149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03570360 294.58853149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03570361 294.58853149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03570362 294.58853149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03570363 294.58856201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03570364 294.58856201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03570365 294.58859253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03570366 294.58859253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03570367 294.58862305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03570368 294.58862305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03570369 294.58865356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03570370 294.58865356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03570371 294.58868408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03570372 294.58868408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03570373 294.58871460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03570374 294.58871460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03570375 294.58874512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03570376 294.58874512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03570377 294.58877563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03570378 294.58877563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03570379 294.58880615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03570380 294.58880615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03570381 294.58883667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03570382 294.58883667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03570383 294.58883667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03570384 294.58883667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03570385 294.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03570386 294.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03570387 294.58889771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03570388 294.58889771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03570389 294.58892822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03570390 294.58892822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03570391 294.58895874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03570392 294.58898926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03570393 294.58901978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03570394 294.58901978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03570395 294.58901978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03570396 294.58901978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03570397 294.58905029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03570398 294.58905029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03570399 294.58908081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03570400 294.58908081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03570401 294.58911133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03570402 294.58911133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03570403 294.58914185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03570404 294.58914185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03570405 294.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03570406 294.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03570407 294.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03570408 294.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03570409 294.58920288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03570410 294.58920288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03570411 294.58923340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03570412 294.58926392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03570413 294.58929443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03570414 294.58929443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03570415 294.58932495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03570416 294.58932495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03570417 294.58932495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03570418 294.58932495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03570419 294.58935547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03570420 294.58935547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03570421 294.58938599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03570422 294.58938599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03570423 294.58941650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03570424 294.58941650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03570425 294.58944702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03570426 294.58944702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03570427 294.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03570428 294.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03570429 294.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03570430 294.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03570431 294.58950806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03570432 294.58953857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03570433 294.58956909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03570434 294.58956909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03570435 294.58959961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03570436 294.58959961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03570437 294.58963013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03570438 294.58963013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03570439 294.58963013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03570440 294.58963013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03570441 294.58966064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03570442 294.58966064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03570443 294.58969116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03570444 294.58969116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03570445 294.58972168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03570446 294.58972168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03570447 294.58975220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03570448 294.58975220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03570449 294.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03570450 294.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03570451 294.58981323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03570452 294.58981323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03570453 294.58984375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03570454 294.58984375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03570455 294.58987427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03570456 294.58987427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03570457 294.58990479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03570458 294.58990479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03570459 294.58993530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03570460 294.58993530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03570461 294.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03570462 294.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03570463 294.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03570464 294.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03570465 294.58999634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03570466 294.58999634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03570467 294.59002686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03570468 294.59002686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03570469 294.59005737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03570470 294.59005737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03570471 294.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03570472 294.59011841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03570473 294.59011841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03570474 294.59011841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03570475 294.59014893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03570476 294.59014893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03570477 294.59017944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03570478 294.59020996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03570479 294.59024048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03570480 294.59024048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03570481 294.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03570482 294.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03570483 294.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03570484 294.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03570485 294.59030151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03570486 294.59030151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03570487 294.59033203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03570488 294.59033203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03570489 294.59036255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03570490 294.59036255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03570491 294.59039307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03570492 294.59039307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03570493 294.59042358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03570494 294.59042358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03570495 294.59042358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03570496 294.59045410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03570497 294.59048462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03570498 294.59048462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03570499 294.59051514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03570500 294.59051514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03570501 294.59054565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03570502 294.59054565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03570503 294.59057617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03570504 294.59057617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03570505 294.59060669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03570506 294.59060669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03570507 294.59060669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03570508 294.59060669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03570509 294.59063721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03570510 294.59063721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03570511 294.59066772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03570512 294.59066772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03570513 294.59069824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03570514 294.59069824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03570515 294.59072876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03570516 294.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03570517 294.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03570518 294.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03570519 294.59078979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03570520 294.59078979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03570521 294.59082031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03570522 294.59082031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03570523 294.59085083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03570524 294.59085083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03570525 294.59088135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03570526 294.59088135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03570527 294.59091187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03570528 294.59091187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03570529 294.59091187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03570530 294.59091187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03570531 294.59094238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03570532 294.59094238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03570533 294.59097290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03570534 294.59097290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03570535 294.59100342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03570536 294.59100342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03570537 294.59103394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03570538 294.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03570539 294.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03570540 294.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03570541 294.59109497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03570542 294.59109497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03570543 294.59112549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03570544 294.59112549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03570545 294.59115601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03570546 294.59115601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03570547 294.59118652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03570548 294.59118652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03570549 294.59121704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03570550 294.59121704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03570551 294.59121704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03570552 294.59121704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03570553 294.59124756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03570554 294.59124756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03570555 294.59127808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03570556 294.59127808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03570557 294.59130859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03570558 294.59133911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03570559 294.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03570560 294.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03570561 294.59140015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03570562 294.59140015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03570563 294.59140015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03570564 294.59140015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03570565 294.59143066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03570566 294.59143066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03570567 294.59146118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03570568 294.59146118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03570569 294.59149170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03570570 294.59149170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03570571 294.59152222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03570572 294.59152222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03570573 294.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03570574 294.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03570575 294.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03570576 294.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03570577 294.59158325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03570578 294.59161377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03570579 294.59164429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03570580 294.59164429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03570581 294.59167480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03570582 294.59167480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03570583 294.59170532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03570584 294.59170532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03570585 294.59170532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03570586 294.59170532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03570587 294.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03570588 294.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03570589 294.59176636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03570590 294.59176636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03570591 294.59179688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03570592 294.59179688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03570593 294.59182739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03570594 294.59182739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03570595 294.59185791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03570596 294.59185791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03570597 294.59185791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03570598 294.59188843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03570599 294.59191895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03570600 294.59191895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03570601 294.59194946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03570602 294.59194946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03570603 294.59197998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03570604 294.59197998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03570605 294.59201050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03570606 294.59201050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03570607 294.59201050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03570608 294.59201050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03570609 294.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03570610 294.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03570611 294.59207153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03570612 294.59207153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03570613 294.59210205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03570614 294.59213257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03570615 294.59219360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03570616 294.59219360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03570617 294.59222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03570618 294.59222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03570619 294.59225464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03570620 294.59225464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03570621 294.59231567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03570622 294.59231567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03570623 294.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03570624 294.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03570625 294.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03570626 294.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03570627 294.59237671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03570628 294.59237671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03570629 294.59240723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03570630 294.59240723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03570631 294.59243774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03570632 294.59243774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03570633 294.59246826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03570634 294.59246826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03570635 294.59249878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03570636 294.59249878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03570637 294.59249878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03570638 294.59249878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03570639 294.59252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03570640 294.59252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03570641 294.59255981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03570642 294.59255981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03570643 294.59259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03570644 294.59259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03570645 294.59262085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03570646 294.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03570647 294.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03570648 294.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03570649 294.59268188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03570650 294.59268188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03570651 294.59271240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03570652 294.59271240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03570653 294.59274292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03570654 294.59274292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03570655 294.59277344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03570656 294.59277344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03570657 294.59280396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03570658 294.59280396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03570659 294.59280396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03570660 294.59280396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03570661 294.59283447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03570662 294.59283447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03570663 294.59286499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03570664 294.59286499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03570665 294.59289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03570666 294.59289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03570667 294.59292603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03570668 294.59292603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03570669 294.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03570670 294.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03570671 294.59298706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03570672 294.59298706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03570673 294.59298706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03570674 294.59298706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03570675 294.59301758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03570676 294.59301758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03570677 294.59304810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03570678 294.59304810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03570679 294.59307861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03570680 294.59307861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03570681 294.59310913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03570682 294.59310913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03570683 294.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03570684 294.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03570685 294.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03570686 294.59317017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03570687 294.59317017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03570688 294.59320068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03570689 294.59323120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03570690 294.59323120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03570691 294.59326172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03570692 294.59326172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03570693 294.59329224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03570694 294.59329224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03570695 294.59329224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03570696 294.59329224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03570697 294.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03570698 294.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03570699 294.59335327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03570700 294.59335327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03570701 294.59338379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03570702 294.59338379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03570703 294.59341431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03570704 294.59341431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03570705 294.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03570706 294.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03570707 294.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03570708 294.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03570709 294.59347534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03570710 294.59347534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03570711 294.59350586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03570712 294.59350586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03570713 294.59353638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03570714 294.59353638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03570715 294.59356689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03570716 294.59356689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03570717 294.59359741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03570718 294.59359741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03570719 294.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03570720 294.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03570721 294.59365845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03570722 294.59365845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03570723 294.59368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03570724 294.59368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03570725 294.59371948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03570726 294.59371948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03570727 294.59375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03570728 294.59375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03570729 294.59378052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03570730 294.59378052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03570731 294.59378052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03570732 294.59378052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03570733 294.59381104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03570734 294.59381104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03570735 294.59384155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03570736 294.59384155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03570737 294.59387207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03570738 294.59387207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03570739 294.59390259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03570740 294.59390259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03570741 294.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03570742 294.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03570743 294.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03570744 294.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03570745 294.59396362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03570746 294.59396362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03570747 294.59399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03570748 294.59399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03570749 294.59402466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03570750 294.59402466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03570751 294.59405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03570752 294.59405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03570753 294.59408569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03570754 294.59408569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03570755 294.59411621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03570756 294.59411621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03570757 294.59417725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03570758 294.59417725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03570759 294.59420776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03570760 294.59420776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03570761 294.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03570762 294.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03570763 294.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03570764 294.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03570765 294.59429932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03570766 294.59429932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03570767 294.59432983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03570768 294.59432983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03570769 294.59436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03570770 294.59436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03570771 294.59439087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03570772 294.59439087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03570773 294.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03570774 294.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03570775 294.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03570776 294.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03570777 294.59445190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03570778 294.59445190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03570779 294.59448242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03570780 294.59448242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03570781 294.59451294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03570782 294.59451294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03570783 294.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03570784 294.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03570785 294.59457397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03570786 294.59457397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03570787 294.59457397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03570788 294.59460449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03570789 294.59460449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03570790 294.59463501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03570791 294.59466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03570792 294.59466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03570793 294.59469604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03570794 294.59469604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03570795 294.59472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03570796 294.59472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03570797 294.59472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03570798 294.59472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03570799 294.59475708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03570800 294.59475708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03570801 294.59478760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03570802 294.59478760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03570803 294.59481812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03570804 294.59481812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03570805 294.59484863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03570806 294.59484863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03570807 294.59487915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03570808 294.59487915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03570809 294.59487915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03570810 294.59487915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03570811 294.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03570812 294.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03570813 294.59494019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03570814 294.59494019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03570815 294.59497070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03570816 294.59497070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03570817 294.59500122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03570818 294.59500122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03570819 294.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03570820 294.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03570821 294.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03570822 294.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03570823 294.59506226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03570824 294.59506226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03570825 294.59509277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03570826 294.59512329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03570827 294.59512329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03570828 294.59515381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03570829 294.59518433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03570830 294.59518433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03570831 294.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03570832 294.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03570833 294.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03570834 294.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03570835 294.59524536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03570836 294.59524536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03570837 294.59527588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03570838 294.59527588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03570839 294.59530640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03570840 294.59530640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03570841 294.59533691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03570842 294.59533691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03570843 294.59536743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03570844 294.59536743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03570845 294.59536743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03570846 294.59536743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03570847 294.59539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03570848 294.59539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03570849 294.59542847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03570850 294.59542847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03570851 294.59545898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03570852 294.59545898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03570853 294.59548950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03570854 294.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03570855 294.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03570856 294.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03570857 294.59555054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03570858 294.59555054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03570859 294.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03570860 294.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03570861 294.59561157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03570862 294.59561157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03570863 294.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03570864 294.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03570865 294.59567261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03570866 294.59567261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03570867 294.59567261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03570868 294.59567261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03570869 294.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03570870 294.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03570871 294.59573364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03570872 294.59573364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03570873 294.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03570874 294.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03570875 294.59579468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03570876 294.59579468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03570877 294.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03570878 294.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03570879 294.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03570880 294.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03570881 294.59585571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03570882 294.59585571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03570883 294.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03570884 294.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03570885 294.59591675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03570886 294.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03570887 294.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03570888 294.59597778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03570889 294.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03570890 294.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03570891 294.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03570892 294.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03570893 294.59603882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03570894 294.59603882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03570895 294.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03570896 294.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03570897 294.59609985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03570898 294.59609985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03570899 294.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03570900 294.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03570901 294.59616089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03570902 294.59616089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03570903 294.59619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03570904 294.59619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03570905 294.59622192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03570906 294.59622192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03570907 294.59625244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03570908 294.59625244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03570909 294.59628296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03570910 294.59628296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03570911 294.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03570912 294.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03570913 294.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03570914 294.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03570915 294.59634399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03570916 294.59634399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03570917 294.59637451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03570918 294.59637451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03570919 294.59640503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03570920 294.59643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03570921 294.59646606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03570922 294.59646606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03570923 294.59646606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03570924 294.59646606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03570925 294.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03570926 294.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03570927 294.59652710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03570928 294.59652710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03570929 294.59655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03570930 294.59655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03570931 294.59658813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03570932 294.59658813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03570933 294.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03570934 294.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03570935 294.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03570936 294.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03570937 294.59664917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03570938 294.59664917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03570939 294.59667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03570940 294.59667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03570941 294.59671021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03570942 294.59671021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03570943 294.59674072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03570944 294.59674072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03570945 294.59677124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03570946 294.59677124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03570947 294.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03570948 294.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03570949 294.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03570950 294.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03570951 294.59683228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03570952 294.59683228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03570953 294.59686279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03570954 294.59686279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03570955 294.59689331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03570956 294.59689331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03570957 294.59692383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03570958 294.59692383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03570959 294.59695435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03570960 294.59695435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03570961 294.59695435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03570962 294.59698486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03570963 294.59698486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03570964 294.59701538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03570965 294.59704590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03570966 294.59704590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03570967 294.59707642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03570968 294.59707642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03570969 294.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03570970 294.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03570971 294.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03570972 294.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03570973 294.59713745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03570974 294.59713745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03570975 294.59716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03570976 294.59716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03570977 294.59719849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03570978 294.59719849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03570979 294.59722900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03570980 294.59722900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03570981 294.59725952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03570982 294.59725952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03570983 294.59725952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03570984 294.59725952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03570985 294.59729004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03570986 294.59729004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03570987 294.59732056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03570988 294.59732056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03570989 294.59735107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03570990 294.59735107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03570991 294.59738159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03570992 294.59738159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03570993 294.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03570994 294.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03570995 294.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03570996 294.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03570997 294.59744263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03570998 294.59744263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03570999 294.59747314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03571000 294.59747314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03571001 294.59750366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03571002 294.59750366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03571003 294.59753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03571004 294.59753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03571005 294.59756470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03571006 294.59759521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03571007 294.59759521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03571008 294.59759521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03571009 294.59762573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03571010 294.59762573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03571011 294.59765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03571012 294.59765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03571013 294.59768677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03571014 294.59768677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03571015 294.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03571016 294.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03571017 294.59774780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03571018 294.59774780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03571019 294.59774780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03571020 294.59774780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03571021 294.59777832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03571022 294.59777832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03571023 294.59780884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03571024 294.59780884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03571025 294.59783936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03571026 294.59786987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03571027 294.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03571028 294.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03571029 294.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03571030 294.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03571031 294.59793091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03571032 294.59793091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03571033 294.59796143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03571034 294.59796143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03571035 294.59799194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03571036 294.59799194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03571037 294.59802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03571038 294.59802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03571039 294.59805298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03571040 294.59805298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03571041 294.59805298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03571042 294.59805298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03571043 294.59811401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03571044 294.59811401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03571045 294.59814453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03571046 294.59814453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03571047 294.59817505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03571048 294.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03571049 294.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03571050 294.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03571051 294.59823608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03571052 294.59823608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03571053 294.59826660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03571054 294.59826660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03571055 294.59829712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03571056 294.59829712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03571057 294.59832764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03571058 294.59832764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03571059 294.59835815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03571060 294.59835815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03571061 294.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03571062 294.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03571063 294.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03571064 294.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03571065 294.59841919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03571066 294.59841919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03571067 294.59844971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03571068 294.59848022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03571069 294.59851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03571070 294.59851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03571071 294.59854126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03571072 294.59854126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03571073 294.59854126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03571074 294.59854126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03571075 294.59857178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03571076 294.59857178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03571077 294.59860229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03571078 294.59860229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03571079 294.59863281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03571080 294.59866333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03571081 294.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03571082 294.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03571083 294.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03571084 294.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03571085 294.59872437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03571086 294.59872437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03571087 294.59875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03571088 294.59875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03571089 294.59878540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03571090 294.59878540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03571091 294.59881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03571092 294.59881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03571093 294.59884644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03571094 294.59884644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03571095 294.59884644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03571096 294.59884644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03571097 294.59887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03571098 294.59887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03571099 294.59890747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03571100 294.59890747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03571101 294.59893799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03571102 294.59896851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03571103 294.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03571104 294.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03571105 294.59902954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03571106 294.59902954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03571107 294.59902954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03571108 294.59902954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03571109 294.59906006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03571110 294.59906006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03571111 294.59909058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03571112 294.59909058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03571113 294.59912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03571114 294.59912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03571115 294.59915161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03571116 294.59915161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03571117 294.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03571118 294.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03571119 294.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03571120 294.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03571121 294.59921265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03571122 294.59924316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03571123 294.59927368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03571124 294.59927368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03571125 294.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03571126 294.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03571127 294.59933472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03571128 294.59933472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03571129 294.59933472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03571130 294.59933472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03571131 294.59936523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03571132 294.59936523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03571133 294.59939575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03571134 294.59939575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03571135 294.59942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03571136 294.59942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03571137 294.59945679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03571138 294.59945679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03571139 294.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03571140 294.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03571141 294.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03571142 294.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03571143 294.59951782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03571144 294.59954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03571145 294.59957886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03571146 294.59957886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03571147 294.59960938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03571148 294.59960938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03571149 294.59963989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03571150 294.59963989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03571151 294.59963989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03571152 294.59963989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03571153 294.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03571154 294.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03571155 294.59970093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03571156 294.59970093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03571157 294.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03571158 294.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03571159 294.59976196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03571160 294.59976196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03571161 294.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03571162 294.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03571163 294.59982300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03571164 294.59982300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03571165 294.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03571166 294.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03571167 294.59988403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03571168 294.59988403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03571169 294.59991455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03571170 294.59991455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03571171 294.59994507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03571172 294.59994507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03571173 294.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03571174 294.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03571175 294.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03571176 294.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03571177 294.60000610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03571178 294.60000610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03571179 294.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03571180 294.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03571181 294.60006714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03571182 294.60006714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03571183 294.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03571184 294.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03571185 294.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03571186 294.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03571187 294.60015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03571188 294.60015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03571189 294.60018921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03571190 294.60021973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03571191 294.60025024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03571192 294.60025024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03571193 294.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03571194 294.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03571195 294.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03571196 294.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03571197 294.60031128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03571198 294.60031128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03571199 294.60034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03571200 294.60034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03571201 294.60037231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03571202 294.60037231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03571203 294.60040283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03571204 294.60040283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03571205 294.60043335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03571206 294.60043335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03571207 294.60043335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03571208 294.60043335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03571209 294.60046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03571210 294.60049438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03571211 294.60052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03571212 294.60052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03571213 294.60055542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03571214 294.60055542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03571215 294.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03571216 294.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03571217 294.60061646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03571218 294.60061646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03571219 294.60061646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03571220 294.60061646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03571221 294.60064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03571222 294.60064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03571223 294.60067749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03571224 294.60067749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03571225 294.60070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03571226 294.60070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03571227 294.60073853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03571228 294.60073853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03571229 294.60076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03571230 294.60076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03571231 294.60076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03571232 294.60079956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03571233 294.60083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03571234 294.60083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03571235 294.60086060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03571236 294.60086060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03571237 294.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03571238 294.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03571239 294.60092163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03571240 294.60092163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03571241 294.60092163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03571242 294.60092163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03571243 294.60095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03571244 294.60095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03571245 294.60098267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03571246 294.60098267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03571247 294.60101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03571248 294.60101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03571249 294.60104370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03571250 294.60104370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03571251 294.60107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03571252 294.60107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03571253 294.60107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03571254 294.60110474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03571255 294.60113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03571256 294.60113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03571257 294.60116577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03571258 294.60116577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03571259 294.60119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03571260 294.60119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03571261 294.60122681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03571262 294.60122681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03571263 294.60122681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03571264 294.60122681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03571265 294.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03571266 294.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03571267 294.60128784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03571268 294.60128784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03571269 294.60131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03571270 294.60131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03571271 294.60134888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03571272 294.60134888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03571273 294.60137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03571274 294.60140991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03571275 294.60140991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03571276 294.60140991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03571277 294.60144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03571278 294.60144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03571279 294.60147095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03571280 294.60147095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03571281 294.60150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03571282 294.60150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03571283 294.60153198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03571284 294.60153198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03571285 294.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03571286 294.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03571287 294.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03571288 294.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03571289 294.60159302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03571290 294.60159302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03571291 294.60162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03571292 294.60162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03571293 294.60165405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03571294 294.60165405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03571295 294.60168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03571296 294.60171509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03571297 294.60171509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03571298 294.60171509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03571299 294.60174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03571300 294.60174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03571301 294.60177612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03571302 294.60177612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03571303 294.60180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03571304 294.60180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03571305 294.60183716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03571306 294.60183716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03571307 294.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03571308 294.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03571309 294.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03571310 294.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03571311 294.60189819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03571312 294.60189819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03571313 294.60192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03571314 294.60192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03571315 294.60195923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03571316 294.60198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03571317 294.60202026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03571318 294.60202026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03571319 294.60202026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03571320 294.60202026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03571321 294.60205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03571322 294.60205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03571323 294.60208130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03571324 294.60208130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03571325 294.60211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03571326 294.60211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03571327 294.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03571328 294.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03571329 294.60220337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03571330 294.60220337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03571331 294.60220337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03571332 294.60220337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03571333 294.60223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03571334 294.60223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03571335 294.60226440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03571336 294.60226440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03571337 294.60229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03571338 294.60229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03571339 294.60232544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03571340 294.60232544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03571341 294.60235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03571342 294.60235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03571343 294.60238647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03571344 294.60238647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03571345 294.60241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03571346 294.60241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03571347 294.60244751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03571348 294.60244751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03571349 294.60247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03571350 294.60247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03571351 294.60250854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03571352 294.60250854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03571353 294.60250854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03571354 294.60250854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03571355 294.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03571356 294.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03571357 294.60256958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03571358 294.60256958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03571359 294.60260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03571360 294.60260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03571361 294.60263062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03571362 294.60263062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03571363 294.60266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03571364 294.60266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03571365 294.60269165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03571366 294.60269165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03571367 294.60272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03571368 294.60272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03571369 294.60275269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03571370 294.60275269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03571371 294.60278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03571372 294.60278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03571373 294.60281372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03571374 294.60281372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03571375 294.60281372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03571376 294.60281372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03571377 294.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03571378 294.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03571379 294.60287476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03571380 294.60287476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03571381 294.60290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03571382 294.60290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03571383 294.60293579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03571384 294.60296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03571385 294.60299683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03571386 294.60299683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03571387 294.60299683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03571388 294.60299683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03571389 294.60302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03571390 294.60302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03571391 294.60305786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03571392 294.60305786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03571393 294.60308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03571394 294.60308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03571395 294.60311890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03571396 294.60311890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03571397 294.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03571398 294.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03571399 294.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03571400 294.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03571401 294.60317993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03571402 294.60317993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03571403 294.60321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03571404 294.60321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03571405 294.60324097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03571406 294.60327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03571407 294.60330200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03571408 294.60330200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03571409 294.60330200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03571410 294.60330200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03571411 294.60333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03571412 294.60333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03571413 294.60336304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03571414 294.60336304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03571415 294.60339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03571416 294.60339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03571417 294.60342407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03571418 294.60342407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03571419 294.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03571420 294.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03571421 294.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03571422 294.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03571423 294.60348511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03571424 294.60348511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03571425 294.60351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03571426 294.60351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03571427 294.60354614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03571428 294.60357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03571429 294.60360718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03571430 294.60360718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03571431 294.60360718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03571432 294.60360718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03571433 294.60363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03571434 294.60363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03571435 294.60366821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03571436 294.60366821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03571437 294.60369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03571438 294.60369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03571439 294.60372925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03571440 294.60372925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03571441 294.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03571442 294.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03571443 294.60379028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03571444 294.60379028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03571445 294.60379028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03571446 294.60379028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03571447 294.60382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03571448 294.60385132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03571449 294.60388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03571450 294.60388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03571451 294.60391235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03571452 294.60391235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03571453 294.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03571454 294.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03571455 294.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03571456 294.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03571457 294.60397339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03571458 294.60397339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03571459 294.60400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03571460 294.60400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03571461 294.60403442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03571462 294.60403442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03571463 294.60406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03571464 294.60406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03571465 294.60409546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03571466 294.60409546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03571467 294.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03571468 294.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03571469 294.60415649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03571470 294.60415649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03571471 294.60418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03571472 294.60418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03571473 294.60421753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03571474 294.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03571475 294.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03571476 294.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03571477 294.60427856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03571478 294.60427856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03571479 294.60430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03571480 294.60430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03571481 294.60433960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03571482 294.60433960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03571483 294.60437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03571484 294.60437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03571485 294.60440063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03571486 294.60440063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03571487 294.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03571488 294.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03571489 294.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03571490 294.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03571491 294.60446167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03571492 294.60446167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03571493 294.60449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03571494 294.60452271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03571495 294.60455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03571496 294.60455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03571497 294.60458374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03571498 294.60458374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03571499 294.60458374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03571500 294.60458374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03571501 294.60461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03571502 294.60461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03571503 294.60464478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03571504 294.60464478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03571505 294.60467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03571506 294.60467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03571507 294.60470581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03571508 294.60470581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03571509 294.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03571510 294.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03571511 294.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03571512 294.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03571513 294.60476685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03571514 294.60476685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03571515 294.60479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03571516 294.60482788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03571517 294.60485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03571518 294.60485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03571519 294.60488892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03571520 294.60488892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03571521 294.60488892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03571522 294.60488892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03571523 294.60491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03571524 294.60491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03571525 294.60494995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03571526 294.60494995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03571527 294.60498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03571528 294.60498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03571529 294.60501099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03571530 294.60501099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03571531 294.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03571532 294.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03571533 294.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03571534 294.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03571535 294.60507202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03571536 294.60510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03571537 294.60513306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03571538 294.60513306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03571539 294.60516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03571540 294.60516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03571541 294.60519409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03571542 294.60519409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03571543 294.60522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03571544 294.60522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03571545 294.60522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03571546 294.60522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03571547 294.60525513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03571548 294.60525513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03571549 294.60528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03571550 294.60528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03571551 294.60531616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03571552 294.60531616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03571553 294.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03571554 294.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03571555 294.60537720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03571556 294.60537720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03571557 294.60540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03571558 294.60540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03571559 294.60543823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03571560 294.60543823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03571561 294.60546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03571562 294.60546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03571563 294.60549927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03571564 294.60549927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03571565 294.60552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03571566 294.60552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03571567 294.60552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03571568 294.60552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03571569 294.60556030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03571570 294.60556030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03571571 294.60559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03571572 294.60559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03571573 294.60562134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03571574 294.60565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03571575 294.60568237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03571576 294.60568237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03571577 294.60568237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03571578 294.60568237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03571579 294.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03571580 294.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03571581 294.60574341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03571582 294.60574341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03571583 294.60577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03571584 294.60577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03571585 294.60580444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03571586 294.60580444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03571587 294.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03571588 294.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03571589 294.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03571590 294.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03571591 294.60586548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03571592 294.60586548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03571593 294.60589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03571594 294.60589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03571595 294.60592651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03571596 294.60595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03571597 294.60598755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03571598 294.60598755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03571599 294.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03571600 294.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03571601 294.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03571602 294.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03571603 294.60604858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03571604 294.60604858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03571605 294.60607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03571606 294.60607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03571607 294.60610962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03571608 294.60610962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03571609 294.60617065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03571610 294.60617065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03571611 294.60617065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03571612 294.60617065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03571613 294.60620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03571614 294.60620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03571615 294.60623169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03571616 294.60623169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03571617 294.60626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03571618 294.60626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03571619 294.60629272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03571620 294.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03571621 294.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03571622 294.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03571623 294.60635376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03571624 294.60635376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03571625 294.60638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03571626 294.60638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03571627 294.60641479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03571628 294.60641479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03571629 294.60644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03571630 294.60644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03571631 294.60647583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03571632 294.60647583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03571633 294.60647583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03571634 294.60647583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03571635 294.60650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03571636 294.60650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03571637 294.60653687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03571638 294.60653687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03571639 294.60656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03571640 294.60656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03571641 294.60659790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03571642 294.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03571643 294.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03571644 294.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03571645 294.60665894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03571646 294.60665894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03571647 294.60668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03571648 294.60668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03571649 294.60671997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03571650 294.60671997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03571651 294.60675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03571652 294.60675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03571653 294.60678101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03571654 294.60678101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03571655 294.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03571656 294.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03571657 294.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03571658 294.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03571659 294.60684204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03571660 294.60684204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03571661 294.60687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03571662 294.60690308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03571663 294.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03571664 294.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03571665 294.60696411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03571666 294.60696411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03571667 294.60696411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03571668 294.60696411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03571669 294.60699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03571670 294.60699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03571671 294.60702515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03571672 294.60702515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03571673 294.60705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03571674 294.60705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03571675 294.60708618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03571676 294.60708618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03571677 294.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03571678 294.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03571679 294.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03571680 294.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03571681 294.60714722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03571682 294.60714722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03571683 294.60717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03571684 294.60720825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03571685 294.60723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03571686 294.60723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03571687 294.60726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03571688 294.60726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03571689 294.60726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03571690 294.60726929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03571691 294.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03571692 294.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03571693 294.60733032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03571694 294.60733032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03571695 294.60736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03571696 294.60736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03571697 294.60739136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03571698 294.60739136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03571699 294.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03571700 294.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03571701 294.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03571702 294.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03571703 294.60745239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03571704 294.60748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03571705 294.60751343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03571706 294.60751343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03571707 294.60754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03571708 294.60754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03571709 294.60757446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03571710 294.60757446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03571711 294.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03571712 294.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03571713 294.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03571714 294.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03571715 294.60763550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03571716 294.60763550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03571717 294.60766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03571718 294.60766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03571719 294.60769653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03571720 294.60769653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03571721 294.60772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03571722 294.60772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03571723 294.60775757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03571724 294.60775757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03571725 294.60775757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03571726 294.60778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03571727 294.60781860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03571728 294.60781860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03571729 294.60784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03571730 294.60784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03571731 294.60787964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03571732 294.60787964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03571733 294.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03571734 294.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03571735 294.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03571736 294.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03571737 294.60794067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03571738 294.60794067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03571739 294.60797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03571740 294.60797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03571741 294.60800171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03571742 294.60800171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03571743 294.60803223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03571744 294.60803223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03571745 294.60806274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03571746 294.60806274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03571747 294.60809326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03571748 294.60809326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03571749 294.60812378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03571750 294.60812378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03571751 294.60818481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03571752 294.60818481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03571753 294.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03571754 294.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03571755 294.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03571756 294.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03571757 294.60824585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03571758 294.60824585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03571759 294.60827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03571760 294.60827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03571761 294.60830688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03571762 294.60830688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03571763 294.60833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03571764 294.60833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03571765 294.60836792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03571766 294.60836792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03571767 294.60839844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03571768 294.60839844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03571769 294.60839844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03571770 294.60842896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03571771 294.60845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03571772 294.60845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03571773 294.60848999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03571774 294.60848999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03571775 294.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03571776 294.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03571777 294.60855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03571778 294.60855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03571779 294.60855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03571780 294.60855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03571781 294.60858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03571782 294.60858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03571783 294.60861206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03571784 294.60861206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03571785 294.60864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03571786 294.60864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03571787 294.60867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03571788 294.60867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03571789 294.60870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03571790 294.60870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03571791 294.60873413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03571792 294.60873413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03571793 294.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03571794 294.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03571795 294.60879517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03571796 294.60879517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03571797 294.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03571798 294.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03571799 294.60885620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03571800 294.60885620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03571801 294.60885620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03571802 294.60885620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03571803 294.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03571804 294.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03571805 294.60891724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03571806 294.60891724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03571807 294.60894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03571808 294.60894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03571809 294.60897827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03571810 294.60900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03571811 294.60900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03571812 294.60900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03571813 294.60903931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03571814 294.60903931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03571815 294.60906982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03571816 294.60906982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03571817 294.60910034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03571818 294.60910034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03571819 294.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03571820 294.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03571821 294.60916138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03571822 294.60916138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03571823 294.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03571824 294.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03571825 294.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03571826 294.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03571827 294.60922241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03571828 294.60922241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03571829 294.60925293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03571830 294.60928345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03571831 294.60931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03571832 294.60931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03571833 294.60934448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03571834 294.60934448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03571835 294.60934448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03571836 294.60934448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03571837 294.60937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03571838 294.60937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03571839 294.60940552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03571840 294.60940552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03571841 294.60943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03571842 294.60943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03571843 294.60946655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03571844 294.60946655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03571845 294.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03571846 294.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03571847 294.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03571848 294.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03571849 294.60952759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03571850 294.60955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03571851 294.60955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03571852 294.60958862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03571853 294.60961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03571854 294.60961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03571855 294.60964966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03571856 294.60964966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03571857 294.60964966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03571858 294.60964966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03571859 294.60968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03571860 294.60968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03571861 294.60971069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03571862 294.60971069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03571863 294.60974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03571864 294.60974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03571865 294.60977173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03571866 294.60977173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03571867 294.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03571868 294.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03571869 294.60983276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03571870 294.60983276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03571871 294.60986328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03571872 294.60986328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03571873 294.60989380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03571874 294.60989380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03571875 294.60992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03571876 294.60995483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03571877 294.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03571878 294.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03571879 294.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03571880 294.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03571881 294.61001587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03571882 294.61001587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03571883 294.61004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03571884 294.61004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03571885 294.61007690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03571886 294.61007690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03571887 294.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03571888 294.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03571889 294.61013794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03571890 294.61013794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03571891 294.61016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03571892 294.61016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03571893 294.61019897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03571894 294.61019897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03571895 294.61022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03571896 294.61022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03571897 294.61026001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03571898 294.61026001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03571899 294.61029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03571900 294.61029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03571901 294.61029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03571902 294.61032104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03571903 294.61035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03571904 294.61035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03571905 294.61038208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03571906 294.61038208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03571907 294.61041260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03571908 294.61041260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03571909 294.61044312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03571910 294.61044312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03571911 294.61044312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03571912 294.61044312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03571913 294.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03571914 294.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03571915 294.61050415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03571916 294.61050415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03571917 294.61053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03571918 294.61053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03571919 294.61056519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03571920 294.61056519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03571921 294.61059570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03571922 294.61062622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03571923 294.61062622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03571924 294.61062622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03571925 294.61065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03571926 294.61065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03571927 294.61068726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03571928 294.61068726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03571929 294.61071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03571930 294.61071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03571931 294.61074829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03571932 294.61074829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03571933 294.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03571934 294.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03571935 294.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03571936 294.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03571937 294.61080933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03571938 294.61080933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03571939 294.61083984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03571940 294.61083984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03571941 294.61087036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03571942 294.61090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03571943 294.61093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03571944 294.61093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03571945 294.61093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03571946 294.61093140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03571947 294.61096191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03571948 294.61096191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03571949 294.61099243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03571950 294.61099243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03571951 294.61102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03571952 294.61102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03571953 294.61105347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03571954 294.61105347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03571955 294.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03571956 294.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03571957 294.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03571958 294.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03571959 294.61111450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03571960 294.61111450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03571961 294.61114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03571962 294.61114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03571963 294.61117554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03571964 294.61120605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03571965 294.61123657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03571966 294.61123657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03571967 294.61123657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03571968 294.61123657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03571969 294.61126709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03571970 294.61126709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03571971 294.61129761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03571972 294.61129761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03571973 294.61132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03571974 294.61132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03571975 294.61135864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03571976 294.61135864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03571977 294.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03571978 294.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03571979 294.61141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03571980 294.61141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03571981 294.61141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03571982 294.61141968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03571983 294.61145020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03571984 294.61148071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03571985 294.61151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03571986 294.61151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03571987 294.61154175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03571988 294.61154175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03571989 294.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03571990 294.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03571991 294.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03571992 294.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03571993 294.61160278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03571994 294.61160278 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03571995 294.61163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03571996 294.61163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03571997 294.61166382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03571998 294.61166382 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03571999 294.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03572000 294.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03572001 294.61172485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03572002 294.61172485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03572003 294.61172485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03572004 294.61175537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03572005 294.61178589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03572006 294.61178589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03572007 294.61181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03572008 294.61181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03572009 294.61184692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03572010 294.61184692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03572011 294.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03572012 294.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03572013 294.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03572014 294.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03572015 294.61190796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03572016 294.61190796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03572017 294.61193848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03572018 294.61193848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03572019 294.61196899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03572020 294.61196899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03572021 294.61199951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03572022 294.61199951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03572023 294.61203003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03572024 294.61203003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03572025 294.61203003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03572026 294.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03572027 294.61209106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03572028 294.61209106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03572029 294.61212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03572030 294.61212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03572031 294.61215210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03572032 294.61218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03572033 294.61221313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03572034 294.61221313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03572035 294.61221313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03572036 294.61221313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03572037 294.61224365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03572038 294.61224365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03572039 294.61227417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03572040 294.61227417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03572041 294.61230469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03572042 294.61230469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03572043 294.61233521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03572044 294.61233521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03572045 294.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03572046 294.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03572047 294.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03572048 294.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03572049 294.61239624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03572050 294.61242676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03572051 294.61245728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03572052 294.61245728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03572053 294.61248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03572054 294.61248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03572055 294.61251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03572056 294.61251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03572057 294.61251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03572058 294.61251831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03572059 294.61254883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03572060 294.61254883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03572061 294.61257935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03572062 294.61257935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03572063 294.61260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03572064 294.61260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03572065 294.61264038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03572066 294.61264038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03572067 294.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03572068 294.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03572069 294.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03572070 294.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03572071 294.61270142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03572072 294.61273193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03572073 294.61276245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03572074 294.61276245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03572075 294.61279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03572076 294.61279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03572077 294.61282349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03572078 294.61282349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03572079 294.61282349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03572080 294.61282349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03572081 294.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03572082 294.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03572083 294.61288452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03572084 294.61288452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03572085 294.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03572086 294.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03572087 294.61294556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03572088 294.61294556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03572089 294.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03572090 294.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03572091 294.61300659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03572092 294.61300659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03572093 294.61300659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03572094 294.61303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03572095 294.61306763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03572096 294.61306763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03572097 294.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03572098 294.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03572099 294.61312866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03572100 294.61312866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03572101 294.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03572102 294.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03572103 294.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03572104 294.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03572105 294.61318970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03572106 294.61318970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03572107 294.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03572108 294.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03572109 294.61325073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03572110 294.61325073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03572111 294.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03572112 294.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03572113 294.61331177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03572114 294.61331177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03572115 294.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03572116 294.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03572117 294.61337280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03572118 294.61337280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03572119 294.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03572120 294.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03572121 294.61343384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03572122 294.61343384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03572123 294.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03572124 294.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03572125 294.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03572126 294.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03572127 294.61349487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03572128 294.61349487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03572129 294.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03572130 294.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03572131 294.61355591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03572132 294.61355591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03572133 294.61358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03572134 294.61361694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03572135 294.61361694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03572136 294.61361694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03572137 294.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03572138 294.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03572139 294.61367798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03572140 294.61367798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03572141 294.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03572142 294.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03572143 294.61373901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03572144 294.61373901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03572145 294.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03572146 294.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03572147 294.61380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03572148 294.61380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03572149 294.61380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03572150 294.61380005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03572151 294.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03572152 294.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03572153 294.61386108 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03572154 294.61389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03572155 294.61392212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03572156 294.61392212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03572157 294.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03572158 294.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03572159 294.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03572160 294.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03572161 294.61398315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03572162 294.61398315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03572163 294.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03572164 294.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03572165 294.61404419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03572166 294.61404419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03572167 294.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03572168 294.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03572169 294.61410522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03572170 294.61410522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03572171 294.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03572172 294.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03572173 294.61416626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03572174 294.61416626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03572175 294.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03572176 294.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03572177 294.61422729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03572178 294.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03572179 294.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03572180 294.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03572181 294.61428833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03572182 294.61428833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03572183 294.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03572184 294.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03572185 294.61434937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03572186 294.61434937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03572187 294.61441040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03572188 294.61441040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03572189 294.61441040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03572190 294.61441040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03572191 294.61447144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03572192 294.61447144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03572193 294.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03572194 294.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03572195 294.61453247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03572196 294.61453247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03572197 294.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03572198 294.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03572199 294.61459351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03572200 294.61459351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03572201 294.61459351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03572202 294.61459351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03572203 294.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03572204 294.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03572205 294.61465454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03572206 294.61465454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03572207 294.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03572208 294.61471558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03572209 294.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03572210 294.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03572211 294.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03572212 294.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03572213 294.61477661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03572214 294.61477661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03572215 294.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03572216 294.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03572217 294.61483765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03572218 294.61483765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03572219 294.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03572220 294.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03572221 294.61489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03572222 294.61489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03572223 294.61489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03572224 294.61489868 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03572225 294.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03572226 294.61495972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03572227 294.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03572228 294.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03572229 294.61502075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03572230 294.61502075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03572231 294.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03572232 294.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03572233 294.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03572234 294.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03572235 294.61508179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03572236 294.61508179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03572237 294.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03572238 294.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03572239 294.61514282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03572240 294.61514282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03572241 294.61517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03572242 294.61517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03572243 294.61520386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03572244 294.61520386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03572245 294.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03572246 294.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03572247 294.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03572248 294.61526489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03572249 294.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03572250 294.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03572251 294.61532593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03572252 294.61532593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03572253 294.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03572254 294.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03572255 294.61544800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03572256 294.61544800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03572257 294.61547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03572258 294.61547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03572259 294.61550903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03572260 294.61550903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03572261 294.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03572262 294.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03572263 294.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03572264 294.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03572265 294.61557007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03572266 294.61557007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03572267 294.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03572268 294.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03572269 294.61563110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03572270 294.61563110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03572271 294.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03572272 294.61569214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03572273 294.61569214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03572274 294.61569214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03572275 294.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03572276 294.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03572277 294.61575317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03572278 294.61575317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03572279 294.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03572280 294.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03572281 294.61581421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03572282 294.61581421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03572283 294.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03572284 294.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03572285 294.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03572286 294.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03572287 294.61587524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03572288 294.61587524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03572289 294.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03572290 294.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03572291 294.61593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03572292 294.61593628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03572293 294.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03572294 294.61599731 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03572295 294.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03572296 294.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03572297 294.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03572298 294.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03572299 294.61605835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03572300 294.61605835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03572301 294.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03572302 294.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03572303 294.61611938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03572304 294.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03572305 294.61618042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03572306 294.61618042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03572307 294.61618042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03572308 294.61618042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03572309 294.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03572310 294.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -03572311 294.61624146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03572312 294.61624146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -03572313 294.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03572314 294.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -03572315 294.61630249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03572316 294.61630249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -03572317 294.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03572318 294.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -03572319 294.61636353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03572320 294.61636353 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -03572321 294.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03572322 294.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -03572323 294.61642456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03572324 294.61642456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -03572325 294.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03572326 294.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -03572327 294.61648560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03572328 294.61648560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -03572329 294.61648560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03572330 294.61648560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -03572331 294.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03572332 294.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -03572333 294.61654663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03572334 294.61654663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -03572335 294.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03572336 294.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -03572337 294.61660767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03572338 294.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -03572339 294.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03572340 294.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -03572341 294.61666870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03572342 294.61666870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -03572343 294.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03572344 294.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -03572345 294.61672974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03572346 294.61672974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -03572347 294.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03572348 294.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -03572349 294.61679077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03572350 294.61679077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -03572351 294.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03572352 294.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -03572353 294.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03572354 294.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -03572355 294.61685181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03572356 294.61685181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -03572357 294.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03572358 294.61691284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -03572359 294.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03572360 294.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -03572361 294.61697388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03572362 294.61697388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -03572363 294.61697388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03572364 294.61697388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -03572365 294.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03572366 294.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -03572367 294.61703491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03572368 294.61703491 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -03572369 294.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03572370 294.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -03572371 294.61709595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03572372 294.61709595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -03572373 294.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03572374 294.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -03572375 294.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03572376 294.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -03572377 294.61715698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03572378 294.61715698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -03572379 294.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03572380 294.61721802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -03572381 294.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03572382 294.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -03572383 294.61727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03572384 294.61727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -03572385 294.61727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03572386 294.61727905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -03572387 294.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03572388 294.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -03572389 294.61734009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03572390 294.61734009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -03572391 294.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03572392 294.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -03572393 294.61740112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03572394 294.61740112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -03572395 294.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03572396 294.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -03572397 294.61746216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03572398 294.61746216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -03572399 294.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03572400 294.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -03572401 294.61752319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03572402 294.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -03572403 294.61758423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03572404 294.61758423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -03572405 294.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03572406 294.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -03572407 294.61764526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03572408 294.61764526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -03572409 294.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03572410 294.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -03572411 294.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03572412 294.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -03572413 294.61776733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03572414 294.61776733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -03572415 294.61776733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03572416 294.61779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -03572417 294.61782837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03572418 294.61782837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -03572419 294.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03572420 294.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -03572421 294.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03572422 294.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -03572423 294.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03572424 294.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -03572425 294.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03572426 294.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -03572427 294.61801147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03572428 294.61801147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -03572429 294.61807251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03572430 294.61807251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -03572431 294.61807251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03572432 294.61807251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -03572433 294.61813354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03572434 294.61813354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -03572435 294.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03572436 294.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -03572437 294.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03572438 294.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -03572439 294.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03572440 294.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -03572441 294.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03572442 294.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -03572443 294.61831665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03572444 294.61831665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -03572445 294.61834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03572446 294.61837769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -03572447 294.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03572448 294.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -03572449 294.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03572450 294.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -03572451 294.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03572452 294.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -03572453 294.61849976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03572454 294.61849976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -03572455 294.61856079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03572456 294.61856079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -03572457 294.61856079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03572458 294.61856079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -03572459 294.61862183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03572460 294.61862183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -03572461 294.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03572462 294.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -03572463 294.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03572464 294.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -03572465 294.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03572466 294.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -03572467 294.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03572468 294.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -03572469 294.61880493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03572470 294.61880493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -03572471 294.61886597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03572472 294.61886597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -03572473 294.61886597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03572474 294.61886597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -03572475 294.61892700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03572476 294.61892700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -03572477 294.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03572478 294.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -03572479 294.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03572480 294.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -03572481 294.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03572482 294.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -03572483 294.61904907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03572484 294.61904907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -03572485 294.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03572486 294.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -03572487 294.61911011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03572488 294.61911011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -03572489 294.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03572490 294.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -03572491 294.61917114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03572492 294.61917114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -03572493 294.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03572494 294.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -03572495 294.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03572496 294.61923218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -03572497 294.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03572498 294.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -03572499 294.61929321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03572500 294.61929321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -03572501 294.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03572502 294.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -03572503 294.61935425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03572504 294.61935425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -03572505 294.61935425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03572506 294.61935425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -03572507 294.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03572508 294.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -03572509 294.61941528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03572510 294.61941528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -03572511 294.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03572512 294.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -03572513 294.61947632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03572514 294.61947632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -03572515 294.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03572516 294.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -03572517 294.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03572518 294.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -03572519 294.61953735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03572520 294.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -03572521 294.61959839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03572522 294.61959839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -03572523 294.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03572524 294.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -03572525 294.61965942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03572526 294.61965942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -03572527 294.61965942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03572528 294.61965942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -03572529 294.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03572530 294.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -03572531 294.61972046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03572532 294.61972046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -03572533 294.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03572534 294.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -03572535 294.61978149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03572536 294.61978149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -03572537 294.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03572538 294.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -03572539 294.61984253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03572540 294.61984253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -03572541 294.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03572542 294.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -03572543 294.61990356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03572544 294.61990356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -03572545 294.61993408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03572546 294.61993408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -03572547 294.61996460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03572548 294.61996460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -03572549 294.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03572550 294.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -03572551 294.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03572552 294.62002563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -03572553 294.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03572554 294.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -03572555 294.62008667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03572556 294.62008667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -03572557 294.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03572558 294.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -03572559 294.62014771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03572560 294.62014771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -03572561 294.62026978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03572562 294.62026978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -03572563 294.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03572564 294.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -03572565 294.62033081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03572566 294.62033081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -03572567 294.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03572568 294.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -03572569 294.62039185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03572570 294.62039185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -03572571 294.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03572572 294.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -03572573 294.62045288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03572574 294.62045288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -03572575 294.62045288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03572576 294.62045288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -03572577 294.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03572578 294.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -03572579 294.62051392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03572580 294.62051392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -03572581 294.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03572582 294.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -03572583 294.62057495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03572584 294.62057495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -03572585 294.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03572586 294.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -03572587 294.62063599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03572588 294.62063599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -03572589 294.62063599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03572590 294.62063599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -03572591 294.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03572592 294.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -03572593 294.62069702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03572594 294.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -03572595 294.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03572596 294.62075806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -03572597 294.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03572598 294.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -03572599 294.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03572600 294.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -03572601 294.62081909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03572602 294.62081909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -03572603 294.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03572604 294.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -03572605 294.62088013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03572606 294.62088013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -03572607 294.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03572608 294.62094116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -03572609 294.62094116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03572610 294.62094116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -03572611 294.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03572612 294.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -03572613 294.62100220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03572614 294.62100220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -03572615 294.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03572616 294.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -03572617 294.62106323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03572618 294.62106323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -03572619 294.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03572620 294.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -03572621 294.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03572622 294.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -03572623 294.62112427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03572624 294.62112427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -03572625 294.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03572626 294.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -03572627 294.62118530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03572628 294.62118530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -03572629 294.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03572630 294.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -03572631 294.62124634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03572632 294.62124634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -03572633 294.62124634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03572634 294.62124634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -03572635 294.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03572636 294.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -03572637 294.62130737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03572638 294.62130737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -03572639 294.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03572640 294.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -03572641 294.62136841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03572642 294.62136841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -03572643 294.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03572644 294.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -03572645 294.62142944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03572646 294.62142944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -03572647 294.62142944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03572648 294.62142944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -03572649 294.62149048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03572650 294.62149048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -03572651 294.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03572652 294.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -03572653 294.62155151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03572654 294.62155151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -03572655 294.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03572656 294.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -03572657 294.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03572658 294.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -03572659 294.62161255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03572660 294.62161255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -03572661 294.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03572662 294.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -03572663 294.62167358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03572664 294.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -03572665 294.62173462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03572666 294.62173462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -03572667 294.62173462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03572668 294.62173462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -03572669 294.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03572670 294.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -03572671 294.62179565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03572672 294.62179565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -03572673 294.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03572674 294.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -03572675 294.62185669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03572676 294.62185669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -03572677 294.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03572678 294.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -03572679 294.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03572680 294.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -03572681 294.62191772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03572682 294.62191772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -03572683 294.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03572684 294.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -03572685 294.62197876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03572686 294.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -03572687 294.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03572688 294.62203979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -03572689 294.62203979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03572690 294.62203979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -03572691 294.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03572692 294.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -03572693 294.62210083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03572694 294.62210083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -03572695 294.62216187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03572696 294.62216187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -03572697 294.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03572698 294.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -03572699 294.62222290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03572700 294.62222290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -03572701 294.62222290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03572702 294.62222290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -03572703 294.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03572704 294.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -03572705 294.62228394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03572706 294.62228394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -03572707 294.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03572708 294.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -03572709 294.62234497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03572710 294.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -03572711 294.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03572712 294.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -03572713 294.62240601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03572714 294.62240601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -03572715 294.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03572716 294.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -03572717 294.62246704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03572718 294.62246704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -03572719 294.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03572720 294.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -03572721 294.62252808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03572722 294.62252808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -03572723 294.62252808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03572724 294.62252808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -03572725 294.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03572726 294.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -03572727 294.62258911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03572728 294.62258911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -03572729 294.62265015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03572730 294.62265015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -03572731 294.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03572732 294.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -03572733 294.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03572734 294.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -03572735 294.62271118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03572736 294.62271118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -03572737 294.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03572738 294.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -03572739 294.62277222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03572740 294.62277222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -03572741 294.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03572742 294.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -03572743 294.62283325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03572744 294.62283325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -03572745 294.62283325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03572746 294.62283325 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -03572747 294.62286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03572748 294.62286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -03572749 294.62289429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03572750 294.62289429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -03572751 294.62292480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03572752 294.62292480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -03572753 294.62295532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03572754 294.62295532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -03572755 294.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03572756 294.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -03572757 294.62301636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03572758 294.62301636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -03572759 294.62304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03572760 294.62304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -03572761 294.62307739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03572762 294.62307739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -03572763 294.62310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03572764 294.62310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -03572765 294.62313843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03572766 294.62313843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -03572767 294.62316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03572768 294.62316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -03572769 294.62316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03572770 294.62316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -03572771 294.62319946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03572772 294.62319946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -03572773 294.62322998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03572774 294.62322998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -03572775 294.62326050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03572776 294.62326050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -03572777 294.62329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03572778 294.62329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -03572779 294.62332153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03572780 294.62332153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -03572781 294.62332153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03572782 294.62332153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -03572783 294.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03572784 294.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -03572785 294.62338257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03572786 294.62338257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -03572787 294.62341309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03572788 294.62341309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -03572789 294.62344360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03572790 294.62344360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -03572791 294.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03572792 294.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -03572793 294.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03572794 294.62350464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -03572795 294.62353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03572796 294.62353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -03572797 294.62356567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03572798 294.62356567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -03572799 294.62359619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03572800 294.62359619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -03572801 294.62362671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03572802 294.62362671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -03572803 294.62362671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03572804 294.62362671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -03572805 294.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03572806 294.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -03572807 294.62368774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03572808 294.62368774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -03572809 294.62371826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03572810 294.62371826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -03572811 294.62377930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03572812 294.62377930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -03572813 294.62380981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03572814 294.62380981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -03572815 294.62380981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03572816 294.62380981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -03572817 294.62384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03572818 294.62384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -03572819 294.62387085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03572820 294.62387085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -03572821 294.62390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03572822 294.62390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -03572823 294.62393188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03572824 294.62393188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -03572825 294.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03572826 294.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -03572827 294.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03572828 294.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -03572829 294.62399292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03572830 294.62402344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -03572831 294.62405396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03572832 294.62405396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -03572833 294.62408447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03572834 294.62408447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -03572835 294.62411499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03572836 294.62411499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -03572837 294.62414551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03572838 294.62414551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -03572839 294.62417603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03572840 294.62417603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -03572841 294.62420654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03572842 294.62420654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -03572843 294.62423706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03572844 294.62423706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -03572845 294.62426758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03572846 294.62426758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -03572847 294.62426758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03572848 294.62426758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -03572849 294.62429810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03572850 294.62429810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -03572851 294.62432861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03572852 294.62435913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -03572853 294.62438965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03572854 294.62438965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -03572855 294.62442017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03572856 294.62442017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -03572857 294.62442017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03572858 294.62442017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -03572859 294.62445068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03572860 294.62445068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -03572861 294.62448120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03572862 294.62448120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -03572863 294.62451172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03572864 294.62451172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -03572865 294.62454224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03572866 294.62454224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -03572867 294.62457275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03572868 294.62457275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -03572869 294.62460327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03572870 294.62460327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -03572871 294.62463379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03572872 294.62463379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -03572873 294.62466431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03572874 294.62466431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -03572875 294.62469482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03572876 294.62469482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -03572877 294.62472534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03572878 294.62472534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -03572879 294.62475586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03572880 294.62475586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -03572881 294.62475586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03572882 294.62475586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -03572883 294.62478638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03572884 294.62478638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -03572885 294.62484741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03572886 294.62484741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -03572887 294.62487793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03572888 294.62487793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -03572889 294.62490845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03572890 294.62490845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -03572891 294.62490845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03572892 294.62490845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -03572893 294.62493896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03572894 294.62493896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -03572895 294.62496948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03572896 294.62496948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -03572897 294.62500000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03572898 294.62500000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -03572899 294.62503052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03572900 294.62503052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -03572901 294.62506104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03572902 294.62506104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -03572903 294.62506104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03572904 294.62506104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -03572905 294.62509155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03572906 294.62509155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -03572907 294.62512207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03572908 294.62512207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -03572909 294.62515259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03572910 294.62518311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -03572911 294.62518311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03572912 294.62521362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -03572913 294.62521362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03572914 294.62521362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -03572915 294.62524414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03572916 294.62524414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -03572917 294.62527466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03572918 294.62527466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -03572919 294.62530518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03572920 294.62530518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -03572921 294.62533569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03572922 294.62533569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -03572923 294.62536621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03572924 294.62536621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -03572925 294.62539673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03572926 294.62539673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -03572927 294.62539673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03572928 294.62539673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -03572929 294.62542725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03572930 294.62542725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -03572931 294.62545776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03572932 294.62545776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -03572933 294.62548828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03572934 294.62548828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -03572935 294.62551880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03572936 294.62554932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -03572937 294.62554932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03572938 294.62554932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -03572939 294.62557983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03572940 294.62557983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -03572941 294.62561035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03572942 294.62561035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -03572943 294.62564087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03572944 294.62564087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -03572945 294.62567139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03572946 294.62567139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -03572947 294.62570190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03572948 294.62570190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -03572949 294.62570190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03572950 294.62570190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -03572951 294.62573242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03572952 294.62573242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -03572953 294.62576294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03572954 294.62576294 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -03572955 294.62579346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03572956 294.62579346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -03572957 294.62582397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03572958 294.62582397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -03572959 294.62585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03572960 294.62585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -03572961 294.62588501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03572962 294.62588501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -03572963 294.62591553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03572964 294.62591553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -03572965 294.62594604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03572966 294.62594604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -03572967 294.62597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03572968 294.62597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -03572969 294.62600708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03572970 294.62600708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -03572971 294.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03572972 294.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -03572973 294.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03572974 294.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -03572975 294.62606812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03572976 294.62609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -03572977 294.62612915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03572978 294.62612915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -03572979 294.62619019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03572980 294.62619019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -03572981 294.62619019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03572982 294.62619019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -03572983 294.62622070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03572984 294.62622070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -03572985 294.62625122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03572986 294.62625122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -03572987 294.62628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03572988 294.62628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -03572989 294.62631226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03572990 294.62631226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -03572991 294.62634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03572992 294.62634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -03572993 294.62637329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03572994 294.62637329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -03572995 294.62640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03572996 294.62640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -03572997 294.62643433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03572998 294.62643433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -03572999 294.62646484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03573000 294.62646484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -03573001 294.62649536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03573002 294.62649536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -03573003 294.62649536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03573004 294.62649536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -03573005 294.62652588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03573006 294.62652588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -03573007 294.62655640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03573008 294.62655640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -03573009 294.62658691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03573010 294.62658691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -03573011 294.62661743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03573012 294.62664795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -03573013 294.62664795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03573014 294.62664795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -03573015 294.62667847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03573016 294.62667847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -03573017 294.62670898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03573018 294.62670898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -03573019 294.62673950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03573020 294.62673950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -03573021 294.62677002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03573022 294.62677002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -03573023 294.62680054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03573024 294.62680054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -03573025 294.62683105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03573026 294.62683105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -03573027 294.62683105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03573028 294.62683105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -03573029 294.62686157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03573030 294.62689209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -03573031 294.62692261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03573032 294.62692261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -03573033 294.62695313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03573034 294.62695313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -03573035 294.62698364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03573036 294.62698364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -03573037 294.62698364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03573038 294.62698364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -03573039 294.62701416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03573040 294.62701416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -03573041 294.62704468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03573042 294.62704468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -03573043 294.62707520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03573044 294.62707520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -03573045 294.62710571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03573046 294.62710571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -03573047 294.62713623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03573048 294.62713623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -03573049 294.62713623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03573050 294.62713623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -03573051 294.62716675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03573052 294.62719727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -03573053 294.62722778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03573054 294.62722778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -03573055 294.62725830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03573056 294.62725830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -03573057 294.62728882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03573058 294.62728882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -03573059 294.62728882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03573060 294.62728882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -03573061 294.62731934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03573062 294.62731934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -03573063 294.62734985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03573064 294.62734985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -03573065 294.62738037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03573066 294.62738037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -03573067 294.62741089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03573068 294.62741089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -03573069 294.62744141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03573070 294.62744141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -03573071 294.62744141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03573072 294.62747192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -03573073 294.62750244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03573074 294.62750244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -03573075 294.62753296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03573076 294.62753296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -03573077 294.62756348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03573078 294.62756348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -03573079 294.62759399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03573080 294.62759399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -03573081 294.62762451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03573082 294.62762451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -03573083 294.62762451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03573084 294.62762451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -03573085 294.62765503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03573086 294.62765503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -03573087 294.62768555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03573088 294.62768555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -03573089 294.62771606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03573090 294.62771606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -03573091 294.62774658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03573092 294.62774658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -03573093 294.62777710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03573094 294.62777710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -03573095 294.62780762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03573096 294.62780762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -03573097 294.62783813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03573098 294.62783813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -03573099 294.62786865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03573100 294.62786865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -03573101 294.62789917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03573102 294.62789917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -03573103 294.62792969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03573104 294.62792969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -03573105 294.62792969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03573106 294.62792969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -03573107 294.62796021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03573108 294.62796021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -03573109 294.62799072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03573110 294.62799072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -03573111 294.62802124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03573112 294.62802124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -03573113 294.62805176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03573114 294.62808228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -03573115 294.62808228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03573116 294.62808228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -03573117 294.62811279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03573118 294.62811279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -03573119 294.62817383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03573120 294.62817383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -03573121 294.62820435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03573122 294.62820435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -03573123 294.62823486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03573124 294.62823486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -03573125 294.62823486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03573126 294.62823486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -03573127 294.62826538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03573128 294.62826538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -03573129 294.62829590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03573130 294.62829590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -03573131 294.62832642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03573132 294.62832642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -03573133 294.62835693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03573134 294.62835693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -03573135 294.62838745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03573136 294.62838745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -03573137 294.62841797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03573138 294.62841797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -03573139 294.62844849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03573140 294.62844849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -03573141 294.62847900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03573142 294.62847900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -03573143 294.62850952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03573144 294.62850952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -03573145 294.62854004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03573146 294.62854004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -03573147 294.62857056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03573148 294.62857056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -03573149 294.62857056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03573150 294.62857056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -03573151 294.62860107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03573152 294.62860107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -03573153 294.62863159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03573154 294.62863159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -03573155 294.62866211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03573156 294.62866211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -03573157 294.62869263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03573158 294.62872314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -03573159 294.62872314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03573160 294.62872314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -03573161 294.62875366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03573162 294.62875366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -03573163 294.62878418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03573164 294.62878418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -03573165 294.62881470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03573166 294.62881470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -03573167 294.62887573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03573168 294.62887573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -03573169 294.62887573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03573170 294.62887573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -03573171 294.62890625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03573172 294.62890625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -03573173 294.62893677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03573174 294.62893677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -03573175 294.62896729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03573176 294.62896729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -03573177 294.62899780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03573178 294.62899780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -03573179 294.62902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03573180 294.62902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -03573181 294.62902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03573182 294.62902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -03573183 294.62905884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03573184 294.62905884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -03573185 294.62908936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03573186 294.62911987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -03573187 294.62915039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03573188 294.62915039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -03573189 294.62918091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03573190 294.62918091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -03573191 294.62921143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03573192 294.62921143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -03573193 294.62921143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03573194 294.62921143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -03573195 294.62924194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03573196 294.62924194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -03573197 294.62927246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03573198 294.62927246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -03573199 294.62930298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03573200 294.62930298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -03573201 294.62933350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03573202 294.62933350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -03573203 294.62936401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03573204 294.62936401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -03573205 294.62936401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03573206 294.62939453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -03573207 294.62942505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03573208 294.62942505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -03573209 294.62945557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03573210 294.62945557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -03573211 294.62948608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03573212 294.62948608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -03573213 294.62951660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03573214 294.62951660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -03573215 294.62951660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03573216 294.62951660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -03573217 294.62954712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03573218 294.62954712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -03573219 294.62957764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03573220 294.62957764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -03573221 294.62960815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03573222 294.62960815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -03573223 294.62963867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03573224 294.62963867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -03573225 294.62966919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03573226 294.62966919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -03573227 294.62966919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03573228 294.62969971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -03573229 294.62973022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03573230 294.62973022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -03573231 294.62976074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03573232 294.62976074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -03573233 294.62979126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03573234 294.62979126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -03573235 294.62982178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03573236 294.62982178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -03573237 294.62982178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03573238 294.62982178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -03573239 294.62985229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03573240 294.62985229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -03573241 294.62988281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03573242 294.62988281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -03573243 294.62991333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03573244 294.62991333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -03573245 294.62994385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03573246 294.62994385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -03573247 294.62997437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03573248 294.63000488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -03573249 294.63000488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03573250 294.63000488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -03573251 294.63003540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03573252 294.63003540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -03573253 294.63006592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03573254 294.63006592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -03573255 294.63009644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03573256 294.63009644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -03573257 294.63012695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03573258 294.63015747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -03573259 294.63015747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03573260 294.63015747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -03573261 294.63018799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03573262 294.63018799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -03573263 294.63021851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03573264 294.63021851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -03573265 294.63024902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03573266 294.63024902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -03573267 294.63027954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03573268 294.63027954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -03573269 294.63031006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03573270 294.63031006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -03573271 294.63031006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03573272 294.63031006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -03573273 294.63034058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03573274 294.63037109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -03573275 294.63040161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03573276 294.63040161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -03573277 294.63043213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03573278 294.63043213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -03573279 294.63046265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03573280 294.63046265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -03573281 294.63046265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03573282 294.63046265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -03573283 294.63049316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03573284 294.63049316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -03573285 294.63052368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03573286 294.63052368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -03573287 294.63055420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03573288 294.63055420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -03573289 294.63058472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03573290 294.63058472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -03573291 294.63061523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03573292 294.63061523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -03573293 294.63061523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03573294 294.63064575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -03573295 294.63067627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03573296 294.63067627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -03573297 294.63070679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03573298 294.63070679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -03573299 294.63073730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03573300 294.63073730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -03573301 294.63076782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03573302 294.63076782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -03573303 294.63079834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03573304 294.63079834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -03573305 294.63079834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03573306 294.63079834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -03573307 294.63082886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03573308 294.63082886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -03573309 294.63085938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03573310 294.63085938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -03573311 294.63088989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03573312 294.63088989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -03573313 294.63092041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03573314 294.63095093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -03573315 294.63095093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03573316 294.63095093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -03573317 294.63098145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03573318 294.63098145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -03573319 294.63101196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03573320 294.63101196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -03573321 294.63104248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03573322 294.63104248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -03573323 294.63107300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03573324 294.63107300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -03573325 294.63110352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03573326 294.63110352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -03573327 294.63110352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03573328 294.63110352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -03573329 294.63113403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03573330 294.63113403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -03573331 294.63116455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03573332 294.63116455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -03573333 294.63119507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03573334 294.63122559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -03573335 294.63125610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03573336 294.63125610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -03573337 294.63125610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03573338 294.63125610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -03573339 294.63128662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03573340 294.63128662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -03573341 294.63131714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03573342 294.63131714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -03573343 294.63134766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03573344 294.63134766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -03573345 294.63137817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03573346 294.63137817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -03573347 294.63140869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03573348 294.63140869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -03573349 294.63143921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03573350 294.63143921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -03573351 294.63143921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03573352 294.63143921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -03573353 294.63146973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03573354 294.63146973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -03573355 294.63150024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03573356 294.63153076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -03573357 294.63156128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03573358 294.63156128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -03573359 294.63159180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03573360 294.63159180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -03573361 294.63159180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03573362 294.63159180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -03573363 294.63162231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03573364 294.63162231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -03573365 294.63165283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03573366 294.63165283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -03573367 294.63168335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03573368 294.63168335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -03573369 294.63171387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03573370 294.63171387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03573371 294.63174438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03573372 294.63174438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03573373 294.63177490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03573374 294.63177490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03573375 294.63180542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03573376 294.63180542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03573377 294.63183594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03573378 294.63183594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03573379 294.63186646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03573380 294.63186646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03573381 294.63189697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03573382 294.63189697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03573383 294.63189697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03573384 294.63189697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03573385 294.63192749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03573386 294.63192749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03573387 294.63195801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03573388 294.63195801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03573389 294.63198853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03573390 294.63198853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03573391 294.63201904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03573392 294.63204956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03573393 294.63204956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03573394 294.63204956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03573395 294.63208008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03573396 294.63208008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03573397 294.63211060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03573398 294.63211060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03573399 294.63220215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03573400 294.63220215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03573401 294.63223267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03573402 294.63223267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03573403 294.63223267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03573404 294.63223267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03573405 294.63226318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03573406 294.63226318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03573407 294.63229370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03573408 294.63229370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03573409 294.63232422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03573410 294.63232422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03573411 294.63235474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03573412 294.63235474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03573413 294.63238525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03573414 294.63238525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -03573415 294.63238525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03573416 294.63241577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -03573417 294.63244629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03573418 294.63244629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -03573419 294.63247681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03573420 294.63247681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -03573421 294.63250732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03573422 294.63250732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -03573423 294.63253784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03573424 294.63253784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -03573425 294.63253784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03573426 294.63253784 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -03573427 294.63256836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03573428 294.63256836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -03573429 294.63259888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03573430 294.63259888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -03573431 294.63262939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03573432 294.63262939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -03573433 294.63265991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03573434 294.63265991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -03573435 294.63269043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03573436 294.63269043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -03573437 294.63269043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03573438 294.63272095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -03573439 294.63275146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03573440 294.63275146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -03573441 294.63278198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03573442 294.63278198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -03573443 294.63281250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03573444 294.63281250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -03573445 294.63284302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03573446 294.63284302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -03573447 294.63284302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03573448 294.63284302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -03573449 294.63287354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03573450 294.63287354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -03573451 294.63290405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03573452 294.63290405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -03573453 294.63293457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03573454 294.63293457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -03573455 294.63296509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03573456 294.63296509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -03573457 294.63299561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03573458 294.63302612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -03573459 294.63302612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03573460 294.63302612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -03573461 294.63305664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03573462 294.63305664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -03573463 294.63308716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03573464 294.63308716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -03573465 294.63311768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03573466 294.63311768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -03573467 294.63314819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03573468 294.63314819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -03573469 294.63317871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03573470 294.63317871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -03573471 294.63317871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03573472 294.63317871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -03573473 294.63320923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03573474 294.63320923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -03573475 294.63323975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03573476 294.63323975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -03573477 294.63327026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03573478 294.63327026 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -03573479 294.63330078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03573480 294.63333130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -03573481 294.63333130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03573482 294.63333130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -03573483 294.63336182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03573484 294.63336182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -03573485 294.63339233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03573486 294.63339233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -03573487 294.63342285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03573488 294.63342285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -03573489 294.63345337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03573490 294.63345337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -03573491 294.63348389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03573492 294.63348389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -03573493 294.63348389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03573494 294.63348389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -03573495 294.63351440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03573496 294.63351440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -03573497 294.63354492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03573498 294.63354492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -03573499 294.63357544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03573500 294.63360596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -03573501 294.63363647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03573502 294.63363647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -03573503 294.63363647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03573504 294.63363647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -03573505 294.63366699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03573506 294.63366699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -03573507 294.63369751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03573508 294.63369751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -03573509 294.63372803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03573510 294.63372803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -03573511 294.63375854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03573512 294.63375854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -03573513 294.63378906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03573514 294.63378906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -03573515 294.63381958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03573516 294.63381958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -03573517 294.63381958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03573518 294.63381958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -03573519 294.63385010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03573520 294.63385010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -03573521 294.63388062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03573522 294.63391113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -03573523 294.63394165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03573524 294.63394165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -03573525 294.63397217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03573526 294.63397217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -03573527 294.63397217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03573528 294.63397217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -03573529 294.63400269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03573530 294.63400269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -03573531 294.63403320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03573532 294.63403320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -03573533 294.63406372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03573534 294.63406372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -03573535 294.63409424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03573536 294.63412476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -03573537 294.63412476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03573538 294.63415527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -03573539 294.63418579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03573540 294.63418579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -03573541 294.63421631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03573542 294.63421631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -03573543 294.63424683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03573544 294.63424683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -03573545 294.63427734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03573546 294.63427734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -03573547 294.63427734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03573548 294.63427734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -03573549 294.63430786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03573550 294.63433838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -03573551 294.63436890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03573552 294.63436890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -03573553 294.63439941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03573554 294.63439941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -03573555 294.63442993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03573556 294.63442993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -03573557 294.63442993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03573558 294.63442993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -03573559 294.63446045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03573560 294.63446045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -03573561 294.63449097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03573562 294.63449097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -03573563 294.63452148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03573564 294.63452148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -03573565 294.63455200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03573566 294.63455200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -03573567 294.63458252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03573568 294.63458252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -03573569 294.63461304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03573570 294.63461304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -03573571 294.63461304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03573572 294.63464355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -03573573 294.63467407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03573574 294.63467407 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -03573575 294.63470459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03573576 294.63470459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -03573577 294.63473511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03573578 294.63473511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -03573579 294.63476563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03573580 294.63476563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -03573581 294.63476563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03573582 294.63476563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -03573583 294.63479614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03573584 294.63479614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -03573585 294.63482666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03573586 294.63482666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -03573587 294.63485718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03573588 294.63485718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -03573589 294.63488770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03573590 294.63488770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -03573591 294.63491821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03573592 294.63491821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -03573593 294.63494873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03573594 294.63494873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -03573595 294.63497925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03573596 294.63497925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -03573597 294.63500977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03573598 294.63500977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -03573599 294.63504028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03573600 294.63504028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -03573601 294.63507080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03573602 294.63507080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -03573603 294.63507080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03573604 294.63507080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -03573605 294.63510132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03573606 294.63510132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -03573607 294.63513184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03573608 294.63513184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -03573609 294.63516235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03573610 294.63516235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -03573611 294.63519287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03573612 294.63519287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -03573613 294.63522339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03573614 294.63522339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -03573615 294.63525391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03573616 294.63525391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -03573617 294.63528442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03573618 294.63528442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -03573619 294.63531494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03573620 294.63531494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03573621 294.63534546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03573622 294.63534546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03573623 294.63537598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03573624 294.63537598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03573625 294.63540649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03573626 294.63540649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03573627 294.63540649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03573628 294.63540649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03573629 294.63543701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03573630 294.63543701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03573631 294.63546753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03573632 294.63546753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03573633 294.63549805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03573634 294.63552856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03573635 294.63555908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03573636 294.63555908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03573637 294.63555908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03573638 294.63555908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03573639 294.63558960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03573640 294.63558960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03573641 294.63562012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03573642 294.63562012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03573643 294.63565063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03573644 294.63565063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03573645 294.63568115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03573646 294.63568115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03573647 294.63571167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03573648 294.63571167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03573649 294.63571167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03573650 294.63571167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03573651 294.63574219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03573652 294.63574219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03573653 294.63577271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03573654 294.63577271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03573655 294.63580322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03573656 294.63583374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03573657 294.63586426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03573658 294.63586426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03573659 294.63586426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03573660 294.63586426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03573661 294.63589478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03573662 294.63589478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03573663 294.63592529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03573664 294.63592529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -03573665 294.63595581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03573666 294.63595581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -03573667 294.63598633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03573668 294.63598633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -03573669 294.63601685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03573670 294.63601685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -03573671 294.63601685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03573672 294.63601685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -03573673 294.63604736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03573674 294.63604736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -03573675 294.63610840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03573676 294.63610840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -03573677 294.63613892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03573678 294.63613892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -03573679 294.63616943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03573680 294.63616943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -03573681 294.63619995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03573682 294.63619995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -03573683 294.63623047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03573684 294.63623047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -03573685 294.63626099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03573686 294.63626099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -03573687 294.63629150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03573688 294.63629150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -03573689 294.63632202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03573690 294.63632202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -03573691 294.63635254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03573692 294.63635254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -03573693 294.63635254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03573694 294.63635254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -03573695 294.63638306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03573696 294.63638306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -03573697 294.63641357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03573698 294.63641357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -03573699 294.63644409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03573700 294.63644409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -03573701 294.63647461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03573702 294.63650513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -03573703 294.63650513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03573704 294.63650513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -03573705 294.63653564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03573706 294.63653564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -03573707 294.63656616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03573708 294.63656616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -03573709 294.63659668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03573710 294.63659668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -03573711 294.63662720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03573712 294.63662720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -03573713 294.63665771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03573714 294.63665771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -03573715 294.63665771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03573716 294.63665771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -03573717 294.63668823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03573718 294.63668823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -03573719 294.63671875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03573720 294.63671875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -03573721 294.63674927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03573722 294.63677979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -03573723 294.63681030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03573724 294.63681030 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -03573725 294.63684082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03573726 294.63684082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -03573727 294.63684082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03573728 294.63684082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -03573729 294.63687134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03573730 294.63687134 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -03573731 294.63690186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03573732 294.63690186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -03573733 294.63693237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03573734 294.63693237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -03573735 294.63696289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03573736 294.63696289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -03573737 294.63699341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03573738 294.63699341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -03573739 294.63699341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03573740 294.63699341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -03573741 294.63702393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03573742 294.63702393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -03573743 294.63705444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03573744 294.63708496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -03573745 294.63711548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03573746 294.63711548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -03573747 294.63714600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03573748 294.63714600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -03573749 294.63714600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03573750 294.63714600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -03573751 294.63717651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03573752 294.63717651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -03573753 294.63720703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03573754 294.63720703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -03573755 294.63723755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03573756 294.63723755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -03573757 294.63726807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03573758 294.63726807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -03573759 294.63729858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03573760 294.63729858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -03573761 294.63729858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03573762 294.63729858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -03573763 294.63732910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03573764 294.63735962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -03573765 294.63739014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03573766 294.63739014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -03573767 294.63742065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03573768 294.63742065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -03573769 294.63745117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03573770 294.63745117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -03573771 294.63745117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03573772 294.63745117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -03573773 294.63748169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03573774 294.63748169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -03573775 294.63751221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03573776 294.63751221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -03573777 294.63754272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03573778 294.63754272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -03573779 294.63757324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03573780 294.63757324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -03573781 294.63760376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03573782 294.63760376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -03573783 294.63763428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03573784 294.63763428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -03573785 294.63763428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03573786 294.63766479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -03573787 294.63769531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03573788 294.63769531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -03573789 294.63772583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03573790 294.63772583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -03573791 294.63775635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03573792 294.63775635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -03573793 294.63778687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03573794 294.63778687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -03573795 294.63778687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03573796 294.63778687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -03573797 294.63781738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03573798 294.63781738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -03573799 294.63784790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03573800 294.63784790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -03573801 294.63787842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03573802 294.63787842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -03573803 294.63790894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03573804 294.63790894 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -03573805 294.63793945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03573806 294.63793945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -03573807 294.63796997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03573808 294.63796997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -03573809 294.63800049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03573810 294.63800049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -03573811 294.63803101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03573812 294.63803101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -03573813 294.63806152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03573814 294.63806152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -03573815 294.63809204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03573816 294.63809204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -03573817 294.63809204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03573818 294.63809204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -03573819 294.63815308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03573820 294.63815308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -03573821 294.63818359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03573822 294.63818359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -03573823 294.63821411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03573824 294.63821411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -03573825 294.63824463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03573826 294.63824463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -03573827 294.63824463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03573828 294.63824463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -03573829 294.63827515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03573830 294.63827515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -03573831 294.63830566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03573832 294.63833618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -03573833 294.63836670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03573834 294.63836670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -03573835 294.63839722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03573836 294.63839722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -03573837 294.63842773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03573838 294.63842773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -03573839 294.63842773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03573840 294.63842773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -03573841 294.63845825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03573842 294.63845825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -03573843 294.63848877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03573844 294.63848877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -03573845 294.63851929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03573846 294.63851929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -03573847 294.63854980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03573848 294.63854980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -03573849 294.63858032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03573850 294.63858032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -03573851 294.63858032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03573852 294.63861084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -03573853 294.63864136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03573854 294.63864136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -03573855 294.63867188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03573856 294.63867188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -03573857 294.63870239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03573858 294.63870239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -03573859 294.63873291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03573860 294.63873291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -03573861 294.63873291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03573862 294.63873291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -03573863 294.63876343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03573864 294.63876343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -03573865 294.63879395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03573866 294.63879395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -03573867 294.63882446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03573868 294.63882446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -03573869 294.63885498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03573870 294.63885498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -03573871 294.63888550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03573872 294.63888550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -03573873 294.63888550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03573874 294.63888550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -03573875 294.63891602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03573876 294.63891602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -03573877 294.63894653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03573878 294.63894653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -03573879 294.63897705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03573880 294.63897705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -03573881 294.63900757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03573882 294.63900757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -03573883 294.63903809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03573884 294.63903809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -03573885 294.63903809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03573886 294.63906860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -03573887 294.63909912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03573888 294.63909912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -03573889 294.63912964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03573890 294.63912964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -03573891 294.63916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03573892 294.63916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -03573893 294.63919067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03573894 294.63919067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -03573895 294.63922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03573896 294.63922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -03573897 294.63922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03573898 294.63922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -03573899 294.63925171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03573900 294.63925171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -03573901 294.63928223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03573902 294.63928223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -03573903 294.63931274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03573904 294.63931274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -03573905 294.63934326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03573906 294.63934326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -03573907 294.63937378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03573908 294.63937378 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -03573909 294.63940430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03573910 294.63940430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -03573911 294.63943481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03573912 294.63943481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -03573913 294.63946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03573914 294.63946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -03573915 294.63949585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03573916 294.63949585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -03573917 294.63952637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03573918 294.63952637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -03573919 294.63952637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03573920 294.63952637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -03573921 294.63955688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03573922 294.63955688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -03573923 294.63958740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03573924 294.63958740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -03573925 294.63961792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03573926 294.63961792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -03573927 294.63964844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03573928 294.63964844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -03573929 294.63967896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03573930 294.63967896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -03573931 294.63967896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03573932 294.63967896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -03573933 294.63970947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03573934 294.63970947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -03573935 294.63973999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03573936 294.63973999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -03573937 294.63977051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03573938 294.63977051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -03573939 294.63980103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03573940 294.63983154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -03573941 294.63983154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03573942 294.63983154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -03573943 294.63986206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03573944 294.63986206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -03573945 294.63989258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03573946 294.63989258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -03573947 294.63992310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03573948 294.63992310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -03573949 294.63995361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03573950 294.63995361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -03573951 294.63998413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03573952 294.63998413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -03573953 294.64001465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03573954 294.64001465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -03573955 294.64001465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03573956 294.64004517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -03573957 294.64007568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03573958 294.64007568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -03573959 294.64010620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03573960 294.64010620 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -03573961 294.64016724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03573962 294.64016724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -03573963 294.64016724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03573964 294.64016724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -03573965 294.64019775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03573966 294.64019775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -03573967 294.64022827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03573968 294.64022827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -03573969 294.64025879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03573970 294.64025879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -03573971 294.64028931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03573972 294.64031982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -03573973 294.64031982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03573974 294.64031982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -03573975 294.64035034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03573976 294.64035034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -03573977 294.64038086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03573978 294.64038086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -03573979 294.64041138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03573980 294.64041138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -03573981 294.64044189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03573982 294.64044189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -03573983 294.64047241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03573984 294.64047241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -03573985 294.64047241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03573986 294.64047241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -03573987 294.64050293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03573988 294.64050293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -03573989 294.64053345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03573990 294.64053345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -03573991 294.64056396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03573992 294.64059448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -03573993 294.64062500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03573994 294.64062500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -03573995 294.64062500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03573996 294.64062500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -03573997 294.64065552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03573998 294.64065552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -03573999 294.64068604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03574000 294.64068604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -03574001 294.64071655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03574002 294.64071655 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -03574003 294.64074707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03574004 294.64074707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -03574005 294.64077759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03574006 294.64077759 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -03574007 294.64080811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03574008 294.64080811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -03574009 294.64080811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03574010 294.64080811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -03574011 294.64083862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03574012 294.64083862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -03574013 294.64086914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03574014 294.64089966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -03574015 294.64093018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03574016 294.64093018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -03574017 294.64096069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03574018 294.64096069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -03574019 294.64096069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03574020 294.64096069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -03574021 294.64099121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03574022 294.64099121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -03574023 294.64102173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03574024 294.64102173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -03574025 294.64105225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03574026 294.64105225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -03574027 294.64108276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03574028 294.64108276 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -03574029 294.64111328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03574030 294.64111328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -03574031 294.64111328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03574032 294.64111328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -03574033 294.64114380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03574034 294.64114380 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -03574035 294.64117432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03574036 294.64120483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -03574037 294.64123535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03574038 294.64123535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -03574039 294.64126587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03574040 294.64126587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -03574041 294.64126587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03574042 294.64126587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -03574043 294.64129639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03574044 294.64129639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -03574045 294.64132690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03574046 294.64132690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -03574047 294.64135742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03574048 294.64135742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -03574049 294.64138794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03574050 294.64138794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -03574051 294.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03574052 294.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -03574053 294.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03574054 294.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -03574055 294.64144897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03574056 294.64144897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -03574057 294.64147949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03574058 294.64151001 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -03574059 294.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03574060 294.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -03574061 294.64157104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03574062 294.64157104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -03574063 294.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03574064 294.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -03574065 294.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03574066 294.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -03574067 294.64163208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03574068 294.64163208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -03574069 294.64166260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03574070 294.64166260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -03574071 294.64169312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03574072 294.64169312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -03574073 294.64172363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03574074 294.64172363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -03574075 294.64175415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03574076 294.64175415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -03574077 294.64175415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03574078 294.64178467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -03574079 294.64181519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03574080 294.64181519 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -03574081 294.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03574082 294.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -03574083 294.64187622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03574084 294.64187622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -03574085 294.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03574086 294.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -03574087 294.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03574088 294.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -03574089 294.64193726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03574090 294.64193726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -03574091 294.64196777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03574092 294.64196777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -03574093 294.64199829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03574094 294.64199829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -03574095 294.64202881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03574096 294.64202881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -03574097 294.64205933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03574098 294.64205933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -03574099 294.64205933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03574100 294.64208984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -03574101 294.64212036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03574102 294.64212036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -03574103 294.64215088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03574104 294.64218140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -03574105 294.64221191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03574106 294.64221191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -03574107 294.64224243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03574108 294.64224243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -03574109 294.64224243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03574110 294.64224243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -03574111 294.64227295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03574112 294.64227295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -03574113 294.64230347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03574114 294.64230347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -03574115 294.64233398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03574116 294.64233398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -03574117 294.64236450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03574118 294.64236450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -03574119 294.64239502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03574120 294.64239502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -03574121 294.64239502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03574122 294.64239502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -03574123 294.64245605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03574124 294.64245605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -03574125 294.64248657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03574126 294.64248657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -03574127 294.64251709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03574128 294.64251709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -03574129 294.64254761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03574130 294.64254761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -03574131 294.64254761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03574132 294.64254761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -03574133 294.64257813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03574134 294.64257813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -03574135 294.64260864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03574136 294.64260864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -03574137 294.64263916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03574138 294.64263916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -03574139 294.64266968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03574140 294.64270020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -03574141 294.64270020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03574142 294.64270020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -03574143 294.64273071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03574144 294.64273071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -03574145 294.64276123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -03574146 294.64276123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 diff --git a/vmhook-eac.sln b/vmhook-eac.sln index 13325f0..c2b2ae3 100644 --- a/vmhook-eac.sln +++ b/vmhook-eac.sln @@ -7,24 +7,42 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vmhook-eac", "vmhook-eac.vc EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZwSwapCert", "dependencies\ZwSwapCert\ZwSwapCert\ZwSwapCert.vcxproj", "{475EA8A7-C1BA-4847-B9C3-198C9738E0C0}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vmhook", "dependencies\vmhook\src\vmhook.vcxproj", "{D257C9F6-C705-49D5-84ED-64C9C513C419}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x64.ActiveCfg = Debug|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x64.Build.0 = Debug|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x64.Deploy.0 = Debug|x64 + {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x86.ActiveCfg = Debug|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x64.ActiveCfg = Release|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x64.Build.0 = Release|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x64.Deploy.0 = Release|x64 + {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x86.ActiveCfg = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x64.ActiveCfg = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x64.Build.0 = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x64.Deploy.0 = Release|x64 + {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x86.ActiveCfg = Release|x64 + {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x86.Build.0 = Release|x64 + {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x86.Deploy.0 = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x64.ActiveCfg = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x64.Build.0 = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x64.Deploy.0 = Release|x64 + {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x86.ActiveCfg = Release|x64 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x64.ActiveCfg = Debug|x64 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x64.Build.0 = Debug|x64 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x86.ActiveCfg = Debug|Win32 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x86.Build.0 = Debug|Win32 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Release|x64.ActiveCfg = Release|x64 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Release|x64.Build.0 = Release|x64 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Release|x86.ActiveCfg = Release|Win32 + {D257C9F6-C705-49D5-84ED-64C9C513C419}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/vmhook-eac.sys b/vmhook-eac.sys deleted file mode 100644 index d8d68885d4c30a94bc0584c1c5359231988009a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137480 zcmeFad3;nw*6`n18p6`tptM90Z6GKPF45>13~0A>>kV`yh(TN!aFl@K0s|dH5m`DJ zXfEwC<2K_mxQ&dDqv(tff=UOJfS_z@P+UNr@wSb_rY!2%@AuTbw>trJe$V^<`{Sdj zd+S!6bL!NoQ>RXys;<2HURR#W<;v&(blT-=AeDc9_4nuhY~^#8lN-CZ{?Xy>UJW_n zw|iYN;l?SxNs}jzpM2ddzU!~M_11|I->=8{CfDBTyYW_EaM%dnEfa4Tcc#bFvDgNE z-E+JC(s$kLZ=L_oUO4NUQ`GycZ~Kv+y>QMqy;NHNjgNHF>vO&-R%xBepY(cEyXh51r|V#j%hlP+Ep+9&T!re{Ppj{-}{zILePFv>Fiejd@h%H=Hwf$i(Cge zZax6h)sFPL)`)0=%cY-b6?4G^m&->v{(^&a9(VJ^>s^XR!YhThUE6Ygm+NAn{Qv*{7aXYke;EHF z1OKn%-#>N2-TB?yeeC>yaO{eY+o|{VACDnD{r2`B<)}38BezO(KkBSf_eU<$?c?1a zN%`&LwU5qF>7kFM-1hPLs=Vk0f&Eh~vGhbI*Kv~`AMTW~^~4FT-Q-NOa((xcS_3*E zqN<)5M~;qYrv?Q1@|FDbJvrovp0Ed-RW}2qwQ|UO;_Ja*=eP!vx)$cRHi}}d%5gm` zNP;=8-9FOAIWCi=%#-u8<9>H;j;llwN@4jo7I$w)6jydSb$L zw~d=J@s@F}4t!SpkuqP%OZK17<(lB=lShx2dwX z>4}U!QM`aBN`H4gqMUx_jh5b7?*R^NR&8mcFcmz#DsU+?gv<4~&_9WCg128=cs?LF z`sohg-7LOK`8JG&Z1mHmmsA8t@abFuaj#uYz3^`T^P`{6oIGVRYRu}}g?70zsg(Wa zSLG~yx3xX_i}^0}4Lq`3w$}gMlODUaxZp}Xy3=QTs2hjO(*d)8RZiqMy*?f3TDn;` zHt1>ZlHoZn?c^Z+Wn5caq8rV6^bOybRqNNU_m7aedfdHgmwf#|kLBn_MS)(wHgYVr z)86Tss?qBUT+!Wcm3lqRgUlx~g%3IYuxKzck}Tx`DjzV+m54i@`PlMzZ zAk%N^oCcYVQ~eu6=u*WEq7PC%?efRkWjzfdnyGfi%2aM?B9>&;D@pmz2f(qP4Ydcf`jhx5jFFy5Et`HEpqw@0t{x%~T^m0WDI_t_ zP>Ev-+z@COT2fLHh+mdt zv;ep=3wS6Uyjw4Ciku*Xbx}ffO6GHH3ZLJRFTKJ>bLnQY$9uHW80yomOlVyP7uLk4 zAG0_|j}0wK<(@;QD)G&Tf^lcDE+hwjCGsf$^mw39$!2tCKi%jcfV=8OP9sbMtSjw( z3e;5TM6tE1=4)Q-~Avyywk zQu=jGc}lDMr$X4FCU2Y2(A|Pxl=k)ke$9YUx!T-SlxXb7A9#0mNl8s~Rc?I92O^J` zIo-xcVi5SD=5(lmC3>vAwseago9NTJUdqUT?mz)!JndaarMg6I58Y^QH+F++@88L9 z_!IM5YLsqt5n6_3XnBZl3dUBz6e%!uDr=2yY=MxLp&3F{&9FU&R85;LhLc>y5%_dV@ zdTdQBSUjp`(^oZl8<86G`XAG2;~;s(^@(ZMO7m1N!sXYfr5koL3Y=zS%Ax|ZW$#mE zk?~e}GZfYWJ-Xw^nqchQP7F_l2hB-it3(lv)semlNQhsgFVogSXE4g(=%6zs+jM_1 zfNNsl_ZO(7MK{)&TWE*P#0Xl>;a}MJC=_G(M0e^H(d$iDWn9LR`%qzytD<@Ec2O#o zv7uXo+S0cg`}30at_~~V)}bf56Lsl+o3eWJhGL(qRjGwmsWLTAjyk?)@0_K2$0|<8!4v)I2ygZ1j9Y%W;)%3mcn+;6j8krzSAq_(-Qp23o4K zYBi|77UdxH=y8vFhICzZNc~!9UK^%K_ku1=Bm6>6S%tAm=q#afg36ihkVf~D89>?# zNpGdSF6c!F#)_6#awQ_=H$2~T$#FIMD2l>3zoe7_`mc)202NK4)jc49qT`vQPR+`r9w?(>z zjXYaFt*a1yd@ShfF(p=sUs)wem8(CqzRS7o)Y3%V=7=|7`11p?!0Cbc{@lR4z-d%Z z7082RR>T5DBF`Cnrq7pfLfJF>SLWE$&WpO!R;D{f84Q-eMXx{O5y4K_-Cm?K=j-VN zqM9G5-LJ> zFGZV*%=mYr`LWk7prHp@Z|L!!dn74e7x5XxPnSL~3dFA{?rb;rc{(d-Y%mu|#pYyz zzyntNGM^c6VD$#p^A@aUY*_Ewu+}%qdL;F-jG?&qWPoX1L(By$mx&z^cum9uCFqNE zsK|R$k0x_!_vl8Geqd{l^nsSyUs5?C{OeJZhrCp8X!sFVT}}U{npmj0CXn|g>Dv1A zv}5&nb+e+W3D&9hodHcn7EN6(nzXusX+EkpYIP+%GTS0rbO~L7_HLk z=Fou>(1hcm13YVfTHMI{tZ-}`-Cnsg9II`=Pn#L)PR3I7N@}nzvZ@&aK|S0;J;Xw- z)fEC+q1Wo%JPHYovU067-Vt-bypeuMroaRGU~Jq(7(W%-K=vgq`w|>4hBCvVa;Y8< zO|%q$y!y*f>Dpk7X)nYikoI2b(1Mh#V_|I^9Mp%lMZ$x`YKw#*?jK|eL)0kAu|`Q_ z*H+YQgCn{DnzVQK#Wvddv=;ji0+XU1X3v=T1-&{o2(%i37VkOcC_qL3GgKRo0k%0( zMu-LU5eI0pPOO^hiGdYE2b7#0GMbku+coVylxamQv?7dgLzk9=>`;zEwpWt!bz0q1 zl(+f%FppN(4nG#emx9>*41q|_R38pwnh}}^znG+aG_sFFkLtf`z;mC4XTF7pVW#GR z;{`sv|B^oIN7qRg_{?WOLc>-B)N0`T4CPi^Ukum`Oo|6U${B(D^qT0woT;P3hNqu} zs253?F6kApF*SPOS%sQ*+;^f>lx%0QY;q{JIa=XhS#hBV@)J~M4rl7>4URWlifONr z2#(im9IrGUN3qnOf<|bjZftZ|e^&-H16KHcC;XUgfw)7G!z2e@Z~KBy?k=7D+x@M1 z(LV#q;>A;bn-?o6oB-@EEO=U74|rquBW9PYQ3F`=-~7>y>J=EbLE~Z!)RmphhP4(G z$!|uxd`c@>HF)(+CMxNMi+`-`s4Wc?)CBs!naWpBu}}*gV?WA@<3Wd2HtV`LM4?9d zp_E$86Th_;(g~0_7de+E-)VJBts1tekz$eug=kUCQf`c0?h311r5aGFGj*e#m~)uG zX>T{!kx_JK+2xC^@;%ic5&43jDflT0{L63B=~Q08_yIj2E6qP#lJay;kQna=Y zl6XD8In-S?CYnQM(M2Ssl9&f~3#}sxnYl5W@nnSKmEB?Ofv}OF4UZK-kr<}X{M%!s z71tvg##TD`e6sHPkMP=kn&9#4+&Z&J`Np*%eum5xUkvw zGh}=W)mhtM!V@qcLGiG$2kQXP$`q;0to1e_0d0zTgX z{xu%~9;ka$tJ}e|1--fhz(3gz@Y@CW8a`kFLRIBbnMPx^O9RnFXC}!Nfn_N85@xpM zfbkwZ^sMzWnf)?p*^rr?$1K+ zctw8bQ!IcDSO6Qu8o&ZTKAJ;cia9{N@sw*3D_|D@lI1o4gyk3TZ}|68rsohzq;nnw z0A@^}?mew;z5wgYpVVYj(0FP;;?$-}cdFPxI$O0PCs{ScU={UH`K&U~)ZBA6e6WFB z;sCL0zw@2Kovp1*CkKS8y>E}Iy+TH(<*d3Lx2}K&|dQ`0fb9 zTAl@F{K}5>&E`+&n_C!W$(P7KQWm-$T^9cQl^{}fn;`1uAgXSKsKP-sQiR|}L6k3u z&bAP>S3-bo_m25ylS18I>D?;}%zA`ETZ;GSePm$Tr=lV9&oe?(tQ`!{{@Px2W#GJyW; z$Pp!=$7X!$jG$-PSa2NE#qdFM5Z?>XAmSDh-IL|t%{KqWw5likYdK(Zz^-GPx3Z)O z8yl3^{{XFa?XHK_{^Jp~v!lkY{W`TP#8hYwrA050b{CaEtJ|9oAjy{Q(2%RNH11>u z_*ds=8+STHo@1ktNd%n`DY81*y%$z0t1M`&F_UOWapfdHf-48F$`n6t99`Tv_Pnj8 zlf(RRe&zKr*L|5zqx3}KVWi^2_qCt#OHeP}56N-&Vo8o%DgRaoz&LZ6&w~A&MDh`y zOZVf1Ij^MD_#{5E2(LE{y2|03rNSep1M;8m12T3S>(&jpZq3VCcA|=I#pxO!iNl%y zaNQOnuuyTfMa3^#Q(><}7~QFDP*EgQ^paUZTq(NI$zH1iXILe7TfFU$BlOl$(riA->f+i99^ z+*+d8igW289BuE2NT@U&c$L9MiLK0zTHPFZj=O7MZ!mU!XRMb|xER8*=|#bL(|x4< z_`ihz%lO~V|2qFy0kZf!Tk6MmV&Oj{V;`4%2< zQLQ*JO21JpI$aXFr>B}s-pIIXc76blP7rc>Gn^W(&u2v=+gIkX|4FCu`^yO0y-$Hi zN>aW?t7FO#^(590n|rRt9{fqZ#~*PHm_PnYc)yTBY7;^??y`7)He9;f;gZGg$OZ8F zIcma0M7c%0IR>nnUer9;$1r!9r;R=ukIw(4!z2IC@<^lHPw{9UqzI1?36Ewqu)u0y zmPd^zN~4q^;9f<)nLi>|*1iOeiah{Mbi#C4R)-G(=QocLJ?Jm+^lN-YhJU{oGdmPi%fQ zpUBQ4ETOV0@0Wsc@53!>s#3braSw;VV^y);!=;%FtW@cgJ89_J#K*-rHdMEJK`)X>BG0OqYPE(8AQg!W22(@_|K))p`yT zMFP^2f=V78hqO5ghf2e8R@bRQyqP}uc6~qOZEz7Hf`)9v!VLd9Z4zK@`8V+#hZ!0E z{eSb{{xVzfr~J2~b}W1}p-{9)TVHGn5D>0B`xB*X)}yLukS%x=?VZI%*8XgxALgTH zR}B3niwvVV7@yn}VAY-WzJz&bOM#_K-=$=9ERa!c(Xs3oM92E%4@`=VEkVIf>P83u z-bNaCm#C+~1?DxZoY2Ox2LJ#H9EcZLC@#yQkkw4&dJFu9p8?-V0hNu{O&g?jmll}M zqu&C?`|Ry8)rrPYiuW^MGoz)jC#_isCHs!bLp{ImlzNq%(rvnNS)pG3L8M1kD^r3B zk4c5tuTW;|_*5%v*_Uyxfc<|Y$td8}83o)4^=J9ZpZEfCg0zISmQ@`p+jeXR`ejsQ zH=|`;tM-`bP?nt~NTh_)LB4D@7ZC3N8JHm@F75sVRoRsO`SSlNvC8KhSzdu;4qrtP z3zSj_8F`MrBY4}&^Ph1A98Dki;6t8Mp8aL^HRP?eD!Jjvs>&ULM+BdrZ0KN~+X$ z43>q~s|XZqAkRN`Dl+~i$&qB7DP$LzJ}*|3;(qiOsx(Z z&zTm`-!8RsOQNOQLg-o>uT+USnXvzz9$MxZSaC&4nKb)K#@Ztpd@cG-f~nT>vb zVLM|@pSK9axmw7=<$E~=3#Nqm+hNKj{Ovf!&)-f{E?9O!YZ98w+(kLHy&(VTuN3

^^jv}v2CBW8Bf>p z!5UA$;^}`mo=&C8VdLori;U4nC*wy{yfvP#fDENfo$-`<{%6Niw0En)#E3elHS>69 zG@yyye>-TIP`*lIP1sne8=GLwV%F$s@00zNf>hBDnez2VD?dw>pWLQ=MxXxAS{Qto zJ{|UpBlKy;KB&@-o)=+;m$Do8LF?Fp0TNpC5`naKT^h1N4>A~meg24j_& ziDEjojv81e=BXV7(gYPEXk!tyDiJhzG64&TSZ($AU-^Y^_LJAePenkQ4nxrUClSbE zHu{u>B<;QW6sPU+p;cz_2Y`wX)y*E(gWo*HdMGnHSPvzpOFg(dG((oG)P!Z&B}(Tg zonr01kCfeowa)H>u~#@3ZNjCp(L8e-%0YH<#K2ek_wk;;|EJ6Ky38`ld5cd()VaTI zwN@wWiH|%!`HFmuk3iDbAr==PJLd5A6ca$Qk6i@>rlg8Cfd0@5kgONtBTq=N)jI;r z0;TRPpmcJe^aV;s3rb!qD3Re7DUpi!$R4S)scCNSWFwwPm6k6Q;*BIu3-Bc>>LbU+ zN3v{JTTE-#i5a`Wtou;9%kzZP5=V7i9#33+Pet>;oAj#3&y8nSyqn^8F+y_2}-2BFU#lnP`~ME zk!Dqow{~`v-DP+lRb}p`jOwQTRQv1a5FGFMq$EPmElg2PS6|0-d}Qb3T?hg=Uto5p zrQ^NwRy{sApItpqg#uZwsHz^%_~>_>eD<78J}%If=(ug@A>trHcu(B@rEZMveAX4# z<1PTd1`C@*E&ULP=Fs=~B*9qifwcFZeN|guR~(*F2-Ix{1Zv;#n`-Tf!|^O^KaGuO zP^Ecfv{aABEm;PPSZ()MZ4WX}W`6-l8OdDo8AQZ;z9@+_`3{=rH2GGZtq6-4Ak^4f z^&aj{<2Z|vS3?VQjDU``H{?JSx9eC7>QxTZ;#N?L1gZwW)GvW#4v;>VapI?5KdW9Z zrydA0)NJQj8E&@xbz>S5ncYa|CRgzh=J_xY01Bkn@g)-f24dbT3H3AF)0u<#^0fN$ zAYYIH6PP~gs<^VV^;i+BM5B+RcB~*&REP>Cb6*V>%blsm#uS<}Pf)h(3|3>Z`ofb4 z#tVVVer2;@x_SrY<2^@6f+Z!6E#x}0t{Q=!v#iSsnqZ9r!+oAuIY<=szx!6&uoH4* z-*78r5`<}Q)hdS$*0w%-Re}%r&YNXLXSA3bySHL!%XUS=MoFZ57q#k$M|pO}KLb{6 zISWH)z7InsOv3Qo`K8Ts#h-Iv&aJ&2=7=-$WC0QPT(wdlZPa5#lCDFfXPQG>6LGmk z#88I_Ixf?zukmaXF<6MO_DnaJ-yvwpg?u!>k--~d=MBvv>xTU8g0ts;*swVoSO2pb zC=4f;xepMEt0`hQHi~L|h2f}V?Rwz6Dgfd=U$No%?A~#l@2?0P$}1VW8BmyM(7@Ih zYgp-Tx@I`cAbX}{56@;_Kz1rnnofo!x-~j(CWSne7P?D*g6vBK-LXRUK!Unydbz6a*XMV}ZXcmp`jR z`8gQHA+&x zA#ws;&r0c7kwYsItO$WN{|+6?X-gt`D>_R2cg>+)CC~y#cJbU^_IVn4pM~x{0N3DN zt=i<#$dGWU9X;*AqWB;?>6coV{T61et{adQcDB@b6bh7%3lj-;Ezv|{-enl<0uSif zFCSll3p!p&2rDy4+WS|=pJp9yQ2|Zk)#QSGjOPE;iUNxVaw%Bl5JIcpz<@Ef4(db0 zT8DxCjcj3tvy@Y$$lBK-a5(YLt69zU$pv4D`Itox` z&1DG~htRpqVVg5R?{|PE=c+KU@qyQ@Ft9h5i9msNZ>AM(!@%~kSpzcJC!z&f-E)+; znfhlQr6ri)5(ef6vAGR-Nd8WJu(;;L&V6cx#s}1y6xkRA;qeYhs{bSsY_5fBmWAr@ zNU%@ovwrZ)iUfNEJTQz%u=jviq@u*oZE zji(KkW`|p zW=RecAXxtP>-Nw#uix03A3ZbREPgz2g3XWROdScpo@l|->R7yq5sEWktNTo$R5ok3 zCIA=lE(4{KdFv+jIFn>TQ`;!9-#;aJ>~ULBVl8msXi;KOGdB|@wm||@By=nm+C=9~ za@c6I)jZxAc=75D6~;T}fp=_21SYuW*X&pcC;C}>1*eK4`1%9{AK!}LM)sj3pz9-s zw47C2=|F9x{T5Qg+2OS!vn;*O$t34|Nj7FkIUh?nr~v1;As#3K_5o|l!W@uWp`ye_ zm!Tvw7VlE53Zi}%OH%%hR`<)SKI+dSe(jTzqR&P9#l0^9@pTFNt&C6fql0!M>c&cI z$PjQ>AThv+Obl?~b&2&oA`17NuCm5v_GCdDuKNUD#1iLcGBy4(jjg2eAtqtb1 z^;vFR1h=-oue$XENu*oHz!;lbSMb=_i-y`#`Sxp;i4y}vl3iKFId&LWJ!4J^=WaqQ z73apnxi4zluMj?@#?i0}I0)~QNn!C#&uh}7|5kikeOS-$7ryOhW;|FE?9TzHSnckb zVBQ{iXw~x@%*0#Lmixy@|SZkt#!uyfUotd zWBU=xVedHr_;$9ij6;!*4TYlZN7I|paqrUJ%0zVBPSVgu%+alk_{u^awyR+s9k)hS zENp_ssuPVgY?ka8>~0Qi6kDe`WV#p@Xr~{#**Y&{%-q5D8T0NGNo3wd%{o%{Fpsu? z-Mk!zoyxn|c75pF)Lmi2{Ugwbt@44{r`E(A)#_(iQ|Q>jN&|ANN%)I4cnOm8c9a)!mfI_9V+c_>}%6{8+8fWB%GJ}#%M7J zb{}i=KcndQdxEZsj$1E1+z=i2h4kswA1EpI zFU;}Nk7dzuWzvm!SyjJbZ}k9T!!a3|8H6h%5xKm6oAP;U6 z*wd`620zdyJJ7`JgjQE_lSufCvO;anES`+&GRstquFPe@TE!XSh*~gHKd$* zNU+7d{7(=>;||CE!z*A%#VL86lEwZ_SGz6AYrsXAe3=R|%q1S(9Q#MfsVq~0CSe0a z!WMP<5E5Q?YAU`8en0q+f_k=~?qZ`pxLP%QaiiUkolfhMHz{RjBZ-A{P+aMtKu~pp zT&m3D-#{&~UnXJLYbY_pDZ%6?YW1~^7752&qvx2gQOUH#fd+K~Wffs0%X^ES@3{IB zUk>}pvAd9FipYZWcaZ3iRqc?KnxY!bd0Y%ywK`aif=#4KKvo5^FHa{t6>mNqDNUr-B3V+8o;Nn*CkS*W0Dlx8oUJl|Q})lC(IJ zJ_F=;G=^j#AqQzW4&5GKQ9ztj{(`i(3)Kl?a_i|;spgk+=(AAJJS}Xz zO|42in@Cg%popluLXLS}!DK@Cn!NddnD!>=HABc1V-Dtl9W3etQ-!rS^lmF z+v$)d8>|M>V&j&xma6;EeYXJSehW<82IFYkkkLi#8h{AA#xnq9hJa#)o5&vFHCDwd z?24@ymei~k^!=sQP^ndjaL7zqB~eSGjyz?&e*H?9t4$Bdelkk+Z(?k#O|EsHiF$pF z9tQdAynyAb#qxC{4f{++nZD~g?S)b5pH z?27z)cJC0s=Ek)5Qv{GXtrtSwdnJ(oqyz|TEe&^F@heM`kCD>)nI9^4 z_+FGZ&l7+{F{His0#4Y$(pIr!gvAbD+B=mmOu%~3NWhg^DlM>()mzBgx^P15HOAd@ z{!Sy$0iii?CCaCvw+#RDs5;!LI>fH(@TT!>MVwk3T|!+mpsI-|1O+#Azeul%oR>l#%h!FD0ehDp3EiYYHligJEN{9C(FTwuTdta@pZ7Cw{U3^FYqDpAJxlP zq_Ig#En+hThoO42))$$0hMWE>fZN80&CG!QU&cFLlC5~yetibt zu^D^_-Y?noKzPrR#1Y=?M*2Jv-i{)?r@ST;w0p%O%EdA#$`#BiA)d%lzxmIlt)l!( zB)qQOop)KTn=@Y!JQR}fRxze;$q*{JWL%NSz(@{4+9Pa9fbxEl<*ec8-Zi+itP|!w zOE-F2{sw`aAW)oeXpa^q81pmbz)!Wy1e&T?-RO6o+qyK&9fV=@)W#|Ki*r`B4Pmim zy!D+*Ri$h;?x`@$pz)R(GR8_d8-G(SR=>&m|3v3u4dW?lx;agy9{BVt^^m94A!06$ z*G5DSuVtHo7Oj*-ROB_(NA(2bm*xcO7zsmpmxjf!>`Yra(H7-|UyYMGd6s;O{^--@ z^pz)xQmNms)g=KhTNU%*L8URO(8vpyZ`I~*COd2lFREmw83g8G7G~M!5H|Y28j4>m zSmiK-_@^)L2Fi!&C9`}vwzn`mDQ)KNhaxq9xhP!QWl^qHS1Z}dPmMApMo~J{SWr9* z5}1h9`m2&)8Dk~q#M@&K%J*1a@+KiQ`XeUm^*jmjr<1A-wis!}{i+ofvfzMRZ4R2t zr4P8B;a#VoYY#NdD+tGOlRj0kK%0YWNH|s)Fskw`+rgjqUI5bMN~i%_XKl{6@&p87 z5!YRXZBljI;!Jh@46!qO=Ev<({c)=jfD@_`(W5qR0dABtt01V`u(F-@2Jt}BM78sf|=A;H+18X!EI zTw1>$we1nL-A~@X5efuIbU^OpFC7NeG`sQ%0m?x_Typf}=HdyKCLil~epFbJW9#9+ zt-dmQ6T}V{{w~E(_n1}iOvSosVPnQ^m7E$eX3XRUp^#|o!AchIC~#>D%H+`)B1&4T z>(2{E*+sVJo-7~Y)eo5qV5}T})D4Lm2tA~`UCe=cyz_BVE_wij##?&)k~F@%K!Zz8 zll7Iq6@Au7f%^A_BF_8Qy)6&1>bdw9{%k3gLufJ_fPbb_PIBA2I6Cg{01y2+I&Pid z{}hvGDPD-RQiE+97B9`A7faxe_#t?17B7OAj#m<6fEK_pmMRhts z6xdk4?;y0)TA~m*pv@C$RH{E-d5@SQqo~2fIo912AiXEZDI6W|1mFA!FkBfH3I!0r7CZn80APlIiD+B%kp*&e z79@V|F?=e}`%^AQuK0m}&gYQU`^|a8pqVE!-!Tzlhu~ztqIi_KZa&JP9l6?)D~d%m z#?B9Fy@~MSqaIx=jN6#wFiy25?Y$_I!LA_%($2floO0V|z$-P0=Dnp(+Vp6#2p}%4 z66<`KeYR{2R*=2dto9sa!&xpdkwZ-xe-$T{j6LkThKauDkETjRrW zwBQCkZyOf)GFT}8W)Y-b`+5ET2=Vh*<`aimzA-Ygyk+v`D9sZR^lRLGtRyH+>tGP^ z6UsXyS`&>~g9w@(mau}9vDxabBm01y)qrcI0kda}O3=6|a@om>6$*5NB!FItJ`NC? z(WtyHsi(>}YIPEQG;V%=-#Y4OOV*UXrPb||F@+xr9x3rdd&>bP*@uJ9n`~eiI&BhH zEn<$;XsdbME6~}MMkhyLpc&qtYKHB3@t>(5RjY`~?XrU4eDrl(Dc9hqk{%nq-CXdZ zn8a%TT2?|i7Q*lFF9`K=m5ES)tRRe!EQBq?z-jLN2NOwmnMh=!G`ugUNvP8D5GovJ zi;FPOAZ!888nam8!BJsdnesv>Kz4O!E|rt(ke=bSV$)X~i`y6bC;bC_$U z(z$&(_T_;TP(9?|MW5FOkQkJ~tLAHj_q&OSe z>zG;7V15Cg36gh|t9@l23fj5g3!B~X@4Kf7BAMoc;>jau2jW!J4l#>SSRg_eCex=! z`#_jP87rkgXCRONv8A13LY=@K)SI?<#?VujXNCcYR)6R&5X^pK7DOHH;k4ExvU-hs z#y&|gV`ZhWwNd0+JSFjq5p05l5XA~xumiSWSJ;9bum!uq7VLl$Y_@=@GN~eOjV0LZ zq9WKo3(1$Lh|MuUtob(bbWlBQ<*5MC(tO)_D&i@i<;*W5t!QeLq;T0(`Rp9SpwPp- zSF-V2gtW@2T^EW6L@y-2qnwJ9;bY$FJUK;jgvVFOr&?aiJ&iwgpKQ(d4k&ANd6fHP zhdv_Al=UR4dL$Da5;aT`Bucryvg^A^PdV$mOGNX=-Jkx6a@qA=Ylmn2;{QYs=1uJo z{jNhKUxNQ-1=Z@G>QBFP;>Mt{QZ1LFCJUgAa8s?8*toPFm>c9FG8K4gUG!3eBJw#& z7>E*i?6{6(B+9g6dH52@i7bh%6AUllfKNV70UY6s)caLYMnMHKC3cXq>@k8wxOw-P z*CAY~TPfXn@^94M#LpG30$eIU;iAcdD4go1>YalMO08D8r}C&q-B04X3VATLsujF- z*3q_MFkhsjl@1Eb-x|PsVd8r6{bj!xUEJbw^n_n(Dnnwt&@bnP}rxKWw9LeV}7U3jWD^>;Pb3-59p@7Rm zw#p2)Q^y(W&rxvdif7S2v3RR&g~k~AcE3#*>bw)hls$;z6H{=caI;D@dSL!;xQQxL zK>~2KNCawbH60PXqg#^lMqvoXr#LD$?p?!I))Pzt$|P z;6%%Tt)U)k0|zz*`)p7uU#1P4izp;n?54fUcUI}MOYB1VbHNX1RNCpPJ+}&X|5tQbq>+D^l_h8gb??M zk{l_2gD@7Am1?#;CzFpXkY@oOl~$#~gG9!&{h|VbCUId_zLIj?nrVgW)=Vp0H)iP3 zGy|9jZf!h$TslmaePn?r*Aye50TW>a*-orXmVCuWiqSEa2Jkp zNCmgM90QudW$p@;M4A7u1(*s1ox#9H3M)&l%oFA4lSQ;ivMb*cr#*X)oe>s<7j zggY8meLe69WK5rM>(2*{x$&%$eICEnX;8N8gx~iOX{Cl$}(_ebGhs9gh>X zGUJO6Uhc$2uBvEU>1GktDjDnomwaQl zN*vVO?{N}C1RyWr`32uR)d`_l3O|tURXWO?`4m?SKr5;ybESxkxgJhK6lU5oi=$b} z)$KC2u-y1{Ny(iPg7N7cLV3+*j69Ow_kuI33T454rU>i)&-fm+O$Qe9F zi-VCbC z5|K8xNcg|Y=6_fw1a!_k0Bt1HW^sTip*fT&q5l4@JZ%*p7Mb8*(}QTeTV_RftSSp+)zNFR zQ2%JL^g4p#4`}_S?B>t(?Y5|7Zy6*`O34iRa*|Jv>6TxqTCT>OunfUj2;Hd7kg-Eu z_#-#u#zt=lmcKQnV*}6=$roTfla{f;Usiit?I=+ce)@_K3D_tjQSSD%?nEUnR?Q&& z)C}^eGjoVv?7+Vr-ffiC6b+e4#V@hpjg?8+79eD;2P`pG^;I5Hu=L|him26iXbe-& zm{t*M=QzMnZu7cO8E|7j@|=?|bZ{ROWN;rPALMRJHPXS^5_nDgvxdjT%9mZUUzcDO zG>EYjh^Dov0|IPT=<$11nS<2*I9qp(2syhhwZl?pRA3q89nueM)cYLNW5W)nj;T;# z=r3f8lRsk^p55AxuQRR^$;;s<_a{nN=i4FU?S0R&qdSb|aVo94#qxK+Q_dDx%=IBd za@pNCUuTGyO+2k`tLn0Q8c1aJ_7}ndnY{h;Cix{6-Vlb(O{h}x7{JP?943aSOtcSV zzzM7cs+7bp)n@XIxdNJL@I&>HJ9+S*z)sSGtNqKj15KE^z^O0@Z?db_r=~#W%q;WM zUUR3@?V(-t`zifLZ>U5Zjmn77J%#TVq1*-Bf$c&XO*>9@UMDDRfXP zyclcpLxw!`3{mkKoxya!1DS>)QJ9cv?=&aRA|{q4hP{%8Y~=DfZXpNSau9~VC@c8@a=7dqpB4SU2q6+YWjIz z$n(QIn>^pk^E{q~KC~1TKQCN{g&L5z65f3B#yy{IKQyZF1c*F7?Tx`Myd*+bmd@zT zHvE{eSom?Gkj^g2uiAJ2IpgW8wiv*y}6CFl$QRsS*8)zPE zb|VE%vK1O>zQg)5o*lMG^N+?B=^o|-cL-9Prn4V*cS*k=s>t3PDqSDDeT zw&9NA4;jI}MaCa;37DAfFOtMr++_VBi+=C;Lw@rub`nvui&nRVC*>58148OSc1P8NOj_#UAUu(sV?S$% zdvH8M&OAxPLn7`Kd+oiLM|&-iybtm{R1;lh-h-by`Fp-rM89JjRD7k3&@>`=u3YGk zRX0{Q{!u)O@;VzJBf`AQ<0W8BCeUXUd%+A#69h5y5jybP0 z6P>9$dzDNE`s~$`R77{>)b6N=otZ3Bba~$U3*X}IcO-Ebp7my&FBG2uQuED6IV}n8 ziR7oeLNfcr?+IzFUxlj7wyg{yd(ZYN7H`QHtm56YIiScC4;d?+8WnPCFk9&xR==q` zK~Ok(ngg67PU+S~@55?I4Hx!JuKX`We@AOmrwG}T+28qTl23w0S$lIygsh#}pmla; z{SuRpN>n}~BC$teeN-tPx;H&T!^B*zvwo6@j(V6cxJf0LjQfH49*&>)8WC=BJ3cW)BM(JkuUdcDTw+It2WfMo`ip?ka z$`u?RlF#yxBiviRbh!pecI`MZ=r3OOyIEq&4kj2G8?q*rS3^*cwm7FOSUjY*{j58S zhqjCGBSP~A=g+&eNN;Y3y9XqmW%#p?LU3;(SQCO5|4D9>%Pe>oWPXw9q6q@v(c)>) zfaVlF!94X_MD{prdnXrR9OBw(@0QOT$tVRmOQWiMt^Qqz znKiS>Ww|Ej56&NWa-?9ON2_1X2W`n<_dvHc_eGwU^_7gLnzZN>Jj@^5ZeU@g^T6E{ zzCx=9uq!&ffFB^L<4F!=;I%uI1>usx`P!19Zf(hkb^#)vf}NU33XGM}?LP!NB?4Nb zdGf5!^0XzJ8-8HG@e@1&7OC<>a@l&NVvjMmh#PmTHm8#^ZU45FjLQ12wYu*C#~~lBZZ8jd zygtE)z)KSXi}TdDe7Tz$>nH;V+bs4+tB8OMyo5hDQ=}$SL>%-$5qyD{Zf;d%aHhxz zRfGj=;H6tz73iHQa1I3wMR-(#CTFYL6n>0gC`rZ4&bUxmR= z*k+!OpAgjU_a#B^scVe#BcjYE$yp)N$!e;Q9 zmmW~l(7ixehLJ*^||VBsekaQ7)E)MA6dHiq5M{+|S5=N6||1)wCqqB$h%M}AEWU>+M~FAL=f zig0#50mMz(#J*6&XP(84`)Zb>#aiB;t8CPV?Ru=759;nNnp_3m zfHkn?au0OlEV7wO7W3xJhm{hlB=fXU*?IOMUx~{VDV%*serq;TK-5dUY|uw%$gozI zS9qJ5hge{tG5cY$4ZXgkgvS!rQZhf%vo{!_eAI5VCSTshA|y>SX{}5Ndfo@CFDYd9 zv$V2LEfLKw_aX#L8p?$L-HGJ4P^mOF5V5$;vEzkY=96{i8Eyz=0Uo&sK8(Uy3;f}d zh}rNO^;G|9buaU1_x{TmIqD>(`Gk9M z{?Hx$F1NO;e24DrcXt0gY1DSpj?Vp?VqMY+sW2?Rer@cs0^`zYu}eB@4G2iK?Zl>p#8=qBfy5UiaqNSvLDpSJJD!r}GxswUu;m|i3Zb_Tv;S+rDs`e`U@GwGMX78tk}&3-^fNt=m0QY z!|yB0I@%N~ivEbq{T5vqDxbt*qVYVHjbSI^SL)$-t*)Af03OzWF{zNBDhzF@(Y3o0 zvD#1NmNkALEwsT{&3d?fjW%U#L5+4-6N~TYkN!}PuMv~zKi>#M-}DC#d>bS*MpllV zi@+|_w;s(QgIKmZi%TH6pLl(I=5P1OQAiG@Sz^Y*Zo?;zxgFzv7ZJz?q(6}q=ZGHH z3ytsf_@sQDdmX~@Dt6mzza+3B9IM`C9-;-5?;TiPcq(lv|9%RNop;jB=63ZV@-qFVvCuX=Sh&X5P@b(ebFk&ImwUqDVD$!mIVHgLak0_J|6V;l zqj{Oka%>~y?|a$^H3wqtIr5rcflXbz&6v?5Fpbc*G^K05 zF`oqXzmXT|EBjRt9YQ?$4I)K5-nhJq__=fTJuMgCj~FM!RL(TGb3yIt&QXqF_jE~) z95P?jGh}+w0CVzvqBknjR{yc?`#3vVI?D&=&T)O zIq$3;WxaSW7EE87BP(lG%D%LB3{7BO5UjH7QnsF2Bl4q|Si@=W$Zd8T37Jy9YC_Z! zjR!HCj8(g|r7d6c&i@@7cZE|5#jk*)e99aQLT5x`Pq-qMsi4qx&Sv?+vnCv%`Fi}$VnXb8R~T#eJ-t6z zT)R;vR17+YC1TwKW31okbYE~6J+`<~t%?Oe?GYgH0EywKR# z^i}RAv*X77n`eDSFo4j2(OIM|Sqbx0yT#{QB<^xMl8$XuHl9ki^%|`QW^?Ccx_vNK z>F4)9q6huj+;2b@j1MM)={qb?Jznbvb%zuAJ-`__i1w4m_Dasar#VWZSH$ni3p6E9 zl2U=hj&{Wt1v{<@7#o7~D(zZEwG_&2`ievMwf@9sZoUROw#=(O0;(|Dvw%)#qNtYy zspkv=L1)bo&cnzdA&HCL4(t}%n zR({{FQ39+jT_ZX%reVvU3sWXN1ZjrnMoAovz#?142{49s%$CnAX~xD08R*Tx7a{eF zMCi0g9r0*2mVPe&n1g8PsSH**kG zeniJ(L%$g4VzONZY(nMaLUW?DxwDC2=>sSbBDaZ9;N>e`(9M&X^pS=>s&70eJ|~&n zj@OAUg@&ba>Ixkv2m5>$_Tx#^o|QE1F}t@OP)qaVG?W7{FToU2p){WLf0ZLlueT^v zr;`0TGb9+QmlAXj%;(kj$F1+@^IaLN)u8pj_A!!X#CAEc7<4_*g`90b+eLdA^2%PJ&&`i_6--Wi<5~U4(oc5 z9@`FV>GO$Ll=i(K{3MWlFUX1-_Aa^bqN#qH`hCC^6XrAYEYac0Kddn6Gm zduOTa&ZAm|C%;2S!>J!0QQUuppe12S;3YJ&=b=TywAlMnf*wF7=!q3vQn7*m**lhr z2xDFi8^c0Y=OB9pxHe0k<568`l#DB69_8PRySLU_vL?4`8SY%w|CMYuhPZ4iv>_ zyi!&r)h#sj`DX>#uqRmWw~^ZcR(KvNKcJ%%vX(7zB9$I&6k-3D?tvD^q>s}UJ zCs=evhAEmNy1Ld)engF5W&2J@m7W2K{_v0LqcH6@_3=hNQt5&}D+$VrWIm5lpNH_7TYSQ? ze#vjS;G1e=ErPDH333j++O%|p7Rw=61vSc~!Av|=EWj_X5ETE_0u)`(DoSFnoF7Wt z2t!l|Y3AOyb)%H<{q((WLlBeydhc89GXmGS_w89kik|=2aoGJQrHwfvLE+0=2E$g>Pbr^vq~Pg?NN8dlx09LM{kBLyR zR^WZ=@eDkuzErb`l|6Z!`xk^xojhJ7J?fl1z62aC;!KUZH%cN3@*2TmpFAGMv-168 zF8ZZI#ANd^LH!1l<|cgA$$k{!@No&)Ooj`4zn(Xr;qbA)HJ;PJGtt5`!NIc+uGwvo z&Q$keq#j}n-K_>5o2#A^pOSIcWfPR~`zE}AdC??!+eo>0(AM0yf>aA$KE0wodH(gJ z;@Ote^=Mzuff{S$>VTq*|pOX8*F zcU~kx4hC5I<{b6oD#=f*IEhV%J9j1a{t?!Vfb1eA1Y?EVD-@J7#RKgf0m7O& z|GYt2a|MA$_?h4rA)@83THfdvb*}hMY;X06V3R%@Q+XlT8RkH7fcQyUYE`^2W5s=q zno>LiRnk-K50*DYM(O2SZyTW-gZ&sK5g+jnH$5R-^4`Bd8t8doy|4jN!jO{csTbobxcR7E-IT?yrVGYq${7O*Iz3B6)e*;o43(^pQ6!-L(H;B4MPxn2QD$aPe?sw=Z zU!mX_P$$LaDPI|Bm-fE@j;hozc^-MHMzX*2WC3Vp4_gNH=U-Dr_Vuw#9Gf(Wl>kCj z_Q<_MxkybnIBdXgGOw-eXvR`Z67zEa6L-fKGDW*@;xF!XBA7fk@TkY!<0N4nvCeKg zuBLM&ORnX0k20jLcYsyqVyBG6iIiGkmoR07(%1uuh z7rm&e_9}LX*x4TRD49+dtzm`&{vI5xbkSFDNl)-ITYr7q?xIENyJr*M#rjKon<=8Y zNaj*brA3>oQjaaikWHj6r;)nAjt?3xNqMt2_g3kEc+UXusS~5+{c7JuKzxF|W7<0y zEOO*mkFM&cmw!6>Q(b~R-Z4jfWvko{<~-JVD9|BDT~9~}mQ5;&oWf6)Od#W2p^YCE z*FsIO@f1a=`v4X6*d-HEUT#ZSl*{F-#5K!+jJcnFNV$3G%Bog(h9F1IK3?0kMws{_ zbsvOv_yQwFb?$dqBCKxF&9(pFlp+akAa5CV8^+*9raJk5JLeK*arlJOVNmfm`mi~~ zA6GsuIz1Lzgc-MyN((7Cs#U@J7fHdzQjk&&K>th(h`4+D)AAvqKEx}x^HJhl-pf|? z_L`!|5Y(?{v#Ym*MFPIgS?i21uACz;LEcHN@)p|Va-BTsz`;Z zExK{vUuS!2eg-1V#doRxx`Cz%FhTIjnpP4Mk+XDDEMPa=z&6;xn$=EtYB6;eBL-BR z<5VRpVFjv8bh2>BVD`*{892W1tV}7AUlgfS5r)>iTA4c-ZYmmS?>R6&v9{QA*z@{n zxk_JJcZf5?YIU9SfHnKz!+_N0q#5UWe8?mOOskvD3tFfY*{_I8tab+$1C_Dq+Z#Dl z;^LuzV6KYT;H}VH;}B@nhY__V=nWI zI~lQtXNX;HkTt*l(%B@vfPyKeR?lgN0do8&S5ZL3()1}nZ=3I8GYYRG)8O+TphEF^ z^FLHW6`vnmo#k^Q`SAHBi`vsAf!D{v)=8~ObtB(==uFk3g*ZJGZ}&sK&D#`@)*5dU zPn?4IoCKmHQa0Z67OP66+G-pZ3@P*Nh2K)kOG)-7%)ZkJEkBn!eyh#^yUt7 zH|m%rRFI7^tjELTOzJa+q^Yar9> z6>r#m#m}C)hoG>?`yVGS<{n56vtYBk4-fK>u6p!uVjvx7XOwPkcAw;YB;IzF)A#)T z;~dHpHq%E&PJZOXpy4qYix3>3QNmek{qyB*>GX}BwR|c-xtaH$EPJr1qfX?2Zzqj_ zs&Nig5~L8pzV&RGZNWc$@!3aM))8XG-8moNoaF3cb~r%>cP8Y8-F2tm9D8B{EAL4x z@}~K$-VWwS_H-!NeeY{{i9Lc?ak}_NwA%w3FpX z+^sz=o$)PeCH`TDxcBoY$Da9}Cj3Ip?v+$fpNzNpn&8b`PAq}Ch4p;MxqFtPey$|w zmcw~@+s%;G9RR}13!w>KcGY7yaScy6Hl;AbPO-bQ0|Ixw_`j{+jmz5LYH-NTi>IhR z=+fT%RyxuWKf?_L%8p@q?KwD8$a(t+a&#f5lTFTxoQ|XHdb{jlaS*TFL{aG|aY4vI zI*KlP0kBLF9`hn5bv@emSu$kk%(G!ArIHQvOvFa%_JRAd2i9I-#6LK;?PDvp#P#Z^lXgYO#=NGf!+(~>E`l5I~ZD1IHKe= zc}P8D?l@IZ_aSdW_VJCy)q|@*uq@&5E!y{0K1x_bd{Fc`iuH2eOtMTAE{fIgyu;^t zZa;bE(4Gp~{aI+C!50JVrdH6V3bbh7+awX6O{QNh9VaU=%U&zu&McpOQ^f3@K!A{mx@pKI;XRm~fus*Mnr7*t<$oZ&*95xyye%>SRzsl%;NKU=@fnv#&ywGZmRkg3f=liPS(ix1w@oMoR^70qC z7FtKgsr(V<72%a~(?0$`RsBY)E18oYHm;kY*fT>CajE)V&+=%C z_p&^vy**!ZWRTDioH259nY&;C-z30Me3(9g%JnP>3ueB8x&L*W)wwy*!J^*h0gf(c==A>-uPQOqn!xdMnMx@b}t3;wEB7K?S^6>lc!vrYi!}hICys7 zt8ID4PDM}@r}*Hty3eUR;HrLF{f9gdwh);AE_J?k>f8%|i|VBrwhaIM9_gfKXqm{c zR`;N+spIZf?@-jgA_>&{EQUsk)V0_sLmKczjopBoCy8E^{xdp&tCxc-DKV%V$%(sf zwV;i+p=Dg~y`j+pc7+4%O zUi^XBZ^qfgem@Z_`!~?^A%0ByXNx3l`sZY;#!9EgT54E#JC#!HDXZF}cC{>HdQ#15 z%RHy%2x<~6Q_D8}d4r*vLui&1UwF6RcJD&Kxc?A-$%h5SO5Ne-PY)EDA1zJ*G8^e( zUshwqAQP{UxeLu+@A@hXxq6mJcJ!qR^DEt-%H4ObY$3Sjx<5hfu}<3+n0?67Xj91N zr9i1S*(u_sNWIiiftS;HiHI-y#c7Zm@3}}4SyN7#f*eB&3xsYTd@97GXWj zsbY^4AhwMFG1c2v2Y_U$ji+M!!$jcGerolz*L5 zeayUap=OKq`M_qq&qlq$`s(Ve_t~m<+G6g$K#KJIEojv(EuZk6$k*V2a_x7U<@wcn zz{pxM-YuamU9d&GVKt)5n3Y`f>$WT+IlW-f0n10hxakg^HG%T=wHHCH)Ftm&fgbM$ z(XVc_h)zdt4H*2$V>->R*=|lEBc^mq0%XJD zofAWhSJyajPEkPI^h4@6^BC2d7A)Zdn=AVKC=Kq^Vs<7sy}GTWiaDddtXg7mRs?H2PTmF@0rfqhs|Etw}6 z!PWEVU^nO@s5aQ^9IzYOfW2C>qtB{#pro}r5j#LOJ}JrTLO$X#%NDPH;B2+T;!#^H z+S1dVD(JW+ zip#JmgbSmC&gh`X;=X_^LL$&GxRl*c&=_CoTA5i{fqBboWmcA3<)9{*OQ>b0mb8yy z#%)pCy7Oa{-_t&eH5E9ie0;*J!s;ghi%{?)Y*|ySpJeZ6nexmF418OAA|62lq`f zRVICv0MRXqV!?{xlQ|SXTM9(yZ36+gQlYgLe26y`HI%CUE$5IfVD9BISet|P)Y?Uo7YXis{ipLL;=VL>5S7D1e4+-VM;fSFte;)D6M%s}z)2+fX9(~1c5nM#rb&)WePHS25F?~br zpe4U78hh;}DO;q7BhsB}9j=v1NV=mFa-gr2#)|Xw2tL0z_TCMeUDD%Oe&68WjpDSd zJ24R>cYXxhIGZoq+|OoX+(u~x;Mc88g~NS45~V;Jr<4BAWD;K^ zaF6mOd`I19kOKZahhQ*XgJlih7EY&fN))s|8JUCJ`8hV7jPwNwh-;GKwmX|lo`t9# zK)5>w@o-Nz3^~2^B;4^)l)Il-+jOnR58Wu8p3*U-69){e)R&_z%ZDp8M$mm~*~rhH zKtzYey@$SRDQoi#355$@?ta9$w*Iu2ryqs8GihoPLnVCcIX*Apq}%65>2!O30r5yP zi@SG5Hr>BJTrYHMS=xMh=pmj4D zncUs6APLCUf0?kw~c z&6yRb)i_~duG<&9MUjUhix2XN49zJ5az(T@n@^{s#DP@eBlB^rq`4QFqI#jB%RQ(U zwg1?_ba*Z9jY01~>&UX{adh%6eAHlZfuj(^{*n7jtY(p61;X4u=zFlI!j9Ub(Zv4nMPoU5^!;N% zCoK;7Qug)QI$)#V{(JbGF0Ttax#Nupxc0v2%~yu*k??Y#1=;-4;KhZA0QnOFGN)Qk z;Py-dr#b_<`>71<6lpdOw`PM~e%=wz8Ud%mx)yRVun# z*wQBdDoVwD7t6lV*=UEhB(>JeXd;Qmdbfs?Xpo--Xn%m(U(nvZ=2SWjeeOBA zpw8&wl#wWB>x_#~rg@AYOCCZggh^Uq zN~p!z8Pnf(&;Z8Hy=RnN3~O z?;|>Gqet0>iD~4>y|_@D9C^JM`6W3ro&ey-J`(2M{5vK&@&Yk(xg7Zd$P|ms$>_sR zVdcoTi;<_vkumW}kpt_!2KhpCmAa~&pM05Ly)-5 zHevs>91FGyZE)N~->bl3+O3o5ljtEmCY(O)@6dNNiRjA~F^lvOjkNx=;=F>kL>2_@ zLEB+Xx*EU!7`pI|{a=x)Ca$go%2-`k$5z6PB{k-ozsZBAxaz|sQE?tgTkrqcE&xLY zqle=AEK4Rv)Pq4S`-rbBs*BheUdu$nN=*}h4VuFZCSeTq!yvOjmn;6D+$u~6;yVWS zvorWv8#a*nm!GCL~$E+7c>d@dKPRx?4$;T9)f(wO;sXOp~~kD*p;R!{^Ls+q!Z(T(t>D_)gI(Sc2Rqe#U8f z9ei;&V2U-z{Nli3I`Bd|aX|AP0n%rWE(*=790S(uguzTl8c-z_Y{gC~tuN~TW-D`*Gdr@j&Nz}QZCXaZU&Szxl?3>0O`n9$* z$YPN0xFkJ2Ng!&+!1_Br0w38#55usN5YfDk^uw6mP*V{F%^q|ZGrpWibMHJN zkq(xhuXphnJEe0}Xv8=N57hOIK9usfrO#nYpA#sEuDk{T@i8NRT|>R|C7w)^4#YCn zEMOJSLw8E&p;sND7%R$dNavQF-GApu&%l#TLx13>iD%qTb6-sWa8*7Rhi;4a9yCOD zM-k(x34(}mlJL6AMH%C3?NHFhG2`AEN7$1k%;FLDH3_p7zNWHKY_Z0@tsAVn6wL>% zWry)?_SXvCs!uUQAeT+(_it3HP^#A|2*B%6I(P$vkcS{0F$+66tK47orWhwIeGXds z9K{E8oHds~lsTr~Cr)C`Ns%=PK#TdfR6;opDBGX5@-m30x^xULaMY)fDRJi`>8y1X zeBS_BASiknaPISh!(6%OhB@}O#WO+dg|$>+s9GHRYc9@_E8%rs36sD&7bV6nkyi$; z4y056V4mIkyfRu({X4_geNR^~OZB0JSQYkl$-|8vrZ>=@pz`ro*^0a}k+HlX6*Sq% znRq7dIoq@C#a_g=D>h7QeHv|jzC+WpMxGFk&<r6T!e{lA1>nx&O?jbyLst7l)*Qz~_5vm}++5RaMa!mV z;H1Zk%G{;pr|>1ins?1H28YVD<~@rBJ1 zrKJ4^!vc42+1-_r(by!4Lt)2-x;t13qI9b|!U7bZVsO>1 zqRj{#r?}%f?`|lNY0WVq@JaZYE2^ku*iaKk){_r?t^tl5A&wlAIC5O($Xg{}2$~W^ zGsV57TZL1r=5nY*nMIj6`^|y>rOB|jyBokPj16JPZ3r%*Gon{#qD;{LK>*|Pd~tF` z)1%3iws{xEp$9yhgtNVIdq^G-%p!fmoLNrI7pt)HqrD{FPv6Zq+IjURNC;}A%)Z) zD9u~YY*W2s+D%#jtd-VyAijbV9FCY4QU551{FN`}*d|ym(MJ(wHx#<{8uF)UtKDrz z`}wM!{2&zeL!~zMe`uFDghXZZB0zIYBRV81B%#uRr^0G<<>%qXEr$0cdV)jHoCKpt zqISKjbmUs(jnS5Wol-XPFj^{H%MlG|mm!QVHzvYOTDivpT7{)hT%431_P(yX3~rk+ zBiO_j@r_>JtwXA@yfoBttU)DTTZQh4P;71vJ7`+rVrsM=JsN3G#32n;mrTH5imNy4 z#vGt7T_9Xb5Sqfi6B;YkL$C|82ygXkrcp_CiO;mSih?>7^Qm0OZ<&wkVYi)H3cKy7 z0rv7!)B<>r5ze)zaPUD++tK)MdGJ=aVMEfS#IS#qJZ`O2$5@?XrUOFYOl1{R*036$ zA#S-{iGukcJ}DThwF=Pe8o02Gv9LO55JIah*4g65=!?B-#{>Z-YrF^L7SJ`Um8Df! zGFY5r^cW(fP!pb+g`RU9dhwRfn1slSaWse;D^ z1w|69T6mYV@xBw@;wedU;1ezWW&NhZpEjSgt(DiSvQ7oMW}$7JCKQpHU8E3^zPta+ zRHVT92LYUaw7bdJJq8(dKtgwcP5Q$164&o9_$7!5NBw@ndnqApPTkQ+=sv4NhdPh; zM4wUkNJ;oflu|m0N`az0jTNcfY9x>cD7{=br{-0(P>f6vh!k9Wpt9sO@so7y+?oTQ zdPHWLQ}Z}tV$0!}5*tzq>*53~1u6p*u*kRN)$k)c`eReM=)s`t7?dh4TG|3O2j*>% zu+ZROMp_ci)J%k>aUb?0w}bdeI4mPZ@#6=Dqqm?5MlfivG$8P;91P0cl?vLBW9kK*b}?%mg<)1i&}rNpCHeNGGS3yMAm z%{V2<#&rgyvdezzWWP*YwU zJdp3~Nr|5(iK4`YbS2=_^ajwa!WtJ1L=%V;KjEmL$Lat&U3Tw)FIETm4u6*}4ys`8 zwdlsx@x$fII8H@_$DNB%FV4(OXriy-P(~aboSMBW2xC2MuRX;#QNwB0`U&fJk_8^Q zEg47lJr{SuG|NQ>%HN^fDuVTB-aYM?+@tu)rTrww>y%&Hkz^XHeDoOr?3@mD=DET4 zHf&Jl(u{)%QkoKnY|t~J2*?M_3P-2PX+CH(8d$$iri3J z(Y)tA?r^)8lY^u`u>o*Hgs^#!lRFyR==jZhXpdwQ-0n0u=mh_|xiSR{fNvdIs8zMB z`np5~Im7s?hm{VkNjL@lcqK~VG~8-(zYYD3a36(ROYQ?u>49>3SYqdCmjs|ylTE+G8@<5#@Z^5RWe{jrV z=jH0kZ@}B^4E*VCq!FM+yVg>3Nu4OXW36#(%RcsmN-da=JuSMuUl@u()>jaQ09lRX z(W@8*JBJkt73@6u^e)!Wnh4I*I2h2x&Wm3Xkbun&Z00522_QWzcAjN1O$*;o7OA{j zT)9H44F*%1LWs!bpRjJt5XR?UJ8S8F%5v=-u4R;j(H8f1iHH#&K$dWfDK>msjPJJm zHcJ@gv6?XAm=n)yQGqNz+(v+p)eXo39DtaX){`|{`Ve(jt7*JTl&P>)E-?z<(OVrx zt8m2HpRM~4mwvgXJv9Ipp;3JE!X|ubeG?4_KROXof{zYpqtqO_2g6#W^DV@+ z>Yn===CVci+&8+{0u-m%&hi3XhOEid*f|F^m1T9YZ9L4 zISAOgi+Lw@KV`jk4)Vd)6^Ff0uL**uZ~})xoyAQyGG&(24d9Z^$8Dki*KIyHcORpK zug#}{AIYC?uxzw=mG`YeWSW_77hlnaH&!sx{oCE^jxkCAxlEiJ($U|ogO#1RP#m%-!FT9||k#o*WwD$nA< z!a=M#TICx^F24Do&c9q?KnV$wI7eJaDk9rYW1_^8sAb1LcMgA6k8WJGC}KL&VpUuX z5b46&u+mcW-8N7wP68vROym`U7edNwC3bPUL@b{jK@I)S3PuZ|^@2_W9#rxfR}m=W;8&MX=loZxJlFzFP$I z9(0QerHg1SZO6oQq9hKbXt~e$M^a$8aK3Tyie@TONnotsU@5E@g+WN_gGPOI0q=BTz0^L!(lce=0PFAoWBW7V%@;f)48qUbm1mrzxtN7EQC~P(9s@?te zNLs~f;((35ZHnKkr3MM*v6T~kY!1waH<$7o2$c6pxOzxR4zTyeLlY3~<7)&6iyGWP z7)CK8q0~3;*`z&B`+FdRyBGz>w_w;tK))s(nbR>Otza+l6{l+Oz{S|!jqHxU%n`8n z281>DM1e&2T}XH-5FOVhlwkB(1o=`3IjgBBb6wuVPpqYUiuKo4HNinrp5j+S?q(Ex zPcL}U(li-(bgx}^-wwE^8lLWW?sL{13b>biDksc!$HC$5Og@xw59T7~?oWQ3fz16Y z{kcwmp2i>Kd&Or@cSOM|z{UD4bIAXcyL_K%2HVIGB_u*S%Dqb zD*7_fxvB_%YgZ-VFY_c@I@z$>b#Dhs;V7q#=TC}8Ziip(s(3^p9?=ICq41HmU@g~k zXo-@B5P2spLTNwoxfdll>-M9PfmS$@zG}J@+3r$Pzng_dX}Irtz{#}p(C-9VQ4S1fUIT&yexvRC!J4+$nvolS4-H@ zPPdXnc$k@3|j5a-TqR#a4PA0{Js{&;q#yWSfO0!NO#NNp%8B z;&o*Yzzg~g+itUSu> z)O=VqKG+=Bq+3aQQGUx}b-p?sg|Rq|7QQk?+;mHyCg5F;tZ>c6XGTHumzG>wzWNYf zfNJ@gNVn=aPUD$NuLHVY^&o=Zv-SCvU+dLdeQ@P=iSn&1qhjGr+9hea?QZ1Mu}z_9 zYeA*zfc(UJ!{?>1G;l{d4C%y@K?Nl2?j$i2YoBk#Oe{X{H9m^&7XyFm!ege&hptg~ zQJqAiJ61%+EI(;LaW7rL(T2MtPu=Dd8TsPO3juUe@<%s7ErW_hZd&g8xV)XF`?gWut4oQRP0{Vtv~22dDfP9L+mH_d}9{e zP$hY>X>7B(zaEhw-nQ>u6t6k3YK4Res$gEkb6+pgg=2Hz3^@a+D}50``%$P>So8n?pKH@_@49+D4Bs zd|{D@lR3?dc-&^;(e5$m5o60<@2>@mv2%-r6O4~TC>{I^6J;}oLhpkfr=)bAJBT7+ z8;_j^4i)gqfO`x-9uK@$z-fVwxA$#v(I2Oxc;%m=JDOwtDnOTQIexb~G27pN4@gfICtSxsSd@wAbW$M_{Igu7DnOiz57&<~|fgd3YR8u&V!V|P}# zaCf3BU&t|HjCBg*?N=!tfGe+|fXA44exC<*d33G3IUL)ji- z!W>`;dmBTfU1JHW!DC@6oFaJA5kM`D0Mzz_duX-mrp_e4s6@p}lH_s~k(eH9FV9)7VJB%Et*#!1^H&`7VMCwKy9fF>1o05Ffbjm;NO28sHdP@Mr{*d#2J|FX&JuOx zU$Hcsi4*tiY778n8c@~3f z;@yA`u4658#NFXUb2A1QTYo%%fRSJ*DJ#7laew;}^Y5suZy6Jh9m~nl(VZcFmN>s< zAOzQlH8uL2Yc-I>P#m<>9MNAw6C<5`WtZ{&N>*P3xPKCtv#E%@=Nf`=vJnqE3U*R1 z*fFRM3|QWxI*{iFuVrn$HvK&PU=DtA{+oWf**)b69^4YH3wJ7<|~8Fcra(3n7S2zj&Sla`N`?m)LgkKe=I^8@R<{C2C$x_@651yfpU0s z0jmJzXShKk?I=PQ-Dc6|)9kLQ&4(yUnNrMd1x#BVz}?E!y{ceYwKF>cI5j*Jd#D? zo5D|Y-mAuK*i2g3#*)lZM@!t#c8DlqvvkJ&HAa`l1{`_fBM5&QWf7qhA{2Y>>y1js zlSw$}ht|P;1jKfM;T#P;@)Vlq#f9>wEB^Oy%Z`cbRkU7QG2uoDfZuE;M8Jt!FbgMl zV~smN$P87ZCKA_*4g@;v}PWhgn1C}M(PC% z+QJwuM937Xs|R!rExl^hWK-28M%LlY1NUND2l3@_%X+2FH{~R^X-E{NfT(XFT!`mG&lv+79gJe+D!sUD;VM5!#q+m~+Z%uy6Ue$re__Bafd@nW|`-RB2PxTj7mc3J=`? zg>HZev1;P2&2_Lgz%-S(O$dN7K}unO$)NLBqC27g1C4(9z{E&iYOEDGt?O9|7fYIwY)Udsp>B>RM%8`YM^RPZ=?XC-pplwpn5NI1(JK8d zS5oWv(A*&VfjaP~xnIPxn@8l9aBiW2uI#$jKAaf21g)go1R+&<-RA5%!I`SK4#C9h zh9xs~dgT}hhbWsw#@ZB3;6A69_!DReJ8AE1UK8wZX|6$~nJZ>Amrx9U9HVH0VMPmEZ+S%2(~^Dr2X}GR4;BBPHK}2A!kBq{`WfCJ4#+c0yb9 zp-9p=-a?1WKd~T0xh}};AKy6SkLhg}y6*Sr4-@I<_&}2`421|oA;QE$9Mf&TehCY% zW}1&sKac?OM}aTttz~Y`^&lH`sY#3n`6_T8;$5~di13J9kL8S3^Z86~^9KV`{TqmZ z^~6AM41M4dx-an$?3`i%|Ma)wpQ1JY7XIl#L1Nh1HVjl8j8CIski_$yiTF|{F%&D# zQ0yJ(Q%zXPVi>KVU=y?}Vhw8MD)FjKFrZbiMo(DKvY3!yKrb@j^&ay6^YF z$$=!D;jFIr+35%WO+0@l|C0lMa^U|(4$wIPzQIu|Tr|aEF($%}B21T{zLV(w4eToV z8$J`EOLA8Yl;RH&Vbai>tN)h8SKi!K56~-6TQ%0@0nmM1*Xq2=x-g=LftUH2qZyUnjv^@JHs8 zUWyk=Z3(|R53yb0ii!WGE2VZOx#f5}yl;+IdW(2fQatP#_-|{wc*7VrulSvn;uSC) z`QxYe5%JTp>i@(q-f(ld5I3SmP)7T>Tq#`7PWgMSc42S3ilrl- zQhA9_WAV3y)0Kc>LHtpAv3`CVe-fu>K4RF}IG93EN97`J$?3;B)m@TV&)6B!cMG3r z@4Wm(SJz`(&Mp|OU;n{pF9cc2$7dIm_(;7`B zj@;}5M_#5Wk=VmNdhDgsBh%AHy=uvO=V~8O_QA=b5zVBdwx52W;=IQ zJNJBXJe29nF3yv!9A;;=a~IznKa(0^n_pHtcXm5>PCNI4cJAVK?o7L}4R*#d?Gf$V zk?q`3H@O#NIUrEb`pawQ&Tr?wIW}Wi*^BcsX+V*F**W02IeXJK9&tMa*ci0y$ry=q;722x_*1+# zXk}5}=P^@;y!V;+-H(>`d+cP#;g7gtH}(5RMC^~}E+i*RNlQpcok#tfI(DjAw72c+ zgz1g!%WUnku;@(BPWrh=AN6&4JEWS96mcJPx)m(qeqeYdkt_2zRAmrP2t@yU7_I&=YK0>0Sk+xwXV zZ^kWo=BR%8flG&ykJR?)sCh3c{Ns1V-I2ZK9pTEvx^wyC;#^%Hd%I-$?$JN3>#}a> zmQ5pfzMZ)4#`QbQ-`pr)xbxuH;g&&3pL~1g{vC3@4IT>C1XBgm0Oj6Eq~IH-38o6B zo1o?rQiNq|7J=*=gl6 z>zOZiKioq%YUumx9`Lz1SLkz0v*W2EchtQ(^UmG#dhmvq9=L7V#Q#*P_;|zeEXir60D#DUe%qboH@BZ7uhcb7cb^RQD>drGyQaL83*vvzU zvgX6e#*a<4(P4VS`-}~7ptAce;tQyTFX4yCvR_}L5t^nL+XlK?{362H9hdQ`1MrA` zm^Ydj^MX5LNp^AJA{xUK3=N05RfYJqj z1Hw7J7XM7v0DtPtL*`4fS(1WnM9)IKh~-FEuzD(Q9xq5V<$-+xMho~EjhQ(p{B_wa z#^IBmArtFtiX-~*i7y6zZE!^qE^Us29rA36H;nvPk%B#mx=J#QPvGuS1-lD0SSMLi zxqF?0MS<)g3v%-K9A2eh=?EBNFScj)HHK51bodpiTKq(s;NQL-9{hO9qDiaPf2~TN zoJs8$XqnR6gDE{!9^O$N%saxPNQpj5ZjT71Q5oRP?EzU@7Le-60uU!4LSNLayN3IF zDF!m75j^?=Z3oDdU45C#L+#Pk;l;WlO;@DpiZop#0vnWS6;pTs`xwT&1HE~?K!+a- z%<^S{QQj=j?%&||nb_ywMnk3j47GEDZD>kT>a;v>U6v=)0kxgnswqf6h)uVfj|fEHeM>+8j7?U)tLIz|~;N5vrKQzY^WO|O+! zqC41+`Fi+y1V;t4U_}7aH+5+6t@n0mi#*dkk`Ug}Q^Xb38F&I1_v@qMwDocHVtuj< ztWQ)=)(79Kv`|OsIKLbox-1{?%bV%!;8$l~=H=n-(K*$Zb&m33og+Fn=^Hw@e2aY2 zTX?w{X=NTgh_cCcJM1m>r$zmFqW(NsV1$1|H-lI=9UXdmJpCb$>Y^NvRk8^jY3aALYgL$-YHm z{dl8(+O+4Ee%As0&JX?0mjyhCemBUE*ISRQP}U>rHr7L7V7%t)QFGt}@w$n4-HYni zIjmP!5bG7yh4uQjOH*J&CzpSbzD@sWZ4cdor1t);(nvUp2nR3EWe*+N2X8arhuTBq z;UA@E{tx;U`KE(M0is_(Q~(P&CHeLAV;&x!9z7kQ;B|lS`Zm^6(VGP{b!^as#%_`R zyq))3>d$)Rc4Q$@Ls*F7Hn|)w?;@{styC5gpj7r2%iKFFg!M*y=#BP(($tHkLAc!a zKY_i2nvVk=6kXfc1JRy*IZZ*R`ylW$2>cAPbBc<(_4Z;K4-XH0)KI3!c;?mMS>%!4 zI;ORbRX4YFd90%E<5t7aSW4$F%7J1(9vBtN1}cWI9!leAgIG7-En}w_#sV$VCHoY~P*EO)yTtM+WU~id!TIvdQg#HzT{uPug)|Ik{FCPPYd=|)h zI09IYtWM|$9a)cW(YMfNsNDr%ObbAp4M^rAXnG4BSwz&Rh;gpDFm_>0Mm+KO8)IEzIDY{5P`O)Z1&yg*NULQ*5fZH-9XQSqhYt%ue-A-; z2*N`mx;Axb2y`iZ#kT6J@MknG(7dU4cw$`eVEPDOj3?q)p~F0?ivq1Q&$W!Zm@l)u zFz%vFCi^!ieLQ&I^s%dpROvKliSu?a(gvfP!N3_D5meMVeqr1KOsIG)}27PPMk3R=P2k0T0Hr2Je=77x^u>ucwZS zXOhG}I-67m`Y=C_4jzFkIj8G=TwX=mbk8IYBf>NyZ!`|H<(6?3`J%mwbo$(q&enE| z`4IKl2ld&0PNY7x8+6c*=uu+btDeuD+}+}@P@%nfc_@mcc=8N5tlfgC7lJ?D!nRsT_PRAtnEpfwEo9 zPLiAQr61+p5k{s1+noQSKbbBW(ifuQ50lP+<0s>xZxzH}dydHde+*?j|M(B#p^t9G zpGXg;uK&_cPEH@fiobu4KdWVgEL}$UUxIS-`((?%iKpT}gonO27k}xp<-Y{w@*oqg`xP64PxGyu(!YtxggdVW@A^JSpvqvxZpnm5ZftkC-@l7;0Wg? zzzUqf9fO_VIT)?Kf?WU%!pAAWuoD~w6AF7g;P@_#MZs;??c&$==85)8%J2{^A8&dCuc9q=p+`4c?c8 zIOh$3JqYk&eEJpxJ7k?$)L?v41v|leU~*wE1yl_|d12QB#=~%W0LKkwtQ7u`i(-&{ z;{F8Rgdy5ofGVTtuLgVsC$ei1AM#NQvQeC$1R)>A?F73^b^{>fnmA5^f@EI{xG@s- zMR)+W!ccudHj4cML-j>)Z#3+P1DPIH3qx`00Y8xJ7XaPEL_Cn2Vn4u89LP>FH4NGH zfFodd-2vuHcF0jNdZ&%}K(J2?%7eW60`7%rpnL&u!0n0#?*dc4h-h&}}AaBLKknE7TVn0ZBT)?pnxapdW_*H-h zV2BTp$6}q6aApO61K<=GqB$M#$`oi%fPWL<_b|Nd$&A&&@U(!QIAyOw96jJ2Q*oyN zdp=+z%puq>1IA8AJA)mvTnuts96!PBFjU?hfT|gyzZ&pG7-~z9?P9eslrQAF*j`-A zUIw1m0gL9L4gzp)54a-}&(gt8@YO8b&BDGLFftqEg*_f{Y>tQ@@?q?L7|M4Y;HQ#5 zIV|h46=+-~;)Lt%rR*!9uh%vID+#C+Y_FI>0jy z+0GLoB=4%1m0TTpm90aE?#{C%V1P{TGKf#nGxHE$tvTN)~7^1lfke)E5IwGMH z9~e$E;PkuD9taQMhP&a0eIsB4&efK}PO#)&&VdT@M%tLwF2;6JXB5-v(&dfW8eo!7Gm-zb;!+_iZ%iJFMw6sKqtik^m;+G`vP8o;d24t>g^aG z5T^q0It-2B1P8r@c`qg_9DQ0C3`90Ny+{$;DuLko{h8w*X|VSf?$VT zV!8By^LL}{K?;@yc*kDUDeOgn_rg$KrGOv6&^Uhqu;)H;&N2WlgW=;pU@Z*AuLFGH zb(lDcZLJUfVD7pSdu0zJ>iZ;tm)nDMtu+xQF1>c!Ivd?R)TH`{vyH73q}05Niar& zMG_s;B{)^`&ynD232u_$HVL{USTDgQ399oY{z%X)!I=_VEWy1KTPe||+ z396;`)>nct5=@og2#Nl_61*Vsm1JMq{;(!@kq^c&4rMpSG47UOI^<~Np9N(LO;<3I zt&x8&$`^jO`u*8&MBe<_Z$v))zus@6eP%A1Qj%?7ma?qak-f-TkW*-1ltD70Sa)cX z9r;$sz@-)BWfo>-r#MKO6l0Voanbl}hnOO{u*3lYep6PKJsV*D zKgXPH&(47<$jqKR|BmcT2iAd}NyQT7sgRIlD!5UFV@vFa=8!_HS!@Z?C*PcS%rXnF zQ9Qjl5g&XMXWJcUc_rEAqD<_$P;TN%3UZ;gPzrZi!J>?!sd?E;Cg;fBY$ejR=4Z9v ziIP9S@yT^U=!R-0qP1pZE;KptH&T_60`C_*`&gPq>KgGS=4RWNu{+=?#Bpby}Z!6c;TeRw~RN?V(h9BlVdRz zFDuB*wHFo?mK2XG&PvX{vn0FN!8%dOBs8SFrR`c~AEFcOP^5=9Cl(}fH(@ba6Jvv= zk`M(7*vHzlQ4C6x!bgc^Z3|?{Lz158Avt5w*3EWQft@{kQ;mygd&_;SO+OX6`W!fd zc3>?`Day!1|2PjfZ-p&B$-pk%T>kG_50UDtWUM!b3Uci|#s%${b~zrnDL(6Z)yxWF)>!Ds<%KER&`z zwjG>BZ4=|s>Z!t{Ry7u525NJP(vp#H&MPj;aAaZh9&I}_4+A^% zxoIp+%|&C)!cYiV^l4c+(j=EwKyvDk|7znmhWmK6@eyNS zAt^IbZnaYV)BjHn+?oT>$|GEcVxIW2Y(3O420GS5uMiaZS0+MNR063vU4zG(MOA(9 zBR!z4?!X+xwm3B}zD8;edFbrcQ0_Ljx&x<+v6r>R9?}}hV|Q+GJ2iJuG(nRBP^+1O zzjUEY`hxJ>;1T3TPl`pJY7Xp(G-dbbJ?slX{$R>Nq~sJ{6>3ZO-WIo0bLCY;1F9G# ziD*soR7(^Q#eFSqr{+^6sns08Up3KzSFNFjNYpD2m4o?E5l9+V+rFI|Z^P>r8xcA3 zycLfVJLj;{A62^5KV!pC`lCj-`Wk{tfArL?zQTR9x>XIZ(32QA&u7BV7U3idMarX|G*(9?H{RC_m<(4&UK%+4IG^Dla&arA(SPN-HrW>KBUaYE};jS`7Ht->^| zd-D>!uF~ung!e*1p^9Ee(CYN8)`LN))KaMQ09aLyS7rRh+X2Cbau5}YOM zQcsY!uMddCn;&Z3N;)7+aE6;|6Bu#s661vwUl@T3z#_cKLQI0{+!F77598~vOE}KO z1FP4KNDD1j33&G20)ou3%98FT!4w=jMqSbo7DMb9ZHX5wePhS?I-s@jUOgc>O|O!^ z1`e0#obv`*ob!Sz<_);C1~|(``t3wBvI-_>iZtU1B^s0tp*6`}E+9tr8EC2?wphtQf1XFy1N@Tda6V7jN^L=9p&BL&M^F z!SR@V$la7rY)IdvpiZ3*JkcThSD`DCI`#6t zN!;frKA_NJ47R>errk88yI)>_NN^i#F_Z>SwB|q$JkY@B+{mk|Tub|wE$w78`T_W06nc<@=!ZnGi9oI9Q2=DY+%^oW zh`S1I_gT#Rf?p3<_gWBU+C4GKXtW3)fe=5L5X_sp@>dax*Uj~K6m0grlwJ!Bx$wZe z0wwEs^;|d$5DJ4ip(q9>o>c!D+z&o_qglAV%C&3+6h5DP5=kpHZxf(rWgh}o{#u%@ zyn-^2^gow_93Qyx?xOpy^*5Ru3ou@PeFTXFzxzcL_lYRP_dZ+SQmF$U_WB~J`!7f* z+-OWjl38Ms)V4_!^pp(OHvKRq@unmbk!1g4m|N&Q8K}JWp%ns%!mD6Mn*+aY0KcM$ zU$ykU6R%b1o_;ffCcaI5sopUe888urVj{u>MDq%=#8S(;TbA*r6_dsq=PHTOg>#j> zm43fIfpYmAutY)~xuyw@9JAB!3V8~ej|pJX^tR$L38&^1Ij_~jRu9{sDjZQe|2O=w z93h!LlI0^AK9Zp$**TJvBRM#dZ6nz=Sx!xsKO=cFSkSq$xi;$cM$%l|UN9jJqcY*%H zfRKqGnFo?lAlU?xK_J-zk|QvDhO}RRhC8WS{rUTo1OGpA0J32yRuG#0&85R00UpNR z@y93a(D{P?TLqa9)y=8Mm9L7z->J~MG7o!1g$pcgQ4F*o`&cYb$gMtd$x=+>G|?)Tmt3Sth=z2rd_#bN zbXd`ECJRAYQD;~d^Z}9Hv46&A(qNPi&0VAmCmS@0sfkaNx>bMM{g`B0`TkqIap9m| zG{f02)O-xwM&JvDFKOM%LJl#&IiI_RvuMC9#Eal?fgjAamsVF) zudCizT~)ocdPnu{YFBk#b$#{O>V|4}byM~AYPMOsS-&}Gvte`SX5;3V&GDNpo0B%D zZ!X$gv3cX>9h+U7&u(^awmhBwbneqdPp^CW`qSDi`Yl0QK)6BFKf|iDpx;=v^%?l3 zi+=S;)qr$On~AqrBYQxe8jyZQ4gO%TD+lPa&XdiBc?Ra_4o_yfQ^UGF=*i+>*1zn@ zUI9G$iYJ@-J@ov%2N~8~o@~@vZ#H?iHyik4G=w9in7+zM)`;Vcc(c zvZ+0kZ1ad$7PMc%GWUD3?XbTIJDMZckvA53r|eL$8%0Vs?OkuSF-pnK ze6L{LUxl3W!^r!LH+y`TlAXGWF?yGRr9I-w&J9ZKcs1yvl9hw@4aB!3$aR92h$bcbzzBX!QLt##OA+XI0X759L^&RU8S#NPOWfnl zgb%@k5H-90go@3Wt7gx`9Q{be{P(L^Z{Uo;(eBgx(T&o@axSS?;hT9i8}O})jd)Pa zrr1@i;1t{sc|x`t_c1U7QCD$0z1fWb9~Qb;&5BXRchNTT_b6DmbKdMNY{M$gd$WLG z4O@tEzJ)eo`c=d32Q9zM(J(#Mm-AunnyX>kP)8qqq-5TsJy;UTnM?Il#K~cE>mi@~ zk_Suh_hhqP!ZTP8c(Mr*8um!CioN)thShzGZ}m|Jkua+|d9Zg+YuM#iG%Vy@4`zB- z%^pX+JomklX&oDvTf`hzzs1CLlK?#x z-+_m;rl!8~6o&Ov=tPgBFYHGH8j}VR7i-z0S5a=X(MFi&tBiHJ##sONAzKRbBJ2lX zGN-H9E7z6m{8>--)kY6CZ-$C>|4GSAFh8F|evf;wH{(>yJwnUw_)yFK0<-s5=mzTH z&D=e`(eT7JyT8bb89;9V%$7(MJNvGN`37p)Qk3m2m;*m)S;|vd_V#Gdy@RumB{pf9 z^JOi23FhYr72A%wJGWEI5?!FDb54Q9@EqfB}zvERE z8@NHu%&&Q|g&VwB$x;vI_kkzt`=|#Sfj-vtoR*D2zpeO5#lnD3e?yDS4DX`s)O9Ue zi}HLm(~~9stYy!^_#*!tnD-H{*Ju@sxfi@?fQ&clr~f){*1s4P%G~~9q0>ya{%uK6ae1`{1VU`FN}732|8p_m23tK$>!>jZeo#!y^ApdJ%j(M zXfQax^}sex&xw6wJCX}(h8x`0RtTFV4Pm&eb_z&ZF^(Xl_bU zPw6}*ddlllE>F=V8>gjD^Pj$b`p6l7pQV^>m~Ec@$n39Y51&&xr}x|ubJx%PVlItQ zSiiCrNgI={COtW2@bm>UHqU&G)Tt6mb||Uil)&W3tf*O&XIW=|IXh~O zZEoJ&in$x+Q6DiN+My|*Oz}yMNnVruO!Cjkt5beS8IbnZH1iy4zeL->MypAgsig2CL z&%-NywMCJwQY#f2W}NNe9p<4>D^?CyD%4ezj5cGJHadnehW(;qaR&DUD z^BWLeshV3_SbpimSJzI&AKP}%msM9jJW>%;)i|Lrt7@h9=f;&9593PJl`54|p;UIl z(SkDPjlj}xo}GQ>G?h!4Lue&p6+R$oMR~Z7(aS@XruOKhOiKyxWb`M8wv+d?jN)8~ z+Bgae!u7@ugbOJdlE#`05ytRvV~;L=5k_OAF)BPJ(ij;#6V7lrBPFM? z=zoODZpI*yO8?(bXNezWzPwjr}l>^_uql^5zYs=;* zGCxcBVbc$__KnVr!#=NkJ}@Qpm+yOaR=Z!G5I@!P$H!JYHpcx}m*>u()Gv8%)%P7< z-ZN~;*OvJUZu^V(nGvdk(Zjag(7x#NM4)ZW2AAe;WzhDw7tQG8$_O1iS~G9in(k9l zUg`dZ5^YuS^h(7_aO5w>p5S9hKXs6?b4!EvhR!-In!85hsZtq3C_)EyXLZ2sQ@76x z{bcL3Ipe>3a>Yv6VVpe!(V*o|hbn=Uch>aN@8x|EE6FDqGq^b{5RT}X30m|6>J0E&v>G5?x zJ~{cZkC&&tm?CD|ld?5htHxI)tR9=|a1`A>bm)>LONK0xTlSF5!bL-i7UmTe6%Wm{ z=MM!;28t^P{J%zV~3Sop&tHzd!ZVVdpbv z5=XDTzW$CZMJL0UaT{{yb~*id$mE|czPMv#2jlg+`GePdv#q2{e&eGb_t0+m#|x8k zrfj)5eAmY%!@s)o`EfnM@AsTg`H$kCzQ{TM*Wl=le@(dXUD^F6jD+uFB-}5Kgx(pR zi>J~6$h7U4Wn5A5KQgpnG@~Y|>NKFW1t%94Vw6Pvl5{S_@C>Az8wzF}%V-cZ(jXX) zu`oO~JSHkUDuM>VVWKmdod36s)&Fc{{Lpvb=Ff(Befs5F*EZz6&U(F(7a94@3+kh( zrB^)4_Pu2&|KQpw;k%d}&uw{O@bdY~G|it*7_E*r6n%Q=%Y_Y_T*FE(tqK3Ivgq>* z!(Vlb+YmbIzVtqW_FowPw*}Xx^ncRc==sc%Jw4)5qL+Vu`f~q0_XXeBbEJ<~;nr~v z)D&zOVLE;E>CtnPcO+iU>)9`K_ORw(#|C<@Z|J)7or?!LesW+||115M8iiQ{y%zR% zrlfZszn!rg$1wP_Q9}D z2PdEDzkN?coawDp``^?lhp#|CYExnWV)C6{OR{mG(|N5-)j8AluS z9$wO%AE;1cT4rsA!rvW}y0#<;P^x{gf=|Ke&wQMrnT$Tv>vd{Ev)ZU@83Hs$6-I)a zM!WZ}PCfcp_vYF2b5D+3zi!t1CmstrWSmMVda5TIG2T^SylWYZFlhaDwBtivkvLcL z0SV0)jTdc}#yjI+^xsboEIq&s;w_2O`u$(*AUhe+BdfnEbE?XYo^GSTfu*HXJW**-EncDSL=hM$0 z%>8Em^B<<>CmE+d)42S``e!HI|NZ6VtBa={NbXe}HS@ct*G#QbpY!zk`nvGxiSPe% z|MsSuIk`-(TIZ>a}~P zROF2BTDf^g$B`=r=4zJwulBwJuBoK!`zAL)XeKCCL8C+kX%{Xkb}rsX(4Z(F7DOo# zP?``FI{_PB*|m39Y-?T1+S{`UNLPv#JL;;~v0#^cXKn(r`|R^R@9%rw_j}8i{C;8X z%$+%N&i|A-Gm~9UFOx;hJf=1(J~d;ZH{NPU)Qojc%Dz?%?pf-#J#3bJW4~J`1Y`M_K(o-OeEP(u%MM=XSkHUb@}8@Vg{!Y}Lhz8GEhmvIdQ+ zirAz)9D5+4`_}+Hpy2}}^)duaJRW0Id+9P~zaQD<4*XZMh8yq{H z`;?Jzf0T`350_=F@$=iSzi~VDY2_y07q*hu6^p|s_uq?OO0n%`GO2dFfAy7U6R$T1 zuJ!29EoIC@ztQ|DL&8qY$yU~P?EB7MU3hZoidKsxD;7LCBwF{kwdIAYwvUUtnitI% zolO@`o89lN_^Y>%(6-%vaBXSicKgt{x^w=|1jBZk^ko@ z_Y>gVy7b!^_cUuxmS8^s8TI$wfvIOJSmVFftq70r19_gEc%lc66}zgE7Y53{{CdJ2Ge@uAEQlyjWM3l)zZS#IJiQ68Jj=}1e}B}yrER9|Kl0I*-UkUVFAJQ{ zEpy8azoZ9K4qlJ2|4kP1u4K}U9{c;ud_CNKdE+?$^@mP&-bFvD5I)^7X!?!BUB}xm zKX`9@@-&g#if`@SB@7-^vMsDfcJ10RJPo3b^Fye+Z9>Za_O1< z-R^d2Sl&Ixy5kRh$JM^Rd1URkuj}5r-%q}pawOxxz>&{;%o`OvY0+6;#|buv-BS1D zkG>|UjxCtBIq>txnbw8NEW7n?s2pb8=o`8xKV&#}Pw3K!?G44dj@06u#C9LwjWEbn z=M~2sQY;*{U|LB^H19ngcwDq@*6A~|qdNUkI2eUodJN>3O3~aL!-s15d9Ux`!9^{?{#imQO!Dd)D~q*l}w{uh=tn zZ1nT?nteYG=NgV*L_gkg%C?Ocff7^5AiN0g?!DZ5dG#Da@G`lacX`Uo+m+RXvf@7_ z^>HS;qSVKJSnanIKOSg#-tSB*8;_6IAye zZW7X~mzy{3O?!4G98o{Kjs16$=$GSe@MHeO6j87|75(EAd0DM!B8%4mdEf2tJ77*% zkECs{mhH0Jh4Md6*Oo?&cEGd#Q$Wy3hPQF}OOACLUv19U%hSuV7ibEUq}%v<_S9AX z*Xams{NLVJf8^YmV)4_^%|miM&cFnKhd$$_p-rct{cfg+TeJ{9%lc<=Q z+8OIRJly>0Vttahd+SrJeh{7O6Kl|MNcWEk0qcfKRi&!2&tfC}mhEX@c;{KSP;(!w z^^_mFUsiUb?sp$xRJ~#9>O>Fz8Kcs^ZkY?Co*mJ+cAGOken;OKYYyeUd?o*2m!r9r zY-{Q45>WB;?XyH++U>{RHaBID?Eop87P;cXcdJ7)$M^CSkBth>8FymTrNmWl{+RMb z_YPm|x%BP8nX?A9D1(~a=_k4pLe0qsBUZQG!vwKLC* zFlovv@jvh3*bT2qS?;Xr&|>TWNZ&&-{ z-oIsUPupPm#((nQHq*1_Rj+<{x%|~^4~rv_o90b4zJ}hVT(O;L&2wr(c5HVqQ_YQeE_ucw? zTqedXi}XCWwfo;n=BM;@wEf9*P_Tu~^WDG>ZdH*I*0mEBOh!?=HrcmK^cyaWNU&dZbR z(Y-qge%-ZIZ&dv+4$c28QtfsyKQql@ac|M{uWi;ee4ZP>ascx8tP{Qr)=yqFa? z#C3dO!NbV>smJ?IbQxQ372K8Q*@0@;c9lbgaho4zMG~VA5wzg-ghlg02AW+9JmJGX z?00*`zN=|OSeLAA67#C34gSgtzlkS!jhZm%%_#o`Uh~>3B4d}0SB4y_Tp?SoKKJvu z>c}=pPDO1$Eyz55H}dNsbyo**Z0ppv9Ty)M5|a}Yb!gnTX&w62ho$d3yVx(#cX+j6 zqhbHpxeXIl_-cC2tEwU2k{+%vJGAS~jBX~L^*4qZE<3h}-@Puw{@{~!7y3T-pik|5 zcPr-Xc8*$PydvYm*E6b8dR&C{MvlR-PJvC4>Jdb$`~T)X_sU;|CjCD5`yN_BDDzO9 z6QL75Jjw9O2=vRH>G1m^^vfXhD+%;3sA>PDD|eB@pW+C+ z6*qdcXt??PqT00slvD72o3?G~n0)xz&*vLF|5j;me|O{OutYoJaDL&$(n)t49@l4_ zE#CE0=Let8yqFvk#&;Q>MYsNPGI+`PcN1DKo_gNbm)dYE+(r}rDZ-}vTJgvsidTNZ zk^{fZEt>nL=j<^9?BA@LK6u#(?0}EJrom&nQht5+(aFCTSG+Hqfh7+iXmO{$l`rre ztA8BreCF6U-o2E~UW2=S3q9b`cu-knK6zcSZsO7*)g$T7RKhK@LdeYL2pA#?M+xW@ht540!cSSo)Rxj9o_NTV{d4Aa^ zj%IG?@i#{$gw^ZxznP2eN8L>^_hiL7j{;? znw?#Lug?_YyWYT{Q$@>vj5hQF%?)k<<$g?@r9;w9ov~E~i^auV2UBC@~LRH)CO1AO54YZclS-N%z*y z4Jwb2t{p#=>>GN+>BOPkH&_3<({F2Or5zPmyWmr|_1i2a5|>UZyoTJ3p4qT&u}8b& zjt52`-G7VjyC!JLwJjG5Lm$N72~$_!AynVaKMMR}{@b`=Pd2r;^YJ)SIm*EOm3dxJ z_ZzQ_yV_qlJg0km{;3;1ZeAMy;~mAKfYw{GxEF~mZXb3l{&ma$&TYk3M-w<{Ffuf7 zX@zs!;#Sz$J&p0n$Rz1KRBdCF`;nYn$=fAN~t;&#sf{!JhQ>_N!* z!$c=rLDOE4@FshCb|2H+;HhgMra^$wo;Se8lgIJ&faqkRBY;jVP2dlg+nM0PNuv?_ zY*DD~5PFD29eT7F&h>O6x-=hPpq(r?&xGKkVYm_e*s1B6vmmc!SOJ!Cr4qAAGdkSO z@4BbVy2GWqe&OjyNAxTU?zX3lb8cVMOz-=PPHytw^LGBvkBc3*_H{qBWU`0UYIu=z z+>TCob?~?=L&D74R>wcOIo&P$=lw2`%N*JtnR_}w_%uT^wYcl1lyUb??3vo-eEz(Q zrTl?4zYGbu$J;&jvD3ML9`mlfPR!r?!aT(@3pa;7q%mvNEBQt{@ONiN{r56V=$E%=#16Y?ya(+2x_4%bDq_-h}dV z3j$mZPvuiW`Iu1tPAJdvMD3Q>4Qai=VUo4RK(^{Ic`U@|)KZ7@0ed=VUb(+;?B9t{ zuKjP|3V#h89Gt29mO3(~j=7tDemuUdZU2USXWz_l8~DrMxr0K-uUVNowWUGA`2aff z+H>9ELe|$ON9}wKyoQgMx8V`y?lk4mqUFB?I2pGNEsHqQIOJN^m+)AP;Cn5@qpnKMrv$}I0%7#O_Ht90d;)`Nc7ZLX>**qPC`Z=(HzXXDo| z35i+TE(phrNDfF1!o0(u1W2eBcMk>kANNl zJpy_J^a$t?&?BHnK#zbP0X+hG1oQ~#5zr%`M?jB&9sxZ9dIaE(phrNDfF1!o z0(u1W2eBcMk>kANNlJpy_J^a$t?&?BHnK#zbP0X+hG1oQ~#5zr%`M?jB&9sxZ9 zdIaE(phrNDfF1!o0(u1W2eBcMk>kANNlJpy_J^a$t?&?BHnK#zbP0X+hG z1oQ~#5zr%`M?jB&9sxZ9dIaE(phrNDz`uZiH2XP!V^Hw$5hKGwsUT`NHG&GJ zLa0z`Bo!uAKId~VOyJBD3!G(Qp};vrED|_}iwS{qjM!J;oFEPoI4i^x1kSU>DYU?O zo;VX&frlmHrP_y;;ymrcM)5)I!*;Ps`>;=3rF}ReuGK!A5!b_mlsPYDs(>$1-CdYn znte_r5CR86#DNfTAVeGp5eGuVfe>*ZWH}HvaUg8sK-k2Au!#d<69>X34unk{2z4AN z∓~@l*sgjtZy7Qe&vm)TnXeBgTv#J8DybG$&llm*ymhh0+{_*fxyCD*L&wj5#7+ z1QG-=^-@O5iIjON%kh*lpQJgIlZ4brbB6O}Ih0VA6Ces;3@O2}O6Iy${lGxVn3YHw zf03U+NRvYND5N|_QV^RW&SAzBDa zR$&Ov^S;3&k>4U`1I&h^*~oL!oO$9rXvvNdkHVPGP=vtSYM@+9i+wqcl2~AHF!Tk> zg%&zz?}b-TN*iyTS_`FYYKWH*%Aopt7YpiI*|PHYZy|pyVgy`)ATJ^e$kLoyVkabl zNMp6l1#x2awGR|7Ru55uUwVckxPa?inb@~ZWettFApiqYQMZ|k`Y&Pmm6GS{Twpq> z@*EOqe8kuS>HLd=`S&@{_9rLQsw{vn&9zzt>;y0$$(wanXz+ZMVBSVFf-xV7rk`J` z@R9a%7y-`;4|s?~4_%O|j96aHeV_qVKf*sf4udFN^$A-IvjyEU)A$;zYE;iL=mf8& z%vBkK9H*piZ#xV-DFhDcdLcIh>$H{TuI~2)bt(Z{nfy(osoV2aqd^!HoFqUlAX3;H z2C#k!1A4-wN1#ELYyJXyvk@TR1a$NTDF7*Rf7HrcMK45X&dFa;y+)ejkPgF68?!XK zPlspb8TdRf(9aSoFi#>Bi*0}nOO}LrAk^!efE%d>eEtO|{XX>l*b6cHjP3Uvy<^Nf zqkh<*`qe@|wo|dT6NWn7M7$tk&k!-j`~h^TyNVifSHr*6j8TU;FnuVRKG(cG8exUl zWxW8R5Cj8-I7sUcpi)~13J`0=hGc0mPps*TVG}`UUO>(WQDBar(;I=1`-T!&a2Y>7 zJoCgPtDoUfuuH`Wyww9NkQj07CG-`OkPpvM3FrN9$z<1Fsv4}dM zRX9WvDN|mzwhbtBpk?Qe(ArN0f6}j0C-|&Mgn++6kEzf@#uPKfO*3kWT}lENl~i5F z4bZ4ycE&RM($huOQcY2|#xnIPiY4WAu3vcFVX#{%gVq#qx?`4Fl}td|hy$U0QEWl> z#t#l18P=R2WIrDz5Sq}8G4(f0gJ}f95kh7&{ zrV2dQSFPeR<&7;nB?9iGn#Q30Wg?ypCFF5*pHK_)HaAG|XV) z=4nlqs|Dl~!9U3{5kWCA#rt6p#YAbRYr;1V9T6BY1JdSq%@b268p{ zB>;gUOPCr!5D`N(3f1L+=^X^8X^jr=oQ>jL;1;ZIDdr2S6cvuFp@2dKvW7Y+ZnD+@ zG=a(mAP2C%G_7-lIm&<`@-w7(mX2RojZowlypYlg$qI)M1`V@lHW>zM6$m!41UhF4 zoATlx5$hEG85pFQTAC??AvBr_Mx6(9Dv>xoqD^ZNP&8Ra=fsFznPOn|9MECP4UmPf z7*O~*5SYeG94jSwxw;ZeeoifT1alW`oo1@Q+<`JYvy{t#@>LxiG_rH8ajX=hbwnoz zjaMP<104_s4F4jURg2CwngPDkZm|H7)hx+M!1(Sho7QVx1usG&6KQl#Erq5A7a?QB_B2z^*o&3LI!}=>YIeE`kR_i| zK0<+oHm#R97Dz}nQZt%aA$CGABXcOH@FK@DFnO)kXkdhV0M;vEUeV+}tsykhWP;d? z{Dul4`GuS%=26T`c#F~sXtPDHn?2Mu0__sHm(0?HAr!2s0Cz9o;a z+=8O<5@sW-DKcCv#;f74Eo;o=U4t#pt|zhX!f2`sKo9~ipqNscd`puGu_a)DN&;X3 zW{}C@YO1=3{D$JsEU`VblV#P#$lb_y&{3>)bDGi6 zJ6)+(XuuI%u%%#35jjt5&>-DBmVG2(A&97glov?=@-bQ?P!=KvfFKTw4i^Q~SHLSD zghQMo>B#5s7L?DFfP!s-l6DBIUZ9DF6q2w!gLuvJmXHM?WVH&6f<{J_4>=64#Z<__ zbPV7nFp(3eA59C&CttOg4x&$~ZaSC=LPHrBDA~f8moQrbY$d=7s|$4@trYYOJi0dX zh(?ryP-u3fa`Gjb3n|@Ij36niE`Z!axi%E1)vAgqv=pk1e-3^O)C68q7-pRi!A{?q#FbU7%!R;)*b*6 zNd-9^Q^2^2wWEMiOE6$pjo1K03dv$Hdy0gZ2+9V2LEk8}L2zKUvrmW#vMG5e_Ly<+`e#MZt z*uwN+F-ZFeXoQP4+G>3R+CgY7b0DZI@(sj$37WdeaA3_vj6$+y4~AyC#a&D1tlDxmmZ)wEGb#p(PMnfOI*lVcgw9=zMj{kHkPUzVn5&a%Ihd*#R&>M{V24*!7g2Z_&=o;C zhAb9QRYT^d9gCtXWeU;rq9d9RjRKe|C>)Z*_1Z4T!@xJdAWK=5Q>L)QLo^2$0LO#n z1!B`B(-IhsUqB$@z&;BO^AbjBsQ?K}u+LY3EoE8`QNghkhV#&L;Aj_^OMn>=fDwRN zg4o`%;QMmos)GpW1~7s+3yxI$5KgNCggYn!u?krn*cK>2 zhcj|#1So)v><<|Q0u;6nr7ciobXd^>cD>4}~&;|}m zI0EQ9tP%i&@dgxF1FSBF!7O+v6C#vqWPHj3^q0abk=x+cY4SaYZApW@gXe%!kT_%m z4bBUzas%=nTVMw~=nK*rLRVc3=3W9XU|XSLiD@ks>=enK53++FV&ge*ogqfk|DT8Z{lLO=>h$_F@UofaJ-b%LeFlwHN0 zP*A{2A~tUMeFXBtY#796n-B0G5D=x z{&%m};s<*|q!$(~h@?$wxvGvT1LV*$pAVKn!p2bzOAAv4MDYTYjzVS$p&k&1h!3$G z;-CtWbv5Yg7Dd924)SxIdDCQHadiPrHsS@a0PrB&XDve;f$7{FG#8tWLADMG12ZQJ zfFU4A=kyh$R2ftc2tjCsw@B|W4YCDGI(Hd67_WkHknW-cSA}@Mi?nhV(7EfhJ!*7H zMoVZpTC{aJNptGMQegSdXM>zBA%eYOu2M@vrCU$63lc>ZLT{iXmM||_Drl|MA_fBB zy0tf7%c2f3t-nji=g4yGk$=QM_6e&nL_;=^kOdG@SVAN$(_ayc5F5l036bfS!C!mG zD%A!61K0*$2ysOlfYg8op#zg*UI3KjGnm5+iKRmmf;C=@M&+YOK{Jm5NeTHFsG*I8 zkY*t7j}hB~a!_9WSI{C*4Gmh6Rm{c(6v?)V?av z2R1T6(w>ihq*0tje_&k&73&sarJBVXWOZesK`|JT4zw5}tNVZ~gn6!8KfpYY6M|7e z0U_fWS~sqcA!0s!UDZVfczty~Q%o~(4p9K!31onIEhEYTG!YmJni|1~tPJcE)Bzp_ z5TeZ$APs)O6q7~j3K)$S!aM{@+#uIsJr05dES5kN^+8tH1QJMC!=M(lBB*E`J`@BW z);`fLh&@CBgkbx132~OMm~Gd2nVh&^BkFWgm4K4o86M zCpc52u5-w~HvlHg8EBi!^UVG@U@Fb1fAaS44Qe z6naC=lG3OHvQQzhFqNSq}AqE`w_cEK9Ib^{ftE>g2{F^d*}-Cp-Un39(a|ZOtJQr`9k7;S3pFM&ZTCDn_A8!RF(55o_(?Iy+}= zJQOZIrMYoi;JQf#ut~`G(wxAqvYeE)vfMzUV&A10AIOKPpk)zU$Iv+`nX+7o4O-`d zq|6%`lt7-nf|>y1rMZEz#o&18$orI%BgCLW7(oRMa6-LBvYhm}0t<;zvBZXe7f|g` zEb;J#$G3vHlAao?1r`_v*FEzEKt##}#!7P~bJ0jAuuKW5VlPV3%}x(pzsE3C%1Gu) z87a&#MF>3Dpn8$7jH9vg)%8-dy#nWItPG(A(bZU4>fY^ucdSH6W>zF5Be3o(LZfst zf#V`1P)FhvJo`cir%ZTY#rg}8Krzysab0y{tq~%z(!my3k=S{Bk+T6kACL>BpKy|o z1Z73kSS4ylm}r@eg_i@KC9D$M!3n5iA8ny;7$j)3_XQaao_?}V|5VvQYTOi`mI3ywD*>a zfDI`#6t2sz)qRDlBXkK-3HMi^KNulpt`rXvv7?v@X->qbx;XZF3t47Mi_~41vdn+? ze@$&mY5w^$-2DcidzYT@S2)c=#zw)mL5EBb0}F)vIxDG5b*eSJ*xo`4aZFP}FB+{$M?GkO8{+Qba0|E+D`nrJk40v=el5F64)(VV_8VE)x!5`fuglE`(C|3Xl5a>zywZe)GWhQG8c6q zQxc$lVyH+CP=3NdyMl#>fti5p+5ykp5PA4C&7iIQqbf^W7-9iGtq8Y(9}&b@z>hnq zdYH*KKvODk4p0f4hgS)lN7o9R&ZSpt=jAEvny91BO&r63^jE-xK+$SwZaAkNZq&@$ z!2O#k>cmRjf~_X}w1Obc1-7(>?=$y*o8LdZUHVu2yJ-1m=^-IpKnNEQ!bK~@dBOgV zPe_Qsf)2h&Kk&;53lR8;Fd(~*MIA03uQve??BjsE41WLMqH03D7Yj5GjR&i+002TP zY7u}{2tYuL1LSo00i44{fS>Rm;m7$te=~jp;2_YYrUihUKRc?omU?862&ra^G*Wng^q_B{RH;S|0*`s{J;)jp1<+7nOjIp=>(j5m zWOJJ=sMvKNqC#T9qN$H7E@>Eej zQRkR(_HJwp>MNJS(x5*eLSTtx};B<*vCt0+~TmY$%{y)yZ8Ht|pBi$+K& z+G)549p>TZERsZ~O{bC+@dM-JkqY;;>1i%7UB(}1O0Y;Q4V#WpSQ4hd;<15P943c0 z1?JASrvXMSqtri{zrSdNJT^W}Ay17@iWLPUM#joz$&oRlfsqLbQIXM;)7;(NO@QRT z`?J;;B}5puRaYL=mHE2zs;-4{;|`b!vXl`FO;ftdl*ai4*%|P;Tb)=!$-&y>!Vebq08}ZQvlVew0wq}^2HD+iV(+aZYCvXwi z@GcMW>|nxcvfnsz_}6VY;nrrl`lrVy@6YD3C~qfzJ%{mct$a%J$yI9vk1ye-7_kQMwkoQQOUu$*b#U}`NCQF*26R88rT*1 zu7zi`&g{Xt*e-ZhLAe{&n1iVO|I-gzkD5O3&@-%;fA#r)ohLpwofe&zrbxxG2#k)3 z4T5}EA<4k7pD;-Vm5`7e9jTB9B_}6fSQ)eoN|m#PV@ZnSw8^PS3GVU?Ifg|W4vQKgpD0h2Cq>JLMNN`NEBvNQBa>nh z4M_gpFE~XW z4Q$ZzsqsxSNkJ@ZDjtwLJYAkTeNcKr0-YK^Rh}9YsffdN0Ua8$t)^N2N-zI%8|WM5 zEh%{!dD1Ntw#02o+43*b)D!q0g8(1SF)=R0&Me`3L*s4>qzgWnbBwroS;EKA^nlCZ zc$yN%h6XOJaBf=zjF1_cxEOMHoUEQ)4ll1i(U-7k(IOy>amWRETe+DS(Xquio~3U} zeXq*i_g?L>oAA?u0IF)*C+uZjR;vX>7EexO;emNLm&4@>3E|ljT~5u7@Z9W2^-EOC z2=ivHI0i8PV3r*`lxNt68yf6sMYJ)5ib)%@khsWc3c0H&ASv42Q%rP1&3K!3+Gf$f z<1Fc=-_QXAD%mQPqp=-m81BF@*9|i^&EK^=w6$ zA*%c~22y#HJl<0P%t77A(h!A<$Rtmi@MF2L?4xZE4UAVzhq;qt6_N2G8usm}@zDyA zEPhBNupy!&;}fQf{F9So(nPd8B{Ef!C{I!}QNjNuDnu5iQ%meP1{j{j5rCdKCfqCz zDCxqJ`C-u;TpRW^29Mb^DP^a{^9|LH1NuFY9P*fz@pYDa&sjG@tSo-{Al+7b$nKzD z&)OrHOZ@>egmKofIrs+?5kp;zxnQWAZOSWz@*=BNhc+CJh6mdjq7UfMp##sG@FIvj_dM4H-QpCA zl-?d5(P?h6UT)E;3GNEk*xaL&6FsyBHZa)V%N^bj9nj#;JX^xrkPnVxU|@vfEgZy} za6lb+JZr*|K=$pUHbs>-)>&OtC1=cz~lB3g7TChM^7#dGlAmuFh z=m&#%IF~1Esd?}k&^%;S9hBX>EGxO1y@Nmd#ENfc+mE|L35(49W2=3x_kP{&x3`L} z74Nby|9;By94$JsGo2HcNoEF2)n^(N}gqtjYFeDeNgc$wdl z?pxApueJT#&8@a3y;>i7(~9b`?`5~Wjk_Ifdbo{M#Q(C}_FTW4@ds|3412p^|HhS# zJ@!4#tnYYVdO7xHzVH1_*2ni0?2kQ}JA8i4yQ*zh-juCU9G;itS9AW%ve*kI0SgJZ`}jZcFX zPamR(wx@?vw6h3otB0s1B?w7_l2b*I>591I)c6_l7*TqfT$G%YFx|5QYcvqethEC~ zkPRh9rcM`)NKRHjG-Cr90p|KWkO6rwqGwYe`;QEo|17Q?XDZXjZti?zPOpP2Zu(r> z?O2ud`H6T=xakksA0N#a{b*a^+MVkz(i-gN9ldyqZ#XY{dUNYr`*l`b@(;cHde6*% zx3PtxiD>!B;ym7x@RfFZ$98sgh?0Kx}DRhpM-;FOfM~3@L|EKi(M-E+IG7-tKz_gUrv9>a!u*dQ}R&Y->Hb> zbk;pPeA0G*_2a6V$;v?kI@&ZC6%HKpbFAx$nG-CIX1{Dun50gj`;BU>YrEH{VD!zo zNj|fu7N^Fq?Xf!S(nR}glG9D_I0WZ@Hr5Ma2lTk%G19e8ep3*nsCHLvpm$ENu5SCJ)XAjJljR%ny}#VGJ_ zj^Y1RpkQN9XB2yyq6*G!e!>Z7G=&AP6Cv8(p0M|9OV~mKn4QH)IBrIZXJF8f05>l; zPeL2TTJfxTmY2=t17@7{E^73DEHhV~eRIcZ?-XqmbVN}w({komN#%ix@)_Sem$#jC z?CqduVbY*KIU5_FMm7eA-z)y<%+42cf)giM4jI10HzITVp6zuWuY5{)rDgpq@Ae)w z^x)-V(S^=opScF>C4q4_yS2OQ-ET8iFs6J}z>cJQ2MfPafz;sSOVdiO`Q-j?cgOZ^ z2P=7YqQortlgWDb9pipW_EOp|x0@7-{Ss|I!f;OLb?3PKgJ;>UpT20aqhn21pKi_z zr=^1gmME|jTg9cGEu0dYv`=<(>9gTG z+C~{w{cRHF-#69c`LM|TY4a<_m>fT)vTu|Api?iW+ldawgEkF2Rp+Z*R1$PNd$vst9WpTHvK{xLAMf%wm6 zB_?5T?*aLZ0)mZ@K=#5jYGX7)9+Q}y6ypgRMJ*<6tODbsQUouBu z-dMc7a?_U4X~sf{nYn9H-0Os~(zt-pJ-?cgcKOrho)@~U^0t5UEYNtT{lycdYkF{x z=Uf(#H&mUcSFX(EMkPNRbK4@R$bSnAflW#*! zog4bk%j3M>xc8&|oSf}-TWY4r&9@Do`SQ%gP7};ej@@+k)Ysu-O%JU7^@;lvUR~6} zJ1!;HhN@*T?Qd5u9Cd2&u(CKK2m4Kfi>`PqJ3nhms(qm<_LrB^_g_QpFhXZpH5tLr+yv@!DAoJX_P zI9%DJOOwh8WeIC%4kDfj0kO=G7wRCw2m#oPHoh4UI0Prc6g3Fg7`329l=#aaz~)N2 zC=vC=q~qAR1CuOn7>5K+Zn(I5%IlwqP(-W)Zzv%n2Iooh1}&glM9Rb_GiKAUl*#cP zkbilkq$bCtM=R1inynb6{;Uln+hs%PAGZ{E76fIt^HYx2om#1hctpoyGbeqeT>C$6 zMa>^`sM`vc-D7j!d~gZan2EnxbK>!YU9GNt8~0E$D1GI-7xtU(P3*)(esO+NwCn8K zg{42v^}nYYb!>3kt&cz0PKb}M%{Kh0OL6)+GxO;;6q84s{9N~x9DVY%?QQ3_mUk~r z>e+S1ro0=Kny;PCeXcjwkWc#CoU$+WtE}ic@RFHXsFLV+a>9fP?(=&;)j8an?^?Sh zcXi^beKy;t^xqOo9dmMUeQ?a`;qixC-*--2@IbWh(?`!?KSXU?t!^qt;&&zFJw(OPmUNTOTC+{@i(xt|Lr8g}HZJY1D zICO~dUY}q0M(6RXzx^V;pH|cQOn$-+>(5o|RS`Zuyr1_`*h)g-+SNNJY;EONF;ZN z)kbfdNxO&S%8qSv>{8PE_0y{@;(?&@oEPMkaN;Y4YsFyhL% z_Z2hNa|;F0%2!8Yo_rl!b1`y#T*0hQ#krr_FTC>E^`rIvO?wT0EJ-Y;E^HY(@4=1y zq%&VUvp64M!G6o-aEOTi$W7*7>}bF5rt?w=VT&DrnJ3zQ*fno>jd9PG8w4Ii@bB9N zQ+7N0y>3l7ejmv5gq1mf%*g9EGlDvM&GY?-Eq#^G({DU&xt73|ke3A~vuA|dtU(hE zuI`?D#Ol#6KVEuL{>#|*7OnG+2gP9%-%1yo8tkw;XYuXwL4)W|$}QoSG>6i{>*fwx zA9Op)`9#PHd{cFJWqhw6%6fNv*lj=WNbQWPuJ@*{U;dK&%NxbsX|)SGf9v6%yrs+J zuK6W-G3ikY!Z$m4p1#^MH#QV|T9_*|*MlP%z7IK6$GVFy})x9Bo z)~uP$8I|{~hxOzJTdCnZhF^*Ivx>={S@Ts`yYph;jAM6Go^N{f&?X?sas(;4Gb#K| zb!E>rT~7|Ev>7NfALi+PvyV@9?Yi}v{p*KZ_M{9xIe*!}`A{*}|LuLM&my5hKI@_p K{!M#S^M3&B1_f^b diff --git a/vmhook-eac.vcxproj b/vmhook-eac.vcxproj index 2ede5ea..c88fded 100644 --- a/vmhook-eac.vcxproj +++ b/vmhook-eac.vcxproj @@ -53,7 +53,7 @@ DbgengKernelDebugger false - $(ProjectDir)dependencies\vmhook\include\;$(IncludePath) + $(ProjectDir)dependencies\vmhook\include\;$(ProjectDir)include;$(IncludePath) @@ -63,30 +63,34 @@ ScDriverEntry /SECTION:.text,RWE %(AdditionalOptions) + false + Enabled - - - + + {d257c9f6-c705-49d5-84ed-64c9c513c419} + + + {475ea8a7-c1ba-4847-b9c3-198c9738e0c0} + - - - - - + - + + - - {475ea8a7-c1ba-4847-b9c3-198c9738e0c0} - + + + + + diff --git a/vmhook-eac.vcxproj.filters b/vmhook-eac.vcxproj.filters index 9aa0900..f986477 100644 --- a/vmhook-eac.vcxproj.filters +++ b/vmhook-eac.vcxproj.filters @@ -9,38 +9,38 @@ {93995380-89BD-4b04-88EB-625FBE52EBFB} h;hpp;hxx;hm;inl;inc;xsd + + {8e1c3997-0fff-4f11-9741-55d34d386d82} + - - Source Files - - + + Resource Files + + + + Source Files - + Source Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - - - Source Files - - \ No newline at end of file